Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use the Cloud Ops API in your project, preform the following 4 steps:

The client is expected to pass in a `temporal-cloud-api-version` header with the api version identifier with every request it makes to the apis. The backend will use the version to safely mutate resources. The `temporal:versioning:min_version` label specifies the minimum version of the API that supports the field.

Current Version `v0.15.0`
Current Version `v0.16.0`

### URL

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.15.0
v0.16.0
11 changes: 11 additions & 0 deletions temporal/api/cloud/billing/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ message BillingReportSpec {
// The description for the billing report.
// Optional, default is empty.
string description = 4;
// The data granularity of the billing report.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

all copied directly from saas-proto

// Optional, default is hourly.
// temporal:versioning:min_version=v0.16.0
BillingReportGranularity granularity = 5;

enum BillingReportGranularity {
BILLING_REPORT_GRANULARITY_UNSPECIFIED = 0;
BILLING_REPORT_GRANULARITY_HOURLY = 1;
BILLING_REPORT_GRANULARITY_DAILY = 2;
BILLING_REPORT_GRANULARITY_MONTHLY = 3;
}
}

message BillingReport {
Expand Down
Loading