@@ -221,7 +221,8 @@ components:
221
221
name: cloud_account_id
222
222
required: true
223
223
schema:
224
- type: string
224
+ format: int64
225
+ type: integer
225
226
CloudWorkloadSecurityAgentRuleID:
226
227
description: The ID of the Agent rule
227
228
example: 3b5-v82-ns6
@@ -4500,8 +4501,7 @@ components:
4500
4501
$ref: '#/components/schemas/AwsCURConfigAttributes'
4501
4502
id:
4502
4503
description: The ID of the AWS CUR config.
4503
- format: int64
4504
- type: integer
4504
+ type: string
4505
4505
type:
4506
4506
$ref: '#/components/schemas/AwsCURConfigType'
4507
4507
required:
@@ -4642,9 +4642,6 @@ components:
4642
4642
description: The region the bucket is located in.
4643
4643
example: us-east-1
4644
4644
type: string
4645
- is_enabled:
4646
- description: Whether or not the Cloud Cost Management account is enabled.
4647
- type: boolean
4648
4645
months:
4649
4646
description: The month of the report.
4650
4647
format: int32
@@ -5136,8 +5133,7 @@ components:
5136
5133
type: string
5137
5134
id:
5138
5135
description: The ID of the Azure config.
5139
- format: int64
5140
- type: integer
5136
+ type: string
5141
5137
months:
5142
5138
deprecated: true
5143
5139
description: The number of months the report has been backfilled.
@@ -5187,8 +5183,7 @@ components:
5187
5183
$ref: '#/components/schemas/AzureUCConfigPairAttributes'
5188
5184
id:
5189
5185
description: The ID of Cloud Cost Management account.
5190
- format: int64
5191
- type: integer
5186
+ type: string
5192
5187
type:
5193
5188
$ref: '#/components/schemas/AzureUCConfigPairType'
5194
5189
required:
@@ -5205,8 +5200,7 @@ components:
5205
5200
type: array
5206
5201
id:
5207
5202
description: The ID of the Azure config pair.
5208
- format: int64
5209
- type: integer
5203
+ type: string
5210
5204
required:
5211
5205
- configs
5212
5206
type: object
@@ -49730,13 +49724,44 @@ paths:
49730
49724
get:
49731
49725
description: List the Custom Costs files.
49732
49726
operationId: ListCustomCostsFiles
49727
+ parameters:
49728
+ - description: Page number for pagination
49729
+ in: query
49730
+ name: page[number]
49731
+ schema:
49732
+ format: int64
49733
+ type: integer
49734
+ - description: Page size for pagination
49735
+ in: query
49736
+ name: page[size]
49737
+ schema:
49738
+ default: 100
49739
+ format: int64
49740
+ type: integer
49741
+ - description: Filter by file status
49742
+ in: query
49743
+ name: filter[status]
49744
+ schema:
49745
+ type: string
49746
+ - description: Sort key with optional descending prefix
49747
+ in: query
49748
+ name: sort
49749
+ schema:
49750
+ default: created_at
49751
+ type: string
49733
49752
responses:
49734
49753
'200':
49735
49754
content:
49736
49755
application/json:
49737
49756
schema:
49738
49757
$ref: '#/components/schemas/CustomCostsFileListResponse'
49739
49758
description: OK
49759
+ '400':
49760
+ content:
49761
+ application/json:
49762
+ schema:
49763
+ $ref: '#/components/schemas/APIErrorResponse'
49764
+ description: Bad Request
49740
49765
'403':
49741
49766
content:
49742
49767
application/json:
@@ -49769,6 +49794,12 @@ paths:
49769
49794
schema:
49770
49795
$ref: '#/components/schemas/CustomCostsFileUploadResponse'
49771
49796
description: Accepted
49797
+ '400':
49798
+ content:
49799
+ application/json:
49800
+ schema:
49801
+ $ref: '#/components/schemas/APIErrorResponse'
49802
+ description: Bad Request
49772
49803
'403':
49773
49804
content:
49774
49805
application/json:
@@ -49800,6 +49831,12 @@ paths:
49800
49831
schema:
49801
49832
$ref: '#/components/schemas/APIErrorResponse'
49802
49833
description: Forbidden
49834
+ '404':
49835
+ content:
49836
+ application/json:
49837
+ schema:
49838
+ $ref: '#/components/schemas/APIErrorResponse'
49839
+ description: Not Found
49803
49840
'429':
49804
49841
$ref: '#/components/responses/TooManyRequestsResponse'
49805
49842
security:
@@ -49828,6 +49865,12 @@ paths:
49828
49865
schema:
49829
49866
$ref: '#/components/schemas/APIErrorResponse'
49830
49867
description: Forbidden
49868
+ '404':
49869
+ content:
49870
+ application/json:
49871
+ schema:
49872
+ $ref: '#/components/schemas/APIErrorResponse'
49873
+ description: Not Found
49831
49874
'429':
49832
49875
$ref: '#/components/responses/TooManyRequestsResponse'
49833
49876
security:
0 commit comments