Skip to content

Commit 734c837

Browse files
yoshi-automationsduskis
authored andcommitted
---
yaml --- r: 25991 b: refs/heads/pubsub-ordering-keys c: d9f96f2 h: refs/heads/master i: 25989: e4c78d3 25987: c84c0eb 25983: e54f41d
1 parent bc9c92e commit 734c837

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
@@ -155,7 +155,7 @@ refs/tags/v0.72.0: a7703f2593ba312c0b2dde6fdfd4f5c764bb55ac
155155
refs/tags/v0.73.0: 21241ea8be9439cc5764c4944cdce21d34ce4f9e
156156
refs/tags/v0.74.0: 9d1f733dbbf790de7b494418523b69c4a9a57638
157157
refs/heads/ignoretest: 23c412ae07af3d0ab1caa2d44d5bc5c0ccb8b31d
158-
refs/heads/pubsub-ordering-keys: 138fa96d0b6bd7df9af4a7fed159a1821c3ff35d
158+
refs/heads/pubsub-ordering-keys: d9f96f244ab0f7893c103181a7ce6fa949d2af7b
159159
"refs/heads/update_mvn_badge": ae2d773814db0f71197ccf5a8612ee1d8056f8de
160160
refs/tags/v0.75.0: c3673089ae09a897c1b4cf7dfe167fe4f8ab32fb
161161
refs/tags/v0.76.0: 395b016826d3ddf9cb8b34919636df15a4dbd032

branches/pubsub-ordering-keys/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/pubsub-ordering-keys/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/pubsub-ordering-keys/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)