[][src]Struct google_iamcredentials1::ProjectMethods

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

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_iamcredentials1 as iamcredentials1;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use iamcredentials1::IAMCredentials;
 
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 = IAMCredentials::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 `service_accounts_generate_access_token(...)`, `service_accounts_generate_id_token(...)`, `service_accounts_generate_identity_binding_access_token(...)`, `service_accounts_sign_blob(...)` and `service_accounts_sign_jwt(...)`
// to build up your call.
let rb = hub.projects();

Methods

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

pub fn service_accounts_generate_identity_binding_access_token(
    &self,
    request: GenerateIdentityBindingAccessTokenRequest,
    name: &str
) -> ProjectServiceAccountGenerateIdentityBindingAccessTokenCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Arguments

  • request - No description provided.
  • name - The resource name of the service account for which the credentials are requested, in the following format: projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID}. The - wildcard character is required; replacing it with a project ID is invalid.

pub fn service_accounts_sign_blob(
    &self,
    request: SignBlobRequest,
    name: &str
) -> ProjectServiceAccountSignBlobCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Signs a blob using a service account's system-managed private key.

Arguments

  • request - No description provided.
  • name - The resource name of the service account for which the credentials are requested, in the following format: projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID}. The - wildcard character is required; replacing it with a project ID is invalid.

pub fn service_accounts_sign_jwt(
    &self,
    request: SignJwtRequest,
    name: &str
) -> ProjectServiceAccountSignJwtCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Signs a JWT using a service account's system-managed private key.

Arguments

  • request - No description provided.
  • name - The resource name of the service account for which the credentials are requested, in the following format: projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID}. The - wildcard character is required; replacing it with a project ID is invalid.

pub fn service_accounts_generate_id_token(
    &self,
    request: GenerateIdTokenRequest,
    name: &str
) -> ProjectServiceAccountGenerateIdTokenCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Generates an OpenID Connect ID token for a service account.

Arguments

  • request - No description provided.
  • name - The resource name of the service account for which the credentials are requested, in the following format: projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID}. The - wildcard character is required; replacing it with a project ID is invalid.

pub fn service_accounts_generate_access_token(
    &self,
    request: GenerateAccessTokenRequest,
    name: &str
) -> ProjectServiceAccountGenerateAccessTokenCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Generates an OAuth 2.0 access token for a service account.

Arguments

  • request - No description provided.
  • name - The resource name of the service account for which the credentials are requested, in the following format: projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID}. The - wildcard character is required; replacing it with a project ID is invalid.

Trait Implementations

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

Auto Trait Implementations

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

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

impl<'a, C, A> Unpin for ProjectMethods<'a, C, A>

impl<'a, C, A> !UnwindSafe for ProjectMethods<'a, C, A>

impl<'a, C, A> !RefUnwindSafe for ProjectMethods<'a, C, A>

Blanket Implementations

impl<T> From<T> 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 = !

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.

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

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

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

impl<T> Typeable for T where
    T: Any