Struct DiskMethods

Source
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>

Source

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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§

Source§

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> 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

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

Source§

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>,

Source§

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
Source§

impl<T> ErasedDestructor for T
where T: 'static,