Struct google_accesscontextmanager1::api::OrganizationMethods [−][src]
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]
&self,
request: GcpUserAccessBinding,
parent: &str
) -> OrganizationGcpUserAccessBindingCreateCall<'a>
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]
&self,
name: &str
) -> OrganizationGcpUserAccessBindingDeleteCall<'a>
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]
&self,
name: &str
) -> OrganizationGcpUserAccessBindingGetCall<'a>
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]
&self,
parent: &str
) -> OrganizationGcpUserAccessBindingListCall<'a>
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]
&self,
request: GcpUserAccessBinding,
name: &str
) -> OrganizationGcpUserAccessBindingPatchCall<'a>
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
impl<'a> MethodsBuilder for OrganizationMethods<'a>[src]
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,