Reference documentation and code samples for the Google Cloud Compute V1 API class Google::Cloud::Compute::V1::RegionDisks::Rest::Client.
REST client for the RegionDisks service.
The RegionDisks API.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
Configure the RegionDisks Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all RegionDisks clients ::Google::Cloud::Compute::V1::RegionDisks::Rest::Client.configure do |config| config.timeout = 10.0 end
#add_resource_policies
def add_resource_policies(request, options = nil) -> ::Gapic::GenericLRO::Operation
def add_resource_policies(disk: nil, project: nil, region: nil, region_disks_add_resource_policies_request_resource: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
Adds existing resource policies to a regional disk. You can only add one policy which will be applied to this disk for scheduling snapshot creation.
def add_resource_policies(request, options = nil) -> ::Gapic::GenericLRO::Operation
add_resource_policies
via a request object, either of type
AddResourcePoliciesRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::AddResourcePoliciesRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def add_resource_policies(disk: nil, project: nil, region: nil, region_disks_add_resource_policies_request_resource: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
add_resource_policies
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk (::String) — The disk name for this request.
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request.
- region_disks_add_resource_policies_request_resource (::Google::Cloud::Compute::V1::RegionDisksAddResourcePoliciesRequest, ::Hash) — The body resource for this request
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::AddResourcePoliciesRegionDiskRequest.new # Call the add_resource_policies method. result = client.add_resource_policies request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#bulk_insert
def bulk_insert(request, options = nil) -> ::Gapic::GenericLRO::Operation
def bulk_insert(bulk_insert_disk_resource_resource: nil, project: nil, region: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
Bulk create a set of disks.
def bulk_insert(request, options = nil) -> ::Gapic::GenericLRO::Operation
bulk_insert
via a request object, either of type
BulkInsertRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::BulkInsertRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def bulk_insert(bulk_insert_disk_resource_resource: nil, project: nil, region: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
bulk_insert
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- bulk_insert_disk_resource_resource (::Google::Cloud::Compute::V1::BulkInsertDiskResource, ::Hash) — The body resource for this request
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request.
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::BulkInsertRegionDiskRequest.new # Call the bulk_insert method. result = client.bulk_insert request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the RegionDisks Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#create_snapshot
def create_snapshot(request, options = nil) -> ::Gapic::GenericLRO::Operation
def create_snapshot(disk: nil, project: nil, region: nil, request_id: nil, snapshot_resource: nil) -> ::Gapic::GenericLRO::Operation
Creates a snapshot of a specified persistent disk. For regular snapshot creation, consider using snapshots.insert instead, as that method supports more features, such as creating snapshots in a project different from the source disk project.
def create_snapshot(request, options = nil) -> ::Gapic::GenericLRO::Operation
create_snapshot
via a request object, either of type
CreateSnapshotRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::CreateSnapshotRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def create_snapshot(disk: nil, project: nil, region: nil, request_id: nil, snapshot_resource: nil) -> ::Gapic::GenericLRO::Operation
create_snapshot
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk (::String) — Name of the regional persistent disk to snapshot.
- project (::String) — Project ID for this request.
- region (::String) — Name of the region for this request.
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- snapshot_resource (::Google::Cloud::Compute::V1::Snapshot, ::Hash) — The body resource for this request
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::CreateSnapshotRegionDiskRequest.new # Call the create_snapshot method. result = client.create_snapshot request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#delete
def delete(request, options = nil) -> ::Gapic::GenericLRO::Operation
def delete(disk: nil, project: nil, region: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
Deletes the specified regional persistent disk. Deleting a regional disk removes all the replicas of its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.
def delete(request, options = nil) -> ::Gapic::GenericLRO::Operation
delete
via a request object, either of type
DeleteRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::DeleteRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def delete(disk: nil, project: nil, region: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
delete
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk (::String) — Name of the regional persistent disk to delete.
- project (::String) — Project ID for this request.
- region (::String) — Name of the region for this request.
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::DeleteRegionDiskRequest.new # Call the delete method. result = client.delete request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#get
def get(request, options = nil) -> ::Google::Cloud::Compute::V1::Disk
def get(disk: nil, project: nil, region: nil) -> ::Google::Cloud::Compute::V1::Disk
Returns a specified regional persistent disk.
def get(request, options = nil) -> ::Google::Cloud::Compute::V1::Disk
get
via a request object, either of type
GetRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::GetRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get(disk: nil, project: nil, region: nil) -> ::Google::Cloud::Compute::V1::Disk
get
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk (::String) — Name of the regional persistent disk to return.
- project (::String) — Project ID for this request.
- region (::String) — Name of the region for this request.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Compute::V1::Disk)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::GetRegionDiskRequest.new # Call the get method. result = client.get request # The returned object is of type Google::Cloud::Compute::V1::Disk. p result
#get_iam_policy
def get_iam_policy(request, options = nil) -> ::Google::Cloud::Compute::V1::Policy
def get_iam_policy(options_requested_policy_version: nil, project: nil, region: nil, resource: nil) -> ::Google::Cloud::Compute::V1::Policy
Gets the access control policy for a resource. May be empty if no such policy or resource exists.
def get_iam_policy(request, options = nil) -> ::Google::Cloud::Compute::V1::Policy
get_iam_policy
via a request object, either of type
GetIamPolicyRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::GetIamPolicyRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get_iam_policy(options_requested_policy_version: nil, project: nil, region: nil, resource: nil) -> ::Google::Cloud::Compute::V1::Policy
get_iam_policy
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- options_requested_policy_version (::Integer) — Requested IAM Policy version.
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request.
- resource (::String) — Name or id of the resource for this request.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Compute::V1::Policy)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::GetIamPolicyRegionDiskRequest.new # Call the get_iam_policy method. result = client.get_iam_policy request # The returned object is of type Google::Cloud::Compute::V1::Policy. p result
#initialize
def initialize() { |config| ... } -> Client
Create a new RegionDisks REST client object.
- (config) — Configure the RegionDisks client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new do |config| config.timeout = 10.0 end
#insert
def insert(request, options = nil) -> ::Gapic::GenericLRO::Operation
def insert(disk_resource: nil, project: nil, region: nil, request_id: nil, source_image: nil) -> ::Gapic::GenericLRO::Operation
Creates a persistent regional disk in the specified project using the data included in the request.
def insert(request, options = nil) -> ::Gapic::GenericLRO::Operation
insert
via a request object, either of type
InsertRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::InsertRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def insert(disk_resource: nil, project: nil, region: nil, request_id: nil, source_image: nil) -> ::Gapic::GenericLRO::Operation
insert
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk_resource (::Google::Cloud::Compute::V1::Disk, ::Hash) — The body resource for this request
- project (::String) — Project ID for this request.
- region (::String) — Name of the region for this request.
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- source_image (::String) — Source image to restore onto a disk. This field is optional.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::InsertRegionDiskRequest.new # Call the insert method. result = client.insert request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#list
def list(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Compute::V1::Disk>
def list(filter: nil, max_results: nil, order_by: nil, page_token: nil, project: nil, region: nil, return_partial_success: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Compute::V1::Disk>
Retrieves the list of persistent disks contained within the specified region.
def list(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Compute::V1::Disk>
list
via a request object, either of type
ListRegionDisksRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::ListRegionDisksRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def list(filter: nil, max_results: nil, order_by: nil, page_token: nil, project: nil, region: nil, return_partial_success: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Compute::V1::Disk>
list
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
filter (::String) — A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request. If you want to use AIP-160, your expression must specify the field name, an operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The operator must be either
=
,!=
,>
,<
,<=
,>=
or:
. For example, if you are filtering Compute Engine instances, you can exclude instances namedexample-instance
by specifyingname != example-instance
. The:*
comparison can be used to test whether a key has been defined. For example, to find all objects withowner
label use:labels.owner:*
You can also filter nested fields. For example, you could specifyscheduling.automaticRestart = false
to include instances only if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels. To filter on multiple expressions, provide each separate expression within parentheses. For example:(scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake")
By default, each expression is anAND
expression. However, you can includeAND
andOR
expressions explicitly. For example:(cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.automaticRestart = true)
If you want to use a regular expression, use theeq
(equal) orne
(not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples:fieldname eq unquoted literal
fieldname eq 'single quoted literal'
fieldname eq "double quoted literal"
(fieldname1 eq literal) (fieldname2 ne "literal")
The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field. For example, to filter for instances that do not end with name "instance", you would usename ne .*instance
. You cannot combine constraints on multiple fields using regular expressions. -
max_results (::Integer) — The maximum number of results per page that should be returned. If the number of available results is larger than
maxResults
, Compute Engine returns anextPageToken
that can be used to get the next page of results in subsequent list requests. Acceptable values are0
to500
, inclusive. (Default:500
) -
order_by (::String) — Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. You can also sort results in descending order based on the creation timestamp using
orderBy="creationTimestamp desc"
. This sorts results based on thecreationTimestamp
field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first. Currently, only sorting byname
orcreationTimestamp desc
is supported. -
page_token (::String) — Specifies a page token to use. Set
pageToken
to thenextPageToken
returned by a previous list request to get the next page of results. - project (::String) — Project ID for this request.
- region (::String) — Name of the region for this request.
- return_partial_success (::Boolean) — Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Cloud::Compute::V1::Disk>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Cloud::Compute::V1::Disk>)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::ListRegionDisksRequest.new # Call the list method. result = client.list request # The returned object is of type Google::Cloud::Compute::V1::DiskList. p result
#region_operations
def region_operations() -> ::Google::Cloud::Compute::V1::RegionOperations::Rest::Client
Get the associated client for long-running operations via RegionOperations.
#remove_resource_policies
def remove_resource_policies(request, options = nil) -> ::Gapic::GenericLRO::Operation
def remove_resource_policies(disk: nil, project: nil, region: nil, region_disks_remove_resource_policies_request_resource: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
Removes resource policies from a regional disk.
def remove_resource_policies(request, options = nil) -> ::Gapic::GenericLRO::Operation
remove_resource_policies
via a request object, either of type
Google::Cloud::Compute::V1::RemoveResourcePoliciesRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::RemoveResourcePoliciesRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def remove_resource_policies(disk: nil, project: nil, region: nil, region_disks_remove_resource_policies_request_resource: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
remove_resource_policies
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk (::String) — The disk name for this request.
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request.
- region_disks_remove_resource_policies_request_resource (::Google::Cloud::Compute::V1::RegionDisksRemoveResourcePoliciesRequest, ::Hash) — The body resource for this request
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::RemoveResourcePoliciesRegionDiskRequest.new # Call the remove_resource_policies method. result = client.remove_resource_policies request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#resize
def resize(request, options = nil) -> ::Gapic::GenericLRO::Operation
def resize(disk: nil, project: nil, region: nil, region_disks_resize_request_resource: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
Resizes the specified regional persistent disk.
def resize(request, options = nil) -> ::Gapic::GenericLRO::Operation
resize
via a request object, either of type
Google::Cloud::Compute::V1::ResizeRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::ResizeRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def resize(disk: nil, project: nil, region: nil, region_disks_resize_request_resource: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
resize
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk (::String) — Name of the regional persistent disk.
- project (::String) — The project ID for this request.
- region (::String) — Name of the region for this request.
- region_disks_resize_request_resource (::Google::Cloud::Compute::V1::RegionDisksResizeRequest, ::Hash) — The body resource for this request
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::ResizeRegionDiskRequest.new # Call the resize method. result = client.resize request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#set_iam_policy
def set_iam_policy(request, options = nil) -> ::Google::Cloud::Compute::V1::Policy
def set_iam_policy(project: nil, region: nil, region_set_policy_request_resource: nil, resource: nil) -> ::Google::Cloud::Compute::V1::Policy
Sets the access control policy on the specified resource. Replaces any existing policy.
def set_iam_policy(request, options = nil) -> ::Google::Cloud::Compute::V1::Policy
set_iam_policy
via a request object, either of type
SetIamPolicyRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::SetIamPolicyRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def set_iam_policy(project: nil, region: nil, region_set_policy_request_resource: nil, resource: nil) -> ::Google::Cloud::Compute::V1::Policy
set_iam_policy
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request.
- region_set_policy_request_resource (::Google::Cloud::Compute::V1::RegionSetPolicyRequest, ::Hash) — The body resource for this request
- resource (::String) — Name or id of the resource for this request.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Compute::V1::Policy)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::SetIamPolicyRegionDiskRequest.new # Call the set_iam_policy method. result = client.set_iam_policy request # The returned object is of type Google::Cloud::Compute::V1::Policy. p result
#set_labels
def set_labels(request, options = nil) -> ::Gapic::GenericLRO::Operation
def set_labels(project: nil, region: nil, region_set_labels_request_resource: nil, request_id: nil, resource: nil) -> ::Gapic::GenericLRO::Operation
Sets the labels on the target regional disk.
def set_labels(request, options = nil) -> ::Gapic::GenericLRO::Operation
set_labels
via a request object, either of type
SetLabelsRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::SetLabelsRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def set_labels(project: nil, region: nil, region_set_labels_request_resource: nil, request_id: nil, resource: nil) -> ::Gapic::GenericLRO::Operation
set_labels
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- project (::String) — Project ID for this request.
- region (::String) — The region for this request.
- region_set_labels_request_resource (::Google::Cloud::Compute::V1::RegionSetLabelsRequest, ::Hash) — The body resource for this request
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- resource (::String) — Name or id of the resource for this request.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::SetLabelsRegionDiskRequest.new # Call the set_labels method. result = client.set_labels request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#start_async_replication
def start_async_replication(request, options = nil) -> ::Gapic::GenericLRO::Operation
def start_async_replication(disk: nil, project: nil, region: nil, region_disks_start_async_replication_request_resource: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
Starts asynchronous replication. Must be invoked on the primary disk.
def start_async_replication(request, options = nil) -> ::Gapic::GenericLRO::Operation
start_async_replication
via a request object, either of type
StartAsyncReplicationRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::StartAsyncReplicationRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def start_async_replication(disk: nil, project: nil, region: nil, region_disks_start_async_replication_request_resource: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
start_async_replication
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk (::String) — The name of the persistent disk.
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request.
- region_disks_start_async_replication_request_resource (::Google::Cloud::Compute::V1::RegionDisksStartAsyncReplicationRequest, ::Hash) — The body resource for this request
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::StartAsyncReplicationRegionDiskRequest.new # Call the start_async_replication method. result = client.start_async_replication request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#stop_async_replication
def stop_async_replication(request, options = nil) -> ::Gapic::GenericLRO::Operation
def stop_async_replication(disk: nil, project: nil, region: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
Stops asynchronous replication. Can be invoked either on the primary or on the secondary disk.
def stop_async_replication(request, options = nil) -> ::Gapic::GenericLRO::Operation
stop_async_replication
via a request object, either of type
StopAsyncReplicationRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::StopAsyncReplicationRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def stop_async_replication(disk: nil, project: nil, region: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
stop_async_replication
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk (::String) — The name of the persistent disk.
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request.
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::StopAsyncReplicationRegionDiskRequest.new # Call the stop_async_replication method. result = client.stop_async_replication request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#stop_group_async_replication
def stop_group_async_replication(request, options = nil) -> ::Gapic::GenericLRO::Operation
def stop_group_async_replication(disks_stop_group_async_replication_resource_resource: nil, project: nil, region: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
Stops asynchronous replication for a consistency group of disks. Can be invoked either in the primary or secondary scope.
def stop_group_async_replication(request, options = nil) -> ::Gapic::GenericLRO::Operation
stop_group_async_replication
via a request object, either of type
StopGroupAsyncReplicationRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::StopGroupAsyncReplicationRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def stop_group_async_replication(disks_stop_group_async_replication_resource_resource: nil, project: nil, region: nil, request_id: nil) -> ::Gapic::GenericLRO::Operation
stop_group_async_replication
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disks_stop_group_async_replication_resource_resource (::Google::Cloud::Compute::V1::DisksStopGroupAsyncReplicationResource, ::Hash) — The body resource for this request
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request. This must be the region of the primary or secondary disks in the consistency group.
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::StopGroupAsyncReplicationRegionDiskRequest.new # Call the stop_group_async_replication method. result = client.stop_group_async_replication request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result
#test_iam_permissions
def test_iam_permissions(request, options = nil) -> ::Google::Cloud::Compute::V1::TestPermissionsResponse
def test_iam_permissions(project: nil, region: nil, resource: nil, test_permissions_request_resource: nil) -> ::Google::Cloud::Compute::V1::TestPermissionsResponse
Returns permissions that a caller has on the specified resource.
def test_iam_permissions(request, options = nil) -> ::Google::Cloud::Compute::V1::TestPermissionsResponse
test_iam_permissions
via a request object, either of type
TestIamPermissionsRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::TestIamPermissionsRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def test_iam_permissions(project: nil, region: nil, resource: nil, test_permissions_request_resource: nil) -> ::Google::Cloud::Compute::V1::TestPermissionsResponse
test_iam_permissions
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request.
- resource (::String) — Name or id of the resource for this request.
- test_permissions_request_resource (::Google::Cloud::Compute::V1::TestPermissionsRequest, ::Hash) — The body resource for this request
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Compute::V1::TestPermissionsResponse)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::TestIamPermissionsRegionDiskRequest.new # Call the test_iam_permissions method. result = client.test_iam_permissions request # The returned object is of type Google::Cloud::Compute::V1::TestPermissionsResponse. p result
#universe_domain
def universe_domain() -> String
The effective universe domain
- (String)
#update
def update(request, options = nil) -> ::Gapic::GenericLRO::Operation
def update(disk: nil, disk_resource: nil, paths: nil, project: nil, region: nil, request_id: nil, update_mask: nil) -> ::Gapic::GenericLRO::Operation
Update the specified disk with the data included in the request. Update is performed only on selected fields included as part of update-mask. Only the following fields can be modified: user_license.
def update(request, options = nil) -> ::Gapic::GenericLRO::Operation
update
via a request object, either of type
UpdateRegionDiskRequest or an equivalent Hash.
- request (::Google::Cloud::Compute::V1::UpdateRegionDiskRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def update(disk: nil, disk_resource: nil, paths: nil, project: nil, region: nil, request_id: nil, update_mask: nil) -> ::Gapic::GenericLRO::Operation
update
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- disk (::String) — The disk name for this request.
- disk_resource (::Google::Cloud::Compute::V1::Disk, ::Hash) — The body resource for this request
- paths (::String)
- project (::String) — Project ID for this request.
- region (::String) — The name of the region for this request.
- request_id (::String) — An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- update_mask (::String) — update_mask indicates fields to be updated as part of this request.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::GenericLRO::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::GenericLRO::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/compute/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Compute::V1::RegionDisks::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Compute::V1::UpdateRegionDiskRequest.new # Call the update method. result = client.update request # The returned object is of type Google::Cloud::Compute::V1::Operation. p result