pub struct RegionDiskMethods<'a, C>where
C: 'a,{ /* private fields */ }Expand description
A builder providing access to all methods supported on regionDisk resources.
It is not used directly, but through the Compute hub.
§Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate google_compute1 as compute1;
use compute1::{Compute, FieldMask, hyper_rustls, hyper_util, yup_oauth2};
let secret: yup_oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
secret,
yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).build().await.unwrap();
let client = hyper_util::client::legacy::Client::builder(
hyper_util::rt::TokioExecutor::new()
)
.build(
hyper_rustls::HttpsConnectorBuilder::new()
.with_native_roots()
.unwrap()
.https_or_http()
.enable_http1()
.build()
);
let mut hub = Compute::new(client, auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `add_resource_policies(...)`, `bulk_insert(...)`, `create_snapshot(...)`, `delete(...)`, `get(...)`, `get_iam_policy(...)`, `insert(...)`, `list(...)`, `remove_resource_policies(...)`, `resize(...)`, `set_iam_policy(...)`, `set_labels(...)`, `start_async_replication(...)`, `stop_async_replication(...)`, `stop_group_async_replication(...)`, `test_iam_permissions(...)` and `update(...)`
// to build up your call.
let rb = hub.region_disks();Implementations§
Source§impl<'a, C> RegionDiskMethods<'a, C>
impl<'a, C> RegionDiskMethods<'a, C>
Sourcepub fn add_resource_policies(
&self,
request: RegionDisksAddResourcePoliciesRequest,
project: &str,
region: &str,
disk: &str,
) -> RegionDiskAddResourcePolicyCall<'a, C>
pub fn add_resource_policies( &self, request: RegionDisksAddResourcePoliciesRequest, project: &str, region: &str, disk: &str, ) -> RegionDiskAddResourcePolicyCall<'a, C>
Create a builder to help you perform the following task:
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.
§Arguments
request- No description provided.project- Project ID for this request.region- The name of the region for this request.disk- The disk name for this request.
Sourcepub fn bulk_insert(
&self,
request: BulkInsertDiskResource,
project: &str,
region: &str,
) -> RegionDiskBulkInsertCall<'a, C>
pub fn bulk_insert( &self, request: BulkInsertDiskResource, project: &str, region: &str, ) -> RegionDiskBulkInsertCall<'a, C>
Create a builder to help you perform the following task:
Bulk create a set of disks.
§Arguments
request- No description provided.project- Project ID for this request.region- The name of the region for this request.
Sourcepub fn create_snapshot(
&self,
request: Snapshot,
project: &str,
region: &str,
disk: &str,
) -> RegionDiskCreateSnapshotCall<'a, C>
pub fn create_snapshot( &self, request: Snapshot, project: &str, region: &str, disk: &str, ) -> RegionDiskCreateSnapshotCall<'a, C>
Create a builder to help you perform the following task:
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.
§Arguments
request- No description provided.project- Project ID for this request.region- Name of the region for this request.disk- Name of the regional persistent disk to snapshot.
Sourcepub fn delete(
&self,
project: &str,
region: &str,
disk: &str,
) -> RegionDiskDeleteCall<'a, C>
pub fn delete( &self, project: &str, region: &str, disk: &str, ) -> RegionDiskDeleteCall<'a, C>
Create a builder to help you perform the following task:
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.
§Arguments
project- Project ID for this request.region- Name of the region for this request.disk- Name of the regional persistent disk to delete.
Sourcepub fn get(
&self,
project: &str,
region: &str,
disk: &str,
) -> RegionDiskGetCall<'a, C>
pub fn get( &self, project: &str, region: &str, disk: &str, ) -> RegionDiskGetCall<'a, C>
Create a builder to help you perform the following task:
Returns a specified regional persistent disk.
§Arguments
project- Project ID for this request.region- Name of the region for this request.disk- Name of the regional persistent disk to return.
Sourcepub fn get_iam_policy(
&self,
project: &str,
region: &str,
resource: &str,
) -> RegionDiskGetIamPolicyCall<'a, C>
pub fn get_iam_policy( &self, project: &str, region: &str, resource: &str, ) -> RegionDiskGetIamPolicyCall<'a, C>
Create a builder to help you perform the following task:
Gets the access control policy for a resource. May be empty if no such policy or resource exists.
§Arguments
project- Project ID for this request.region- The name of the region for this request.resource- Name or id of the resource for this request.
Sourcepub fn insert(
&self,
request: Disk,
project: &str,
region: &str,
) -> RegionDiskInsertCall<'a, C>
pub fn insert( &self, request: Disk, project: &str, region: &str, ) -> RegionDiskInsertCall<'a, C>
Create a builder to help you perform the following task:
Creates a persistent regional disk in the specified project using the data included in the request.
§Arguments
request- No description provided.project- Project ID for this request.region- Name of the region for this request.
Sourcepub fn list(&self, project: &str, region: &str) -> RegionDiskListCall<'a, C>
pub fn list(&self, project: &str, region: &str) -> RegionDiskListCall<'a, C>
Create a builder to help you perform the following task:
Retrieves the list of persistent disks contained within the specified region.
§Arguments
project- Project ID for this request.region- Name of the region for this request.
Sourcepub fn remove_resource_policies(
&self,
request: RegionDisksRemoveResourcePoliciesRequest,
project: &str,
region: &str,
disk: &str,
) -> RegionDiskRemoveResourcePolicyCall<'a, C>
pub fn remove_resource_policies( &self, request: RegionDisksRemoveResourcePoliciesRequest, project: &str, region: &str, disk: &str, ) -> RegionDiskRemoveResourcePolicyCall<'a, C>
Create a builder to help you perform the following task:
Removes resource policies from a regional disk.
§Arguments
request- No description provided.project- Project ID for this request.region- The name of the region for this request.disk- The disk name for this request.
Sourcepub fn resize(
&self,
request: RegionDisksResizeRequest,
project: &str,
region: &str,
disk: &str,
) -> RegionDiskResizeCall<'a, C>
pub fn resize( &self, request: RegionDisksResizeRequest, project: &str, region: &str, disk: &str, ) -> RegionDiskResizeCall<'a, C>
Create a builder to help you perform the following task:
Resizes the specified regional persistent disk.
§Arguments
request- No description provided.project- The project ID for this request.region- Name of the region for this request.disk- Name of the regional persistent disk.
Sourcepub fn set_iam_policy(
&self,
request: RegionSetPolicyRequest,
project: &str,
region: &str,
resource: &str,
) -> RegionDiskSetIamPolicyCall<'a, C>
pub fn set_iam_policy( &self, request: RegionSetPolicyRequest, project: &str, region: &str, resource: &str, ) -> RegionDiskSetIamPolicyCall<'a, C>
Create a builder to help you perform the following task:
Sets the access control policy on the specified resource. Replaces any existing policy.
§Arguments
request- No description provided.project- Project ID for this request.region- The name of the region for this request.resource- Name or id of the resource for this request.
Sourcepub fn set_labels(
&self,
request: RegionSetLabelsRequest,
project: &str,
region: &str,
resource: &str,
) -> RegionDiskSetLabelCall<'a, C>
pub fn set_labels( &self, request: RegionSetLabelsRequest, project: &str, region: &str, resource: &str, ) -> RegionDiskSetLabelCall<'a, C>
Create a builder to help you perform the following task:
Sets the labels on the target regional disk.
§Arguments
request- No description provided.project- Project ID for this request.region- The region for this request.resource- Name or id of the resource for this request.
Sourcepub fn start_async_replication(
&self,
request: RegionDisksStartAsyncReplicationRequest,
project: &str,
region: &str,
disk: &str,
) -> RegionDiskStartAsyncReplicationCall<'a, C>
pub fn start_async_replication( &self, request: RegionDisksStartAsyncReplicationRequest, project: &str, region: &str, disk: &str, ) -> RegionDiskStartAsyncReplicationCall<'a, C>
Create a builder to help you perform the following task:
Starts asynchronous replication. Must be invoked on the primary disk.
§Arguments
request- No description provided.project- Project ID for this request.region- The name of the region for this request.disk- The name of the persistent disk.
Sourcepub fn stop_async_replication(
&self,
project: &str,
region: &str,
disk: &str,
) -> RegionDiskStopAsyncReplicationCall<'a, C>
pub fn stop_async_replication( &self, project: &str, region: &str, disk: &str, ) -> RegionDiskStopAsyncReplicationCall<'a, C>
Create a builder to help you perform the following task:
Stops asynchronous replication. Can be invoked either on the primary or on the secondary disk.
§Arguments
project- Project ID for this request.region- The name of the region for this request.disk- The name of the persistent disk.
Sourcepub fn stop_group_async_replication(
&self,
request: DisksStopGroupAsyncReplicationResource,
project: &str,
region: &str,
) -> RegionDiskStopGroupAsyncReplicationCall<'a, C>
pub fn stop_group_async_replication( &self, request: DisksStopGroupAsyncReplicationResource, project: &str, region: &str, ) -> RegionDiskStopGroupAsyncReplicationCall<'a, C>
Create a builder to help you perform the following task:
Stops asynchronous replication for a consistency group of disks. Can be invoked either in the primary or secondary scope.
§Arguments
request- No description provided.project- Project ID for this request.region- The name of the region for this request. This must be the region of the primary or secondary disks in the consistency group.
Sourcepub fn test_iam_permissions(
&self,
request: TestPermissionsRequest,
project: &str,
region: &str,
resource: &str,
) -> RegionDiskTestIamPermissionCall<'a, C>
pub fn test_iam_permissions( &self, request: TestPermissionsRequest, project: &str, region: &str, resource: &str, ) -> RegionDiskTestIamPermissionCall<'a, C>
Create a builder to help you perform the following task:
Returns permissions that a caller has on the specified resource.
§Arguments
request- No description provided.project- Project ID for this request.region- The name of the region for this request.resource- Name or id of the resource for this request.
Sourcepub fn update(
&self,
request: Disk,
project: &str,
region: &str,
disk: &str,
) -> RegionDiskUpdateCall<'a, C>
pub fn update( &self, request: Disk, project: &str, region: &str, disk: &str, ) -> RegionDiskUpdateCall<'a, C>
Create a builder to help you perform the following task:
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.
§Arguments
request- No description provided.project- Project ID for this request.region- The name of the region for this request.disk- The disk name for this request.
Trait Implementations§
impl<'a, C> MethodsBuilder for RegionDiskMethods<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for RegionDiskMethods<'a, C>
impl<'a, C> !RefUnwindSafe for RegionDiskMethods<'a, C>
impl<'a, C> Send for RegionDiskMethods<'a, C>where
C: Sync,
impl<'a, C> Sync for RegionDiskMethods<'a, C>where
C: Sync,
impl<'a, C> Unpin for RegionDiskMethods<'a, C>
impl<'a, C> !UnwindSafe for RegionDiskMethods<'a, C>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more