pub struct BillingAccount {
pub display_name: Option<String>,
pub master_billing_account: Option<String>,
pub name: Option<String>,
pub open: Option<bool>,
pub parent: Option<String>,
}
Expand description
A billing account in the Google Cloud Console. You can assign a billing account to one or more projects.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- projects list billing accounts (none)
- sub accounts create billing accounts (request|response)
- sub accounts list billing accounts (none)
- create billing accounts (request|response)
- get billing accounts (response)
- get iam policy billing accounts (none)
- list billing accounts (none)
- move billing accounts (response)
- patch billing accounts (request|response)
- set iam policy billing accounts (none)
- test iam permissions billing accounts (none)
- billing accounts create organizations (request|response)
- billing accounts move organizations (response)
Fields§
§display_name: Option<String>
The display name given to the billing account, such as My Billing Account
. This name is displayed in the Google Cloud Console.
master_billing_account: Option<String>
If this account is a subaccount, then this will be the resource name of the parent billing account that it is being resold through. Otherwise this will be empty.
name: Option<String>
Output only. The resource name of the billing account. The resource name has the form billingAccounts/{billing_account_id}
. For example, billingAccounts/012345-567890-ABCDEF
would be the resource name for billing account 012345-567890-ABCDEF
.
open: Option<bool>
Output only. True if the billing account is open, and will therefore be charged for any usage on associated projects. False if the billing account is closed, and therefore projects associated with it are unable to use paid services.
parent: Option<String>
Output only. The billing account’s parent resource identifier. Use the MoveBillingAccount
method to update the account’s parent resource if it is a organization. Format: - organizations/{organization_id}
, for example, organizations/12345678
- billingAccounts/{billing_account_id}
, for example, billingAccounts/012345-567890-ABCDEF
Trait Implementations§
Source§impl Clone for BillingAccount
impl Clone for BillingAccount
Source§fn clone(&self) -> BillingAccount
fn clone(&self) -> BillingAccount
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for BillingAccount
impl Debug for BillingAccount
Source§impl Default for BillingAccount
impl Default for BillingAccount
Source§fn default() -> BillingAccount
fn default() -> BillingAccount
Source§impl<'de> Deserialize<'de> for BillingAccount
impl<'de> Deserialize<'de> for BillingAccount
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for BillingAccount
impl Serialize for BillingAccount
impl RequestValue for BillingAccount
impl Resource for BillingAccount
impl ResponseResult for BillingAccount
Auto Trait Implementations§
impl Freeze for BillingAccount
impl RefUnwindSafe for BillingAccount
impl Send for BillingAccount
impl Sync for BillingAccount
impl Unpin for BillingAccount
impl UnwindSafe for BillingAccount
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more