Class: Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1Budget
- Inherits:
-
Object
- Object
- Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1Budget
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/billingbudgets_v1beta1/classes.rb,
generated/google/apis/billingbudgets_v1beta1/representations.rb,
generated/google/apis/billingbudgets_v1beta1/representations.rb
Overview
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). Currently all plans are monthly budgets so the usage period(s) tracked are implied (calendar months of usage back-to-back).
Instance Attribute Summary collapse
-
#all_updates_rule ⇒ Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1AllUpdatesRule
AllUpdatesRule defines notifications that are sent based on budget spend and thresholds.
-
#amount ⇒ Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1BudgetAmount
The budgeted amount for each usage period.
-
#budget_filter ⇒ Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1Filter
A filter for a budget, limiting the scope of the cost to calculate.
-
#display_name ⇒ String
User data for display name in UI.
-
#etag ⇒ String
Optional.
-
#name ⇒ String
Output only.
-
#threshold_rules ⇒ Array<Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1ThresholdRule>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBillingBudgetsV1beta1Budget
constructor
A new instance of GoogleCloudBillingBudgetsV1beta1Budget.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBillingBudgetsV1beta1Budget
Returns a new instance of GoogleCloudBillingBudgetsV1beta1Budget.
131 132 133 |
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 131 def initialize(**args) update!(**args) end |
Instance Attribute Details
#all_updates_rule ⇒ Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1AllUpdatesRule
AllUpdatesRule defines notifications that are sent based on budget spend and
thresholds.
Corresponds to the JSON property allUpdatesRule
95 96 97 |
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 95 def all_updates_rule @all_updates_rule end |
#amount ⇒ Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1BudgetAmount
The budgeted amount for each usage period.
Corresponds to the JSON property amount
100 101 102 |
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 100 def amount @amount end |
#budget_filter ⇒ Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1Filter
A filter for a budget, limiting the scope of the cost to calculate.
Corresponds to the JSON property budgetFilter
105 106 107 |
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 105 def budget_filter @budget_filter end |
#display_name ⇒ String
User data for display name in UI. Validation: <= 60 chars.
Corresponds to the JSON property displayName
110 111 112 |
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 110 def display_name @display_name end |
#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.
Corresponds to the JSON property etag
116 117 118 |
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 116 def etag @etag end |
#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`.
Corresponds to the JSON property
name`
123 124 125 |
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 123 def name @name end |
#threshold_rules ⇒ Array<Google::Apis::BillingbudgetsV1beta1::GoogleCloudBillingBudgetsV1beta1ThresholdRule>
Optional. Rules that trigger alerts (notifications of thresholds being crossed)
when spend exceeds the specified percentages of the budget.
Corresponds to the JSON property thresholdRules
129 130 131 |
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 129 def threshold_rules @threshold_rules end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
136 137 138 139 140 141 142 143 144 |
# File 'generated/google/apis/billingbudgets_v1beta1/classes.rb', line 136 def update!(**args) @all_updates_rule = args[:all_updates_rule] if args.key?(:all_updates_rule) @amount = args[:amount] if args.key?(:amount) @budget_filter = args[:budget_filter] if args.key?(:budget_filter) @display_name = args[:display_name] if args.key?(:display_name) @etag = args[:etag] if args.key?(:etag) @name = args[:name] if args.key?(:name) @threshold_rules = args[:threshold_rules] if args.key?(:threshold_rules) end |