Class IdentityAwareProxyOAuthServiceClient (2.23.0-rc)

API to programmatically create, list and retrieve Identity Aware Proxy (IAP) OAuth brands; and create, retrieve, delete and reset-secret of IAP OAuth clients.

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

IdentityAwareProxyOAuthServiceClient(IdentityAwareProxyOAuthServiceClient const &)

Copy and move support

Parameter
NameDescription
IdentityAwareProxyOAuthServiceClient const &

IdentityAwareProxyOAuthServiceClient(IdentityAwareProxyOAuthServiceClient &&)

Copy and move support

Parameter
NameDescription
IdentityAwareProxyOAuthServiceClient &&

IdentityAwareProxyOAuthServiceClient(std::shared_ptr< IdentityAwareProxyOAuthServiceConnection >, Options)

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

Operators

operator=(IdentityAwareProxyOAuthServiceClient const &)

Copy and move support

Parameter
NameDescription
IdentityAwareProxyOAuthServiceClient const &
Returns
TypeDescription
IdentityAwareProxyOAuthServiceClient &

operator=(IdentityAwareProxyOAuthServiceClient &&)

Copy and move support

Parameter
NameDescription
IdentityAwareProxyOAuthServiceClient &&
Returns
TypeDescription
IdentityAwareProxyOAuthServiceClient &

Functions

ListBrands(google::cloud::iap::v1::ListBrandsRequest const &, Options)

Lists the existing brands for the project.

Parameters
NameDescription
request google::cloud::iap::v1::ListBrandsRequest 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.iap.v1.ListBrandsRequest. 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::iap::v1::ListBrandsResponse >

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

CreateBrand(google::cloud::iap::v1::CreateBrandRequest const &, Options)

Constructs a new OAuth brand for the project if one does not exist.

The created brand is "internal only", meaning that OAuth clients created under it only accept requests from users who belong to the same Google Workspace organization as the project. The brand is created in an un-reviewed status. NOTE: The "internal only" status can be manually changed in the Google Cloud Console. Requires that a brand does not already exist for the project, and that the specified support email is owned by the caller.

Parameters
NameDescription
request google::cloud::iap::v1::CreateBrandRequest 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.iap.v1.CreateBrandRequest. 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::iap::v1::Brand >

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

GetBrand(google::cloud::iap::v1::GetBrandRequest const &, Options)

Retrieves the OAuth brand of the project.

Parameters
NameDescription
request google::cloud::iap::v1::GetBrandRequest 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.iap.v1.GetBrandRequest. 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::iap::v1::Brand >

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

CreateIdentityAwareProxyClient(google::cloud::iap::v1::CreateIdentityAwareProxyClientRequest const &, Options)

Creates an Identity Aware Proxy (IAP) OAuth client.

The client is owned by IAP. Requires that the brand for the project exists and that it is set for internal-only use.

Parameters
NameDescription
request google::cloud::iap::v1::CreateIdentityAwareProxyClientRequest 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.iap.v1.CreateIdentityAwareProxyClientRequest. 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::iap::v1::IdentityAwareProxyClient >

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

ListIdentityAwareProxyClients(google::cloud::iap::v1::ListIdentityAwareProxyClientsRequest, Options)

Lists the existing clients for the brand.

Parameters
NameDescription
request google::cloud::iap::v1::ListIdentityAwareProxyClientsRequest

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.iap.v1.ListIdentityAwareProxyClientsRequest. 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::iap::v1::IdentityAwareProxyClient >

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.iap.v1.IdentityAwareProxyClient, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

GetIdentityAwareProxyClient(google::cloud::iap::v1::GetIdentityAwareProxyClientRequest const &, Options)

Retrieves an Identity Aware Proxy (IAP) OAuth client.

Requires that the client is owned by IAP.

Parameters
NameDescription
request google::cloud::iap::v1::GetIdentityAwareProxyClientRequest 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.iap.v1.GetIdentityAwareProxyClientRequest. 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::iap::v1::IdentityAwareProxyClient >

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

ResetIdentityAwareProxyClientSecret(google::cloud::iap::v1::ResetIdentityAwareProxyClientSecretRequest const &, Options)

Resets an Identity Aware Proxy (IAP) OAuth client secret.

Useful if the secret was compromised. Requires that the client is owned by IAP.

Parameters
NameDescription
request google::cloud::iap::v1::ResetIdentityAwareProxyClientSecretRequest 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.iap.v1.ResetIdentityAwareProxyClientSecretRequest. 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::iap::v1::IdentityAwareProxyClient >

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

DeleteIdentityAwareProxyClient(google::cloud::iap::v1::DeleteIdentityAwareProxyClientRequest const &, Options)

Deletes an Identity Aware Proxy (IAP) OAuth client.

Useful for removing obsolete clients, managing the number of clients in a given project, and cleaning up after tests. Requires that the client is owned by IAP.

Parameters
NameDescription
request google::cloud::iap::v1::DeleteIdentityAwareProxyClientRequest 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.iap.v1.DeleteIdentityAwareProxyClientRequest. 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
Status

a Status object. If the request failed, the status contains the details of the failure.