Struct google_cloudbilling1::BillingAccountMethods [] [src]

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

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_cloudbilling1 as cloudbilling1;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use cloudbilling1::Cloudbilling;
 
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 = Cloudbilling::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 `projects_list(...)`
// to build up your call.
let rb = hub.billing_accounts();

Methods

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

Create a builder to help you perform the following task:

Gets information about a billing account. The current authenticated user must be an owner of the billing account.

Arguments

  • name - The resource name of the billing account to retrieve. For example, billingAccounts/012345-567890-ABCDEF.

Create a builder to help you perform the following task:

Lists the billing accounts that the current authenticated user owns.

Create a builder to help you perform the following task:

Lists the projects associated with a billing account. The current authenticated user must be an owner of the billing account.

Arguments

  • name - The resource name of the billing account associated with the projects that you want to list. For example, billingAccounts/012345-567890-ABCDEF.

Trait Implementations

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