Skip to content

Commit b59d9ac

Browse files
---
yaml --- r: 20147 b: refs/heads/autosynth-os-login c: 092fdbe h: refs/heads/master i: 20145: 2f9c7e5 20143: aa2702a
1 parent f1eaa99 commit b59d9ac

4 files changed

Lines changed: 36 additions & 19 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ refs/heads/autosynth-firestore: d1a44f9acc302750e37b008ecb9c1aa535cc94df
135135
refs/heads/autosynth-iot: f03bdd338a9056ca3b7ea6d9ca901649ba9aab78
136136
refs/heads/autosynth-kms: 2828edfe3d2c53dd6e71912eae8a53c87bf40c87
137137
refs/heads/autosynth-language: c3d990dd34d81e7e935041e7147fb9dd27f8a557
138-
refs/heads/autosynth-os-login: 80c02ab5b4ecd67096abc6623a93afe19c96780f
138+
refs/heads/autosynth-os-login: 092fdbed6d5317948f92b708e9f50dedd89fc666
139139
refs/heads/autosynth-redis: 0cdb2e47359d51b73763bcea8af3de62aa99119b
140140
refs/heads/autosynth-scheduler: d97f8743ba965c7d5e492c8dc1f51d023104e260
141141
refs/heads/autosynth-spanner: 9bff86d057df31e04c76d72865e8e073ac5794fb

branches/autosynth-os-login/google-api-grpc/proto-google-cloud-os-login-v1/src/main/proto/google/cloud/oslogin/common/common.proto

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ option java_outer_classname = "OsLoginProto";
2424
option java_package = "com.google.cloud.oslogin.common";
2525
option php_namespace = "Google\\Cloud\\OsLogin\\Common";
2626

27-
2827
// The POSIX account information associated with a Google account.
2928
message PosixAccount {
3029
// Only one POSIX account can be marked as primary.

branches/autosynth-os-login/google-api-grpc/proto-google-cloud-os-login-v1/src/main/proto/google/cloud/oslogin/v1/oslogin.proto

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,44 +28,62 @@ option java_outer_classname = "OsLoginProto";
2828
option java_package = "com.google.cloud.oslogin.v1";
2929
option php_namespace = "Google\\Cloud\\OsLogin\\V1";
3030

31-
3231
// Cloud OS Login API
3332
//
3433
// The Cloud OS Login API allows you to manage users and their associated SSH
3534
// public keys for logging into virtual machines on Google Cloud Platform.
3635
service OsLoginService {
3736
// Deletes a POSIX account.
38-
rpc DeletePosixAccount(DeletePosixAccountRequest) returns (google.protobuf.Empty) {
39-
option (google.api.http) = { delete: "/v1/{name=users/*/projects/*}" };
37+
rpc DeletePosixAccount(DeletePosixAccountRequest)
38+
returns (google.protobuf.Empty) {
39+
option (google.api.http) = {
40+
delete: "/v1/{name=users/*/projects/*}"
41+
};
4042
}
4143

4244
// Deletes an SSH public key.
43-
rpc DeleteSshPublicKey(DeleteSshPublicKeyRequest) returns (google.protobuf.Empty) {
44-
option (google.api.http) = { delete: "/v1/{name=users/*/sshPublicKeys/*}" };
45+
rpc DeleteSshPublicKey(DeleteSshPublicKeyRequest)
46+
returns (google.protobuf.Empty) {
47+
option (google.api.http) = {
48+
delete: "/v1/{name=users/*/sshPublicKeys/*}"
49+
};
4550
}
4651

4752
// Retrieves the profile information used for logging in to a virtual machine
4853
// on Google Compute Engine.
4954
rpc GetLoginProfile(GetLoginProfileRequest) returns (LoginProfile) {
50-
option (google.api.http) = { get: "/v1/{name=users/*}/loginProfile" };
55+
option (google.api.http) = {
56+
get: "/v1/{name=users/*}/loginProfile"
57+
};
5158
}
5259

5360
// Retrieves an SSH public key.
54-
rpc GetSshPublicKey(GetSshPublicKeyRequest) returns (google.cloud.oslogin.common.SshPublicKey) {
55-
option (google.api.http) = { get: "/v1/{name=users/*/sshPublicKeys/*}" };
61+
rpc GetSshPublicKey(GetSshPublicKeyRequest)
62+
returns (google.cloud.oslogin.common.SshPublicKey) {
63+
option (google.api.http) = {
64+
get: "/v1/{name=users/*/sshPublicKeys/*}"
65+
};
5666
}
5767

5868
// Adds an SSH public key and returns the profile information. Default POSIX
5969
// account information is set when no username and UID exist as part of the
6070
// login profile.
61-
rpc ImportSshPublicKey(ImportSshPublicKeyRequest) returns (ImportSshPublicKeyResponse) {
62-
option (google.api.http) = { post: "/v1/{parent=users/*}:importSshPublicKey" body: "ssh_public_key" };
71+
rpc ImportSshPublicKey(ImportSshPublicKeyRequest)
72+
returns (ImportSshPublicKeyResponse) {
73+
option (google.api.http) = {
74+
post: "/v1/{parent=users/*}:importSshPublicKey"
75+
body: "ssh_public_key"
76+
};
6377
}
6478

6579
// Updates an SSH public key and returns the profile information. This method
6680
// supports patch semantics.
67-
rpc UpdateSshPublicKey(UpdateSshPublicKeyRequest) returns (google.cloud.oslogin.common.SshPublicKey) {
68-
option (google.api.http) = { patch: "/v1/{name=users/*/sshPublicKeys/*}" body: "ssh_public_key" };
81+
rpc UpdateSshPublicKey(UpdateSshPublicKeyRequest)
82+
returns (google.cloud.oslogin.common.SshPublicKey) {
83+
option (google.api.http) = {
84+
patch: "/v1/{name=users/*/sshPublicKeys/*}"
85+
body: "ssh_public_key"
86+
};
6987
}
7088
}
7189

branches/autosynth-os-login/google-cloud-clients/google-cloud-os-login/synth.metadata

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"updateTime": "2019-01-17T08:48:12.508385Z",
2+
"updateTime": "2019-03-01T08:48:43.656993Z",
33
"sources": [
44
{
55
"generator": {
66
"name": "artman",
7-
"version": "0.16.6",
8-
"dockerImage": "googleapis/artman@sha256:12722f2ca3fbc3b53cc6aa5f0e569d7d221b46bd876a2136497089dec5e3634e"
7+
"version": "0.16.14",
8+
"dockerImage": "googleapis/artman@sha256:f3d61ae45abaeefb6be5f228cda22732c2f1b00fb687c79c4bd4f2c42bb1e1a7"
99
}
1010
},
1111
{
1212
"git": {
1313
"name": "googleapis",
1414
"remote": "https://github.com/googleapis/googleapis.git",
15-
"sha": "0ac60e21a1aa86c07c1836865b35308ba8178b05",
16-
"internalRef": "229626798"
15+
"sha": "41d72d444fbe445f4da89e13be02078734fb7875",
16+
"internalRef": "236230004"
1717
}
1818
}
1919
],

0 commit comments

Comments
 (0)