VMwareEngine manages VMware's private clusters in the Cloud.
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
VmwareEngineClient(VmwareEngineClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
VmwareEngineClient const &
|
VmwareEngineClient(VmwareEngineClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
VmwareEngineClient &&
|
VmwareEngineClient(std::shared_ptr< VmwareEngineConnection >, Options)
Parameters | |
---|---|
Name | Description |
connection |
std::shared_ptr< VmwareEngineConnection >
|
opts |
Options
|
Operators
operator=(VmwareEngineClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
VmwareEngineClient const &
|
Returns | |
---|---|
Type | Description |
VmwareEngineClient & |
operator=(VmwareEngineClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
VmwareEngineClient &&
|
Returns | |
---|---|
Type | Description |
VmwareEngineClient & |
Functions
ListPrivateClouds(std::string const &, Options)
Lists PrivateCloud
resources in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to be queried for clusters. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::PrivateCloud > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListPrivateClouds(google::cloud::vmwareengine::v1::ListPrivateCloudsRequest, Options)
Lists PrivateCloud
resources in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListPrivateCloudsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::PrivateCloud > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetPrivateCloud(std::string const &, Options)
Retrieves a PrivateCloud
resource by its resource name.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the private cloud to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.PrivateCloud) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetPrivateCloud(google::cloud::vmwareengine::v1::GetPrivateCloudRequest const &, Options)
Retrieves a PrivateCloud
resource by its resource name.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetPrivateCloudRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.PrivateCloud) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreatePrivateCloud(std::string const &, google::cloud::vmwareengine::v1::PrivateCloud const &, std::string const &, Options)
Creates a new PrivateCloud
resource in a given project and location.
Private clouds of type STANDARD
and TIME_LIMITED
are zonal resources, STRETCHED
private clouds are regional. Creating a private cloud also creates a management cluster for that private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location to create the new private cloud in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
private_cloud |
google::cloud::vmwareengine::v1::PrivateCloud const &
Required. The initial description of the new private cloud. |
private_cloud_id |
std::string const &
Required. The user-provided identifier of the private cloud to be created. This identifier must be unique among each
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
CreatePrivateCloud(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::PrivateCloud const &, std::string const &, Options)
Creates a new PrivateCloud
resource in a given project and location.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
private_cloud |
google::cloud::vmwareengine::v1::PrivateCloud const &
|
private_cloud_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreatePrivateCloud(google::cloud::vmwareengine::v1::CreatePrivateCloudRequest const &, Options)
Creates a new PrivateCloud
resource in a given project and location.
Private clouds of type STANDARD
and TIME_LIMITED
are zonal resources, STRETCHED
private clouds are regional. Creating a private cloud also creates a management cluster for that private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreatePrivateCloudRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
CreatePrivateCloud(NoAwaitTag, google::cloud::vmwareengine::v1::CreatePrivateCloudRequest const &, Options)
Creates a new PrivateCloud
resource in a given project and location.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreatePrivateCloudRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreatePrivateCloud(google::longrunning::Operation const &, Options)
Creates a new PrivateCloud
resource in a given project and location.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
UpdatePrivateCloud(google::cloud::vmwareengine::v1::PrivateCloud const &, google::protobuf::FieldMask const &, Options)
Modifies a PrivateCloud
resource.
Only the following fields can be updated: description
. Only fields specified in updateMask
are applied.
During operation processing, the resource is temporarily in the ACTIVE
state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes.
Parameters | |
---|---|
Name | Description |
private_cloud |
google::cloud::vmwareengine::v1::PrivateCloud const &
Required. Private cloud description. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
UpdatePrivateCloud(NoAwaitTag, google::cloud::vmwareengine::v1::PrivateCloud const &, google::protobuf::FieldMask const &, Options)
Modifies a PrivateCloud
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
private_cloud |
google::cloud::vmwareengine::v1::PrivateCloud const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdatePrivateCloud(google::cloud::vmwareengine::v1::UpdatePrivateCloudRequest const &, Options)
Modifies a PrivateCloud
resource.
Only the following fields can be updated: description
. Only fields specified in updateMask
are applied.
During operation processing, the resource is temporarily in the ACTIVE
state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdatePrivateCloudRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
UpdatePrivateCloud(NoAwaitTag, google::cloud::vmwareengine::v1::UpdatePrivateCloudRequest const &, Options)
Modifies a PrivateCloud
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdatePrivateCloudRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdatePrivateCloud(google::longrunning::Operation const &, Options)
Modifies a PrivateCloud
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
DeletePrivateCloud(std::string const &, Options)
Schedules a PrivateCloud
resource for deletion.
A PrivateCloud
resource scheduled for deletion has PrivateCloud.state
set to DELETED
and expireTime
set to the time when deletion is final and can no longer be reversed. The delete operation is marked as done as soon as the PrivateCloud
is successfully scheduled for deletion (this also applies when delayHours
is set to zero), and the operation is not kept in pending state until PrivateCloud
is purged. PrivateCloud
can be restored using UndeletePrivateCloud
method before the expireTime
elapses. When expireTime
is reached, deletion is final and all private cloud resources are irreversibly removed and billing stops. During the final removal process, PrivateCloud.state
is set to PURGING
. PrivateCloud
can be polled using standard GET
method for the whole period of deletion and purging. It will not be returned only when it is completely purged.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the private cloud to delete. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
DeletePrivateCloud(NoAwaitTag, std::string const &, Options)
Schedules a PrivateCloud
resource for deletion.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeletePrivateCloud(google::cloud::vmwareengine::v1::DeletePrivateCloudRequest const &, Options)
Schedules a PrivateCloud
resource for deletion.
A PrivateCloud
resource scheduled for deletion has PrivateCloud.state
set to DELETED
and expireTime
set to the time when deletion is final and can no longer be reversed. The delete operation is marked as done as soon as the PrivateCloud
is successfully scheduled for deletion (this also applies when delayHours
is set to zero), and the operation is not kept in pending state until PrivateCloud
is purged. PrivateCloud
can be restored using UndeletePrivateCloud
method before the expireTime
elapses. When expireTime
is reached, deletion is final and all private cloud resources are irreversibly removed and billing stops. During the final removal process, PrivateCloud.state
is set to PURGING
. PrivateCloud
can be polled using standard GET
method for the whole period of deletion and purging. It will not be returned only when it is completely purged.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeletePrivateCloudRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
DeletePrivateCloud(NoAwaitTag, google::cloud::vmwareengine::v1::DeletePrivateCloudRequest const &, Options)
Schedules a PrivateCloud
resource for deletion.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeletePrivateCloudRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeletePrivateCloud(google::longrunning::Operation const &, Options)
Schedules a PrivateCloud
resource for deletion.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
UndeletePrivateCloud(std::string const &, Options)
Restores a private cloud that was previously scheduled for deletion by DeletePrivateCloud
.
A PrivateCloud
resource scheduled for deletion has PrivateCloud.state
set to DELETED
and PrivateCloud.expireTime
set to the time when deletion can no longer be reversed.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the private cloud scheduled for deletion. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
UndeletePrivateCloud(NoAwaitTag, std::string const &, Options)
Restores a private cloud that was previously scheduled for deletion by DeletePrivateCloud
.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UndeletePrivateCloud(google::cloud::vmwareengine::v1::UndeletePrivateCloudRequest const &, Options)
Restores a private cloud that was previously scheduled for deletion by DeletePrivateCloud
.
A PrivateCloud
resource scheduled for deletion has PrivateCloud.state
set to DELETED
and PrivateCloud.expireTime
set to the time when deletion can no longer be reversed.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UndeletePrivateCloudRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
UndeletePrivateCloud(NoAwaitTag, google::cloud::vmwareengine::v1::UndeletePrivateCloudRequest const &, Options)
Restores a private cloud that was previously scheduled for deletion by DeletePrivateCloud
.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UndeletePrivateCloudRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UndeletePrivateCloud(google::longrunning::Operation const &, Options)
Restores a private cloud that was previously scheduled for deletion by DeletePrivateCloud
.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
ListClusters(std::string const &, Options)
Lists Cluster
resources in a given private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to query for clusters. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::Cluster > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListClusters(google::cloud::vmwareengine::v1::ListClustersRequest, Options)
Lists Cluster
resources in a given private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListClustersRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::Cluster > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetCluster(std::string const &, Options)
Retrieves a Cluster
resource by its resource name.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The cluster resource name to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Cluster > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Cluster) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetCluster(google::cloud::vmwareengine::v1::GetClusterRequest const &, Options)
Retrieves a Cluster
resource by its resource name.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetClusterRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Cluster > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Cluster) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateCluster(std::string const &, google::cloud::vmwareengine::v1::Cluster const &, std::string const &, Options)
Creates a new cluster in a given private cloud.
Creating a new cluster provides additional nodes for use in the parent private cloud and requires sufficient node quota.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to create a new cluster in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
cluster |
google::cloud::vmwareengine::v1::Cluster const &
Required. The initial description of the new cluster. |
cluster_id |
std::string const &
Required. The user-provided identifier of the new
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::Cluster > > |
A |
CreateCluster(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::Cluster const &, std::string const &, Options)
Creates a new cluster in a given private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
cluster |
google::cloud::vmwareengine::v1::Cluster const &
|
cluster_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateCluster(google::cloud::vmwareengine::v1::CreateClusterRequest const &, Options)
Creates a new cluster in a given private cloud.
Creating a new cluster provides additional nodes for use in the parent private cloud and requires sufficient node quota.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreateClusterRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::Cluster > > |
A |
CreateCluster(NoAwaitTag, google::cloud::vmwareengine::v1::CreateClusterRequest const &, Options)
Creates a new cluster in a given private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreateClusterRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateCluster(google::longrunning::Operation const &, Options)
Creates a new cluster in a given private cloud.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::Cluster > > |
UpdateCluster(google::cloud::vmwareengine::v1::Cluster const &, google::protobuf::FieldMask const &, Options)
Modifies a Cluster
resource.
Only fields specified in updateMask
are applied.
During operation processing, the resource is temporarily in the ACTIVE
state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes.
Parameters | |
---|---|
Name | Description |
cluster |
google::cloud::vmwareengine::v1::Cluster const &
Required. The description of the cluster. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::Cluster > > |
A |
UpdateCluster(NoAwaitTag, google::cloud::vmwareengine::v1::Cluster const &, google::protobuf::FieldMask const &, Options)
Modifies a Cluster
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
cluster |
google::cloud::vmwareengine::v1::Cluster const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateCluster(google::cloud::vmwareengine::v1::UpdateClusterRequest const &, Options)
Modifies a Cluster
resource.
Only fields specified in updateMask
are applied.
During operation processing, the resource is temporarily in the ACTIVE
state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateClusterRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::Cluster > > |
A |
UpdateCluster(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateClusterRequest const &, Options)
Modifies a Cluster
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateClusterRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateCluster(google::longrunning::Operation const &, Options)
Modifies a Cluster
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::Cluster > > |
DeleteCluster(std::string const &, Options)
Deletes a Cluster
resource.
To avoid unintended data loss, migrate or gracefully shut down any workloads running on the cluster before deletion. You cannot delete the management cluster of a private cloud using this method.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the cluster to delete. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteCluster(NoAwaitTag, std::string const &, Options)
Deletes a Cluster
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteCluster(google::cloud::vmwareengine::v1::DeleteClusterRequest const &, Options)
Deletes a Cluster
resource.
To avoid unintended data loss, migrate or gracefully shut down any workloads running on the cluster before deletion. You cannot delete the management cluster of a private cloud using this method.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeleteClusterRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteCluster(NoAwaitTag, google::cloud::vmwareengine::v1::DeleteClusterRequest const &, Options)
Deletes a Cluster
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeleteClusterRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteCluster(google::longrunning::Operation const &, Options)
Deletes a Cluster
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
ListNodes(std::string const &, Options)
Lists nodes in a given cluster.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the cluster to be queried for nodes. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::Node > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListNodes(google::cloud::vmwareengine::v1::ListNodesRequest, Options)
Lists nodes in a given cluster.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListNodesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::Node > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetNode(std::string const &, Options)
Gets details of a single node.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the node to retrieve. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Node > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Node) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetNode(google::cloud::vmwareengine::v1::GetNodeRequest const &, Options)
Gets details of a single node.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetNodeRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Node > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Node) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListExternalAddresses(std::string const &, Options)
Lists external IP addresses assigned to VMware workload VMs in a given private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to be queried for external IP addresses. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::ExternalAddress > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListExternalAddresses(google::cloud::vmwareengine::v1::ListExternalAddressesRequest, Options)
Lists external IP addresses assigned to VMware workload VMs in a given private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListExternalAddressesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::ExternalAddress > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
FetchNetworkPolicyExternalAddresses(std::string const &, Options)
Lists external IP addresses assigned to VMware workload VMs within the scope of the given network policy.
Parameters | |
---|---|
Name | Description |
network_policy |
std::string const &
Required. The resource name of the network policy to query for assigned external IP addresses. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::ExternalAddress > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
FetchNetworkPolicyExternalAddresses(google::cloud::vmwareengine::v1::FetchNetworkPolicyExternalAddressesRequest, Options)
Lists external IP addresses assigned to VMware workload VMs within the scope of the given network policy.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::FetchNetworkPolicyExternalAddressesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::ExternalAddress > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetExternalAddress(std::string const &, Options)
Gets details of a single external IP address.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the external IP address to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::ExternalAddress > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.ExternalAddress) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetExternalAddress(google::cloud::vmwareengine::v1::GetExternalAddressRequest const &, Options)
Gets details of a single external IP address.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetExternalAddressRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::ExternalAddress > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.ExternalAddress) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateExternalAddress(std::string const &, google::cloud::vmwareengine::v1::ExternalAddress const &, std::string const &, Options)
Creates a new ExternalAddress
resource in a given private cloud.
The network policy that corresponds to the private cloud must have the external IP address network service enabled (NetworkPolicy.external_ip
).
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to create a new external IP address in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
external_address |
google::cloud::vmwareengine::v1::ExternalAddress const &
Required. The initial description of a new external IP address. |
external_address_id |
std::string const &
Required. The user-provided identifier of the
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAddress > > |
A |
CreateExternalAddress(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::ExternalAddress const &, std::string const &, Options)
Creates a new ExternalAddress
resource in a given private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
external_address |
google::cloud::vmwareengine::v1::ExternalAddress const &
|
external_address_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateExternalAddress(google::cloud::vmwareengine::v1::CreateExternalAddressRequest const &, Options)
Creates a new ExternalAddress
resource in a given private cloud.
The network policy that corresponds to the private cloud must have the external IP address network service enabled (NetworkPolicy.external_ip
).
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreateExternalAddressRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAddress > > |
A |
CreateExternalAddress(NoAwaitTag, google::cloud::vmwareengine::v1::CreateExternalAddressRequest const &, Options)
Creates a new ExternalAddress
resource in a given private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreateExternalAddressRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateExternalAddress(google::longrunning::Operation const &, Options)
Creates a new ExternalAddress
resource in a given private cloud.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAddress > > |
UpdateExternalAddress(google::cloud::vmwareengine::v1::ExternalAddress const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of a single external IP address.
Only fields specified in update_mask
are applied.
During operation processing, the resource is temporarily in the ACTIVE
state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes.
Parameters | |
---|---|
Name | Description |
external_address |
google::cloud::vmwareengine::v1::ExternalAddress const &
Required. External IP address description. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAddress > > |
A |
UpdateExternalAddress(NoAwaitTag, google::cloud::vmwareengine::v1::ExternalAddress const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of a single external IP address.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
external_address |
google::cloud::vmwareengine::v1::ExternalAddress const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateExternalAddress(google::cloud::vmwareengine::v1::UpdateExternalAddressRequest const &, Options)
Updates the parameters of a single external IP address.
Only fields specified in update_mask
are applied.
During operation processing, the resource is temporarily in the ACTIVE
state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateExternalAddressRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAddress > > |
A |
UpdateExternalAddress(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateExternalAddressRequest const &, Options)
Updates the parameters of a single external IP address.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateExternalAddressRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateExternalAddress(google::longrunning::Operation const &, Options)
Updates the parameters of a single external IP address.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAddress > > |
DeleteExternalAddress(std::string const &, Options)
Deletes a single external IP address.
When you delete an external IP address, connectivity between the external IP address and the corresponding internal IP address is lost.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the external IP address to delete. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteExternalAddress(NoAwaitTag, std::string const &, Options)
Deletes a single external IP address.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteExternalAddress(google::cloud::vmwareengine::v1::DeleteExternalAddressRequest const &, Options)
Deletes a single external IP address.
When you delete an external IP address, connectivity between the external IP address and the corresponding internal IP address is lost.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeleteExternalAddressRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteExternalAddress(NoAwaitTag, google::cloud::vmwareengine::v1::DeleteExternalAddressRequest const &, Options)
Deletes a single external IP address.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeleteExternalAddressRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteExternalAddress(google::longrunning::Operation const &, Options)
Deletes a single external IP address.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
ListSubnets(std::string const &, Options)
Lists subnets in a given private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to be queried for subnets. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::Subnet > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListSubnets(google::cloud::vmwareengine::v1::ListSubnetsRequest, Options)
Lists subnets in a given private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListSubnetsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::Subnet > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetSubnet(std::string const &, Options)
Gets details of a single subnet.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the subnet to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Subnet > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Subnet) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetSubnet(google::cloud::vmwareengine::v1::GetSubnetRequest const &, Options)
Gets details of a single subnet.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetSubnetRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Subnet > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Subnet) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateSubnet(google::cloud::vmwareengine::v1::Subnet const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of a single subnet.
Only fields specified in update_mask
are applied.
Note: This API is synchronous and always returns a successful google.longrunning.Operation
(LRO). The returned LRO will only have done
and response
fields.
Parameters | |
---|---|
Name | Description |
subnet |
google::cloud::vmwareengine::v1::Subnet const &
Required. Subnet description. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::Subnet > > |
A |
UpdateSubnet(NoAwaitTag, google::cloud::vmwareengine::v1::Subnet const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of a single subnet.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
subnet |
google::cloud::vmwareengine::v1::Subnet const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateSubnet(google::cloud::vmwareengine::v1::UpdateSubnetRequest const &, Options)
Updates the parameters of a single subnet.
Only fields specified in update_mask
are applied.
Note: This API is synchronous and always returns a successful google.longrunning.Operation
(LRO). The returned LRO will only have done
and response
fields.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateSubnetRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::Subnet > > |
A |
UpdateSubnet(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateSubnetRequest const &, Options)
Updates the parameters of a single subnet.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateSubnetRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateSubnet(google::longrunning::Operation const &, Options)
Updates the parameters of a single subnet.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::Subnet > > |
ListExternalAccessRules(std::string const &, Options)
Lists ExternalAccessRule
resources in the specified network policy.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the network policy to query for external access firewall rules. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::ExternalAccessRule > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListExternalAccessRules(google::cloud::vmwareengine::v1::ListExternalAccessRulesRequest, Options)
Lists ExternalAccessRule
resources in the specified network policy.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListExternalAccessRulesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::ExternalAccessRule > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetExternalAccessRule(std::string const &, Options)
Gets details of a single external access rule.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the external access firewall rule to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::ExternalAccessRule > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.ExternalAccessRule) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetExternalAccessRule(google::cloud::vmwareengine::v1::GetExternalAccessRuleRequest const &, Options)
Gets details of a single external access rule.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetExternalAccessRuleRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::ExternalAccessRule > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.ExternalAccessRule) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateExternalAccessRule(std::string const &, google::cloud::vmwareengine::v1::ExternalAccessRule const &, std::string const &, Options)
Creates a new external access rule in a given network policy.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the network policy to create a new external access firewall rule in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
external_access_rule |
google::cloud::vmwareengine::v1::ExternalAccessRule const &
Required. The initial description of a new external access rule. |
external_access_rule_id |
std::string const &
Required. The user-provided identifier of the
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAccessRule > > |
A |
CreateExternalAccessRule(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::ExternalAccessRule const &, std::string const &, Options)
Creates a new external access rule in a given network policy.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
external_access_rule |
google::cloud::vmwareengine::v1::ExternalAccessRule const &
|
external_access_rule_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateExternalAccessRule(google::cloud::vmwareengine::v1::CreateExternalAccessRuleRequest const &, Options)
Creates a new external access rule in a given network policy.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreateExternalAccessRuleRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAccessRule > > |
A |
CreateExternalAccessRule(NoAwaitTag, google::cloud::vmwareengine::v1::CreateExternalAccessRuleRequest const &, Options)
Creates a new external access rule in a given network policy.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreateExternalAccessRuleRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateExternalAccessRule(google::longrunning::Operation const &, Options)
Creates a new external access rule in a given network policy.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAccessRule > > |
UpdateExternalAccessRule(google::cloud::vmwareengine::v1::ExternalAccessRule const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of a single external access rule.
Only fields specified in update_mask
are applied.
Parameters | |
---|---|
Name | Description |
external_access_rule |
google::cloud::vmwareengine::v1::ExternalAccessRule const &
Required. Description of the external access rule. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAccessRule > > |
A |
UpdateExternalAccessRule(NoAwaitTag, google::cloud::vmwareengine::v1::ExternalAccessRule const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of a single external access rule.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
external_access_rule |
google::cloud::vmwareengine::v1::ExternalAccessRule const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateExternalAccessRule(google::cloud::vmwareengine::v1::UpdateExternalAccessRuleRequest const &, Options)
Updates the parameters of a single external access rule.
Only fields specified in update_mask
are applied.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateExternalAccessRuleRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAccessRule > > |
A |
UpdateExternalAccessRule(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateExternalAccessRuleRequest const &, Options)
Updates the parameters of a single external access rule.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateExternalAccessRuleRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateExternalAccessRule(google::longrunning::Operation const &, Options)
Updates the parameters of a single external access rule.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ExternalAccessRule > > |
DeleteExternalAccessRule(std::string const &, Options)
Deletes a single external access rule.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the external access firewall rule to delete. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteExternalAccessRule(NoAwaitTag, std::string const &, Options)
Deletes a single external access rule.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteExternalAccessRule(google::cloud::vmwareengine::v1::DeleteExternalAccessRuleRequest const &, Options)
Deletes a single external access rule.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeleteExternalAccessRuleRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteExternalAccessRule(NoAwaitTag, google::cloud::vmwareengine::v1::DeleteExternalAccessRuleRequest const &, Options)
Deletes a single external access rule.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeleteExternalAccessRuleRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteExternalAccessRule(google::longrunning::Operation const &, Options)
Deletes a single external access rule.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
ListLoggingServers(std::string const &, Options)
Lists logging servers configured for a given private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to be queried for logging servers. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::LoggingServer > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListLoggingServers(google::cloud::vmwareengine::v1::ListLoggingServersRequest, Options)
Lists logging servers configured for a given private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListLoggingServersRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::LoggingServer > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetLoggingServer(std::string const &, Options)
Gets details of a logging server.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the Logging Server to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::LoggingServer > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.LoggingServer) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetLoggingServer(google::cloud::vmwareengine::v1::GetLoggingServerRequest const &, Options)
Gets details of a logging server.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetLoggingServerRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::LoggingServer > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.LoggingServer) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateLoggingServer(std::string const &, google::cloud::vmwareengine::v1::LoggingServer const &, std::string const &, Options)
Create a new logging server for a given private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to create a new Logging Server in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
logging_server |
google::cloud::vmwareengine::v1::LoggingServer const &
Required. The initial description of a new logging server. |
logging_server_id |
std::string const &
Required. The user-provided identifier of the
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::LoggingServer > > |
A |
CreateLoggingServer(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::LoggingServer const &, std::string const &, Options)
Create a new logging server for a given private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
logging_server |
google::cloud::vmwareengine::v1::LoggingServer const &
|
logging_server_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateLoggingServer(google::cloud::vmwareengine::v1::CreateLoggingServerRequest const &, Options)
Create a new logging server for a given private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreateLoggingServerRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::LoggingServer > > |
A |
CreateLoggingServer(NoAwaitTag, google::cloud::vmwareengine::v1::CreateLoggingServerRequest const &, Options)
Create a new logging server for a given private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreateLoggingServerRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateLoggingServer(google::longrunning::Operation const &, Options)
Create a new logging server for a given private cloud.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::LoggingServer > > |
UpdateLoggingServer(google::cloud::vmwareengine::v1::LoggingServer const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of a single logging server.
Only fields specified in update_mask
are applied.
Parameters | |
---|---|
Name | Description |
logging_server |
google::cloud::vmwareengine::v1::LoggingServer const &
Required. Logging server description. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::LoggingServer > > |
A |
UpdateLoggingServer(NoAwaitTag, google::cloud::vmwareengine::v1::LoggingServer const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of a single logging server.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
logging_server |
google::cloud::vmwareengine::v1::LoggingServer const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateLoggingServer(google::cloud::vmwareengine::v1::UpdateLoggingServerRequest const &, Options)
Updates the parameters of a single logging server.
Only fields specified in update_mask
are applied.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateLoggingServerRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::LoggingServer > > |
A |
UpdateLoggingServer(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateLoggingServerRequest const &, Options)
Updates the parameters of a single logging server.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateLoggingServerRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateLoggingServer(google::longrunning::Operation const &, Options)
Updates the parameters of a single logging server.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::LoggingServer > > |
DeleteLoggingServer(std::string const &, Options)
Deletes a single logging server.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the logging server to delete. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteLoggingServer(NoAwaitTag, std::string const &, Options)
Deletes a single logging server.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteLoggingServer(google::cloud::vmwareengine::v1::DeleteLoggingServerRequest const &, Options)
Deletes a single logging server.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeleteLoggingServerRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteLoggingServer(NoAwaitTag, google::cloud::vmwareengine::v1::DeleteLoggingServerRequest const &, Options)
Deletes a single logging server.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeleteLoggingServerRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteLoggingServer(google::longrunning::Operation const &, Options)
Deletes a single logging server.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
ListNodeTypes(std::string const &, Options)
Lists node types.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location to be queried for node types. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::NodeType > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListNodeTypes(google::cloud::vmwareengine::v1::ListNodeTypesRequest, Options)
Lists node types.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListNodeTypesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::NodeType > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetNodeType(std::string const &, Options)
Gets details of a single NodeType
.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the node type to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::NodeType > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.NodeType) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetNodeType(google::cloud::vmwareengine::v1::GetNodeTypeRequest const &, Options)
Gets details of a single NodeType
.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetNodeTypeRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::NodeType > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.NodeType) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ShowNsxCredentials(std::string const &, Options)
Gets details of credentials for NSX appliance.
Parameters | |
---|---|
Name | Description |
private_cloud |
std::string const &
Required. The resource name of the private cloud to be queried for credentials. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Credentials > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Credentials) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ShowNsxCredentials(google::cloud::vmwareengine::v1::ShowNsxCredentialsRequest const &, Options)
Gets details of credentials for NSX appliance.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ShowNsxCredentialsRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Credentials > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Credentials) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ShowVcenterCredentials(std::string const &, Options)
Gets details of credentials for Vcenter appliance.
Parameters | |
---|---|
Name | Description |
private_cloud |
std::string const &
Required. The resource name of the private cloud to be queried for credentials. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Credentials > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Credentials) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ShowVcenterCredentials(google::cloud::vmwareengine::v1::ShowVcenterCredentialsRequest const &, Options)
Gets details of credentials for Vcenter appliance.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ShowVcenterCredentialsRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::Credentials > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.Credentials) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ResetNsxCredentials(std::string const &, Options)
Resets credentials of the NSX appliance.
Parameters | |
---|---|
Name | Description |
private_cloud |
std::string const &
Required. The resource name of the private cloud to reset credentials for. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
ResetNsxCredentials(NoAwaitTag, std::string const &, Options)
Resets credentials of the NSX appliance.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
private_cloud |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
ResetNsxCredentials(google::cloud::vmwareengine::v1::ResetNsxCredentialsRequest const &, Options)
Resets credentials of the NSX appliance.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ResetNsxCredentialsRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
ResetNsxCredentials(NoAwaitTag, google::cloud::vmwareengine::v1::ResetNsxCredentialsRequest const &, Options)
Resets credentials of the NSX appliance.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::ResetNsxCredentialsRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
ResetNsxCredentials(google::longrunning::Operation const &, Options)
Resets credentials of the NSX appliance.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
ResetVcenterCredentials(std::string const &, Options)
Resets credentials of the Vcenter appliance.
Parameters | |
---|---|
Name | Description |
private_cloud |
std::string const &
Required. The resource name of the private cloud to reset credentials for. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
ResetVcenterCredentials(NoAwaitTag, std::string const &, Options)
Resets credentials of the Vcenter appliance.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
private_cloud |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
ResetVcenterCredentials(google::cloud::vmwareengine::v1::ResetVcenterCredentialsRequest const &, Options)
Resets credentials of the Vcenter appliance.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ResetVcenterCredentialsRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
A |
ResetVcenterCredentials(NoAwaitTag, google::cloud::vmwareengine::v1::ResetVcenterCredentialsRequest const &, Options)
Resets credentials of the Vcenter appliance.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::ResetVcenterCredentialsRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
ResetVcenterCredentials(google::longrunning::Operation const &, Options)
Resets credentials of the Vcenter appliance.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateCloud > > |
GetDnsForwarding(std::string const &, Options)
Gets details of the DnsForwarding
config.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of a |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::DnsForwarding > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.DnsForwarding) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetDnsForwarding(google::cloud::vmwareengine::v1::GetDnsForwardingRequest const &, Options)
Gets details of the DnsForwarding
config.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetDnsForwardingRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::DnsForwarding > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.DnsForwarding) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateDnsForwarding(google::cloud::vmwareengine::v1::DnsForwarding const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of the DnsForwarding
config, like associated domains.
Only fields specified in update_mask
are applied.
Parameters | |
---|---|
Name | Description |
dns_forwarding |
google::cloud::vmwareengine::v1::DnsForwarding const &
Required. DnsForwarding config details. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::DnsForwarding > > |
A |
UpdateDnsForwarding(NoAwaitTag, google::cloud::vmwareengine::v1::DnsForwarding const &, google::protobuf::FieldMask const &, Options)
Updates the parameters of the DnsForwarding
config, like associated domains.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
dns_forwarding |
google::cloud::vmwareengine::v1::DnsForwarding const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateDnsForwarding(google::cloud::vmwareengine::v1::UpdateDnsForwardingRequest const &, Options)
Updates the parameters of the DnsForwarding
config, like associated domains.
Only fields specified in update_mask
are applied.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateDnsForwardingRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::DnsForwarding > > |
A |
UpdateDnsForwarding(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateDnsForwardingRequest const &, Options)
Updates the parameters of the DnsForwarding
config, like associated domains.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateDnsForwardingRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateDnsForwarding(google::longrunning::Operation const &, Options)
Updates the parameters of the DnsForwarding
config, like associated domains.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::DnsForwarding > > |
GetNetworkPeering(std::string const &, Options)
Retrieves a NetworkPeering
resource by its resource name.
The resource contains details of the network peering, such as peered networks, import and export custom route configurations, and peering state. NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the network peering to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::NetworkPeering > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.NetworkPeering) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetNetworkPeering(google::cloud::vmwareengine::v1::GetNetworkPeeringRequest const &, Options)
Retrieves a NetworkPeering
resource by its resource name.
The resource contains details of the network peering, such as peered networks, import and export custom route configurations, and peering state. NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetNetworkPeeringRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::NetworkPeering > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.NetworkPeering) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListNetworkPeerings(std::string const &, Options)
Lists NetworkPeering
resources in a given project.
NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location (global) to query for network peerings. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::NetworkPeering > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListNetworkPeerings(google::cloud::vmwareengine::v1::ListNetworkPeeringsRequest, Options)
Lists NetworkPeering
resources in a given project.
NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListNetworkPeeringsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::NetworkPeering > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
CreateNetworkPeering(std::string const &, google::cloud::vmwareengine::v1::NetworkPeering const &, std::string const &, Options)
Creates a new network peering between the peer network and VMware Engine network provided in a NetworkPeering
resource.
NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location to create the new network peering in. This value is always |
network_peering |
google::cloud::vmwareengine::v1::NetworkPeering const &
Required. The initial description of the new network peering. |
network_peering_id |
std::string const &
Required. The user-provided identifier of the new
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPeering > > |
A |
CreateNetworkPeering(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::NetworkPeering const &, std::string const &, Options)
Creates a new network peering between the peer network and VMware Engine network provided in a NetworkPeering
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
network_peering |
google::cloud::vmwareengine::v1::NetworkPeering const &
|
network_peering_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateNetworkPeering(google::cloud::vmwareengine::v1::CreateNetworkPeeringRequest const &, Options)
Creates a new network peering between the peer network and VMware Engine network provided in a NetworkPeering
resource.
NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreateNetworkPeeringRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPeering > > |
A |
CreateNetworkPeering(NoAwaitTag, google::cloud::vmwareengine::v1::CreateNetworkPeeringRequest const &, Options)
Creates a new network peering between the peer network and VMware Engine network provided in a NetworkPeering
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreateNetworkPeeringRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateNetworkPeering(google::longrunning::Operation const &, Options)
Creates a new network peering between the peer network and VMware Engine network provided in a NetworkPeering
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPeering > > |
DeleteNetworkPeering(std::string const &, Options)
Deletes a NetworkPeering
resource.
When a network peering is deleted for a VMware Engine network, the peer network becomes inaccessible to that VMware Engine network. NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the network peering to be deleted. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteNetworkPeering(NoAwaitTag, std::string const &, Options)
Deletes a NetworkPeering
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteNetworkPeering(google::cloud::vmwareengine::v1::DeleteNetworkPeeringRequest const &, Options)
Deletes a NetworkPeering
resource.
When a network peering is deleted for a VMware Engine network, the peer network becomes inaccessible to that VMware Engine network. NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeleteNetworkPeeringRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteNetworkPeering(NoAwaitTag, google::cloud::vmwareengine::v1::DeleteNetworkPeeringRequest const &, Options)
Deletes a NetworkPeering
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeleteNetworkPeeringRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteNetworkPeering(google::longrunning::Operation const &, Options)
Deletes a NetworkPeering
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
UpdateNetworkPeering(google::cloud::vmwareengine::v1::NetworkPeering const &, google::protobuf::FieldMask const &, Options)
Modifies a NetworkPeering
resource.
Only the description
field can be updated. Only fields specified in updateMask
are applied. NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
network_peering |
google::cloud::vmwareengine::v1::NetworkPeering const &
Required. Network peering description. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPeering > > |
A |
UpdateNetworkPeering(NoAwaitTag, google::cloud::vmwareengine::v1::NetworkPeering const &, google::protobuf::FieldMask const &, Options)
Modifies a NetworkPeering
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
network_peering |
google::cloud::vmwareengine::v1::NetworkPeering const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateNetworkPeering(google::cloud::vmwareengine::v1::UpdateNetworkPeeringRequest const &, Options)
Modifies a NetworkPeering
resource.
Only the description
field can be updated. Only fields specified in updateMask
are applied. NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateNetworkPeeringRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPeering > > |
A |
UpdateNetworkPeering(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateNetworkPeeringRequest const &, Options)
Modifies a NetworkPeering
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateNetworkPeeringRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateNetworkPeering(google::longrunning::Operation const &, Options)
Modifies a NetworkPeering
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPeering > > |
ListPeeringRoutes(std::string const &, Options)
Lists the network peering routes exchanged over a peering connection.
NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the network peering to retrieve peering routes from. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::PeeringRoute > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListPeeringRoutes(google::cloud::vmwareengine::v1::ListPeeringRoutesRequest, Options)
Lists the network peering routes exchanged over a peering connection.
NetworkPeering is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListPeeringRoutesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::PeeringRoute > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
CreateHcxActivationKey(std::string const &, google::cloud::vmwareengine::v1::HcxActivationKey const &, std::string const &, Options)
Creates a new HCX activation key in a given private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to create the key for. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
hcx_activation_key |
google::cloud::vmwareengine::v1::HcxActivationKey const &
Required. The initial description of a new HCX activation key. When creating a new key, this field must be an empty object. |
hcx_activation_key_id |
std::string const &
Required. The user-provided identifier of the
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::HcxActivationKey > > |
A |
CreateHcxActivationKey(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::HcxActivationKey const &, std::string const &, Options)
Creates a new HCX activation key in a given private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
hcx_activation_key |
google::cloud::vmwareengine::v1::HcxActivationKey const &
|
hcx_activation_key_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateHcxActivationKey(google::cloud::vmwareengine::v1::CreateHcxActivationKeyRequest const &, Options)
Creates a new HCX activation key in a given private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreateHcxActivationKeyRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::HcxActivationKey > > |
A |
CreateHcxActivationKey(NoAwaitTag, google::cloud::vmwareengine::v1::CreateHcxActivationKeyRequest const &, Options)
Creates a new HCX activation key in a given private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreateHcxActivationKeyRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateHcxActivationKey(google::longrunning::Operation const &, Options)
Creates a new HCX activation key in a given private cloud.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::HcxActivationKey > > |
ListHcxActivationKeys(std::string const &, Options)
Lists HcxActivationKey
resources in a given private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to be queried for HCX activation keys. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::HcxActivationKey > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListHcxActivationKeys(google::cloud::vmwareengine::v1::ListHcxActivationKeysRequest, Options)
Lists HcxActivationKey
resources in a given private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListHcxActivationKeysRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::HcxActivationKey > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetHcxActivationKey(std::string const &, Options)
Retrieves a HcxActivationKey
resource by its resource name.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the HCX activation key to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::HcxActivationKey > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.HcxActivationKey) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetHcxActivationKey(google::cloud::vmwareengine::v1::GetHcxActivationKeyRequest const &, Options)
Retrieves a HcxActivationKey
resource by its resource name.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetHcxActivationKeyRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::HcxActivationKey > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.HcxActivationKey) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetNetworkPolicy(std::string const &, Options)
Retrieves a NetworkPolicy
resource by its resource name.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the network policy to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::NetworkPolicy > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.NetworkPolicy) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetNetworkPolicy(google::cloud::vmwareengine::v1::GetNetworkPolicyRequest const &, Options)
Retrieves a NetworkPolicy
resource by its resource name.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetNetworkPolicyRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::NetworkPolicy > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.NetworkPolicy) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListNetworkPolicies(std::string const &, Options)
Lists NetworkPolicy
resources in a specified project and location.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location (region) to query for network policies. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::NetworkPolicy > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListNetworkPolicies(google::cloud::vmwareengine::v1::ListNetworkPoliciesRequest, Options)
Lists NetworkPolicy
resources in a specified project and location.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListNetworkPoliciesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::NetworkPolicy > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
CreateNetworkPolicy(std::string const &, google::cloud::vmwareengine::v1::NetworkPolicy const &, std::string const &, Options)
Creates a new network policy in a given VMware Engine network of a project and location (region).
A new network policy cannot be created if another network policy already exists in the same scope.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location (region) to create the new network policy in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
network_policy |
google::cloud::vmwareengine::v1::NetworkPolicy const &
Required. The network policy configuration to use in the request. |
network_policy_id |
std::string const &
Required. The user-provided identifier of the network policy to be created. This identifier must be unique within parent
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPolicy > > |
A |
CreateNetworkPolicy(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::NetworkPolicy const &, std::string const &, Options)
Creates a new network policy in a given VMware Engine network of a project and location (region).
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
network_policy |
google::cloud::vmwareengine::v1::NetworkPolicy const &
|
network_policy_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateNetworkPolicy(google::cloud::vmwareengine::v1::CreateNetworkPolicyRequest const &, Options)
Creates a new network policy in a given VMware Engine network of a project and location (region).
A new network policy cannot be created if another network policy already exists in the same scope.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreateNetworkPolicyRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPolicy > > |
A |
CreateNetworkPolicy(NoAwaitTag, google::cloud::vmwareengine::v1::CreateNetworkPolicyRequest const &, Options)
Creates a new network policy in a given VMware Engine network of a project and location (region).
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreateNetworkPolicyRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateNetworkPolicy(google::longrunning::Operation const &, Options)
Creates a new network policy in a given VMware Engine network of a project and location (region).
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPolicy > > |
UpdateNetworkPolicy(google::cloud::vmwareengine::v1::NetworkPolicy const &, google::protobuf::FieldMask const &, Options)
Modifies a NetworkPolicy
resource.
Only the following fields can be updated: internet_access
, external_ip
, edge_services_cidr
. Only fields specified in updateMask
are applied. When updating a network policy, the external IP network service can only be disabled if there are no external IP addresses present in the scope of the policy. Also, a NetworkService
cannot be updated when NetworkService.state
is set to RECONCILING
.
During operation processing, the resource is temporarily in the ACTIVE
state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes.
Parameters | |
---|---|
Name | Description |
network_policy |
google::cloud::vmwareengine::v1::NetworkPolicy const &
Required. Network policy description. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPolicy > > |
A |
UpdateNetworkPolicy(NoAwaitTag, google::cloud::vmwareengine::v1::NetworkPolicy const &, google::protobuf::FieldMask const &, Options)
Modifies a NetworkPolicy
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
network_policy |
google::cloud::vmwareengine::v1::NetworkPolicy const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateNetworkPolicy(google::cloud::vmwareengine::v1::UpdateNetworkPolicyRequest const &, Options)
Modifies a NetworkPolicy
resource.
Only the following fields can be updated: internet_access
, external_ip
, edge_services_cidr
. Only fields specified in updateMask
are applied. When updating a network policy, the external IP network service can only be disabled if there are no external IP addresses present in the scope of the policy. Also, a NetworkService
cannot be updated when NetworkService.state
is set to RECONCILING
.
During operation processing, the resource is temporarily in the ACTIVE
state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateNetworkPolicyRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPolicy > > |
A |
UpdateNetworkPolicy(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateNetworkPolicyRequest const &, Options)
Modifies a NetworkPolicy
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateNetworkPolicyRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateNetworkPolicy(google::longrunning::Operation const &, Options)
Modifies a NetworkPolicy
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::NetworkPolicy > > |
DeleteNetworkPolicy(std::string const &, Options)
Deletes a NetworkPolicy
resource.
A network policy cannot be deleted when NetworkService.state
is set to RECONCILING
for either its external IP or internet access service.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the network policy to delete. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteNetworkPolicy(NoAwaitTag, std::string const &, Options)
Deletes a NetworkPolicy
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteNetworkPolicy(google::cloud::vmwareengine::v1::DeleteNetworkPolicyRequest const &, Options)
Deletes a NetworkPolicy
resource.
A network policy cannot be deleted when NetworkService.state
is set to RECONCILING
for either its external IP or internet access service.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeleteNetworkPolicyRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteNetworkPolicy(NoAwaitTag, google::cloud::vmwareengine::v1::DeleteNetworkPolicyRequest const &, Options)
Deletes a NetworkPolicy
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeleteNetworkPolicyRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteNetworkPolicy(google::longrunning::Operation const &, Options)
Deletes a NetworkPolicy
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
ListManagementDnsZoneBindings(std::string const &, Options)
Lists Consumer VPCs bound to Management DNS Zone of a given private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to be queried for management DNS zone bindings. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListManagementDnsZoneBindings(google::cloud::vmwareengine::v1::ListManagementDnsZoneBindingsRequest, Options)
Lists Consumer VPCs bound to Management DNS Zone of a given private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListManagementDnsZoneBindingsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetManagementDnsZoneBinding(std::string const &, Options)
Retrieves a 'ManagementDnsZoneBinding' resource by its resource name.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the management DNS zone binding to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.ManagementDnsZoneBinding) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetManagementDnsZoneBinding(google::cloud::vmwareengine::v1::GetManagementDnsZoneBindingRequest const &, Options)
Retrieves a 'ManagementDnsZoneBinding' resource by its resource name.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetManagementDnsZoneBindingRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.ManagementDnsZoneBinding) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateManagementDnsZoneBinding(std::string const &, google::cloud::vmwareengine::v1::ManagementDnsZoneBinding const &, std::string const &, Options)
Creates a new ManagementDnsZoneBinding
resource in a private cloud.
This RPC creates the DNS binding and the resource that represents the DNS binding of the consumer VPC network to the management DNS zone. A management DNS zone is the Cloud DNS cross-project binding zone that VMware Engine creates for each private cloud. It contains FQDNs and corresponding IP addresses for the private cloud's ESXi hosts and management VM appliances like vCenter and NSX Manager.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private cloud to create a new management DNS zone binding for. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
management_dns_zone_binding |
google::cloud::vmwareengine::v1::ManagementDnsZoneBinding const &
Required. The initial values for a new management DNS zone binding. |
management_dns_zone_binding_id |
std::string const &
Required. The user-provided identifier of the
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > > |
A |
CreateManagementDnsZoneBinding(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::ManagementDnsZoneBinding const &, std::string const &, Options)
Creates a new ManagementDnsZoneBinding
resource in a private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
management_dns_zone_binding |
google::cloud::vmwareengine::v1::ManagementDnsZoneBinding const &
|
management_dns_zone_binding_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateManagementDnsZoneBinding(google::cloud::vmwareengine::v1::CreateManagementDnsZoneBindingRequest const &, Options)
Creates a new ManagementDnsZoneBinding
resource in a private cloud.
This RPC creates the DNS binding and the resource that represents the DNS binding of the consumer VPC network to the management DNS zone. A management DNS zone is the Cloud DNS cross-project binding zone that VMware Engine creates for each private cloud. It contains FQDNs and corresponding IP addresses for the private cloud's ESXi hosts and management VM appliances like vCenter and NSX Manager.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreateManagementDnsZoneBindingRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > > |
A |
CreateManagementDnsZoneBinding(NoAwaitTag, google::cloud::vmwareengine::v1::CreateManagementDnsZoneBindingRequest const &, Options)
Creates a new ManagementDnsZoneBinding
resource in a private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreateManagementDnsZoneBindingRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateManagementDnsZoneBinding(google::longrunning::Operation const &, Options)
Creates a new ManagementDnsZoneBinding
resource in a private cloud.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > > |
UpdateManagementDnsZoneBinding(google::cloud::vmwareengine::v1::ManagementDnsZoneBinding const &, google::protobuf::FieldMask const &, Options)
Updates a ManagementDnsZoneBinding
resource.
Only fields specified in update_mask
are applied.
Parameters | |
---|---|
Name | Description |
management_dns_zone_binding |
google::cloud::vmwareengine::v1::ManagementDnsZoneBinding const &
Required. New values to update the management DNS zone binding with. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > > |
A |
UpdateManagementDnsZoneBinding(NoAwaitTag, google::cloud::vmwareengine::v1::ManagementDnsZoneBinding const &, google::protobuf::FieldMask const &, Options)
Updates a ManagementDnsZoneBinding
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
management_dns_zone_binding |
google::cloud::vmwareengine::v1::ManagementDnsZoneBinding const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateManagementDnsZoneBinding(google::cloud::vmwareengine::v1::UpdateManagementDnsZoneBindingRequest const &, Options)
Updates a ManagementDnsZoneBinding
resource.
Only fields specified in update_mask
are applied.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateManagementDnsZoneBindingRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > > |
A |
UpdateManagementDnsZoneBinding(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateManagementDnsZoneBindingRequest const &, Options)
Updates a ManagementDnsZoneBinding
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateManagementDnsZoneBindingRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateManagementDnsZoneBinding(google::longrunning::Operation const &, Options)
Updates a ManagementDnsZoneBinding
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > > |
DeleteManagementDnsZoneBinding(std::string const &, Options)
Deletes a ManagementDnsZoneBinding
resource.
When a management DNS zone binding is deleted, the corresponding consumer VPC network is no longer bound to the management DNS zone.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the management DNS zone binding to delete. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteManagementDnsZoneBinding(NoAwaitTag, std::string const &, Options)
Deletes a ManagementDnsZoneBinding
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteManagementDnsZoneBinding(google::cloud::vmwareengine::v1::DeleteManagementDnsZoneBindingRequest const &, Options)
Deletes a ManagementDnsZoneBinding
resource.
When a management DNS zone binding is deleted, the corresponding consumer VPC network is no longer bound to the management DNS zone.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeleteManagementDnsZoneBindingRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteManagementDnsZoneBinding(NoAwaitTag, google::cloud::vmwareengine::v1::DeleteManagementDnsZoneBindingRequest const &, Options)
Deletes a ManagementDnsZoneBinding
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeleteManagementDnsZoneBindingRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteManagementDnsZoneBinding(google::longrunning::Operation const &, Options)
Deletes a ManagementDnsZoneBinding
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
RepairManagementDnsZoneBinding(std::string const &, Options)
Retries to create a ManagementDnsZoneBinding
resource that is in failed state.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the management DNS zone binding to repair. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > > |
A |
RepairManagementDnsZoneBinding(NoAwaitTag, std::string const &, Options)
Retries to create a ManagementDnsZoneBinding
resource that is in failed state.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
RepairManagementDnsZoneBinding(google::cloud::vmwareengine::v1::RepairManagementDnsZoneBindingRequest const &, Options)
Retries to create a ManagementDnsZoneBinding
resource that is in failed state.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::RepairManagementDnsZoneBindingRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > > |
A |
RepairManagementDnsZoneBinding(NoAwaitTag, google::cloud::vmwareengine::v1::RepairManagementDnsZoneBindingRequest const &, Options)
Retries to create a ManagementDnsZoneBinding
resource that is in failed state.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::RepairManagementDnsZoneBindingRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
RepairManagementDnsZoneBinding(google::longrunning::Operation const &, Options)
Retries to create a ManagementDnsZoneBinding
resource that is in failed state.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::ManagementDnsZoneBinding > > |
CreateVmwareEngineNetwork(std::string const &, google::cloud::vmwareengine::v1::VmwareEngineNetwork const &, std::string const &, Options)
Creates a new VMware Engine network that can be used by a private cloud.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location to create the new VMware Engine network in. A VMware Engine network of type |
vmware_engine_network |
google::cloud::vmwareengine::v1::VmwareEngineNetwork const &
Required. The initial description of the new VMware Engine network. |
vmware_engine_network_id |
std::string const &
Required. The user-provided identifier of the new VMware Engine network. This identifier must be unique among VMware Engine network resources within the parent and becomes the final token in the name URI. The identifier must meet the following requirements:
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::VmwareEngineNetwork > > |
A |
CreateVmwareEngineNetwork(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::VmwareEngineNetwork const &, std::string const &, Options)
Creates a new VMware Engine network that can be used by a private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
vmware_engine_network |
google::cloud::vmwareengine::v1::VmwareEngineNetwork const &
|
vmware_engine_network_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateVmwareEngineNetwork(google::cloud::vmwareengine::v1::CreateVmwareEngineNetworkRequest const &, Options)
Creates a new VMware Engine network that can be used by a private cloud.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreateVmwareEngineNetworkRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::VmwareEngineNetwork > > |
A |
CreateVmwareEngineNetwork(NoAwaitTag, google::cloud::vmwareengine::v1::CreateVmwareEngineNetworkRequest const &, Options)
Creates a new VMware Engine network that can be used by a private cloud.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreateVmwareEngineNetworkRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreateVmwareEngineNetwork(google::longrunning::Operation const &, Options)
Creates a new VMware Engine network that can be used by a private cloud.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::VmwareEngineNetwork > > |
UpdateVmwareEngineNetwork(google::cloud::vmwareengine::v1::VmwareEngineNetwork const &, google::protobuf::FieldMask const &, Options)
Modifies a VMware Engine network resource.
Only the following fields can be updated: description
. Only fields specified in updateMask
are applied.
Parameters | |
---|---|
Name | Description |
vmware_engine_network |
google::cloud::vmwareengine::v1::VmwareEngineNetwork const &
Required. VMware Engine network description. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the VMware Engine network resource by the update. The fields specified in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::VmwareEngineNetwork > > |
A |
UpdateVmwareEngineNetwork(NoAwaitTag, google::cloud::vmwareengine::v1::VmwareEngineNetwork const &, google::protobuf::FieldMask const &, Options)
Modifies a VMware Engine network resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
vmware_engine_network |
google::cloud::vmwareengine::v1::VmwareEngineNetwork const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateVmwareEngineNetwork(google::cloud::vmwareengine::v1::UpdateVmwareEngineNetworkRequest const &, Options)
Modifies a VMware Engine network resource.
Only the following fields can be updated: description
. Only fields specified in updateMask
are applied.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdateVmwareEngineNetworkRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::VmwareEngineNetwork > > |
A |
UpdateVmwareEngineNetwork(NoAwaitTag, google::cloud::vmwareengine::v1::UpdateVmwareEngineNetworkRequest const &, Options)
Modifies a VMware Engine network resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdateVmwareEngineNetworkRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdateVmwareEngineNetwork(google::longrunning::Operation const &, Options)
Modifies a VMware Engine network resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::VmwareEngineNetwork > > |
DeleteVmwareEngineNetwork(std::string const &, Options)
Deletes a VmwareEngineNetwork
resource.
You can only delete a VMware Engine network after all resources that refer to it are deleted. For example, a private cloud, a network peering, and a network policy can all refer to the same VMware Engine network.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the VMware Engine network to be deleted. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteVmwareEngineNetwork(NoAwaitTag, std::string const &, Options)
Deletes a VmwareEngineNetwork
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteVmwareEngineNetwork(google::cloud::vmwareengine::v1::DeleteVmwareEngineNetworkRequest const &, Options)
Deletes a VmwareEngineNetwork
resource.
You can only delete a VMware Engine network after all resources that refer to it are deleted. For example, a private cloud, a network peering, and a network policy can all refer to the same VMware Engine network.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeleteVmwareEngineNetworkRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeleteVmwareEngineNetwork(NoAwaitTag, google::cloud::vmwareengine::v1::DeleteVmwareEngineNetworkRequest const &, Options)
Deletes a VmwareEngineNetwork
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeleteVmwareEngineNetworkRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeleteVmwareEngineNetwork(google::longrunning::Operation const &, Options)
Deletes a VmwareEngineNetwork
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
GetVmwareEngineNetwork(std::string const &, Options)
Retrieves a VmwareEngineNetwork
resource by its resource name.
The resource contains details of the VMware Engine network, such as its VMware Engine network type, peered networks in a service project, and state (for example, CREATING
, ACTIVE
, DELETING
).
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the VMware Engine network to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::VmwareEngineNetwork > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.VmwareEngineNetwork) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetVmwareEngineNetwork(google::cloud::vmwareengine::v1::GetVmwareEngineNetworkRequest const &, Options)
Retrieves a VmwareEngineNetwork
resource by its resource name.
The resource contains details of the VMware Engine network, such as its VMware Engine network type, peered networks in a service project, and state (for example, CREATING
, ACTIVE
, DELETING
).
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetVmwareEngineNetworkRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::VmwareEngineNetwork > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.VmwareEngineNetwork) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListVmwareEngineNetworks(std::string const &, Options)
Lists VmwareEngineNetwork
resources in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location to query for VMware Engine networks. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::VmwareEngineNetwork > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListVmwareEngineNetworks(google::cloud::vmwareengine::v1::ListVmwareEngineNetworksRequest, Options)
Lists VmwareEngineNetwork
resources in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListVmwareEngineNetworksRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::VmwareEngineNetwork > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
CreatePrivateConnection(std::string const &, google::cloud::vmwareengine::v1::PrivateConnection const &, std::string const &, Options)
Creates a new private connection that can be used for accessing private Clouds.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location to create the new private connection in. Private connection is a regional resource. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
private_connection |
google::cloud::vmwareengine::v1::PrivateConnection const &
Required. The initial description of the new private connection. |
private_connection_id |
std::string const &
Required. The user-provided identifier of the new private connection. This identifier must be unique among private connection resources within the parent and becomes the final token in the name URI. The identifier must meet the following requirements:
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateConnection > > |
A |
CreatePrivateConnection(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::PrivateConnection const &, std::string const &, Options)
Creates a new private connection that can be used for accessing private Clouds.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
parent |
std::string const &
|
private_connection |
google::cloud::vmwareengine::v1::PrivateConnection const &
|
private_connection_id |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreatePrivateConnection(google::cloud::vmwareengine::v1::CreatePrivateConnectionRequest const &, Options)
Creates a new private connection that can be used for accessing private Clouds.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::CreatePrivateConnectionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateConnection > > |
A |
CreatePrivateConnection(NoAwaitTag, google::cloud::vmwareengine::v1::CreatePrivateConnectionRequest const &, Options)
Creates a new private connection that can be used for accessing private Clouds.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::CreatePrivateConnectionRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
CreatePrivateConnection(google::longrunning::Operation const &, Options)
Creates a new private connection that can be used for accessing private Clouds.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateConnection > > |
GetPrivateConnection(std::string const &, Options)
Retrieves a PrivateConnection
resource by its resource name.
The resource contains details of the private connection, such as connected network, routing mode and state.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the private connection to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::PrivateConnection > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.PrivateConnection) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetPrivateConnection(google::cloud::vmwareengine::v1::GetPrivateConnectionRequest const &, Options)
Retrieves a PrivateConnection
resource by its resource name.
The resource contains details of the private connection, such as connected network, routing mode and state.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetPrivateConnectionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::PrivateConnection > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.PrivateConnection) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListPrivateConnections(std::string const &, Options)
Lists PrivateConnection
resources in a given project and location.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the location to query for private connections. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::PrivateConnection > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListPrivateConnections(google::cloud::vmwareengine::v1::ListPrivateConnectionsRequest, Options)
Lists PrivateConnection
resources in a given project and location.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListPrivateConnectionsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::PrivateConnection > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
UpdatePrivateConnection(google::cloud::vmwareengine::v1::PrivateConnection const &, google::protobuf::FieldMask const &, Options)
Modifies a PrivateConnection
resource.
Only description
and routing_mode
fields can be updated. Only fields specified in updateMask
are applied.
Parameters | |
---|---|
Name | Description |
private_connection |
google::cloud::vmwareengine::v1::PrivateConnection const &
Required. Private connection description. |
update_mask |
google::protobuf::FieldMask const &
Required. Field mask is used to specify the fields to be overwritten in the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateConnection > > |
A |
UpdatePrivateConnection(NoAwaitTag, google::cloud::vmwareengine::v1::PrivateConnection const &, google::protobuf::FieldMask const &, Options)
Modifies a PrivateConnection
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
private_connection |
google::cloud::vmwareengine::v1::PrivateConnection const &
|
update_mask |
google::protobuf::FieldMask const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdatePrivateConnection(google::cloud::vmwareengine::v1::UpdatePrivateConnectionRequest const &, Options)
Modifies a PrivateConnection
resource.
Only description
and routing_mode
fields can be updated. Only fields specified in updateMask
are applied.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::UpdatePrivateConnectionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateConnection > > |
A |
UpdatePrivateConnection(NoAwaitTag, google::cloud::vmwareengine::v1::UpdatePrivateConnectionRequest const &, Options)
Modifies a PrivateConnection
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::UpdatePrivateConnectionRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
UpdatePrivateConnection(google::longrunning::Operation const &, Options)
Modifies a PrivateConnection
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::PrivateConnection > > |
DeletePrivateConnection(std::string const &, Options)
Deletes a PrivateConnection
resource.
When a private connection is deleted for a VMware Engine network, the connected network becomes inaccessible to that VMware Engine network.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the private connection to be deleted. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeletePrivateConnection(NoAwaitTag, std::string const &, Options)
Deletes a PrivateConnection
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeletePrivateConnection(google::cloud::vmwareengine::v1::DeletePrivateConnectionRequest const &, Options)
Deletes a PrivateConnection
resource.
When a private connection is deleted for a VMware Engine network, the connected network becomes inaccessible to that VMware Engine network.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::DeletePrivateConnectionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
A |
DeletePrivateConnection(NoAwaitTag, google::cloud::vmwareengine::v1::DeletePrivateConnectionRequest const &, Options)
Deletes a PrivateConnection
resource.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::DeletePrivateConnectionRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
DeletePrivateConnection(google::longrunning::Operation const &, Options)
Deletes a PrivateConnection
resource.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::OperationMetadata > > |
ListPrivateConnectionPeeringRoutes(std::string const &, Options)
Lists the private connection routes exchanged over a peering connection.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The resource name of the private connection to retrieve peering routes from. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::PeeringRoute > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListPrivateConnectionPeeringRoutes(google::cloud::vmwareengine::v1::ListPrivateConnectionPeeringRoutesRequest, Options)
Lists the private connection routes exchanged over a peering connection.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::ListPrivateConnectionPeeringRoutesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::vmwareengine::v1::PeeringRoute > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GrantDnsBindPermission(std::string const &, google::cloud::vmwareengine::v1::Principal const &, Options)
Grants the bind permission to the customer provided principal(user / service account) to bind their DNS zone with the intranet VPC associated with the project.
DnsBindPermission is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The name of the resource which stores the users/service accounts having the permission to bind to the corresponding intranet VPC of the consumer project. DnsBindPermission is a global resource. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
principal |
google::cloud::vmwareengine::v1::Principal const &
Required. The consumer provided user/service account which needs to be granted permission to bind with the intranet VPC corresponding to the consumer project. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::DnsBindPermission > > |
A |
GrantDnsBindPermission(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::Principal const &, Options)
Grants the bind permission to the customer provided principal(user / service account) to bind their DNS zone with the intranet VPC associated with the project.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
principal |
google::cloud::vmwareengine::v1::Principal const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
GrantDnsBindPermission(google::cloud::vmwareengine::v1::GrantDnsBindPermissionRequest const &, Options)
Grants the bind permission to the customer provided principal(user / service account) to bind their DNS zone with the intranet VPC associated with the project.
DnsBindPermission is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GrantDnsBindPermissionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::DnsBindPermission > > |
A |
GrantDnsBindPermission(NoAwaitTag, google::cloud::vmwareengine::v1::GrantDnsBindPermissionRequest const &, Options)
Grants the bind permission to the customer provided principal(user / service account) to bind their DNS zone with the intranet VPC associated with the project.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::GrantDnsBindPermissionRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
GrantDnsBindPermission(google::longrunning::Operation const &, Options)
Grants the bind permission to the customer provided principal(user / service account) to bind their DNS zone with the intranet VPC associated with the project.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::DnsBindPermission > > |
GetDnsBindPermission(std::string const &, Options)
Gets all the principals having bind permission on the intranet VPC associated with the consumer project granted by the Grant API.
DnsBindPermission is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The name of the resource which stores the users/service accounts having the permission to bind to the corresponding intranet VPC of the consumer project. DnsBindPermission is a global resource. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::DnsBindPermission > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.DnsBindPermission) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetDnsBindPermission(google::cloud::vmwareengine::v1::GetDnsBindPermissionRequest const &, Options)
Gets all the principals having bind permission on the intranet VPC associated with the consumer project granted by the Grant API.
DnsBindPermission is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::GetDnsBindPermissionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::vmwareengine::v1::DnsBindPermission > |
the result of the RPC. The response message type (google.cloud.vmwareengine.v1.DnsBindPermission) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
RevokeDnsBindPermission(std::string const &, google::cloud::vmwareengine::v1::Principal const &, Options)
Revokes the bind permission from the customer provided principal(user / service account) on the intranet VPC associated with the consumer project.
DnsBindPermission is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The name of the resource which stores the users/service accounts having the permission to bind to the corresponding intranet VPC of the consumer project. DnsBindPermission is a global resource. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: |
principal |
google::cloud::vmwareengine::v1::Principal const &
Required. The consumer provided user/service account which needs to be granted permission to bind with the intranet VPC corresponding to the consumer project. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::DnsBindPermission > > |
A |
RevokeDnsBindPermission(NoAwaitTag, std::string const &, google::cloud::vmwareengine::v1::Principal const &, Options)
Revokes the bind permission from the customer provided principal(user / service account) on the intranet VPC associated with the consumer project.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
name |
std::string const &
|
principal |
google::cloud::vmwareengine::v1::Principal const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
RevokeDnsBindPermission(google::cloud::vmwareengine::v1::RevokeDnsBindPermissionRequest const &, Options)
Revokes the bind permission from the customer provided principal(user / service account) on the intranet VPC associated with the consumer project.
DnsBindPermission is a global resource and location can only be global.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::vmwareengine::v1::RevokeDnsBindPermissionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::DnsBindPermission > > |
A |
RevokeDnsBindPermission(NoAwaitTag, google::cloud::vmwareengine::v1::RevokeDnsBindPermissionRequest const &, Options)
Revokes the bind permission from the customer provided principal(user / service account) on the intranet VPC associated with the consumer project.
Specifying the NoAwaitTag
immediately returns the [google::longrunning::Operation
] that corresponds to the Long Running Operation that has been started. No polling for operation status occurs.
Parameters | |
---|---|
Name | Description |
|
NoAwaitTag
|
request |
google::cloud::vmwareengine::v1::RevokeDnsBindPermissionRequest const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
RevokeDnsBindPermission(google::longrunning::Operation const &, Options)
Revokes the bind permission from the customer provided principal(user / service account) on the intranet VPC associated with the consumer project.
This method accepts a google::longrunning::Operation
that corresponds to a previously started Long Running Operation (LRO) and polls the status of the LRO in the background.
Parameters | |
---|---|
Name | Description |
operation |
google::longrunning::Operation const &
|
opts |
Options
|
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::vmwareengine::v1::DnsBindPermission > > |
ListLocations(google::cloud::location::ListLocationsRequest, Options)
Lists information about the supported locations for this service.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::location::ListLocationsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::location::Location > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetLocation(google::cloud::location::GetLocationRequest const &, Options)
Gets information about a location.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::location::GetLocationRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::location::Location > |
the result of the RPC. The response message type (google.cloud.location.Location) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
SetIamPolicy(google::iam::v1::SetIamPolicyRequest const &, Options)
Sets the access control policy on the specified resource.
Replaces any existing policy.
Can return NOT_FOUND
, INVALID_ARGUMENT
, and PERMISSION_DENIED
errors.
Parameters | |
---|---|
Name | Description |
request |
google::iam::v1::SetIamPolicyRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::iam::v1::Policy > |
the result of the RPC. The response message type (google.iam.v1.Policy) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetIamPolicy(google::iam::v1::GetIamPolicyRequest const &, Options)
Gets the access control policy for a resource.
Returns an empty policy if the resource exists and does not have a policy set.
Parameters | |
---|---|
Name | Description |
request |
google::iam::v1::GetIamPolicyRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::iam::v1::Policy > |
the result of the RPC. The response message type (google.iam.v1.Policy) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
TestIamPermissions(google::iam::v1::TestIamPermissionsRequest const &, Options)
Returns permissions that a caller has on the specified resource.
If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND
error.
Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
Parameters | |
---|---|
Name | Description |
request |
google::iam::v1::TestIamPermissionsRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::iam::v1::TestIamPermissionsResponse > |
the result of the RPC. The response message type (google.iam.v1.TestIamPermissionsResponse) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListOperations(std::string const &, std::string const &, Options)
Lists operations that match the specified filter in the request.
If the server doesn't support this method, it returns UNIMPLEMENTED
.
NOTE: the name
binding allows API services to override the binding to use different resource name schemes, such as users/*/operations
. To override the binding, API services can add a binding such as "/v1/{name=users/*}/operations"
to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
The name of the operation's parent resource. |
filter |
std::string const &
The standard list filter. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::longrunning::Operation > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListOperations(google::longrunning::ListOperationsRequest, Options)
Lists operations that match the specified filter in the request.
If the server doesn't support this method, it returns UNIMPLEMENTED
.
NOTE: the name
binding allows API services to override the binding to use different resource name schemes, such as users/*/operations
. To override the binding, API services can add a binding such as "/v1/{name=users/*}/operations"
to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.
Parameters | |
---|---|
Name | Description |
request |
google::longrunning::ListOperationsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::longrunning::Operation > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetOperation(std::string const &, Options)
Gets the latest state of a long-running operation.
Clients can use this method to poll the operation result at intervals as recommended by the API service.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
The name of the operation resource. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
the result of the RPC. The response message type (google.longrunning.Operation) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetOperation(google::longrunning::GetOperationRequest const &, Options)
Gets the latest state of a long-running operation.
Clients can use this method to poll the operation result at intervals as recommended by the API service.
Parameters | |
---|---|
Name | Description |
request |
google::longrunning::GetOperationRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::longrunning::Operation > |
the result of the RPC. The response message type (google.longrunning.Operation) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
DeleteOperation(std::string const &, Options)
Deletes a long-running operation.
This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED
.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
The name of the operation resource to be deleted. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
DeleteOperation(google::longrunning::DeleteOperationRequest const &, Options)
Deletes a long-running operation.
This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED
.
Parameters | |
---|---|
Name | Description |
request |
google::longrunning::DeleteOperationRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |