Class EkmServiceClient (2.23.0-rc)

Google Cloud Key Management EKM Service.

Manages external cryptographic keys and operations using those keys. Implements a REST model with the following objects:

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

EkmServiceClient(EkmServiceClient const &)

Copy and move support

Parameter
NameDescription
EkmServiceClient const &

EkmServiceClient(EkmServiceClient &&)

Copy and move support

Parameter
NameDescription
EkmServiceClient &&

EkmServiceClient(std::shared_ptr< EkmServiceConnection >, Options)

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

Operators

operator=(EkmServiceClient const &)

Copy and move support

Parameter
NameDescription
EkmServiceClient const &
Returns
TypeDescription
EkmServiceClient &

operator=(EkmServiceClient &&)

Copy and move support

Parameter
NameDescription
EkmServiceClient &&
Returns
TypeDescription
EkmServiceClient &

Functions

ListEkmConnections(std::string const &, Options)

Parameters
NameDescription
parent std::string const &

Required. The resource name of the location associated with the EkmConnections to list, in the format projects/*/locations/*.

opts Options

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

Returns
TypeDescription
StreamRange< google::cloud::kms::v1::EkmConnection >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.kms.v1.EkmConnection, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListEkmConnections(google::cloud::kms::v1::ListEkmConnectionsRequest, Options)

Parameters
NameDescription
request google::cloud::kms::v1::ListEkmConnectionsRequest

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.kms.v1.ListEkmConnectionsRequest. 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
StreamRange< google::cloud::kms::v1::EkmConnection >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.kms.v1.EkmConnection, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

GetEkmConnection(std::string const &, Options)

Returns metadata for a given EkmConnection.

Parameters
NameDescription
name std::string const &

Required. The name of the EkmConnection to get.

opts Options

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

Returns
TypeDescription
StatusOr< google::cloud::kms::v1::EkmConnection >

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

GetEkmConnection(google::cloud::kms::v1::GetEkmConnectionRequest const &, Options)

Returns metadata for a given EkmConnection.

Parameters
NameDescription
request google::cloud::kms::v1::GetEkmConnectionRequest 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.kms.v1.GetEkmConnectionRequest. 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::kms::v1::EkmConnection >

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

CreateEkmConnection(std::string const &, std::string const &, google::cloud::kms::v1::EkmConnection const &, Options)

Creates a new EkmConnection in a given Project and Location.

Parameters
NameDescription
parent std::string const &

Required. The resource name of the location associated with the EkmConnection, in the format projects/*/locations/*.

ekm_connection_id std::string const &

Required. It must be unique within a location and match the regular expression [a-zA-Z0-9_-]{1,63}.

ekm_connection google::cloud::kms::v1::EkmConnection const &

Required. An EkmConnection with initial field values.

opts Options

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

Returns
TypeDescription
StatusOr< google::cloud::kms::v1::EkmConnection >

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

CreateEkmConnection(google::cloud::kms::v1::CreateEkmConnectionRequest const &, Options)

Creates a new EkmConnection in a given Project and Location.

Parameters
NameDescription
request google::cloud::kms::v1::CreateEkmConnectionRequest 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.kms.v1.CreateEkmConnectionRequest. 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::kms::v1::EkmConnection >

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

UpdateEkmConnection(google::cloud::kms::v1::EkmConnection const &, google::protobuf::FieldMask const &, Options)

Updates an EkmConnection's metadata.

Parameters
NameDescription
ekm_connection google::cloud::kms::v1::EkmConnection const &

Required. EkmConnection with updated values.

update_mask google::protobuf::FieldMask const &

Required. List of fields to be updated in this request.

opts Options

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

Returns
TypeDescription
StatusOr< google::cloud::kms::v1::EkmConnection >

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

UpdateEkmConnection(google::cloud::kms::v1::UpdateEkmConnectionRequest const &, Options)

Updates an EkmConnection's metadata.

Parameters
NameDescription
request google::cloud::kms::v1::UpdateEkmConnectionRequest 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.kms.v1.UpdateEkmConnectionRequest. 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::kms::v1::EkmConnection >

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

GetEkmConfig(std::string const &, Options)

Returns the EkmConfig singleton resource for a given project and location.

Parameters
NameDescription
name std::string const &

Required. The name of the EkmConfig to get.

opts Options

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

Returns
TypeDescription
StatusOr< google::cloud::kms::v1::EkmConfig >

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

GetEkmConfig(google::cloud::kms::v1::GetEkmConfigRequest const &, Options)

Returns the EkmConfig singleton resource for a given project and location.

Parameters
NameDescription
request google::cloud::kms::v1::GetEkmConfigRequest 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.kms.v1.GetEkmConfigRequest. 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::kms::v1::EkmConfig >

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

UpdateEkmConfig(google::cloud::kms::v1::EkmConfig const &, google::protobuf::FieldMask const &, Options)

Updates the EkmConfig singleton resource for a given project and location.

Parameters
NameDescription
ekm_config google::cloud::kms::v1::EkmConfig const &

Required. EkmConfig with updated values.

update_mask google::protobuf::FieldMask const &

Required. List of fields to be updated in this request.

opts Options

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

Returns
TypeDescription
StatusOr< google::cloud::kms::v1::EkmConfig >

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

UpdateEkmConfig(google::cloud::kms::v1::UpdateEkmConfigRequest const &, Options)

Updates the EkmConfig singleton resource for a given project and location.

Parameters
NameDescription
request google::cloud::kms::v1::UpdateEkmConfigRequest 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.kms.v1.UpdateEkmConfigRequest. 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::kms::v1::EkmConfig >

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

VerifyConnectivity(std::string const &, Options)

Verifies that Cloud KMS can successfully connect to the external key manager specified by an EkmConnection.

If there is an error connecting to the EKM, this method returns a FAILED_PRECONDITION status containing structured information as described at https://cloud.google.com/kms/docs/reference/ekm_errors.

Parameters
NameDescription
name std::string const &

Required. The name of the EkmConnection to verify.

opts Options

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

Returns
TypeDescription
StatusOr< google::cloud::kms::v1::VerifyConnectivityResponse >

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

VerifyConnectivity(google::cloud::kms::v1::VerifyConnectivityRequest const &, Options)

Verifies that Cloud KMS can successfully connect to the external key manager specified by an EkmConnection.

If there is an error connecting to the EKM, this method returns a FAILED_PRECONDITION status containing structured information as described at https://cloud.google.com/kms/docs/reference/ekm_errors.

Parameters
NameDescription
request google::cloud::kms::v1::VerifyConnectivityRequest 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.kms.v1.VerifyConnectivityRequest. 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::kms::v1::VerifyConnectivityResponse >

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