File tree Expand file tree Collapse file tree 3 files changed +28
-7
lines changed
usage_metering/src/v1/models Expand file tree Collapse file tree 3 files changed +28
-7
lines changed Original file line number Diff line number Diff line change @@ -14785,9 +14785,6 @@ components:
14785
14785
description: Username to use for the basic authentication.
14786
14786
example: my_username
14787
14787
type: string
14788
- required:
14789
- - password
14790
- - username
14791
14788
type: object
14792
14789
SyntheticsBasicAuthWebType:
14793
14790
default: web
@@ -18616,6 +18613,14 @@ components:
18616
18613
description: The total account usage.
18617
18614
format: int64
18618
18615
type: integer
18616
+ account_committed_usage:
18617
+ description: The total account committed usage.
18618
+ format: int64
18619
+ type: integer
18620
+ account_on_demand_usage:
18621
+ description: The total account on-demand usage.
18622
+ format: int64
18623
+ type: integer
18619
18624
elapsed_usage_hours:
18620
18625
description: Elapsed usage hours for some billable product.
18621
18626
format: int64
Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ export class SyntheticsBasicAuthWeb {
9
9
/**
10
10
* Password to use for the basic authentication.
11
11
*/
12
- "password" : string ;
12
+ "password" ? : string ;
13
13
/**
14
14
* The type of basic authentication to use when performing the test.
15
15
*/
16
16
"type" ?: SyntheticsBasicAuthWebType ;
17
17
/**
18
18
* Username to use for the basic authentication.
19
19
*/
20
- "username" : string ;
20
+ "username" ? : string ;
21
21
/**
22
22
* A container for additional, undeclared properties.
23
23
* This is a holder for any undeclared properties as specified with
@@ -36,7 +36,6 @@ export class SyntheticsBasicAuthWeb {
36
36
password : {
37
37
baseName : "password" ,
38
38
type : "string" ,
39
- required : true ,
40
39
} ,
41
40
type : {
42
41
baseName : "type" ,
@@ -45,7 +44,6 @@ export class SyntheticsBasicAuthWeb {
45
44
username : {
46
45
baseName : "username" ,
47
46
type : "string" ,
48
- required : true ,
49
47
} ,
50
48
additionalProperties : {
51
49
baseName : "additionalProperties" ,
Original file line number Diff line number Diff line change @@ -8,6 +8,14 @@ export class UsageBillableSummaryBody {
8
8
* The total account usage.
9
9
*/
10
10
"accountBillableUsage" ?: number ;
11
+ /**
12
+ * The total account committed usage.
13
+ */
14
+ "accountCommittedUsage" ?: number ;
15
+ /**
16
+ * The total account on-demand usage.
17
+ */
18
+ "accountOnDemandUsage" ?: number ;
11
19
/**
12
20
* Elapsed usage hours for some billable product.
13
21
*/
@@ -52,6 +60,16 @@ export class UsageBillableSummaryBody {
52
60
type : "number" ,
53
61
format : "int64" ,
54
62
} ,
63
+ accountCommittedUsage : {
64
+ baseName : "account_committed_usage" ,
65
+ type : "number" ,
66
+ format : "int64" ,
67
+ } ,
68
+ accountOnDemandUsage : {
69
+ baseName : "account_on_demand_usage" ,
70
+ type : "number" ,
71
+ format : "int64" ,
72
+ } ,
55
73
elapsedUsageHours : {
56
74
baseName : "elapsed_usage_hours" ,
57
75
type : "number" ,
You can’t perform that action at this time.
0 commit comments