Struct google_iam1::RoleMethods[][src]

pub struct RoleMethods<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_iam1 as iam1;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use iam1::Iam;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
                              <MemoryStorage as Default>::default(), None);
let mut hub = Iam::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `get(...)`, `list(...)` and `query_grantable_roles(...)`
// to build up your call.
let rb = hub.roles();

Methods

impl<'a, C, A> RoleMethods<'a, C, A>
[src]

Create a builder to help you perform the following task:

Gets a Role definition.

Arguments

  • name - The resource name of the role in one of the following formats: roles/{ROLE_NAME} organizations/{ORGANIZATION_ID}/roles/{ROLE_NAME} projects/{PROJECT_ID}/roles/{ROLE_NAME}

Create a builder to help you perform the following task:

Lists the Roles defined on a resource.

Create a builder to help you perform the following task:

Queries roles that can be granted on a particular resource. A role is grantable if it can be used as the role in a binding for a policy for that resource.

Arguments

  • request - No description provided.

Trait Implementations

impl<'a, C, A> MethodsBuilder for RoleMethods<'a, C, A>
[src]

Auto Trait Implementations

impl<'a, C, A> !Send for RoleMethods<'a, C, A>

impl<'a, C, A> !Sync for RoleMethods<'a, C, A>