-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: use the v1 variant of the API (#287)
BREAKING CHANGE: This adds the v1 variant of the API, and makes it the default export. For any non-versioned imports of the service class, please make sure to test updates.
- Loading branch information
1 parent
ddfc8e4
commit ee55a8b
Showing
17 changed files
with
4,697 additions
and
666 deletions.
There are no files selected for viewing
211 changes: 211 additions & 0 deletions
211
packages/google-cloud-oslogin/protos/google/cloud/oslogin/v1/oslogin.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,211 @@ | ||
// Copyright 2019 Google LLC. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
syntax = "proto3"; | ||
|
||
package google.cloud.oslogin.v1; | ||
|
||
import "google/api/annotations.proto"; | ||
import "google/api/client.proto"; | ||
import "google/api/field_behavior.proto"; | ||
import "google/api/resource.proto"; | ||
import "google/cloud/oslogin/common/common.proto"; | ||
import "google/protobuf/empty.proto"; | ||
import "google/protobuf/field_mask.proto"; | ||
|
||
option csharp_namespace = "Google.Cloud.OsLogin.V1"; | ||
option go_package = "google.golang.org/genproto/googleapis/cloud/oslogin/v1;oslogin"; | ||
option java_multiple_files = true; | ||
option java_outer_classname = "OsLoginProto"; | ||
option java_package = "com.google.cloud.oslogin.v1"; | ||
option php_namespace = "Google\\Cloud\\OsLogin\\V1"; | ||
|
||
// Cloud OS Login API | ||
// | ||
// The Cloud OS Login API allows you to manage users and their associated SSH | ||
// public keys for logging into virtual machines on Google Cloud Platform. | ||
service OsLoginService { | ||
option (google.api.default_host) = "oslogin.googleapis.com"; | ||
option (google.api.oauth_scopes) = | ||
"https://www.googleapis.com/auth/cloud-platform," | ||
"https://www.googleapis.com/auth/compute"; | ||
|
||
// Deletes a POSIX account. | ||
rpc DeletePosixAccount(DeletePosixAccountRequest) returns (google.protobuf.Empty) { | ||
option (google.api.http) = { | ||
delete: "/v1/{name=users/*/projects/*}" | ||
}; | ||
option (google.api.method_signature) = "name"; | ||
} | ||
|
||
// Deletes an SSH public key. | ||
rpc DeleteSshPublicKey(DeleteSshPublicKeyRequest) returns (google.protobuf.Empty) { | ||
option (google.api.http) = { | ||
delete: "/v1/{name=users/*/sshPublicKeys/*}" | ||
}; | ||
option (google.api.method_signature) = "name"; | ||
} | ||
|
||
// Retrieves the profile information used for logging in to a virtual machine | ||
// on Google Compute Engine. | ||
rpc GetLoginProfile(GetLoginProfileRequest) returns (LoginProfile) { | ||
option (google.api.http) = { | ||
get: "/v1/{name=users/*}/loginProfile" | ||
}; | ||
option (google.api.method_signature) = "name"; | ||
} | ||
|
||
// Retrieves an SSH public key. | ||
rpc GetSshPublicKey(GetSshPublicKeyRequest) returns (google.cloud.oslogin.common.SshPublicKey) { | ||
option (google.api.http) = { | ||
get: "/v1/{name=users/*/sshPublicKeys/*}" | ||
}; | ||
option (google.api.method_signature) = "name"; | ||
} | ||
|
||
// Adds an SSH public key and returns the profile information. Default POSIX | ||
// account information is set when no username and UID exist as part of the | ||
// login profile. | ||
rpc ImportSshPublicKey(ImportSshPublicKeyRequest) returns (ImportSshPublicKeyResponse) { | ||
option (google.api.http) = { | ||
post: "/v1/{parent=users/*}:importSshPublicKey" | ||
body: "ssh_public_key" | ||
}; | ||
option (google.api.method_signature) = "parent,ssh_public_key"; | ||
option (google.api.method_signature) = "parent,ssh_public_key,project_id"; | ||
} | ||
|
||
// Updates an SSH public key and returns the profile information. This method | ||
// supports patch semantics. | ||
rpc UpdateSshPublicKey(UpdateSshPublicKeyRequest) returns (google.cloud.oslogin.common.SshPublicKey) { | ||
option (google.api.http) = { | ||
patch: "/v1/{name=users/*/sshPublicKeys/*}" | ||
body: "ssh_public_key" | ||
}; | ||
option (google.api.method_signature) = "name,ssh_public_key"; | ||
option (google.api.method_signature) = "name,ssh_public_key,update_mask"; | ||
} | ||
} | ||
|
||
// The user profile information used for logging in to a virtual machine on | ||
// Google Compute Engine. | ||
message LoginProfile { | ||
// Required. A unique user ID. | ||
string name = 1 [(google.api.field_behavior) = REQUIRED]; | ||
|
||
// The list of POSIX accounts associated with the user. | ||
repeated google.cloud.oslogin.common.PosixAccount posix_accounts = 2; | ||
|
||
// A map from SSH public key fingerprint to the associated key object. | ||
map<string, google.cloud.oslogin.common.SshPublicKey> ssh_public_keys = 3; | ||
} | ||
|
||
// A request message for deleting a POSIX account entry. | ||
message DeletePosixAccountRequest { | ||
// Required. A reference to the POSIX account to update. POSIX accounts are identified | ||
// by the project ID they are associated with. A reference to the POSIX | ||
// account is in format `users/{user}/projects/{project}`. | ||
string name = 1 [ | ||
(google.api.field_behavior) = REQUIRED, | ||
(google.api.resource_reference) = { | ||
type: "oslogin.googleapis.com/PosixAccount" | ||
} | ||
]; | ||
} | ||
|
||
// A request message for deleting an SSH public key. | ||
message DeleteSshPublicKeyRequest { | ||
// Required. The fingerprint of the public key to update. Public keys are identified by | ||
// their SHA-256 fingerprint. The fingerprint of the public key is in format | ||
// `users/{user}/sshPublicKeys/{fingerprint}`. | ||
string name = 1 [ | ||
(google.api.field_behavior) = REQUIRED, | ||
(google.api.resource_reference) = { | ||
type: "oslogin.googleapis.com/SshPublicKey" | ||
} | ||
]; | ||
} | ||
|
||
// A request message for retrieving the login profile information for a user. | ||
message GetLoginProfileRequest { | ||
// Required. The unique ID for the user in format `users/{user}`. | ||
string name = 1 [ | ||
(google.api.field_behavior) = REQUIRED, | ||
(google.api.resource_reference) = { | ||
child_type: "oslogin.googleapis.com/PosixAccount" | ||
} | ||
]; | ||
|
||
// The project ID of the Google Cloud Platform project. | ||
string project_id = 2; | ||
|
||
// A system ID for filtering the results of the request. | ||
string system_id = 3; | ||
} | ||
|
||
// A request message for retrieving an SSH public key. | ||
message GetSshPublicKeyRequest { | ||
// Required. The fingerprint of the public key to retrieve. Public keys are identified | ||
// by their SHA-256 fingerprint. The fingerprint of the public key is in | ||
// format `users/{user}/sshPublicKeys/{fingerprint}`. | ||
string name = 1 [ | ||
(google.api.field_behavior) = REQUIRED, | ||
(google.api.resource_reference) = { | ||
type: "oslogin.googleapis.com/SshPublicKey" | ||
} | ||
]; | ||
} | ||
|
||
// A request message for importing an SSH public key. | ||
message ImportSshPublicKeyRequest { | ||
// Required. The unique ID for the user in format `users/{user}`. | ||
string parent = 1 [ | ||
(google.api.field_behavior) = REQUIRED, | ||
(google.api.resource_reference) = { | ||
child_type: "oslogin.googleapis.com/SshPublicKey" | ||
} | ||
]; | ||
|
||
// Optional. The SSH public key and expiration time. | ||
google.cloud.oslogin.common.SshPublicKey ssh_public_key = 2 [(google.api.field_behavior) = OPTIONAL]; | ||
|
||
// The project ID of the Google Cloud Platform project. | ||
string project_id = 3; | ||
} | ||
|
||
// A response message for importing an SSH public key. | ||
message ImportSshPublicKeyResponse { | ||
// The login profile information for the user. | ||
LoginProfile login_profile = 1; | ||
} | ||
|
||
// A request message for updating an SSH public key. | ||
message UpdateSshPublicKeyRequest { | ||
// Required. The fingerprint of the public key to update. Public keys are identified by | ||
// their SHA-256 fingerprint. The fingerprint of the public key is in format | ||
// `users/{user}/sshPublicKeys/{fingerprint}`. | ||
string name = 1 [ | ||
(google.api.field_behavior) = REQUIRED, | ||
(google.api.resource_reference) = { | ||
type: "oslogin.googleapis.com/SshPublicKey" | ||
} | ||
]; | ||
|
||
// Required. The SSH public key and expiration time. | ||
google.cloud.oslogin.common.SshPublicKey ssh_public_key = 2 [(google.api.field_behavior) = REQUIRED]; | ||
|
||
// Mask to control which fields get updated. Updates all if not present. | ||
google.protobuf.FieldMask update_mask = 3; | ||
} |
Oops, something went wrong.