pub struct DiskMethods<'a, S>
where S: '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 std::default::Default;
use compute1::{Compute, oauth2, hyper, hyper_rustls, chrono, FieldMask};
 
let secret: oauth2::ApplicationSecret = Default::default();
let auth = oauth2::InstalledFlowAuthenticator::builder(
        secret,
        oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = Compute::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_or_http().enable_http1().build()), 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, S> DiskMethods<'a, S>

source

pub fn add_resource_policies( &self, request: DisksAddResourcePoliciesRequest, project: &str, zone: &str, disk: &str ) -> DiskAddResourcePolicyCall<'a, S>

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.
source

pub fn aggregated_list(&self, project: &str) -> DiskAggregatedListCall<'a, S>

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.
source

pub fn bulk_insert( &self, request: BulkInsertDiskResource, project: &str, zone: &str ) -> DiskBulkInsertCall<'a, S>

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.
source

pub fn create_snapshot( &self, request: Snapshot, project: &str, zone: &str, disk: &str ) -> DiskCreateSnapshotCall<'a, S>

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.
source

pub fn delete( &self, project: &str, zone: &str, disk: &str ) -> DiskDeleteCall<'a, S>

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.
source

pub fn get(&self, project: &str, zone: &str, disk: &str) -> DiskGetCall<'a, S>

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.
source

pub fn get_iam_policy( &self, project: &str, zone: &str, resource: &str ) -> DiskGetIamPolicyCall<'a, S>

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.
source

pub fn insert( &self, request: Disk, project: &str, zone: &str ) -> DiskInsertCall<'a, S>

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.
source

pub fn list(&self, project: &str, zone: &str) -> DiskListCall<'a, S>

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.
source

pub fn remove_resource_policies( &self, request: DisksRemoveResourcePoliciesRequest, project: &str, zone: &str, disk: &str ) -> DiskRemoveResourcePolicyCall<'a, S>

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.
source

pub fn resize( &self, request: DisksResizeRequest, project: &str, zone: &str, disk: &str ) -> DiskResizeCall<'a, S>

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.
source

pub fn set_iam_policy( &self, request: ZoneSetPolicyRequest, project: &str, zone: &str, resource: &str ) -> DiskSetIamPolicyCall<'a, S>

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.
source

pub fn set_labels( &self, request: ZoneSetLabelsRequest, project: &str, zone: &str, resource: &str ) -> DiskSetLabelCall<'a, S>

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.
source

pub fn start_async_replication( &self, request: DisksStartAsyncReplicationRequest, project: &str, zone: &str, disk: &str ) -> DiskStartAsyncReplicationCall<'a, S>

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.
source

pub fn stop_async_replication( &self, project: &str, zone: &str, disk: &str ) -> DiskStopAsyncReplicationCall<'a, S>

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.
source

pub fn stop_group_async_replication( &self, request: DisksStopGroupAsyncReplicationResource, project: &str, zone: &str ) -> DiskStopGroupAsyncReplicationCall<'a, S>

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.
source

pub fn test_iam_permissions( &self, request: TestPermissionsRequest, project: &str, zone: &str, resource: &str ) -> DiskTestIamPermissionCall<'a, S>

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.
source

pub fn update( &self, request: Disk, project: &str, zone: &str, disk: &str ) -> DiskUpdateCall<'a, S>

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§

source§

impl<'a, S> MethodsBuilder for DiskMethods<'a, S>

Auto Trait Implementations§

§

impl<'a, S> !RefUnwindSafe for DiskMethods<'a, S>

§

impl<'a, S> Send for DiskMethods<'a, S>
where S: Sync,

§

impl<'a, S> Sync for DiskMethods<'a, S>
where S: Sync,

§

impl<'a, S> Unpin for DiskMethods<'a, S>

§

impl<'a, S> !UnwindSafe for DiskMethods<'a, S>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more