Class CloudShellServiceClient (2.23.0-rc)

API for interacting with Google Cloud Shell.

Each user of Cloud Shell has at least one environment, which has the ID "default". Environment consists of a Docker image defining what is installed on the environment and a home directory containing the user's data that will remain across sessions. Clients use this API to start and fetch information about their environment, which can then be used to connect to that environment via a separate SSH client.

Equality

Instances of this class created via copy-construction or copy-assignment always compare equal. Instances created with equal std::shared_ptr<*Connection> objects compare equal. Objects that compare equal share the same underlying resources.

Performance

Creating a new instance of this class is a relatively expensive operation, new objects establish new connections to the service. In contrast, copy-construction, move-construction, and the corresponding assignment operations are relatively efficient as the copies share all underlying resources.

Thread Safety

Concurrent access to different instances of this class, even if they compare equal, is guaranteed to work. Two or more threads operating on the same instance of this class is not guaranteed to work. Since copy-construction and move-construction is a relatively efficient operation, consider using such a copy when using this class from multiple threads.

Constructors

CloudShellServiceClient(CloudShellServiceClient const &)

Copy and move support

Parameter
NameDescription
CloudShellServiceClient const &

CloudShellServiceClient(CloudShellServiceClient &&)

Copy and move support

Parameter
NameDescription
CloudShellServiceClient &&

CloudShellServiceClient(std::shared_ptr< CloudShellServiceConnection >, Options)

Parameters
NameDescription
connection std::shared_ptr< CloudShellServiceConnection >
opts Options

Operators

operator=(CloudShellServiceClient const &)

Copy and move support

Parameter
NameDescription
CloudShellServiceClient const &
Returns
TypeDescription
CloudShellServiceClient &

operator=(CloudShellServiceClient &&)

Copy and move support

Parameter
NameDescription
CloudShellServiceClient &&
Returns
TypeDescription
CloudShellServiceClient &

Functions

GetEnvironment(std::string const &, Options)

Gets an environment.

Returns NOT_FOUND if the environment does not exist.

Parameters
NameDescription
name std::string const &

Required. Name of the requested resource, for example users/me/environments/default or users/someone@example.com/environments/default.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::shell::v1::Environment >

the result of the RPC. The response message type (google.cloud.shell.v1.Environment) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetEnvironment(google::cloud::shell::v1::GetEnvironmentRequest const &, Options)

Gets an environment.

Returns NOT_FOUND if the environment does not exist.

Parameters
NameDescription
request google::cloud::shell::v1::GetEnvironmentRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.shell.v1.GetEnvironmentRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::shell::v1::Environment >

the result of the RPC. The response message type (google.cloud.shell.v1.Environment) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

StartEnvironment(google::cloud::shell::v1::StartEnvironmentRequest const &, Options)

Starts an existing environment, allowing clients to connect to it.

The returned operation will contain an instance of StartEnvironmentMetadata in its metadata field. Users can wait for the environment to start by polling this operation via GetOperation. Once the environment has finished starting and is ready to accept connections, the operation will contain a StartEnvironmentResponse in its response field.

Parameters
NameDescription
request google::cloud::shell::v1::StartEnvironmentRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.shell.v1.StartEnvironmentRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::shell::v1::StartEnvironmentResponse > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.shell.v1.StartEnvironmentResponse proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

AuthorizeEnvironment(google::cloud::shell::v1::AuthorizeEnvironmentRequest const &, Options)

Sends OAuth credentials to a running environment on behalf of a user.

When this completes, the environment will be authorized to run various Google Cloud command line tools without requiring the user to manually authenticate.

Parameters
NameDescription
request google::cloud::shell::v1::AuthorizeEnvironmentRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.shell.v1.AuthorizeEnvironmentRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::shell::v1::AuthorizeEnvironmentResponse > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.shell.v1.AuthorizeEnvironmentResponse proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

AddPublicKey(google::cloud::shell::v1::AddPublicKeyRequest const &, Options)

Adds a public SSH key to an environment, allowing clients with the corresponding private key to connect to that environment via SSH.

If a key with the same content already exists, this will error with ALREADY_EXISTS.

Parameters
NameDescription
request google::cloud::shell::v1::AddPublicKeyRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.shell.v1.AddPublicKeyRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::shell::v1::AddPublicKeyResponse > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.shell.v1.AddPublicKeyResponse proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

RemovePublicKey(google::cloud::shell::v1::RemovePublicKeyRequest const &, Options)

Removes a public SSH key from an environment.

Clients will no longer be able to connect to the environment using the corresponding private key. If a key with the same content is not present, this will error with NOT_FOUND.

Parameters
NameDescription
request google::cloud::shell::v1::RemovePublicKeyRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.shell.v1.RemovePublicKeyRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::shell::v1::RemovePublicKeyResponse > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.shell.v1.RemovePublicKeyResponse proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.