Struct gapi_grpc::google::cloud::billing::budgets::v1beta1::Budget[][src]

pub struct Budget {
    pub name: String,
    pub display_name: String,
    pub budget_filter: Option<Filter>,
    pub amount: Option<BudgetAmount>,
    pub threshold_rules: Vec<ThresholdRule>,
    pub all_updates_rule: Option<AllUpdatesRule>,
    pub etag: String,
}

A budget is a plan that describes what you expect to spend on Cloud projects, plus the rules to execute as spend is tracked against that plan, (for example, send an alert when 90% of the target spend is met). The budget time period is configurable, with options such as month (default), quarter, year, or custom time period.

Fields

name: String

Output only. Resource name of the budget. The resource name implies the scope of a budget. Values are of the form billingAccounts/{billingAccountId}/budgets/{budgetId}.

display_name: String

User data for display name in UI. Validation: <= 60 chars.

budget_filter: Option<Filter>

Optional. Filters that define which resources are used to compute the actual spend against the budget amount, such as projects, services, and the budget’s time period, as well as other filters.

amount: Option<BudgetAmount>

Required. Budgeted amount.

threshold_rules: Vec<ThresholdRule>

Optional. Rules that trigger alerts (notifications of thresholds being crossed) when spend exceeds the specified percentages of the budget.

all_updates_rule: Option<AllUpdatesRule>

Optional. Rules to apply to notifications sent based on budget spend and thresholds.

etag: String

Optional. Etag to validate that the object is unchanged for a read-modify-write operation. An empty etag will cause an update to overwrite other changes.

Trait Implementations

impl Clone for Budget[src]

impl Debug for Budget[src]

impl Default for Budget[src]

impl Message for Budget[src]

impl PartialEq<Budget> for Budget[src]

impl StructuralPartialEq for Budget[src]

Auto Trait Implementations

impl RefUnwindSafe for Budget

impl Send for Budget

impl Sync for Budget

impl Unpin for Budget

impl UnwindSafe for Budget

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]