pub struct DiskMethods<'a, C>where
C: 'a,{ /* private fields */ }
Expand description
A builder providing access to all methods supported on disk 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(...)`, `aggregated_list(...)`, `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.disks();
Implementations§
Source§impl<'a, C> DiskMethods<'a, C>
impl<'a, C> DiskMethods<'a, C>
Sourcepub fn add_resource_policies(
&self,
request: DisksAddResourcePoliciesRequest,
project: &str,
zone: &str,
disk: &str,
) -> DiskAddResourcePolicyCall<'a, C>
pub fn add_resource_policies( &self, request: DisksAddResourcePoliciesRequest, project: &str, zone: &str, disk: &str, ) -> DiskAddResourcePolicyCall<'a, C>
Create a builder to help you perform the following task:
Adds existing resource policies to a 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.zone
- The name of the zone for this request.disk
- The disk name for this request.
Sourcepub fn aggregated_list(&self, project: &str) -> DiskAggregatedListCall<'a, C>
pub fn aggregated_list(&self, project: &str) -> DiskAggregatedListCall<'a, C>
Create a builder to help you perform the following task:
Retrieves an aggregated list of persistent disks. To prevent failure, Google recommends that you set the returnPartialSuccess
parameter to true
.
§Arguments
project
- Project ID for this request.
Sourcepub fn bulk_insert(
&self,
request: BulkInsertDiskResource,
project: &str,
zone: &str,
) -> DiskBulkInsertCall<'a, C>
pub fn bulk_insert( &self, request: BulkInsertDiskResource, project: &str, zone: &str, ) -> DiskBulkInsertCall<'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.zone
- The name of the zone for this request.
Sourcepub fn create_snapshot(
&self,
request: Snapshot,
project: &str,
zone: &str,
disk: &str,
) -> DiskCreateSnapshotCall<'a, C>
pub fn create_snapshot( &self, request: Snapshot, project: &str, zone: &str, disk: &str, ) -> DiskCreateSnapshotCall<'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.zone
- The name of the zone for this request.disk
- Name of the persistent disk to snapshot.
Sourcepub fn delete(
&self,
project: &str,
zone: &str,
disk: &str,
) -> DiskDeleteCall<'a, C>
pub fn delete( &self, project: &str, zone: &str, disk: &str, ) -> DiskDeleteCall<'a, C>
Create a builder to help you perform the following task:
Deletes the specified persistent disk. Deleting a disk removes 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.zone
- The name of the zone for this request.disk
- Name of the persistent disk to delete.
Sourcepub fn get(&self, project: &str, zone: &str, disk: &str) -> DiskGetCall<'a, C>
pub fn get(&self, project: &str, zone: &str, disk: &str) -> DiskGetCall<'a, C>
Create a builder to help you perform the following task:
Returns the specified persistent disk.
§Arguments
project
- Project ID for this request.zone
- The name of the zone for this request.disk
- Name of the persistent disk to return.
Sourcepub fn get_iam_policy(
&self,
project: &str,
zone: &str,
resource: &str,
) -> DiskGetIamPolicyCall<'a, C>
pub fn get_iam_policy( &self, project: &str, zone: &str, resource: &str, ) -> DiskGetIamPolicyCall<'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.zone
- The name of the zone for this request.resource
- Name or id of the resource for this request.
Sourcepub fn insert(
&self,
request: Disk,
project: &str,
zone: &str,
) -> DiskInsertCall<'a, C>
pub fn insert( &self, request: Disk, project: &str, zone: &str, ) -> DiskInsertCall<'a, C>
Create a builder to help you perform the following task:
Creates a persistent disk in the specified project using the data in the request. You can create a disk from a source (sourceImage, sourceSnapshot, or sourceDisk) or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.
§Arguments
request
- No description provided.project
- Project ID for this request.zone
- The name of the zone for this request.
Sourcepub fn list(&self, project: &str, zone: &str) -> DiskListCall<'a, C>
pub fn list(&self, project: &str, zone: &str) -> DiskListCall<'a, C>
Create a builder to help you perform the following task:
Retrieves a list of persistent disks contained within the specified zone.
§Arguments
project
- Project ID for this request.zone
- The name of the zone for this request.
Sourcepub fn remove_resource_policies(
&self,
request: DisksRemoveResourcePoliciesRequest,
project: &str,
zone: &str,
disk: &str,
) -> DiskRemoveResourcePolicyCall<'a, C>
pub fn remove_resource_policies( &self, request: DisksRemoveResourcePoliciesRequest, project: &str, zone: &str, disk: &str, ) -> DiskRemoveResourcePolicyCall<'a, C>
Create a builder to help you perform the following task:
Removes resource policies from a disk.
§Arguments
request
- No description provided.project
- Project ID for this request.zone
- The name of the zone for this request.disk
- The disk name for this request.
Sourcepub fn resize(
&self,
request: DisksResizeRequest,
project: &str,
zone: &str,
disk: &str,
) -> DiskResizeCall<'a, C>
pub fn resize( &self, request: DisksResizeRequest, project: &str, zone: &str, disk: &str, ) -> DiskResizeCall<'a, C>
Create a builder to help you perform the following task:
Resizes the specified persistent disk. You can only increase the size of the disk.
§Arguments
request
- No description provided.project
- Project ID for this request.zone
- The name of the zone for this request.disk
- The name of the persistent disk.
Sourcepub fn set_iam_policy(
&self,
request: ZoneSetPolicyRequest,
project: &str,
zone: &str,
resource: &str,
) -> DiskSetIamPolicyCall<'a, C>
pub fn set_iam_policy( &self, request: ZoneSetPolicyRequest, project: &str, zone: &str, resource: &str, ) -> DiskSetIamPolicyCall<'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.zone
- The name of the zone for this request.resource
- Name or id of the resource for this request.
Sourcepub fn set_labels(
&self,
request: ZoneSetLabelsRequest,
project: &str,
zone: &str,
resource: &str,
) -> DiskSetLabelCall<'a, C>
pub fn set_labels( &self, request: ZoneSetLabelsRequest, project: &str, zone: &str, resource: &str, ) -> DiskSetLabelCall<'a, C>
Create a builder to help you perform the following task:
Sets the labels on a disk. To learn more about labels, read the Labeling Resources documentation.
§Arguments
request
- No description provided.project
- Project ID for this request.zone
- The name of the zone for this request.resource
- Name or id of the resource for this request.
Sourcepub fn start_async_replication(
&self,
request: DisksStartAsyncReplicationRequest,
project: &str,
zone: &str,
disk: &str,
) -> DiskStartAsyncReplicationCall<'a, C>
pub fn start_async_replication( &self, request: DisksStartAsyncReplicationRequest, project: &str, zone: &str, disk: &str, ) -> DiskStartAsyncReplicationCall<'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.zone
- The name of the zone for this request.disk
- The name of the persistent disk.
Sourcepub fn stop_async_replication(
&self,
project: &str,
zone: &str,
disk: &str,
) -> DiskStopAsyncReplicationCall<'a, C>
pub fn stop_async_replication( &self, project: &str, zone: &str, disk: &str, ) -> DiskStopAsyncReplicationCall<'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.zone
- The name of the zone for this request.disk
- The name of the persistent disk.
Sourcepub fn stop_group_async_replication(
&self,
request: DisksStopGroupAsyncReplicationResource,
project: &str,
zone: &str,
) -> DiskStopGroupAsyncReplicationCall<'a, C>
pub fn stop_group_async_replication( &self, request: DisksStopGroupAsyncReplicationResource, project: &str, zone: &str, ) -> DiskStopGroupAsyncReplicationCall<'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.zone
- The name of the zone for this request. This must be the zone of the primary or secondary disks in the consistency group.
Sourcepub fn test_iam_permissions(
&self,
request: TestPermissionsRequest,
project: &str,
zone: &str,
resource: &str,
) -> DiskTestIamPermissionCall<'a, C>
pub fn test_iam_permissions( &self, request: TestPermissionsRequest, project: &str, zone: &str, resource: &str, ) -> DiskTestIamPermissionCall<'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.zone
- The name of the zone for this request.resource
- Name or id of the resource for this request.
Sourcepub fn update(
&self,
request: Disk,
project: &str,
zone: &str,
disk: &str,
) -> DiskUpdateCall<'a, C>
pub fn update( &self, request: Disk, project: &str, zone: &str, disk: &str, ) -> DiskUpdateCall<'a, C>
Create a builder to help you perform the following task:
Updates the specified disk with the data included in the request. The 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.zone
- The name of the zone for this request.disk
- The disk name for this request.
Trait Implementations§
impl<'a, C> MethodsBuilder for DiskMethods<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for DiskMethods<'a, C>
impl<'a, C> !RefUnwindSafe for DiskMethods<'a, C>
impl<'a, C> Send for DiskMethods<'a, C>where
C: Sync,
impl<'a, C> Sync for DiskMethods<'a, C>where
C: Sync,
impl<'a, C> Unpin for DiskMethods<'a, C>
impl<'a, C> !UnwindSafe for DiskMethods<'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