billingbudgets
packageThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
Documentation¶
Overview¶
Package billingbudgets provides access to the Cloud Billing Budget API.
For product documentation, see:https://cloud.google.com/billing/docs/how-to/budget-api-overview
Library status¶
These client libraries are officially supported by Google. However, thislibrary is considered complete and is in maintenance mode. This meansthat we will address critical bugs and security issues but will not addany new features.
When possible, we recommend using our newer[Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go)that are still actively being worked and iterated on.
Creating a client¶
Usage example:
import "google.golang.org/api/billingbudgets/v1beta1"...ctx := context.Background()billingbudgetsService, err := billingbudgets.NewService(ctx)
In this example, Google Application Default Credentials are used forauthentication. For information on how to create and obtain ApplicationDefault Credentials, seehttps://developers.google.com/identity/protocols/application-default-credentials.
Other authentication options¶
By default, all available scopes (see "Constants") are used to authenticate.To restrict scopes, usegoogle.golang.org/api/option.WithScopes:
billingbudgetsService, err := billingbudgets.NewService(ctx, option.WithScopes(billingbudgets.CloudPlatformScope))
To use an API key for authentication (note: some APIs do not support APIkeys), usegoogle.golang.org/api/option.WithAPIKey:
billingbudgetsService, err := billingbudgets.NewService(ctx, option.WithAPIKey("AIza..."))To use an OAuth token (e.g., a user token obtained via a three-legged OAuthflow, usegoogle.golang.org/api/option.WithTokenSource:
config := &oauth2.Config{...}// ...token, err := config.Exchange(ctx, ...)billingbudgetsService, err := billingbudgets.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))Seegoogle.golang.org/api/option.ClientOption for details on options.
Index¶
- Constants
- type BillingAccountsBudgetsCreateCall
- func (c *BillingAccountsBudgetsCreateCall) Context(ctx context.Context) *BillingAccountsBudgetsCreateCall
- func (c *BillingAccountsBudgetsCreateCall) Do(opts ...googleapi.CallOption) (*GoogleCloudBillingBudgetsV1beta1Budget, error)
- func (c *BillingAccountsBudgetsCreateCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsCreateCall
- func (c *BillingAccountsBudgetsCreateCall) Header() http.Header
- type BillingAccountsBudgetsDeleteCall
- func (c *BillingAccountsBudgetsDeleteCall) Context(ctx context.Context) *BillingAccountsBudgetsDeleteCall
- func (c *BillingAccountsBudgetsDeleteCall) Do(opts ...googleapi.CallOption) (*GoogleProtobufEmpty, error)
- func (c *BillingAccountsBudgetsDeleteCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsDeleteCall
- func (c *BillingAccountsBudgetsDeleteCall) Header() http.Header
- type BillingAccountsBudgetsGetCall
- func (c *BillingAccountsBudgetsGetCall) Context(ctx context.Context) *BillingAccountsBudgetsGetCall
- func (c *BillingAccountsBudgetsGetCall) Do(opts ...googleapi.CallOption) (*GoogleCloudBillingBudgetsV1beta1Budget, error)
- func (c *BillingAccountsBudgetsGetCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsGetCall
- func (c *BillingAccountsBudgetsGetCall) Header() http.Header
- func (c *BillingAccountsBudgetsGetCall) IfNoneMatch(entityTag string) *BillingAccountsBudgetsGetCall
- type BillingAccountsBudgetsListCall
- func (c *BillingAccountsBudgetsListCall) Context(ctx context.Context) *BillingAccountsBudgetsListCall
- func (c *BillingAccountsBudgetsListCall) Do(opts ...googleapi.CallOption) (*GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse, error)
- func (c *BillingAccountsBudgetsListCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsListCall
- func (c *BillingAccountsBudgetsListCall) Header() http.Header
- func (c *BillingAccountsBudgetsListCall) IfNoneMatch(entityTag string) *BillingAccountsBudgetsListCall
- func (c *BillingAccountsBudgetsListCall) PageSize(pageSize int64) *BillingAccountsBudgetsListCall
- func (c *BillingAccountsBudgetsListCall) PageToken(pageToken string) *BillingAccountsBudgetsListCall
- func (c *BillingAccountsBudgetsListCall) Pages(ctx context.Context, ...) error
- func (c *BillingAccountsBudgetsListCall) Scope(scope string) *BillingAccountsBudgetsListCall
- type BillingAccountsBudgetsPatchCall
- func (c *BillingAccountsBudgetsPatchCall) Context(ctx context.Context) *BillingAccountsBudgetsPatchCall
- func (c *BillingAccountsBudgetsPatchCall) Do(opts ...googleapi.CallOption) (*GoogleCloudBillingBudgetsV1beta1Budget, error)
- func (c *BillingAccountsBudgetsPatchCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsPatchCall
- func (c *BillingAccountsBudgetsPatchCall) Header() http.Header
- type BillingAccountsBudgetsService
- func (r *BillingAccountsBudgetsService) Create(parent string, ...) *BillingAccountsBudgetsCreateCall
- func (r *BillingAccountsBudgetsService) Delete(name string) *BillingAccountsBudgetsDeleteCall
- func (r *BillingAccountsBudgetsService) Get(name string) *BillingAccountsBudgetsGetCall
- func (r *BillingAccountsBudgetsService) List(parent string) *BillingAccountsBudgetsListCall
- func (r *BillingAccountsBudgetsService) Patch(name string, ...) *BillingAccountsBudgetsPatchCall
- type BillingAccountsService
- type GoogleCloudBillingBudgetsV1beta1AllUpdatesRule
- type GoogleCloudBillingBudgetsV1beta1Budget
- type GoogleCloudBillingBudgetsV1beta1BudgetAmount
- type GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest
- type GoogleCloudBillingBudgetsV1beta1CustomPeriod
- type GoogleCloudBillingBudgetsV1beta1Filter
- type GoogleCloudBillingBudgetsV1beta1LastPeriodAmount
- type GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse
- type GoogleCloudBillingBudgetsV1beta1ThresholdRule
- type GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest
- type GoogleProtobufEmpty
- type GoogleTypeDate
- type GoogleTypeMoney
- type Service
Constants¶
const (// View and manage your Google Cloud Platform billing accountsCloudBillingScope = "https://www.googleapis.com/auth/cloud-billing"// See, edit, configure, and delete your Google Cloud data and see the email// address for your Google Account.CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform")
OAuth2 scopes used by this API.
Variables¶
This section is empty.
Functions¶
This section is empty.
Types¶
typeBillingAccountsBudgetsCreateCall¶
type BillingAccountsBudgetsCreateCall struct {// contains filtered or unexported fields}func (*BillingAccountsBudgetsCreateCall)Context¶
func (c *BillingAccountsBudgetsCreateCall) Context(ctxcontext.Context) *BillingAccountsBudgetsCreateCall
Context sets the context to be used in this call's Do method.
func (*BillingAccountsBudgetsCreateCall)Do¶
func (c *BillingAccountsBudgetsCreateCall) Do(opts ...googleapi.CallOption) (*GoogleCloudBillingBudgetsV1beta1Budget,error)
Do executes the "billingbudgets.billingAccounts.budgets.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudBillingBudgetsV1beta1Budget.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.
func (*BillingAccountsBudgetsCreateCall)Fields¶
func (c *BillingAccountsBudgetsCreateCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsCreateCall
Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.
func (*BillingAccountsBudgetsCreateCall)Header¶
func (c *BillingAccountsBudgetsCreateCall) Header()http.Header
Header returns a http.Header that can be modified by the caller to addheaders to the request.
typeBillingAccountsBudgetsDeleteCall¶
type BillingAccountsBudgetsDeleteCall struct {// contains filtered or unexported fields}func (*BillingAccountsBudgetsDeleteCall)Context¶
func (c *BillingAccountsBudgetsDeleteCall) Context(ctxcontext.Context) *BillingAccountsBudgetsDeleteCall
Context sets the context to be used in this call's Do method.
func (*BillingAccountsBudgetsDeleteCall)Do¶
func (c *BillingAccountsBudgetsDeleteCall) Do(opts ...googleapi.CallOption) (*GoogleProtobufEmpty,error)
Do executes the "billingbudgets.billingAccounts.budgets.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.
func (*BillingAccountsBudgetsDeleteCall)Fields¶
func (c *BillingAccountsBudgetsDeleteCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsDeleteCall
Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.
func (*BillingAccountsBudgetsDeleteCall)Header¶
func (c *BillingAccountsBudgetsDeleteCall) Header()http.Header
Header returns a http.Header that can be modified by the caller to addheaders to the request.
typeBillingAccountsBudgetsGetCall¶
type BillingAccountsBudgetsGetCall struct {// contains filtered or unexported fields}func (*BillingAccountsBudgetsGetCall)Context¶
func (c *BillingAccountsBudgetsGetCall) Context(ctxcontext.Context) *BillingAccountsBudgetsGetCall
Context sets the context to be used in this call's Do method.
func (*BillingAccountsBudgetsGetCall)Do¶
func (c *BillingAccountsBudgetsGetCall) Do(opts ...googleapi.CallOption) (*GoogleCloudBillingBudgetsV1beta1Budget,error)
Do executes the "billingbudgets.billingAccounts.budgets.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudBillingBudgetsV1beta1Budget.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.
func (*BillingAccountsBudgetsGetCall)Fields¶
func (c *BillingAccountsBudgetsGetCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsGetCall
Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.
func (*BillingAccountsBudgetsGetCall)Header¶
func (c *BillingAccountsBudgetsGetCall) Header()http.Header
Header returns a http.Header that can be modified by the caller to addheaders to the request.
func (*BillingAccountsBudgetsGetCall)IfNoneMatch¶
func (c *BillingAccountsBudgetsGetCall) IfNoneMatch(entityTagstring) *BillingAccountsBudgetsGetCall
IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.
typeBillingAccountsBudgetsListCall¶
type BillingAccountsBudgetsListCall struct {// contains filtered or unexported fields}func (*BillingAccountsBudgetsListCall)Context¶
func (c *BillingAccountsBudgetsListCall) Context(ctxcontext.Context) *BillingAccountsBudgetsListCall
Context sets the context to be used in this call's Do method.
func (*BillingAccountsBudgetsListCall)Do¶
func (c *BillingAccountsBudgetsListCall) Do(opts ...googleapi.CallOption) (*GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse,error)
Do executes the "billingbudgets.billingAccounts.budgets.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.
func (*BillingAccountsBudgetsListCall)Fields¶
func (c *BillingAccountsBudgetsListCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsListCall
Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.
func (*BillingAccountsBudgetsListCall)Header¶
func (c *BillingAccountsBudgetsListCall) Header()http.Header
Header returns a http.Header that can be modified by the caller to addheaders to the request.
func (*BillingAccountsBudgetsListCall)IfNoneMatch¶
func (c *BillingAccountsBudgetsListCall) IfNoneMatch(entityTagstring) *BillingAccountsBudgetsListCall
IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.
func (*BillingAccountsBudgetsListCall)PageSize¶
func (c *BillingAccountsBudgetsListCall) PageSize(pageSizeint64) *BillingAccountsBudgetsListCall
PageSize sets the optional parameter "pageSize": The maximum number ofbudgets to return per page. The default and maximum value are 100.
func (*BillingAccountsBudgetsListCall)PageToken¶
func (c *BillingAccountsBudgetsListCall) PageToken(pageTokenstring) *BillingAccountsBudgetsListCall
PageToken sets the optional parameter "pageToken": The value returned by thelast `ListBudgetsResponse` which indicates that this is a continuation of aprior `ListBudgets` call, and that the system should return the next page ofdata.
func (*BillingAccountsBudgetsListCall)Pages¶
func (c *BillingAccountsBudgetsListCall) Pages(ctxcontext.Context, f func(*GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse)error)error
Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.
func (*BillingAccountsBudgetsListCall)Scope¶added inv0.139.0
func (c *BillingAccountsBudgetsListCall) Scope(scopestring) *BillingAccountsBudgetsListCall
Scope sets the optional parameter "scope": Set the scope of the budgets tobe returned, in the format of the resource name. The scope of a budget isthe cost that it tracks, such as costs for a single project, or the costsfor all projects in a folder. Only project scope (in the format of"projects/project-id" or "projects/123") is supported in this field. Whenthis field is set to a project's resource name, the budgets returned aretracking the costs for that project.
typeBillingAccountsBudgetsPatchCall¶
type BillingAccountsBudgetsPatchCall struct {// contains filtered or unexported fields}func (*BillingAccountsBudgetsPatchCall)Context¶
func (c *BillingAccountsBudgetsPatchCall) Context(ctxcontext.Context) *BillingAccountsBudgetsPatchCall
Context sets the context to be used in this call's Do method.
func (*BillingAccountsBudgetsPatchCall)Do¶
func (c *BillingAccountsBudgetsPatchCall) Do(opts ...googleapi.CallOption) (*GoogleCloudBillingBudgetsV1beta1Budget,error)
Do executes the "billingbudgets.billingAccounts.budgets.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudBillingBudgetsV1beta1Budget.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.
func (*BillingAccountsBudgetsPatchCall)Fields¶
func (c *BillingAccountsBudgetsPatchCall) Fields(s ...googleapi.Field) *BillingAccountsBudgetsPatchCall
Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.
func (*BillingAccountsBudgetsPatchCall)Header¶
func (c *BillingAccountsBudgetsPatchCall) Header()http.Header
Header returns a http.Header that can be modified by the caller to addheaders to the request.
typeBillingAccountsBudgetsService¶
type BillingAccountsBudgetsService struct {// contains filtered or unexported fields}funcNewBillingAccountsBudgetsService¶
func NewBillingAccountsBudgetsService(s *Service) *BillingAccountsBudgetsService
func (*BillingAccountsBudgetsService)Create¶
func (r *BillingAccountsBudgetsService) Create(parentstring, googlecloudbillingbudgetsv1beta1createbudgetrequest *GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest) *BillingAccountsBudgetsCreateCall
Create: Creates a new budget. See Quotas and limits(https://cloud.google.com/billing/quotas) for more information on the limitsof the number of budgets you can create.
- parent: The name of the billing account to create the budget in. Valuesare of the form `billingAccounts/{billingAccountId}`.
func (*BillingAccountsBudgetsService)Delete¶
func (r *BillingAccountsBudgetsService) Delete(namestring) *BillingAccountsBudgetsDeleteCall
Delete: Deletes a budget. Returns successfully if already deleted.
- name: Name of the budget to delete. Values are of the form`billingAccounts/{billingAccountId}/budgets/{budgetId}`.
func (*BillingAccountsBudgetsService)Get¶
func (r *BillingAccountsBudgetsService) Get(namestring) *BillingAccountsBudgetsGetCall
Get: Returns a budget. WARNING: There are some fields exposed on the GoogleCloud Console that aren't available on this API. When reading from the API,you will not see these fields in the return value, though they may have beenset in the Cloud Console.
- name: Name of budget to get. Values are of the form`billingAccounts/{billingAccountId}/budgets/{budgetId}`.
func (*BillingAccountsBudgetsService)List¶
func (r *BillingAccountsBudgetsService) List(parentstring) *BillingAccountsBudgetsListCall
List: Returns a list of budgets for a billing account. WARNING: There aresome fields exposed on the Google Cloud Console that aren't available onthis API. When reading from the API, you will not see these fields in thereturn value, though they may have been set in the Cloud Console.
- parent: Name of billing account to list budgets under. Values are of theform `billingAccounts/{billingAccountId}`.
func (*BillingAccountsBudgetsService)Patch¶
func (r *BillingAccountsBudgetsService) Patch(namestring, googlecloudbillingbudgetsv1beta1updatebudgetrequest *GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest) *BillingAccountsBudgetsPatchCall
Patch: Updates a budget and returns the updated budget. WARNING: There aresome fields exposed on the Google Cloud Console that aren't available onthis API. Budget fields that are not exposed in this API will not be changedby this method.
- name: Output only. Resource name of the budget. The resource name impliesthe scope of a budget. Values are of the form`billingAccounts/{billingAccountId}/budgets/{budgetId}`.
typeBillingAccountsService¶
type BillingAccountsService struct {Budgets *BillingAccountsBudgetsService// contains filtered or unexported fields}funcNewBillingAccountsService¶
func NewBillingAccountsService(s *Service) *BillingAccountsService
typeGoogleCloudBillingBudgetsV1beta1AllUpdatesRule¶
type GoogleCloudBillingBudgetsV1beta1AllUpdatesRule struct {// DisableDefaultIamRecipients: Optional. When set to true, disables default// notifications sent when a threshold is exceeded. Default notifications are// sent to those with Billing Account Administrator and Billing Account User// IAM roles for the target account.DisableDefaultIamRecipientsbool `json:"disableDefaultIamRecipients,omitempty"`// EnableProjectLevelRecipients: Optional. When set to true, and when the// budget has a single project configured, notifications will be sent to// project level recipients of that project. This field will be ignored if the// budget has multiple or no project configured. Currently, project level// recipients are the users with `Owner` role on a cloud project.EnableProjectLevelRecipientsbool `json:"enableProjectLevelRecipients,omitempty"`// MonitoringNotificationChannels: Optional. Targets to send notifications to// when a threshold is exceeded. This is in addition to default recipients who// have billing account IAM roles. The value is the full REST resource name of// a monitoring notification channel with the form// `projects/{project_id}/notificationChannels/{channel_id}`. A maximum of 5// channels are allowed. See//https://cloud.google.com/billing/docs/how-to/budgets-notification-recipients// for more details.MonitoringNotificationChannels []string `json:"monitoringNotificationChannels,omitempty"`// PubsubTopic: Optional. The name of the Pub/Sub topic where budget related// messages will be published, in the form// `projects/{project_id}/topics/{topic_id}`. Updates are sent at regular// intervals to the topic. The topic needs to be created before the budget is// created; see//https://cloud.google.com/billing/docs/how-to/budgets-programmatic-notifications// for more details. Caller is expected to have `pubsub.topics.setIamPolicy`// permission on the topic when it's set for a budget, otherwise, the API call// will fail with PERMISSION_DENIED. See//https://cloud.google.com/billing/docs/how-to/budgets-programmatic-notifications#permissions_required_for_this_task// for more details on Pub/Sub roles and permissions.PubsubTopicstring `json:"pubsubTopic,omitempty"`// SchemaVersion: Optional. Required when AllUpdatesRule.pubsub_topic is set.// The schema version of the notification sent to AllUpdatesRule.pubsub_topic.// Only "1.0" is accepted. It represents the JSON schema as defined in//https://cloud.google.com/billing/docs/how-to/budgets-programmatic-notifications#notification_format.SchemaVersionstring `json:"schemaVersion,omitempty"`// ForceSendFields is a list of field names (e.g.// "DisableDefaultIamRecipients") to unconditionally include in API requests.// By default, fields with empty or default values are omitted from API// requests. Seehttps://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields// for more details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisableDefaultIamRecipients") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleCloudBillingBudgetsV1beta1AllUpdatesRule: AllUpdatesRule definesnotifications that are sent based on budget spend and thresholds.
func (GoogleCloudBillingBudgetsV1beta1AllUpdatesRule)MarshalJSON¶
func (sGoogleCloudBillingBudgetsV1beta1AllUpdatesRule) MarshalJSON() ([]byte,error)
typeGoogleCloudBillingBudgetsV1beta1Budget¶
type GoogleCloudBillingBudgetsV1beta1Budget struct {// AllUpdatesRule: Optional. Rules to apply to notifications sent based on// budget spend and thresholds.AllUpdatesRule *GoogleCloudBillingBudgetsV1beta1AllUpdatesRule `json:"allUpdatesRule,omitempty"`// Amount: Required. Budgeted amount.Amount *GoogleCloudBillingBudgetsV1beta1BudgetAmount `json:"amount,omitempty"`// BudgetFilter: 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.BudgetFilter *GoogleCloudBillingBudgetsV1beta1Filter `json:"budgetFilter,omitempty"`// DisplayName: User data for display name in UI. Validation: <= 60 chars.DisplayNamestring `json:"displayName,omitempty"`// Etag: 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.Etagstring `json:"etag,omitempty"`// Name: 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}`.Namestring `json:"name,omitempty"`// Possible values:// "OWNERSHIP_SCOPE_UNSPECIFIED" - Unspecified ownership scope, same as// ALL_USERS.// "ALL_USERS" - The Budget is fully accessible to both billing account users// and resource users, provided that they have the required IAM permissions.// "BILLING_ACCOUNT" - Only billing account users have full access to the// `Budget`, resource-level users have read-only access, provided that they// have the required IAM permissions.OwnershipScopestring `json:"ownershipScope,omitempty"`// ThresholdRules: Optional. Rules that trigger alerts (notifications of// thresholds being crossed) when spend exceeds the specified percentages of// the budget. Optional for `pubsubTopic` notifications. Required if using// email notifications.ThresholdRules []*GoogleCloudBillingBudgetsV1beta1ThresholdRule `json:"thresholdRules,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AllUpdatesRule") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllUpdatesRule") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleCloudBillingBudgetsV1beta1Budget: A budget is a plan that describeswhat you expect to spend on Cloud projects, plus the rules to execute asspend is tracked against that plan, (for example, send an alert when 90% ofthe target spend is met). The budget time period is configurable, withoptions such as month (default), quarter, year, or custom time period.
func (GoogleCloudBillingBudgetsV1beta1Budget)MarshalJSON¶
func (sGoogleCloudBillingBudgetsV1beta1Budget) MarshalJSON() ([]byte,error)
typeGoogleCloudBillingBudgetsV1beta1BudgetAmount¶
type GoogleCloudBillingBudgetsV1beta1BudgetAmount struct {// LastPeriodAmount: Use the last period's actual spend as the budget for the// present period. LastPeriodAmount can only be set when the budget's time// period is a Filter.calendar_period. It cannot be set in combination with// Filter.custom_period.LastPeriodAmount *GoogleCloudBillingBudgetsV1beta1LastPeriodAmount `json:"lastPeriodAmount,omitempty"`// SpecifiedAmount: A specified amount to use as the budget. `currency_code` is// optional. If specified when creating a budget, it must match the currency of// the billing account. If specified when updating a budget, it must match the// currency_code of the existing budget. The `currency_code` is provided on// output.SpecifiedAmount *GoogleTypeMoney `json:"specifiedAmount,omitempty"`// ForceSendFields is a list of field names (e.g. "LastPeriodAmount") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LastPeriodAmount") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleCloudBillingBudgetsV1beta1BudgetAmount: The budgeted amount for eachusage period.
func (GoogleCloudBillingBudgetsV1beta1BudgetAmount)MarshalJSON¶
func (sGoogleCloudBillingBudgetsV1beta1BudgetAmount) MarshalJSON() ([]byte,error)
typeGoogleCloudBillingBudgetsV1beta1CreateBudgetRequest¶
type GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest struct {// Budget: Required. Budget to create.Budget *GoogleCloudBillingBudgetsV1beta1Budget `json:"budget,omitempty"`// ForceSendFields is a list of field names (e.g. "Budget") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Budget") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest: Request forCreateBudget
func (GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest)MarshalJSON¶
func (sGoogleCloudBillingBudgetsV1beta1CreateBudgetRequest) MarshalJSON() ([]byte,error)
typeGoogleCloudBillingBudgetsV1beta1CustomPeriod¶added inv0.41.0
type GoogleCloudBillingBudgetsV1beta1CustomPeriod struct {// EndDate: Optional. The end date of the time period. Budgets with elapsed end// date won't be processed. If unset, specifies to track all usage incurred// since the start_date.EndDate *GoogleTypeDate `json:"endDate,omitempty"`// StartDate: Required. The start date must be after January 1, 2017.StartDate *GoogleTypeDate `json:"startDate,omitempty"`// ForceSendFields is a list of field names (e.g. "EndDate") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EndDate") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleCloudBillingBudgetsV1beta1CustomPeriod: All date times begin at 12 AMUS and Canadian Pacific Time (UTC-8).
func (GoogleCloudBillingBudgetsV1beta1CustomPeriod)MarshalJSON¶added inv0.41.0
func (sGoogleCloudBillingBudgetsV1beta1CustomPeriod) MarshalJSON() ([]byte,error)
typeGoogleCloudBillingBudgetsV1beta1Filter¶
type GoogleCloudBillingBudgetsV1beta1Filter struct {// CalendarPeriod: Optional. Specifies to track usage for recurring calendar// period. For example, assume that CalendarPeriod.QUARTER is set. The budget// will track usage from April 1 to June 30, when the current calendar month is// April, May, June. After that, it will track usage from July 1 to September// 30 when the current calendar month is July, August, September, so on.//// Possible values:// "CALENDAR_PERIOD_UNSPECIFIED" - Calendar period is unset. This is the// default if the budget is for a custom time period (CustomPeriod).// "MONTH" - A month. Month starts on the first day of each month, such as// January 1, February 1, March 1, and so on.// "QUARTER" - A quarter. Quarters start on dates January 1, April 1, July 1,// and October 1 of each year.// "YEAR" - A year. Year starts on January 1.CalendarPeriodstring `json:"calendarPeriod,omitempty"`// CreditTypes: Optional. If Filter.credit_types_treatment is// INCLUDE_SPECIFIED_CREDITS, this is a list of credit types to be subtracted// from gross cost to determine the spend for threshold calculations. See a// list of acceptable credit type values// (https://cloud.google.com/billing/docs/how-to/export-data-bigquery-tables#credits-type).// If Filter.credit_types_treatment is **not** INCLUDE_SPECIFIED_CREDITS, this// field must be empty.CreditTypes []string `json:"creditTypes,omitempty"`// CreditTypesTreatment: Optional. If not set, default behavior is// `INCLUDE_ALL_CREDITS`.//// Possible values:// "CREDIT_TYPES_TREATMENT_UNSPECIFIED"// "INCLUDE_ALL_CREDITS" - All types of credit are subtracted from the gross// cost to determine the spend for threshold calculations.// "EXCLUDE_ALL_CREDITS" - All types of credit are added to the net cost to// determine the spend for threshold calculations.// "INCLUDE_SPECIFIED_CREDITS" - [Credit// types](https://cloud.google.com/billing/docs/how-to/export-data-bigquery-tabl// es#credits-type) specified in the credit_types field are subtracted from the// gross cost to determine the spend for threshold calculations.CreditTypesTreatmentstring `json:"creditTypesTreatment,omitempty"`// CustomPeriod: Optional. Specifies to track usage from any start date// (required) to any end date (optional). This time period is static, it does// not recur.CustomPeriod *GoogleCloudBillingBudgetsV1beta1CustomPeriod `json:"customPeriod,omitempty"`// Labels: Optional. A single label and value pair specifying that usage from// only this set of labeled resources should be included in the budget. If// omitted, the report will include all labeled and unlabeled usage. An object// containing a single "key": value` pair. Example: `{ "name": "wrench" }`.// _Currently, multiple entries or multiple values per entry are not allowed._Labels map[string][]interface{} `json:"labels,omitempty"`// Projects: Optional. A set of projects of the form `projects/{project}`,// specifying that usage from only this set of projects should be included in// the budget. If omitted, the report will include all usage for the billing// account, regardless of which project the usage occurred on.Projects []string `json:"projects,omitempty"`// ResourceAncestors: Optional. A set of folder and organization names of the// form `folders/{folderId}` or `organizations/{organizationId}`, specifying// that usage from only this set of folders and organizations should be// included in the budget. If omitted, the budget includes all usage that the// billing account pays for. If the folder or organization contains projects// that are paid for by a different Cloud Billing account, the budget *doesn't*// apply to those projects.ResourceAncestors []string `json:"resourceAncestors,omitempty"`// Services: Optional. A set of services of the form `services/{service_id}`,// specifying that usage from only this set of services should be included in// the budget. If omitted, the report will include usage for all the services.// The service names are available through the Catalog API://https://cloud.google.com/billing/v1/how-tos/catalog-api.Services []string `json:"services,omitempty"`// Subaccounts: Optional. A set of subaccounts of the form// `billingAccounts/{account_id}`, specifying that usage from only this set of// subaccounts should be included in the budget. If a subaccount is set to the// name of the parent account, usage from the parent account will be included.// If omitted, the report will include usage from the parent account and all// subaccounts, if they exist.Subaccounts []string `json:"subaccounts,omitempty"`// ForceSendFields is a list of field names (e.g. "CalendarPeriod") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CalendarPeriod") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleCloudBillingBudgetsV1beta1Filter: A filter for a budget, limiting thescope of the cost to calculate.
func (GoogleCloudBillingBudgetsV1beta1Filter)MarshalJSON¶
func (sGoogleCloudBillingBudgetsV1beta1Filter) MarshalJSON() ([]byte,error)
typeGoogleCloudBillingBudgetsV1beta1LastPeriodAmount¶
type GoogleCloudBillingBudgetsV1beta1LastPeriodAmount struct {}GoogleCloudBillingBudgetsV1beta1LastPeriodAmount: Describes a budget amounttargeted to the last Filter.calendar_period spend. At this time, the amountis automatically 100% of the last calendar period's spend; that is, thereare no other options yet. Future configuration options will be describedhere (for example, configuring a percentage of last period's spend).LastPeriodAmount cannot be set for a budget configured with aFilter.custom_period.
typeGoogleCloudBillingBudgetsV1beta1ListBudgetsResponse¶
type GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse struct {// Budgets: List of the budgets owned by the requested billing account.Budgets []*GoogleCloudBillingBudgetsV1beta1Budget `json:"budgets,omitempty"`// NextPageToken: If not empty, indicates that there may be more budgets that// match the request; this value should be passed in a new// `ListBudgetsRequest`.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Budgets") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Budgets") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse: Response forListBudgets
func (GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse)MarshalJSON¶
func (sGoogleCloudBillingBudgetsV1beta1ListBudgetsResponse) MarshalJSON() ([]byte,error)
typeGoogleCloudBillingBudgetsV1beta1ThresholdRule¶
type GoogleCloudBillingBudgetsV1beta1ThresholdRule struct {// SpendBasis: Optional. The type of basis used to determine if spend has// passed the threshold. Behavior defaults to CURRENT_SPEND if not set.//// Possible values:// "BASIS_UNSPECIFIED" - Unspecified threshold basis.// "CURRENT_SPEND" - Use current spend as the basis for comparison against// the threshold.// "FORECASTED_SPEND" - Use forecasted spend for the period as the basis for// comparison against the threshold. FORECASTED_SPEND can only be set when the// budget's time period is a Filter.calendar_period. It cannot be set in// combination with Filter.custom_period.SpendBasisstring `json:"spendBasis,omitempty"`// ThresholdPercent: Required. Send an alert when this threshold is exceeded.// This is a 1.0-based percentage, so 0.5 = 50%. Validation: non-negative// number.ThresholdPercentfloat64 `json:"thresholdPercent,omitempty"`// ForceSendFields is a list of field names (e.g. "SpendBasis") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SpendBasis") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleCloudBillingBudgetsV1beta1ThresholdRule: ThresholdRule contains thedefinition of a threshold. Threshold rules define the triggering events usedto generate a budget notification email. When a threshold is crossed (spendexceeds the specified percentages of the budget), budget alert emails aresent to the email recipients you specify in the NotificationsRule(#notificationsrule). Threshold rules also affect the fields included in theJSON data object(https://cloud.google.com/billing/docs/how-to/budgets-programmatic-notifications#notification_format)sent to a Pub/Sub topic. Threshold rules are _required_ if using emailnotifications. Threshold rules are _optional_ if only setting a`pubsubTopic` NotificationsRule (#NotificationsRule), unless you want yourJSON data object to include data about the thresholds you set. For moreinformation, see set budget threshold rules and actions(https://cloud.google.com/billing/docs/how-to/budgets#budget-actions).
func (GoogleCloudBillingBudgetsV1beta1ThresholdRule)MarshalJSON¶
func (sGoogleCloudBillingBudgetsV1beta1ThresholdRule) MarshalJSON() ([]byte,error)
func (*GoogleCloudBillingBudgetsV1beta1ThresholdRule)UnmarshalJSON¶
func (s *GoogleCloudBillingBudgetsV1beta1ThresholdRule) UnmarshalJSON(data []byte)error
typeGoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest¶
type GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest struct {// Budget: Required. The updated budget object. The budget to update is// specified by the budget name in the budget.Budget *GoogleCloudBillingBudgetsV1beta1Budget `json:"budget,omitempty"`// UpdateMask: Optional. Indicates which fields in the provided budget to// update. Read-only fields (such as `name`) cannot be changed. If this is not// provided, then only fields with non-default values from the request are// updated. See//https://developers.google.com/protocol-buffers/docs/proto3#default for more// details about default values.UpdateMaskstring `json:"updateMask,omitempty"`// ForceSendFields is a list of field names (e.g. "Budget") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Budget") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest: Request forUpdateBudget
func (GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest)MarshalJSON¶
func (sGoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest) MarshalJSON() ([]byte,error)
typeGoogleProtobufEmpty¶
type GoogleProtobufEmpty struct {// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`}GoogleProtobufEmpty: A generic empty message that you can re-use to avoiddefining duplicated empty messages in your APIs. A typical example is to useit as the request or the response type of an API method. For instance:service Foo { rpc Bar(google.protobuf.Empty) returns(google.protobuf.Empty); }
typeGoogleTypeDate¶added inv0.41.0
type GoogleTypeDate struct {// Day: Day of a month. Must be from 1 to 31 and valid for the year and month,// or 0 to specify a year by itself or a year and month where the day isn't// significant.Dayint64 `json:"day,omitempty"`// Month: Month of a year. Must be from 1 to 12, or 0 to specify a year without// a month and day.Monthint64 `json:"month,omitempty"`// Year: Year of the date. Must be from 1 to 9999, or 0 to specify a date// without a year.Yearint64 `json:"year,omitempty"`// ForceSendFields is a list of field names (e.g. "Day") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Day") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleTypeDate: Represents a whole or partial calendar date, such as abirthday. The time of day and time zone are either specified elsewhere orare insignificant. The date is relative to the Gregorian Calendar. This canrepresent one of the following: * A full date, with non-zero year, month,and day values. * A month and day, with a zero year (for example, ananniversary). * A year on its own, with a zero month and a zero day. * Ayear and month, with a zero day (for example, a credit card expirationdate). Related types: * google.type.TimeOfDay * google.type.DateTime *google.protobuf.Timestamp
func (GoogleTypeDate)MarshalJSON¶added inv0.41.0
func (sGoogleTypeDate) MarshalJSON() ([]byte,error)
typeGoogleTypeMoney¶
type GoogleTypeMoney struct {// CurrencyCode: The three-letter currency code defined in ISO 4217.CurrencyCodestring `json:"currencyCode,omitempty"`// Nanos: Number of nano (10^-9) units of the amount. The value must be between// -999,999,999 and +999,999,999 inclusive. If `units` is positive, `nanos`// must be positive or zero. If `units` is zero, `nanos` can be positive, zero,// or negative. If `units` is negative, `nanos` must be negative or zero. For// example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.Nanosint64 `json:"nanos,omitempty"`// Units: The whole units of the amount. For example if `currencyCode` is// "USD", then 1 unit is one US dollar.Unitsint64 `json:"units,omitempty,string"`// ForceSendFields is a list of field names (e.g. "CurrencyCode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CurrencyCode") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}GoogleTypeMoney: Represents an amount of money with its currency type.
func (GoogleTypeMoney)MarshalJSON¶
func (sGoogleTypeMoney) MarshalJSON() ([]byte,error)
typeService¶
type Service struct {BasePathstring// API endpoint base URLUserAgentstring// optional additional User-Agent fragmentBillingAccounts *BillingAccountsService// contains filtered or unexported fields} funcNewdeprecated
New creates a new Service. It uses the provided http.Client for requests.
Deprecated: please use NewService instead.To provide a custom HTTP client, use option.WithHTTPClient.If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.
funcNewService¶
NewService creates a new Service.