@maxim_mazurok/gapi.client.cloudbilling-v1 0.2.20260612 → 0.3.20260619
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +4 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://cloudbilling.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260619
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -28,13 +28,9 @@ declare namespace gapi.client {
|
|
|
28
28
|
/** The number of intervals to aggregate over. Example: If aggregation_level is "DAILY" and aggregation_count is 14, aggregation will be over 14 days. */
|
|
29
29
|
aggregationCount?: number;
|
|
30
30
|
aggregationInterval?:
|
|
31
|
-
| '
|
|
32
|
-
| 'DAILY'
|
|
33
|
-
| 'MONTHLY';
|
|
31
|
+
'AGGREGATION_INTERVAL_UNSPECIFIED' | 'DAILY' | 'MONTHLY';
|
|
34
32
|
aggregationLevel?:
|
|
35
|
-
| '
|
|
36
|
-
| 'ACCOUNT'
|
|
37
|
-
| 'PROJECT';
|
|
33
|
+
'AGGREGATION_LEVEL_UNSPECIFIED' | 'ACCOUNT' | 'PROJECT';
|
|
38
34
|
}
|
|
39
35
|
interface AuditConfig {
|
|
40
36
|
/** The configuration for logging of each type of permission. */
|
|
@@ -47,10 +43,7 @@ declare namespace gapi.client {
|
|
|
47
43
|
exemptedMembers?: string[];
|
|
48
44
|
/** The log type that this config enables. */
|
|
49
45
|
logType?:
|
|
50
|
-
| '
|
|
51
|
-
| 'ADMIN_READ'
|
|
52
|
-
| 'DATA_WRITE'
|
|
53
|
-
| 'DATA_READ';
|
|
46
|
+
'LOG_TYPE_UNSPECIFIED' | 'ADMIN_READ' | 'DATA_WRITE' | 'DATA_READ';
|
|
54
47
|
}
|
|
55
48
|
interface BillingAccount {
|
|
56
49
|
/** Optional. The currency in which the billing account is billed and charged, represented as an ISO 4217 code such as `USD`. Billing account currency is determined at the time of billing account creation and cannot be updated subsequently, so this field should not be set on update requests. In addition, a subaccount always matches the currency of its parent billing account, so this field should not be set on subaccount creation requests. Clients can read this field to determine the currency of an existing billing account. */
|