Struct google_accesscontextmanager1::api::OrganizationMethods[][src]

pub struct OrganizationMethods<'a> { /* fields omitted */ }

A builder providing access to all methods supported on organization resources. It is not used directly, but through the AccessContextManager hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_accesscontextmanager1 as accesscontextmanager1;
 
use std::default::Default;
use oauth2;
use accesscontextmanager1::AccessContextManager;
 
let secret: oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
        secret,
        yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = AccessContextManager::new(hyper::Client::builder().build(hyper_rustls::HttpsConnector::with_native_roots()), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `gcp_user_access_bindings_create(...)`, `gcp_user_access_bindings_delete(...)`, `gcp_user_access_bindings_get(...)`, `gcp_user_access_bindings_list(...)` and `gcp_user_access_bindings_patch(...)`
// to build up your call.
let rb = hub.organizations();

Implementations

impl<'a> OrganizationMethods<'a>[src]

pub fn gcp_user_access_bindings_create(
    &self,
    request: GcpUserAccessBinding,
    parent: &str
) -> OrganizationGcpUserAccessBindingCreateCall<'a>
[src]

Create a builder to help you perform the following task:

Creates a GcpUserAccessBinding. If the client specifies a name, the server will ignore it. Fails if a resource already exists with the same group_key. Completion of this long-running operation does not necessarily signify that the new binding is deployed onto all affected users, which may take more time.

Arguments

  • request - No description provided.
  • parent - Required. Example: “organizations/256”

pub fn gcp_user_access_bindings_delete(
    &self,
    name: &str
) -> OrganizationGcpUserAccessBindingDeleteCall<'a>
[src]

Create a builder to help you perform the following task:

Deletes a GcpUserAccessBinding. Completion of this long-running operation does not necessarily signify that the binding deletion is deployed onto all affected users, which may take more time.

Arguments

  • name - Required. Example: “organizations/256/gcpUserAccessBindings/b3-BhcX_Ud5N”

pub fn gcp_user_access_bindings_get(
    &self,
    name: &str
) -> OrganizationGcpUserAccessBindingGetCall<'a>
[src]

Create a builder to help you perform the following task:

Gets the GcpUserAccessBinding with the given name.

Arguments

  • name - Required. Example: “organizations/256/gcpUserAccessBindings/b3-BhcX_Ud5N”

pub fn gcp_user_access_bindings_list(
    &self,
    parent: &str
) -> OrganizationGcpUserAccessBindingListCall<'a>
[src]

Create a builder to help you perform the following task:

Lists all GcpUserAccessBindings for a Google Cloud organization.

Arguments

  • parent - Required. Example: “organizations/256”

pub fn gcp_user_access_bindings_patch(
    &self,
    request: GcpUserAccessBinding,
    name: &str
) -> OrganizationGcpUserAccessBindingPatchCall<'a>
[src]

Create a builder to help you perform the following task:

Updates a GcpUserAccessBinding. Completion of this long-running operation does not necessarily signify that the changed binding is deployed onto all affected users, which may take more time.

Arguments

  • request - No description provided.
  • name - Immutable. Assigned by the server during creation. The last segment has an arbitrary length and has only URI unreserved characters (as defined by RFC 3986 Section 2.3). Should not be specified by the client during creation. Example: “organizations/256/gcpUserAccessBindings/b3-BhcX_Ud5N”

Trait Implementations

Auto Trait Implementations

impl<'a> !RefUnwindSafe for OrganizationMethods<'a>

impl<'a> Send for OrganizationMethods<'a>

impl<'a> Sync for OrganizationMethods<'a>

impl<'a> Unpin for OrganizationMethods<'a>

impl<'a> !UnwindSafe for OrganizationMethods<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.