@vantage-sh/vantage-client 2.10.0 → 2.11.0
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/dist/index.d.mts +1170 -136
- package/dist/index.d.ts +1170 -136
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1892,6 +1892,58 @@ interface paths {
|
|
|
1892
1892
|
patch?: never;
|
|
1893
1893
|
trace?: never;
|
|
1894
1894
|
};
|
|
1895
|
+
"/report_forecasts": {
|
|
1896
|
+
parameters: {
|
|
1897
|
+
query?: never;
|
|
1898
|
+
header?: never;
|
|
1899
|
+
path?: never;
|
|
1900
|
+
cookie?: never;
|
|
1901
|
+
};
|
|
1902
|
+
/**
|
|
1903
|
+
* Get all report forecasts
|
|
1904
|
+
* @description Return all scenario-model ReportForecasts for a CostReport.
|
|
1905
|
+
*/
|
|
1906
|
+
get: operations["getReportForecasts"];
|
|
1907
|
+
put?: never;
|
|
1908
|
+
/**
|
|
1909
|
+
* Create report forecast
|
|
1910
|
+
* @description Create a scenario-model ReportForecast.
|
|
1911
|
+
*/
|
|
1912
|
+
post: operations["createReportForecast"];
|
|
1913
|
+
delete?: never;
|
|
1914
|
+
options?: never;
|
|
1915
|
+
head?: never;
|
|
1916
|
+
patch?: never;
|
|
1917
|
+
trace?: never;
|
|
1918
|
+
};
|
|
1919
|
+
"/report_forecasts/{report_forecast_token}": {
|
|
1920
|
+
parameters: {
|
|
1921
|
+
query?: never;
|
|
1922
|
+
header?: never;
|
|
1923
|
+
path?: never;
|
|
1924
|
+
cookie?: never;
|
|
1925
|
+
};
|
|
1926
|
+
/**
|
|
1927
|
+
* Get report forecast by token
|
|
1928
|
+
* @description Return a scenario-model ReportForecast.
|
|
1929
|
+
*/
|
|
1930
|
+
get: operations["getReportForecast"];
|
|
1931
|
+
/**
|
|
1932
|
+
* Update report forecast
|
|
1933
|
+
* @description Update a scenario-model ReportForecast.
|
|
1934
|
+
*/
|
|
1935
|
+
put: operations["updateReportForecast"];
|
|
1936
|
+
post?: never;
|
|
1937
|
+
/**
|
|
1938
|
+
* Delete report forecast
|
|
1939
|
+
* @description Delete a scenario-model ReportForecast.
|
|
1940
|
+
*/
|
|
1941
|
+
delete: operations["deleteReportForecast"];
|
|
1942
|
+
options?: never;
|
|
1943
|
+
head?: never;
|
|
1944
|
+
patch?: never;
|
|
1945
|
+
trace?: never;
|
|
1946
|
+
};
|
|
1895
1947
|
"/report_notifications": {
|
|
1896
1948
|
parameters: {
|
|
1897
1949
|
query?: never;
|
|
@@ -2108,6 +2160,58 @@ interface paths {
|
|
|
2108
2160
|
patch?: never;
|
|
2109
2161
|
trace?: never;
|
|
2110
2162
|
};
|
|
2163
|
+
"/scenario_models": {
|
|
2164
|
+
parameters: {
|
|
2165
|
+
query?: never;
|
|
2166
|
+
header?: never;
|
|
2167
|
+
path?: never;
|
|
2168
|
+
cookie?: never;
|
|
2169
|
+
};
|
|
2170
|
+
/**
|
|
2171
|
+
* Get all scenario models
|
|
2172
|
+
* @description Return all ScenarioModels.
|
|
2173
|
+
*/
|
|
2174
|
+
get: operations["getScenarioModels"];
|
|
2175
|
+
put?: never;
|
|
2176
|
+
/**
|
|
2177
|
+
* Create scenario model
|
|
2178
|
+
* @description Create a ScenarioModel.
|
|
2179
|
+
*/
|
|
2180
|
+
post: operations["createScenarioModel"];
|
|
2181
|
+
delete?: never;
|
|
2182
|
+
options?: never;
|
|
2183
|
+
head?: never;
|
|
2184
|
+
patch?: never;
|
|
2185
|
+
trace?: never;
|
|
2186
|
+
};
|
|
2187
|
+
"/scenario_models/{scenario_model_token}": {
|
|
2188
|
+
parameters: {
|
|
2189
|
+
query?: never;
|
|
2190
|
+
header?: never;
|
|
2191
|
+
path?: never;
|
|
2192
|
+
cookie?: never;
|
|
2193
|
+
};
|
|
2194
|
+
/**
|
|
2195
|
+
* Get scenario model by token
|
|
2196
|
+
* @description Return a ScenarioModel.
|
|
2197
|
+
*/
|
|
2198
|
+
get: operations["getScenarioModel"];
|
|
2199
|
+
/**
|
|
2200
|
+
* Update scenario model
|
|
2201
|
+
* @description Update a ScenarioModel.
|
|
2202
|
+
*/
|
|
2203
|
+
put: operations["updateScenarioModel"];
|
|
2204
|
+
post?: never;
|
|
2205
|
+
/**
|
|
2206
|
+
* Delete scenario model
|
|
2207
|
+
* @description Delete a ScenarioModel.
|
|
2208
|
+
*/
|
|
2209
|
+
delete: operations["deleteScenarioModel"];
|
|
2210
|
+
options?: never;
|
|
2211
|
+
head?: never;
|
|
2212
|
+
patch?: never;
|
|
2213
|
+
trace?: never;
|
|
2214
|
+
};
|
|
2111
2215
|
"/segments": {
|
|
2112
2216
|
parameters: {
|
|
2113
2217
|
query?: never;
|
|
@@ -6154,6 +6258,38 @@ interface components {
|
|
|
6154
6258
|
/** @description The type of change the ReportNotification is tracking. Possible values: percentage, dollars. */
|
|
6155
6259
|
change?: string;
|
|
6156
6260
|
};
|
|
6261
|
+
/** @description ReportForecasts model */
|
|
6262
|
+
ReportForecasts: {
|
|
6263
|
+
links?: components["schemas"]["Links"];
|
|
6264
|
+
report_forecasts: components["schemas"]["ReportForecast"][];
|
|
6265
|
+
};
|
|
6266
|
+
/** @description ReportForecast model */
|
|
6267
|
+
ReportForecast: {
|
|
6268
|
+
token: string;
|
|
6269
|
+
title: string;
|
|
6270
|
+
cost_report_token: string;
|
|
6271
|
+
scenario_model_tokens: string[];
|
|
6272
|
+
business_metric_token: string | null;
|
|
6273
|
+
is_default: boolean;
|
|
6274
|
+
created_by_token: string | null;
|
|
6275
|
+
created_at: string;
|
|
6276
|
+
updated_at: string;
|
|
6277
|
+
};
|
|
6278
|
+
/** @description Create a scenario-model ReportForecast. */
|
|
6279
|
+
createReportForecast: {
|
|
6280
|
+
cost_report_token: string;
|
|
6281
|
+
title: string;
|
|
6282
|
+
scenario_model_tokens?: string[];
|
|
6283
|
+
business_metric_token?: string | null;
|
|
6284
|
+
set_as_default?: boolean;
|
|
6285
|
+
};
|
|
6286
|
+
/** @description Update a scenario-model ReportForecast. */
|
|
6287
|
+
updateReportForecast: {
|
|
6288
|
+
title?: string;
|
|
6289
|
+
scenario_model_tokens?: string[];
|
|
6290
|
+
business_metric_token?: string | null;
|
|
6291
|
+
set_as_default?: boolean;
|
|
6292
|
+
};
|
|
6157
6293
|
/** @description ResourceReportColumns model */
|
|
6158
6294
|
ResourceReportColumns: {
|
|
6159
6295
|
/** @description Array of available column names for the specified resource type. */
|
|
@@ -6302,6 +6438,87 @@ interface components {
|
|
|
6302
6438
|
/** @description The filter query language to apply to the SavedFilter, which subsequently gets applied to a CostReport. Additional documentation available at https://docs.vantage.sh/vql. */
|
|
6303
6439
|
filter?: string;
|
|
6304
6440
|
};
|
|
6441
|
+
/** @description ScenarioModels model */
|
|
6442
|
+
ScenarioModels: {
|
|
6443
|
+
links?: components["schemas"]["Links"];
|
|
6444
|
+
scenario_models: components["schemas"]["ScenarioModel"][];
|
|
6445
|
+
};
|
|
6446
|
+
/** @description ScenarioModel model */
|
|
6447
|
+
ScenarioModel: {
|
|
6448
|
+
token: string;
|
|
6449
|
+
title: string;
|
|
6450
|
+
/** Format: int32 */
|
|
6451
|
+
priority: number | null;
|
|
6452
|
+
workspace_token: string | null;
|
|
6453
|
+
provider: string | null;
|
|
6454
|
+
service: string | null;
|
|
6455
|
+
periods: components["schemas"]["ScenarioModelPeriod"][];
|
|
6456
|
+
created_by_token: string | null;
|
|
6457
|
+
created_at: string;
|
|
6458
|
+
updated_at: string;
|
|
6459
|
+
};
|
|
6460
|
+
ScenarioModelPeriod: {
|
|
6461
|
+
/**
|
|
6462
|
+
* @description The ISO 8601 start date of the period.
|
|
6463
|
+
* @example 2026-01-01
|
|
6464
|
+
*/
|
|
6465
|
+
start_at: string;
|
|
6466
|
+
/**
|
|
6467
|
+
* @description The ISO 8601 end date of the period.
|
|
6468
|
+
* @example 2026-03-31
|
|
6469
|
+
*/
|
|
6470
|
+
end_at: string | null;
|
|
6471
|
+
/**
|
|
6472
|
+
* @description The period amount as a string to preserve decimal precision.
|
|
6473
|
+
* @example 1250.75
|
|
6474
|
+
*/
|
|
6475
|
+
amount: string;
|
|
6476
|
+
/**
|
|
6477
|
+
* @description Whether the amount is in dollars or percent.
|
|
6478
|
+
* @enum {string}
|
|
6479
|
+
*/
|
|
6480
|
+
amount_type: "dollar" | "percent";
|
|
6481
|
+
};
|
|
6482
|
+
/** @description Create a ScenarioModel. */
|
|
6483
|
+
createScenarioModel: {
|
|
6484
|
+
title: string;
|
|
6485
|
+
/** Format: int32 */
|
|
6486
|
+
priority?: number | null;
|
|
6487
|
+
provider?: string | null;
|
|
6488
|
+
service?: string | null;
|
|
6489
|
+
workspace_token?: string;
|
|
6490
|
+
/** @description The periods for the ScenarioModel. */
|
|
6491
|
+
periods?: {
|
|
6492
|
+
/** Format: date */
|
|
6493
|
+
start_at: string;
|
|
6494
|
+
/** Format: date */
|
|
6495
|
+
end_at?: string | null;
|
|
6496
|
+
/** Format: double */
|
|
6497
|
+
amount: number;
|
|
6498
|
+
/** @enum {string} */
|
|
6499
|
+
amount_type: "dollar" | "percent";
|
|
6500
|
+
}[];
|
|
6501
|
+
};
|
|
6502
|
+
/** @description Update a ScenarioModel. */
|
|
6503
|
+
updateScenarioModel: {
|
|
6504
|
+
title?: string;
|
|
6505
|
+
/** Format: int32 */
|
|
6506
|
+
priority?: number | null;
|
|
6507
|
+
provider?: string | null;
|
|
6508
|
+
service?: string | null;
|
|
6509
|
+
workspace_token?: string;
|
|
6510
|
+
/** @description The periods for the ScenarioModel. */
|
|
6511
|
+
periods?: {
|
|
6512
|
+
/** Format: date */
|
|
6513
|
+
start_at: string;
|
|
6514
|
+
/** Format: date */
|
|
6515
|
+
end_at?: string | null;
|
|
6516
|
+
/** Format: double */
|
|
6517
|
+
amount: number;
|
|
6518
|
+
/** @enum {string} */
|
|
6519
|
+
amount_type: "dollar" | "percent";
|
|
6520
|
+
}[];
|
|
6521
|
+
};
|
|
6305
6522
|
/** @description Segments model */
|
|
6306
6523
|
Segments: {
|
|
6307
6524
|
links?: components["schemas"]["Links"];
|
|
@@ -14407,12 +14624,11 @@ interface operations {
|
|
|
14407
14624
|
};
|
|
14408
14625
|
};
|
|
14409
14626
|
};
|
|
14410
|
-
|
|
14627
|
+
getReportForecasts: {
|
|
14411
14628
|
parameters: {
|
|
14412
|
-
query
|
|
14413
|
-
|
|
14629
|
+
query: {
|
|
14630
|
+
cost_report_token: string;
|
|
14414
14631
|
page?: number;
|
|
14415
|
-
/** @description The amount of results to return. The maximum is 1000. */
|
|
14416
14632
|
limit?: number;
|
|
14417
14633
|
};
|
|
14418
14634
|
header?: never;
|
|
@@ -14421,6 +14637,7 @@ interface operations {
|
|
|
14421
14637
|
};
|
|
14422
14638
|
requestBody?: never;
|
|
14423
14639
|
responses: {
|
|
14640
|
+
/** @description Return all scenario-model ReportForecasts for a CostReport. */
|
|
14424
14641
|
200: {
|
|
14425
14642
|
headers: {
|
|
14426
14643
|
[name: string]: unknown;
|
|
@@ -14429,32 +14646,44 @@ interface operations {
|
|
|
14429
14646
|
/**
|
|
14430
14647
|
* @example {
|
|
14431
14648
|
* "links": {
|
|
14432
|
-
* "self": "https://api.vantage.sh/v2/
|
|
14433
|
-
* "first": "https://api.vantage.sh/v2/
|
|
14649
|
+
* "self": "https://api.vantage.sh/v2/report_forecasts?cost_report_token=rprt_fd7190753bb1ce4a",
|
|
14650
|
+
* "first": "https://api.vantage.sh/v2/report_forecasts?cost_report_token=rprt_fd7190753bb1ce4a&page=1",
|
|
14434
14651
|
* "next": null,
|
|
14435
|
-
* "last": "https://api.vantage.sh/v2/
|
|
14652
|
+
* "last": "https://api.vantage.sh/v2/report_forecasts?cost_report_token=rprt_fd7190753bb1ce4a&page=1",
|
|
14436
14653
|
* "prev": null
|
|
14437
14654
|
* },
|
|
14438
|
-
* "
|
|
14655
|
+
* "report_forecasts": [
|
|
14439
14656
|
* {
|
|
14440
|
-
* "token": "
|
|
14441
|
-
* "title": "
|
|
14442
|
-
* "cost_report_token": "
|
|
14443
|
-
* "
|
|
14444
|
-
* "
|
|
14657
|
+
* "token": "rprt_frcst_b6fc93cfbe7bb782",
|
|
14658
|
+
* "title": "Board Plan",
|
|
14659
|
+
* "cost_report_token": "rprt_fd7190753bb1ce4a",
|
|
14660
|
+
* "scenario_model_tokens": [
|
|
14661
|
+
* "frcst_mdl_998be85cff4d0574"
|
|
14445
14662
|
* ],
|
|
14446
|
-
* "
|
|
14447
|
-
* "
|
|
14663
|
+
* "business_metric_token": null,
|
|
14664
|
+
* "is_default": false,
|
|
14665
|
+
* "created_by_token": "usr_9be7c063f1529dff",
|
|
14666
|
+
* "created_at": "2026-07-28T15:37:51Z",
|
|
14667
|
+
* "updated_at": "2026-07-28T15:37:51Z"
|
|
14448
14668
|
* }
|
|
14449
14669
|
* ]
|
|
14450
14670
|
* }
|
|
14451
14671
|
*/
|
|
14452
|
-
"application/json": components["schemas"]["
|
|
14672
|
+
"application/json": components["schemas"]["ReportForecasts"];
|
|
14673
|
+
};
|
|
14674
|
+
};
|
|
14675
|
+
/** @description NotFound */
|
|
14676
|
+
404: {
|
|
14677
|
+
headers: {
|
|
14678
|
+
[name: string]: unknown;
|
|
14679
|
+
};
|
|
14680
|
+
content: {
|
|
14681
|
+
"application/json": components["schemas"]["Errors"];
|
|
14453
14682
|
};
|
|
14454
14683
|
};
|
|
14455
14684
|
};
|
|
14456
14685
|
};
|
|
14457
|
-
|
|
14686
|
+
createReportForecast: {
|
|
14458
14687
|
parameters: {
|
|
14459
14688
|
query?: never;
|
|
14460
14689
|
header?: never;
|
|
@@ -14463,10 +14692,11 @@ interface operations {
|
|
|
14463
14692
|
};
|
|
14464
14693
|
requestBody: {
|
|
14465
14694
|
content: {
|
|
14466
|
-
"application/json": components["schemas"]["
|
|
14695
|
+
"application/json": components["schemas"]["createReportForecast"];
|
|
14467
14696
|
};
|
|
14468
14697
|
};
|
|
14469
14698
|
responses: {
|
|
14699
|
+
/** @description Create a scenario-model ReportForecast. */
|
|
14470
14700
|
201: {
|
|
14471
14701
|
headers: {
|
|
14472
14702
|
[name: string]: unknown;
|
|
@@ -14474,21 +14704,33 @@ interface operations {
|
|
|
14474
14704
|
content: {
|
|
14475
14705
|
/**
|
|
14476
14706
|
* @example {
|
|
14477
|
-
* "token": "
|
|
14478
|
-
* "title": "
|
|
14479
|
-
* "cost_report_token": "
|
|
14480
|
-
* "
|
|
14481
|
-
* "
|
|
14707
|
+
* "token": "rprt_frcst_5d4cc7ef29bed6d2",
|
|
14708
|
+
* "title": "Operating Plan",
|
|
14709
|
+
* "cost_report_token": "rprt_82a0304aaf254804",
|
|
14710
|
+
* "scenario_model_tokens": [
|
|
14711
|
+
* "frcst_mdl_ebb14bfd8eabc5fd"
|
|
14482
14712
|
* ],
|
|
14483
|
-
* "
|
|
14484
|
-
* "
|
|
14713
|
+
* "business_metric_token": null,
|
|
14714
|
+
* "is_default": true,
|
|
14715
|
+
* "created_by_token": "usr_10a09baaa100511e",
|
|
14716
|
+
* "created_at": "2026-07-28T15:37:52Z",
|
|
14717
|
+
* "updated_at": "2026-07-28T15:37:52Z"
|
|
14485
14718
|
* }
|
|
14486
14719
|
*/
|
|
14487
|
-
"application/json": components["schemas"]["
|
|
14720
|
+
"application/json": components["schemas"]["ReportForecast"];
|
|
14488
14721
|
};
|
|
14489
14722
|
};
|
|
14490
|
-
/** @description
|
|
14491
|
-
|
|
14723
|
+
/** @description Forbidden */
|
|
14724
|
+
403: {
|
|
14725
|
+
headers: {
|
|
14726
|
+
[name: string]: unknown;
|
|
14727
|
+
};
|
|
14728
|
+
content: {
|
|
14729
|
+
"application/json": components["schemas"]["Errors"];
|
|
14730
|
+
};
|
|
14731
|
+
};
|
|
14732
|
+
/** @description NotFound */
|
|
14733
|
+
404: {
|
|
14492
14734
|
headers: {
|
|
14493
14735
|
[name: string]: unknown;
|
|
14494
14736
|
};
|
|
@@ -14507,17 +14749,18 @@ interface operations {
|
|
|
14507
14749
|
};
|
|
14508
14750
|
};
|
|
14509
14751
|
};
|
|
14510
|
-
|
|
14752
|
+
getReportForecast: {
|
|
14511
14753
|
parameters: {
|
|
14512
14754
|
query?: never;
|
|
14513
14755
|
header?: never;
|
|
14514
14756
|
path: {
|
|
14515
|
-
|
|
14757
|
+
report_forecast_token: string;
|
|
14516
14758
|
};
|
|
14517
14759
|
cookie?: never;
|
|
14518
14760
|
};
|
|
14519
14761
|
requestBody?: never;
|
|
14520
14762
|
responses: {
|
|
14763
|
+
/** @description Return a scenario-model ReportForecast. */
|
|
14521
14764
|
200: {
|
|
14522
14765
|
headers: {
|
|
14523
14766
|
[name: string]: unknown;
|
|
@@ -14525,17 +14768,20 @@ interface operations {
|
|
|
14525
14768
|
content: {
|
|
14526
14769
|
/**
|
|
14527
14770
|
* @example {
|
|
14528
|
-
* "token": "
|
|
14529
|
-
* "title": "
|
|
14530
|
-
* "cost_report_token": "
|
|
14531
|
-
* "
|
|
14532
|
-
* "
|
|
14771
|
+
* "token": "rprt_frcst_4eb4953f73d088c3",
|
|
14772
|
+
* "title": "Board Plan",
|
|
14773
|
+
* "cost_report_token": "rprt_89d0dacbe6bdee16",
|
|
14774
|
+
* "scenario_model_tokens": [
|
|
14775
|
+
* "frcst_mdl_f2fbc239e8f733f5"
|
|
14533
14776
|
* ],
|
|
14534
|
-
* "
|
|
14535
|
-
* "
|
|
14777
|
+
* "business_metric_token": null,
|
|
14778
|
+
* "is_default": false,
|
|
14779
|
+
* "created_by_token": "usr_9c1be40b31fe536c",
|
|
14780
|
+
* "created_at": "2026-07-28T15:37:50Z",
|
|
14781
|
+
* "updated_at": "2026-07-28T15:37:50Z"
|
|
14536
14782
|
* }
|
|
14537
14783
|
*/
|
|
14538
|
-
"application/json": components["schemas"]["
|
|
14784
|
+
"application/json": components["schemas"]["ReportForecast"];
|
|
14539
14785
|
};
|
|
14540
14786
|
};
|
|
14541
14787
|
/** @description NotFound */
|
|
@@ -14549,21 +14795,22 @@ interface operations {
|
|
|
14549
14795
|
};
|
|
14550
14796
|
};
|
|
14551
14797
|
};
|
|
14552
|
-
|
|
14798
|
+
updateReportForecast: {
|
|
14553
14799
|
parameters: {
|
|
14554
14800
|
query?: never;
|
|
14555
14801
|
header?: never;
|
|
14556
14802
|
path: {
|
|
14557
|
-
|
|
14803
|
+
report_forecast_token: string;
|
|
14558
14804
|
};
|
|
14559
14805
|
cookie?: never;
|
|
14560
14806
|
};
|
|
14561
14807
|
requestBody: {
|
|
14562
14808
|
content: {
|
|
14563
|
-
"application/json": components["schemas"]["
|
|
14809
|
+
"application/json": components["schemas"]["updateReportForecast"];
|
|
14564
14810
|
};
|
|
14565
14811
|
};
|
|
14566
14812
|
responses: {
|
|
14813
|
+
/** @description Update a scenario-model ReportForecast. */
|
|
14567
14814
|
200: {
|
|
14568
14815
|
headers: {
|
|
14569
14816
|
[name: string]: unknown;
|
|
@@ -14571,21 +14818,24 @@ interface operations {
|
|
|
14571
14818
|
content: {
|
|
14572
14819
|
/**
|
|
14573
14820
|
* @example {
|
|
14574
|
-
* "token": "
|
|
14575
|
-
* "title": "
|
|
14576
|
-
* "cost_report_token": "
|
|
14577
|
-
* "
|
|
14578
|
-
* "
|
|
14821
|
+
* "token": "rprt_frcst_1857da57e1638621",
|
|
14822
|
+
* "title": "Revised Board Plan",
|
|
14823
|
+
* "cost_report_token": "rprt_2ba2ed341ec3140f",
|
|
14824
|
+
* "scenario_model_tokens": [
|
|
14825
|
+
* "frcst_mdl_71ba27b133ee9ff3"
|
|
14579
14826
|
* ],
|
|
14580
|
-
* "
|
|
14581
|
-
* "
|
|
14827
|
+
* "business_metric_token": null,
|
|
14828
|
+
* "is_default": true,
|
|
14829
|
+
* "created_by_token": "usr_5341c3c0f83a1a3f",
|
|
14830
|
+
* "created_at": "2026-07-28T15:37:48Z",
|
|
14831
|
+
* "updated_at": "2026-07-28T15:37:48Z"
|
|
14582
14832
|
* }
|
|
14583
14833
|
*/
|
|
14584
|
-
"application/json": components["schemas"]["
|
|
14834
|
+
"application/json": components["schemas"]["ReportForecast"];
|
|
14585
14835
|
};
|
|
14586
14836
|
};
|
|
14587
|
-
/** @description
|
|
14588
|
-
|
|
14837
|
+
/** @description Forbidden */
|
|
14838
|
+
403: {
|
|
14589
14839
|
headers: {
|
|
14590
14840
|
[name: string]: unknown;
|
|
14591
14841
|
};
|
|
@@ -14602,25 +14852,44 @@ interface operations {
|
|
|
14602
14852
|
"application/json": components["schemas"]["Errors"];
|
|
14603
14853
|
};
|
|
14604
14854
|
};
|
|
14855
|
+
/** @description UnprocessableEntity */
|
|
14856
|
+
422: {
|
|
14857
|
+
headers: {
|
|
14858
|
+
[name: string]: unknown;
|
|
14859
|
+
};
|
|
14860
|
+
content: {
|
|
14861
|
+
"application/json": components["schemas"]["Errors"];
|
|
14862
|
+
};
|
|
14863
|
+
};
|
|
14605
14864
|
};
|
|
14606
14865
|
};
|
|
14607
|
-
|
|
14866
|
+
deleteReportForecast: {
|
|
14608
14867
|
parameters: {
|
|
14609
14868
|
query?: never;
|
|
14610
14869
|
header?: never;
|
|
14611
14870
|
path: {
|
|
14612
|
-
|
|
14871
|
+
report_forecast_token: string;
|
|
14613
14872
|
};
|
|
14614
14873
|
cookie?: never;
|
|
14615
14874
|
};
|
|
14616
14875
|
requestBody?: never;
|
|
14617
14876
|
responses: {
|
|
14877
|
+
/** @description Delete a scenario-model ReportForecast. */
|
|
14618
14878
|
204: {
|
|
14619
14879
|
headers: {
|
|
14620
14880
|
[name: string]: unknown;
|
|
14621
14881
|
};
|
|
14622
14882
|
content: {
|
|
14623
|
-
"application/json": components["schemas"]["
|
|
14883
|
+
"application/json": components["schemas"]["ReportForecast"];
|
|
14884
|
+
};
|
|
14885
|
+
};
|
|
14886
|
+
/** @description Forbidden */
|
|
14887
|
+
403: {
|
|
14888
|
+
headers: {
|
|
14889
|
+
[name: string]: unknown;
|
|
14890
|
+
};
|
|
14891
|
+
content: {
|
|
14892
|
+
"application/json": components["schemas"]["Errors"];
|
|
14624
14893
|
};
|
|
14625
14894
|
};
|
|
14626
14895
|
/** @description NotFound */
|
|
@@ -14634,11 +14903,13 @@ interface operations {
|
|
|
14634
14903
|
};
|
|
14635
14904
|
};
|
|
14636
14905
|
};
|
|
14637
|
-
|
|
14906
|
+
getReportNotifications: {
|
|
14638
14907
|
parameters: {
|
|
14639
|
-
query
|
|
14640
|
-
/** @description
|
|
14641
|
-
|
|
14908
|
+
query?: {
|
|
14909
|
+
/** @description The page of results to return. */
|
|
14910
|
+
page?: number;
|
|
14911
|
+
/** @description The amount of results to return. The maximum is 1000. */
|
|
14912
|
+
limit?: number;
|
|
14642
14913
|
};
|
|
14643
14914
|
header?: never;
|
|
14644
14915
|
path?: never;
|
|
@@ -14646,7 +14917,6 @@ interface operations {
|
|
|
14646
14917
|
};
|
|
14647
14918
|
requestBody?: never;
|
|
14648
14919
|
responses: {
|
|
14649
|
-
/** @description Returns array of available column names for the specified resource type */
|
|
14650
14920
|
200: {
|
|
14651
14921
|
headers: {
|
|
14652
14922
|
[name: string]: unknown;
|
|
@@ -14654,27 +14924,253 @@ interface operations {
|
|
|
14654
14924
|
content: {
|
|
14655
14925
|
/**
|
|
14656
14926
|
* @example {
|
|
14657
|
-
* "
|
|
14658
|
-
* "
|
|
14659
|
-
* "
|
|
14660
|
-
* "
|
|
14661
|
-
* "
|
|
14662
|
-
* "
|
|
14663
|
-
*
|
|
14664
|
-
*
|
|
14665
|
-
*
|
|
14666
|
-
*
|
|
14667
|
-
*
|
|
14668
|
-
*
|
|
14669
|
-
*
|
|
14670
|
-
*
|
|
14671
|
-
*
|
|
14672
|
-
*
|
|
14673
|
-
*
|
|
14674
|
-
*
|
|
14675
|
-
*
|
|
14676
|
-
*
|
|
14677
|
-
|
|
14927
|
+
* "links": {
|
|
14928
|
+
* "self": "https://api.vantage.sh/v2/report_notifications",
|
|
14929
|
+
* "first": "https://api.vantage.sh/v2/report_notifications?page=1",
|
|
14930
|
+
* "next": null,
|
|
14931
|
+
* "last": "https://api.vantage.sh/v2/report_notifications?page=1",
|
|
14932
|
+
* "prev": null
|
|
14933
|
+
* },
|
|
14934
|
+
* "report_notifications": [
|
|
14935
|
+
* {
|
|
14936
|
+
* "token": "rprt_ntfctn_7c09ca27d07d8d1e",
|
|
14937
|
+
* "title": "Test Notification",
|
|
14938
|
+
* "cost_report_token": "rprt_ba0a5a5201390d72",
|
|
14939
|
+
* "user_tokens": [
|
|
14940
|
+
* "usr_27edb13f3beac3cb"
|
|
14941
|
+
* ],
|
|
14942
|
+
* "frequency": "weekly",
|
|
14943
|
+
* "change": "percentage"
|
|
14944
|
+
* }
|
|
14945
|
+
* ]
|
|
14946
|
+
* }
|
|
14947
|
+
*/
|
|
14948
|
+
"application/json": components["schemas"]["ReportNotifications"];
|
|
14949
|
+
};
|
|
14950
|
+
};
|
|
14951
|
+
};
|
|
14952
|
+
};
|
|
14953
|
+
createReportNotification: {
|
|
14954
|
+
parameters: {
|
|
14955
|
+
query?: never;
|
|
14956
|
+
header?: never;
|
|
14957
|
+
path?: never;
|
|
14958
|
+
cookie?: never;
|
|
14959
|
+
};
|
|
14960
|
+
requestBody: {
|
|
14961
|
+
content: {
|
|
14962
|
+
"application/json": components["schemas"]["createReportNotification"];
|
|
14963
|
+
};
|
|
14964
|
+
};
|
|
14965
|
+
responses: {
|
|
14966
|
+
201: {
|
|
14967
|
+
headers: {
|
|
14968
|
+
[name: string]: unknown;
|
|
14969
|
+
};
|
|
14970
|
+
content: {
|
|
14971
|
+
/**
|
|
14972
|
+
* @example {
|
|
14973
|
+
* "token": "rprt_ntfctn_8ce31b43a149cd2e",
|
|
14974
|
+
* "title": "New Report Notification",
|
|
14975
|
+
* "cost_report_token": "rprt_933010600676b02f",
|
|
14976
|
+
* "user_tokens": [
|
|
14977
|
+
* "usr_45e7d17e9f402226"
|
|
14978
|
+
* ],
|
|
14979
|
+
* "frequency": "daily",
|
|
14980
|
+
* "change": "percentage"
|
|
14981
|
+
* }
|
|
14982
|
+
*/
|
|
14983
|
+
"application/json": components["schemas"]["ReportNotification"];
|
|
14984
|
+
};
|
|
14985
|
+
};
|
|
14986
|
+
/** @description BadRequest */
|
|
14987
|
+
400: {
|
|
14988
|
+
headers: {
|
|
14989
|
+
[name: string]: unknown;
|
|
14990
|
+
};
|
|
14991
|
+
content: {
|
|
14992
|
+
"application/json": components["schemas"]["Errors"];
|
|
14993
|
+
};
|
|
14994
|
+
};
|
|
14995
|
+
/** @description UnprocessableEntity */
|
|
14996
|
+
422: {
|
|
14997
|
+
headers: {
|
|
14998
|
+
[name: string]: unknown;
|
|
14999
|
+
};
|
|
15000
|
+
content: {
|
|
15001
|
+
"application/json": components["schemas"]["Errors"];
|
|
15002
|
+
};
|
|
15003
|
+
};
|
|
15004
|
+
};
|
|
15005
|
+
};
|
|
15006
|
+
getReportNotification: {
|
|
15007
|
+
parameters: {
|
|
15008
|
+
query?: never;
|
|
15009
|
+
header?: never;
|
|
15010
|
+
path: {
|
|
15011
|
+
report_notification_token: string;
|
|
15012
|
+
};
|
|
15013
|
+
cookie?: never;
|
|
15014
|
+
};
|
|
15015
|
+
requestBody?: never;
|
|
15016
|
+
responses: {
|
|
15017
|
+
200: {
|
|
15018
|
+
headers: {
|
|
15019
|
+
[name: string]: unknown;
|
|
15020
|
+
};
|
|
15021
|
+
content: {
|
|
15022
|
+
/**
|
|
15023
|
+
* @example {
|
|
15024
|
+
* "token": "rprt_ntfctn_21b4287a212406b1",
|
|
15025
|
+
* "title": "Test Notification",
|
|
15026
|
+
* "cost_report_token": "rprt_d084c84455edc606",
|
|
15027
|
+
* "user_tokens": [
|
|
15028
|
+
* "usr_56d53f802edba3e6"
|
|
15029
|
+
* ],
|
|
15030
|
+
* "frequency": "weekly",
|
|
15031
|
+
* "change": "percentage"
|
|
15032
|
+
* }
|
|
15033
|
+
*/
|
|
15034
|
+
"application/json": components["schemas"]["ReportNotification"];
|
|
15035
|
+
};
|
|
15036
|
+
};
|
|
15037
|
+
/** @description NotFound */
|
|
15038
|
+
404: {
|
|
15039
|
+
headers: {
|
|
15040
|
+
[name: string]: unknown;
|
|
15041
|
+
};
|
|
15042
|
+
content: {
|
|
15043
|
+
"application/json": components["schemas"]["Errors"];
|
|
15044
|
+
};
|
|
15045
|
+
};
|
|
15046
|
+
};
|
|
15047
|
+
};
|
|
15048
|
+
updateReportNotification: {
|
|
15049
|
+
parameters: {
|
|
15050
|
+
query?: never;
|
|
15051
|
+
header?: never;
|
|
15052
|
+
path: {
|
|
15053
|
+
report_notification_token: string;
|
|
15054
|
+
};
|
|
15055
|
+
cookie?: never;
|
|
15056
|
+
};
|
|
15057
|
+
requestBody: {
|
|
15058
|
+
content: {
|
|
15059
|
+
"application/json": components["schemas"]["updateReportNotification"];
|
|
15060
|
+
};
|
|
15061
|
+
};
|
|
15062
|
+
responses: {
|
|
15063
|
+
200: {
|
|
15064
|
+
headers: {
|
|
15065
|
+
[name: string]: unknown;
|
|
15066
|
+
};
|
|
15067
|
+
content: {
|
|
15068
|
+
/**
|
|
15069
|
+
* @example {
|
|
15070
|
+
* "token": "rprt_ntfctn_b36b208a90ee87f6",
|
|
15071
|
+
* "title": "Updated Report Notification",
|
|
15072
|
+
* "cost_report_token": "rprt_07b88c04aa6bed8c",
|
|
15073
|
+
* "user_tokens": [
|
|
15074
|
+
* "usr_35ed19fadcfed8c9"
|
|
15075
|
+
* ],
|
|
15076
|
+
* "frequency": "weekly",
|
|
15077
|
+
* "change": "dollars"
|
|
15078
|
+
* }
|
|
15079
|
+
*/
|
|
15080
|
+
"application/json": components["schemas"]["ReportNotification"];
|
|
15081
|
+
};
|
|
15082
|
+
};
|
|
15083
|
+
/** @description BadRequest */
|
|
15084
|
+
400: {
|
|
15085
|
+
headers: {
|
|
15086
|
+
[name: string]: unknown;
|
|
15087
|
+
};
|
|
15088
|
+
content: {
|
|
15089
|
+
"application/json": components["schemas"]["Errors"];
|
|
15090
|
+
};
|
|
15091
|
+
};
|
|
15092
|
+
/** @description NotFound */
|
|
15093
|
+
404: {
|
|
15094
|
+
headers: {
|
|
15095
|
+
[name: string]: unknown;
|
|
15096
|
+
};
|
|
15097
|
+
content: {
|
|
15098
|
+
"application/json": components["schemas"]["Errors"];
|
|
15099
|
+
};
|
|
15100
|
+
};
|
|
15101
|
+
};
|
|
15102
|
+
};
|
|
15103
|
+
deleteReportNotification: {
|
|
15104
|
+
parameters: {
|
|
15105
|
+
query?: never;
|
|
15106
|
+
header?: never;
|
|
15107
|
+
path: {
|
|
15108
|
+
report_notification_token: string;
|
|
15109
|
+
};
|
|
15110
|
+
cookie?: never;
|
|
15111
|
+
};
|
|
15112
|
+
requestBody?: never;
|
|
15113
|
+
responses: {
|
|
15114
|
+
204: {
|
|
15115
|
+
headers: {
|
|
15116
|
+
[name: string]: unknown;
|
|
15117
|
+
};
|
|
15118
|
+
content: {
|
|
15119
|
+
"application/json": components["schemas"]["ReportNotification"];
|
|
15120
|
+
};
|
|
15121
|
+
};
|
|
15122
|
+
/** @description NotFound */
|
|
15123
|
+
404: {
|
|
15124
|
+
headers: {
|
|
15125
|
+
[name: string]: unknown;
|
|
15126
|
+
};
|
|
15127
|
+
content: {
|
|
15128
|
+
"application/json": components["schemas"]["Errors"];
|
|
15129
|
+
};
|
|
15130
|
+
};
|
|
15131
|
+
};
|
|
15132
|
+
};
|
|
15133
|
+
getResourceReportColumns: {
|
|
15134
|
+
parameters: {
|
|
15135
|
+
query: {
|
|
15136
|
+
/** @description VQL resource type name (https://docs.vantage.sh/vql_resource_report#costs-by-resource-type) */
|
|
15137
|
+
resource_type: string;
|
|
15138
|
+
};
|
|
15139
|
+
header?: never;
|
|
15140
|
+
path?: never;
|
|
15141
|
+
cookie?: never;
|
|
15142
|
+
};
|
|
15143
|
+
requestBody?: never;
|
|
15144
|
+
responses: {
|
|
15145
|
+
/** @description Returns array of available column names for the specified resource type */
|
|
15146
|
+
200: {
|
|
15147
|
+
headers: {
|
|
15148
|
+
[name: string]: unknown;
|
|
15149
|
+
};
|
|
15150
|
+
content: {
|
|
15151
|
+
/**
|
|
15152
|
+
* @example {
|
|
15153
|
+
* "columns": [
|
|
15154
|
+
* "provider",
|
|
15155
|
+
* "label",
|
|
15156
|
+
* "accruedCosts",
|
|
15157
|
+
* "recommendationSavings",
|
|
15158
|
+
* "resource",
|
|
15159
|
+
* "type",
|
|
15160
|
+
* "region",
|
|
15161
|
+
* "account",
|
|
15162
|
+
* "provisionedState",
|
|
15163
|
+
* "maxCpu",
|
|
15164
|
+
* "maxMemory",
|
|
15165
|
+
* "maxGpu",
|
|
15166
|
+
* "maxGpuMemory",
|
|
15167
|
+
* "maxEbsReadOpsPerSecond",
|
|
15168
|
+
* "maxEbsWriteOpsPerSecond",
|
|
15169
|
+
* "maxEbsReadBytesPerSecond",
|
|
15170
|
+
* "maxEbsWriteBytesPerSecond",
|
|
15171
|
+
* "maxDiskReadOpsPerSecond",
|
|
15172
|
+
* "maxDiskWriteOpsPerSecond",
|
|
15173
|
+
* "maxDiskReadBytesPerSecond",
|
|
14678
15174
|
* "maxDiskWriteBytesPerSecond",
|
|
14679
15175
|
* "maxNetworkInBytesPerSecond",
|
|
14680
15176
|
* "maxNetworkOutBytesPerSecond",
|
|
@@ -15208,12 +15704,246 @@ interface operations {
|
|
|
15208
15704
|
};
|
|
15209
15705
|
};
|
|
15210
15706
|
};
|
|
15211
|
-
getSavedFilters: {
|
|
15707
|
+
getSavedFilters: {
|
|
15708
|
+
parameters: {
|
|
15709
|
+
query?: {
|
|
15710
|
+
/** @description The page of results to return. */
|
|
15711
|
+
page?: number;
|
|
15712
|
+
/** @description The amount of results to return. The maximum is 1000. */
|
|
15713
|
+
limit?: number;
|
|
15714
|
+
};
|
|
15715
|
+
header?: never;
|
|
15716
|
+
path?: never;
|
|
15717
|
+
cookie?: never;
|
|
15718
|
+
};
|
|
15719
|
+
requestBody?: never;
|
|
15720
|
+
responses: {
|
|
15721
|
+
200: {
|
|
15722
|
+
headers: {
|
|
15723
|
+
[name: string]: unknown;
|
|
15724
|
+
};
|
|
15725
|
+
content: {
|
|
15726
|
+
/**
|
|
15727
|
+
* @example {
|
|
15728
|
+
* "links": {
|
|
15729
|
+
* "self": "https://api.vantage.sh/v2/saved_filters",
|
|
15730
|
+
* "first": "https://api.vantage.sh/v2/saved_filters?page=1",
|
|
15731
|
+
* "next": null,
|
|
15732
|
+
* "last": "https://api.vantage.sh/v2/saved_filters?page=1",
|
|
15733
|
+
* "prev": null
|
|
15734
|
+
* },
|
|
15735
|
+
* "saved_filters": [
|
|
15736
|
+
* {
|
|
15737
|
+
* "token": "svd_fltr_3dffc0458f7a2487",
|
|
15738
|
+
* "title": "AWS Account",
|
|
15739
|
+
* "cost_report_tokens": [
|
|
15740
|
+
* "rprt_3d0ae4648f5fd8f7"
|
|
15741
|
+
* ],
|
|
15742
|
+
* "filter": "(costs.provider = 'aws' AND costs.account_id = '30')",
|
|
15743
|
+
* "created_at": "2024-07-15T16:08:53Z",
|
|
15744
|
+
* "created_by": "usr_95fac32734bdceab",
|
|
15745
|
+
* "workspace_token": "wrkspc_914dcb0959497507"
|
|
15746
|
+
* }
|
|
15747
|
+
* ]
|
|
15748
|
+
* }
|
|
15749
|
+
*/
|
|
15750
|
+
"application/json": components["schemas"]["SavedFilters"];
|
|
15751
|
+
};
|
|
15752
|
+
};
|
|
15753
|
+
};
|
|
15754
|
+
};
|
|
15755
|
+
createSavedFilter: {
|
|
15756
|
+
parameters: {
|
|
15757
|
+
query?: never;
|
|
15758
|
+
header?: never;
|
|
15759
|
+
path?: never;
|
|
15760
|
+
cookie?: never;
|
|
15761
|
+
};
|
|
15762
|
+
requestBody: {
|
|
15763
|
+
content: {
|
|
15764
|
+
"application/json": components["schemas"]["createSavedFilter"];
|
|
15765
|
+
};
|
|
15766
|
+
};
|
|
15767
|
+
responses: {
|
|
15768
|
+
201: {
|
|
15769
|
+
headers: {
|
|
15770
|
+
[name: string]: unknown;
|
|
15771
|
+
};
|
|
15772
|
+
content: {
|
|
15773
|
+
/**
|
|
15774
|
+
* @example {
|
|
15775
|
+
* "token": "svd_fltr_4de629566ddd68c9",
|
|
15776
|
+
* "title": "New Saved Filter",
|
|
15777
|
+
* "cost_report_tokens": [],
|
|
15778
|
+
* "filter": "costs.provider = 'datadog'",
|
|
15779
|
+
* "created_at": "2024-07-15T16:08:58Z",
|
|
15780
|
+
* "created_by": "team_e58399e4df1175e9",
|
|
15781
|
+
* "workspace_token": "wrkspc_e4cacf2493142e5b"
|
|
15782
|
+
* }
|
|
15783
|
+
*/
|
|
15784
|
+
"application/json": components["schemas"]["SavedFilter"];
|
|
15785
|
+
};
|
|
15786
|
+
};
|
|
15787
|
+
/** @description BadRequest */
|
|
15788
|
+
400: {
|
|
15789
|
+
headers: {
|
|
15790
|
+
[name: string]: unknown;
|
|
15791
|
+
};
|
|
15792
|
+
content: {
|
|
15793
|
+
"application/json": components["schemas"]["Errors"];
|
|
15794
|
+
};
|
|
15795
|
+
};
|
|
15796
|
+
/** @description UnprocessableEntity */
|
|
15797
|
+
422: {
|
|
15798
|
+
headers: {
|
|
15799
|
+
[name: string]: unknown;
|
|
15800
|
+
};
|
|
15801
|
+
content: {
|
|
15802
|
+
"application/json": components["schemas"]["Errors"];
|
|
15803
|
+
};
|
|
15804
|
+
};
|
|
15805
|
+
};
|
|
15806
|
+
};
|
|
15807
|
+
getSavedFilter: {
|
|
15808
|
+
parameters: {
|
|
15809
|
+
query?: never;
|
|
15810
|
+
header?: never;
|
|
15811
|
+
path: {
|
|
15812
|
+
saved_filter_token: string;
|
|
15813
|
+
};
|
|
15814
|
+
cookie?: never;
|
|
15815
|
+
};
|
|
15816
|
+
requestBody?: never;
|
|
15817
|
+
responses: {
|
|
15818
|
+
200: {
|
|
15819
|
+
headers: {
|
|
15820
|
+
[name: string]: unknown;
|
|
15821
|
+
};
|
|
15822
|
+
content: {
|
|
15823
|
+
/**
|
|
15824
|
+
* @example {
|
|
15825
|
+
* "token": "svd_fltr_be3f24eb1b5aabf6",
|
|
15826
|
+
* "title": "AWS Account",
|
|
15827
|
+
* "cost_report_tokens": [
|
|
15828
|
+
* "rprt_47023ad2b735f57d"
|
|
15829
|
+
* ],
|
|
15830
|
+
* "filter": "(costs.provider = 'aws' AND costs.account_id = '98')",
|
|
15831
|
+
* "created_at": "2024-07-15T16:08:54Z",
|
|
15832
|
+
* "created_by": "team_73f6001f98e9012b",
|
|
15833
|
+
* "workspace_token": "wrkspc_be6568a301b1d06c"
|
|
15834
|
+
* }
|
|
15835
|
+
*/
|
|
15836
|
+
"application/json": components["schemas"]["SavedFilter"];
|
|
15837
|
+
};
|
|
15838
|
+
};
|
|
15839
|
+
/** @description NotFound */
|
|
15840
|
+
404: {
|
|
15841
|
+
headers: {
|
|
15842
|
+
[name: string]: unknown;
|
|
15843
|
+
};
|
|
15844
|
+
content: {
|
|
15845
|
+
"application/json": components["schemas"]["Errors"];
|
|
15846
|
+
};
|
|
15847
|
+
};
|
|
15848
|
+
};
|
|
15849
|
+
};
|
|
15850
|
+
updateSavedFilter: {
|
|
15851
|
+
parameters: {
|
|
15852
|
+
query?: never;
|
|
15853
|
+
header?: never;
|
|
15854
|
+
path: {
|
|
15855
|
+
saved_filter_token: string;
|
|
15856
|
+
};
|
|
15857
|
+
cookie?: never;
|
|
15858
|
+
};
|
|
15859
|
+
requestBody: {
|
|
15860
|
+
content: {
|
|
15861
|
+
"application/json": components["schemas"]["updateSavedFilter"];
|
|
15862
|
+
};
|
|
15863
|
+
};
|
|
15864
|
+
responses: {
|
|
15865
|
+
200: {
|
|
15866
|
+
headers: {
|
|
15867
|
+
[name: string]: unknown;
|
|
15868
|
+
};
|
|
15869
|
+
content: {
|
|
15870
|
+
/**
|
|
15871
|
+
* @example {
|
|
15872
|
+
* "token": "svd_fltr_eeabf4c7264f94a8",
|
|
15873
|
+
* "title": "Updated Saved Filter",
|
|
15874
|
+
* "cost_report_tokens": [],
|
|
15875
|
+
* "filter": "costs.provider = 'azure'",
|
|
15876
|
+
* "created_at": "2024-07-15T16:08:55Z",
|
|
15877
|
+
* "created_by": "usr_240a5fd77d5da076",
|
|
15878
|
+
* "workspace_token": "wrkspc_0b7ef373f9c5d485"
|
|
15879
|
+
* }
|
|
15880
|
+
*/
|
|
15881
|
+
"application/json": components["schemas"]["SavedFilter"];
|
|
15882
|
+
};
|
|
15883
|
+
};
|
|
15884
|
+
/** @description BadRequest */
|
|
15885
|
+
400: {
|
|
15886
|
+
headers: {
|
|
15887
|
+
[name: string]: unknown;
|
|
15888
|
+
};
|
|
15889
|
+
content: {
|
|
15890
|
+
"application/json": components["schemas"]["Errors"];
|
|
15891
|
+
};
|
|
15892
|
+
};
|
|
15893
|
+
/** @description NotFound */
|
|
15894
|
+
404: {
|
|
15895
|
+
headers: {
|
|
15896
|
+
[name: string]: unknown;
|
|
15897
|
+
};
|
|
15898
|
+
content: {
|
|
15899
|
+
"application/json": components["schemas"]["Errors"];
|
|
15900
|
+
};
|
|
15901
|
+
};
|
|
15902
|
+
/** @description UnprocessableEntity */
|
|
15903
|
+
422: {
|
|
15904
|
+
headers: {
|
|
15905
|
+
[name: string]: unknown;
|
|
15906
|
+
};
|
|
15907
|
+
content: {
|
|
15908
|
+
"application/json": components["schemas"]["Errors"];
|
|
15909
|
+
};
|
|
15910
|
+
};
|
|
15911
|
+
};
|
|
15912
|
+
};
|
|
15913
|
+
deleteSavedFilter: {
|
|
15914
|
+
parameters: {
|
|
15915
|
+
query?: never;
|
|
15916
|
+
header?: never;
|
|
15917
|
+
path: {
|
|
15918
|
+
saved_filter_token: string;
|
|
15919
|
+
};
|
|
15920
|
+
cookie?: never;
|
|
15921
|
+
};
|
|
15922
|
+
requestBody?: never;
|
|
15923
|
+
responses: {
|
|
15924
|
+
204: {
|
|
15925
|
+
headers: {
|
|
15926
|
+
[name: string]: unknown;
|
|
15927
|
+
};
|
|
15928
|
+
content: {
|
|
15929
|
+
"application/json": components["schemas"]["SavedFilter"];
|
|
15930
|
+
};
|
|
15931
|
+
};
|
|
15932
|
+
/** @description NotFound */
|
|
15933
|
+
404: {
|
|
15934
|
+
headers: {
|
|
15935
|
+
[name: string]: unknown;
|
|
15936
|
+
};
|
|
15937
|
+
content: {
|
|
15938
|
+
"application/json": components["schemas"]["Errors"];
|
|
15939
|
+
};
|
|
15940
|
+
};
|
|
15941
|
+
};
|
|
15942
|
+
};
|
|
15943
|
+
getScenarioModels: {
|
|
15212
15944
|
parameters: {
|
|
15213
15945
|
query?: {
|
|
15214
|
-
/** @description The page of results to return. */
|
|
15215
15946
|
page?: number;
|
|
15216
|
-
/** @description The amount of results to return. The maximum is 1000. */
|
|
15217
15947
|
limit?: number;
|
|
15218
15948
|
};
|
|
15219
15949
|
header?: never;
|
|
@@ -15222,6 +15952,7 @@ interface operations {
|
|
|
15222
15952
|
};
|
|
15223
15953
|
requestBody?: never;
|
|
15224
15954
|
responses: {
|
|
15955
|
+
/** @description Return all ScenarioModels. */
|
|
15225
15956
|
200: {
|
|
15226
15957
|
headers: {
|
|
15227
15958
|
[name: string]: unknown;
|
|
@@ -15230,33 +15961,41 @@ interface operations {
|
|
|
15230
15961
|
/**
|
|
15231
15962
|
* @example {
|
|
15232
15963
|
* "links": {
|
|
15233
|
-
* "self": "https://api.vantage.sh/v2/
|
|
15234
|
-
* "first": "https://api.vantage.sh/v2/
|
|
15964
|
+
* "self": "https://api.vantage.sh/v2/scenario_models",
|
|
15965
|
+
* "first": "https://api.vantage.sh/v2/scenario_models?page=1",
|
|
15235
15966
|
* "next": null,
|
|
15236
|
-
* "last": "https://api.vantage.sh/v2/
|
|
15967
|
+
* "last": "https://api.vantage.sh/v2/scenario_models?page=1",
|
|
15237
15968
|
* "prev": null
|
|
15238
15969
|
* },
|
|
15239
|
-
* "
|
|
15970
|
+
* "scenario_models": [
|
|
15240
15971
|
* {
|
|
15241
|
-
* "token": "
|
|
15242
|
-
* "title": "
|
|
15243
|
-
* "
|
|
15244
|
-
*
|
|
15972
|
+
* "token": "frcst_mdl_47f8f6511171bc8f",
|
|
15973
|
+
* "title": "Hiring Plan",
|
|
15974
|
+
* "priority": 2,
|
|
15975
|
+
* "workspace_token": null,
|
|
15976
|
+
* "provider": null,
|
|
15977
|
+
* "service": null,
|
|
15978
|
+
* "periods": [
|
|
15979
|
+
* {
|
|
15980
|
+
* "start_at": "2026-01-01",
|
|
15981
|
+
* "end_at": "2026-03-31",
|
|
15982
|
+
* "amount": "1250.75",
|
|
15983
|
+
* "amount_type": "dollar"
|
|
15984
|
+
* }
|
|
15245
15985
|
* ],
|
|
15246
|
-
* "
|
|
15247
|
-
* "created_at": "
|
|
15248
|
-
* "
|
|
15249
|
-
* "workspace_token": "wrkspc_914dcb0959497507"
|
|
15986
|
+
* "created_by_token": "usr_41333d06c73b9405",
|
|
15987
|
+
* "created_at": "2026-07-28T15:37:49Z",
|
|
15988
|
+
* "updated_at": "2026-07-28T15:37:49Z"
|
|
15250
15989
|
* }
|
|
15251
15990
|
* ]
|
|
15252
15991
|
* }
|
|
15253
15992
|
*/
|
|
15254
|
-
"application/json": components["schemas"]["
|
|
15993
|
+
"application/json": components["schemas"]["ScenarioModels"];
|
|
15255
15994
|
};
|
|
15256
15995
|
};
|
|
15257
15996
|
};
|
|
15258
15997
|
};
|
|
15259
|
-
|
|
15998
|
+
createScenarioModel: {
|
|
15260
15999
|
parameters: {
|
|
15261
16000
|
query?: never;
|
|
15262
16001
|
header?: never;
|
|
@@ -15265,10 +16004,11 @@ interface operations {
|
|
|
15265
16004
|
};
|
|
15266
16005
|
requestBody: {
|
|
15267
16006
|
content: {
|
|
15268
|
-
"application/json": components["schemas"]["
|
|
16007
|
+
"application/json": components["schemas"]["createScenarioModel"];
|
|
15269
16008
|
};
|
|
15270
16009
|
};
|
|
15271
16010
|
responses: {
|
|
16011
|
+
/** @description Create a ScenarioModel. */
|
|
15272
16012
|
201: {
|
|
15273
16013
|
headers: {
|
|
15274
16014
|
[name: string]: unknown;
|
|
@@ -15276,20 +16016,30 @@ interface operations {
|
|
|
15276
16016
|
content: {
|
|
15277
16017
|
/**
|
|
15278
16018
|
* @example {
|
|
15279
|
-
* "token": "
|
|
15280
|
-
* "title": "
|
|
15281
|
-
* "
|
|
15282
|
-
* "
|
|
15283
|
-
* "
|
|
15284
|
-
* "
|
|
15285
|
-
* "
|
|
16019
|
+
* "token": "frcst_mdl_e42020822501d0ee",
|
|
16020
|
+
* "title": "Expansion Plan",
|
|
16021
|
+
* "priority": 4,
|
|
16022
|
+
* "workspace_token": null,
|
|
16023
|
+
* "provider": null,
|
|
16024
|
+
* "service": null,
|
|
16025
|
+
* "periods": [
|
|
16026
|
+
* {
|
|
16027
|
+
* "start_at": "2026-04-01",
|
|
16028
|
+
* "end_at": null,
|
|
16029
|
+
* "amount": "9876.54321",
|
|
16030
|
+
* "amount_type": "percent"
|
|
16031
|
+
* }
|
|
16032
|
+
* ],
|
|
16033
|
+
* "created_by_token": "usr_cc82bf4cf16d5452",
|
|
16034
|
+
* "created_at": "2026-07-28T15:37:50Z",
|
|
16035
|
+
* "updated_at": "2026-07-28T15:37:50Z"
|
|
15286
16036
|
* }
|
|
15287
16037
|
*/
|
|
15288
|
-
"application/json": components["schemas"]["
|
|
16038
|
+
"application/json": components["schemas"]["ScenarioModel"];
|
|
15289
16039
|
};
|
|
15290
16040
|
};
|
|
15291
|
-
/** @description
|
|
15292
|
-
|
|
16041
|
+
/** @description Forbidden */
|
|
16042
|
+
403: {
|
|
15293
16043
|
headers: {
|
|
15294
16044
|
[name: string]: unknown;
|
|
15295
16045
|
};
|
|
@@ -15308,17 +16058,18 @@ interface operations {
|
|
|
15308
16058
|
};
|
|
15309
16059
|
};
|
|
15310
16060
|
};
|
|
15311
|
-
|
|
16061
|
+
getScenarioModel: {
|
|
15312
16062
|
parameters: {
|
|
15313
16063
|
query?: never;
|
|
15314
16064
|
header?: never;
|
|
15315
16065
|
path: {
|
|
15316
|
-
|
|
16066
|
+
scenario_model_token: string;
|
|
15317
16067
|
};
|
|
15318
16068
|
cookie?: never;
|
|
15319
16069
|
};
|
|
15320
16070
|
requestBody?: never;
|
|
15321
16071
|
responses: {
|
|
16072
|
+
/** @description Return a ScenarioModel. */
|
|
15322
16073
|
200: {
|
|
15323
16074
|
headers: {
|
|
15324
16075
|
[name: string]: unknown;
|
|
@@ -15326,18 +16077,26 @@ interface operations {
|
|
|
15326
16077
|
content: {
|
|
15327
16078
|
/**
|
|
15328
16079
|
* @example {
|
|
15329
|
-
* "token": "
|
|
15330
|
-
* "title": "
|
|
15331
|
-
* "
|
|
15332
|
-
*
|
|
16080
|
+
* "token": "frcst_mdl_a7684dd8104260da",
|
|
16081
|
+
* "title": "Hiring Plan",
|
|
16082
|
+
* "priority": 2,
|
|
16083
|
+
* "workspace_token": null,
|
|
16084
|
+
* "provider": null,
|
|
16085
|
+
* "service": null,
|
|
16086
|
+
* "periods": [
|
|
16087
|
+
* {
|
|
16088
|
+
* "start_at": "2026-01-01",
|
|
16089
|
+
* "end_at": "2026-03-31",
|
|
16090
|
+
* "amount": "1250.75",
|
|
16091
|
+
* "amount_type": "dollar"
|
|
16092
|
+
* }
|
|
15333
16093
|
* ],
|
|
15334
|
-
* "
|
|
15335
|
-
* "created_at": "
|
|
15336
|
-
* "
|
|
15337
|
-
* "workspace_token": "wrkspc_be6568a301b1d06c"
|
|
16094
|
+
* "created_by_token": "usr_2943707386442e61",
|
|
16095
|
+
* "created_at": "2026-07-28T15:37:49Z",
|
|
16096
|
+
* "updated_at": "2026-07-28T15:37:49Z"
|
|
15338
16097
|
* }
|
|
15339
16098
|
*/
|
|
15340
|
-
"application/json": components["schemas"]["
|
|
16099
|
+
"application/json": components["schemas"]["ScenarioModel"];
|
|
15341
16100
|
};
|
|
15342
16101
|
};
|
|
15343
16102
|
/** @description NotFound */
|
|
@@ -15351,21 +16110,22 @@ interface operations {
|
|
|
15351
16110
|
};
|
|
15352
16111
|
};
|
|
15353
16112
|
};
|
|
15354
|
-
|
|
16113
|
+
updateScenarioModel: {
|
|
15355
16114
|
parameters: {
|
|
15356
16115
|
query?: never;
|
|
15357
16116
|
header?: never;
|
|
15358
16117
|
path: {
|
|
15359
|
-
|
|
16118
|
+
scenario_model_token: string;
|
|
15360
16119
|
};
|
|
15361
16120
|
cookie?: never;
|
|
15362
16121
|
};
|
|
15363
16122
|
requestBody: {
|
|
15364
16123
|
content: {
|
|
15365
|
-
"application/json": components["schemas"]["
|
|
16124
|
+
"application/json": components["schemas"]["updateScenarioModel"];
|
|
15366
16125
|
};
|
|
15367
16126
|
};
|
|
15368
16127
|
responses: {
|
|
16128
|
+
/** @description Update a ScenarioModel. */
|
|
15369
16129
|
200: {
|
|
15370
16130
|
headers: {
|
|
15371
16131
|
[name: string]: unknown;
|
|
@@ -15373,20 +16133,30 @@ interface operations {
|
|
|
15373
16133
|
content: {
|
|
15374
16134
|
/**
|
|
15375
16135
|
* @example {
|
|
15376
|
-
* "token": "
|
|
15377
|
-
* "title": "Updated
|
|
15378
|
-
* "
|
|
15379
|
-
* "
|
|
15380
|
-
* "
|
|
15381
|
-
* "
|
|
15382
|
-
* "
|
|
16136
|
+
* "token": "frcst_mdl_09c6dc8b48640f37",
|
|
16137
|
+
* "title": "Updated Hiring Plan",
|
|
16138
|
+
* "priority": 2,
|
|
16139
|
+
* "workspace_token": null,
|
|
16140
|
+
* "provider": null,
|
|
16141
|
+
* "service": null,
|
|
16142
|
+
* "periods": [
|
|
16143
|
+
* {
|
|
16144
|
+
* "start_at": "2026-01-01",
|
|
16145
|
+
* "end_at": "2026-03-31",
|
|
16146
|
+
* "amount": "1250.75",
|
|
16147
|
+
* "amount_type": "dollar"
|
|
16148
|
+
* }
|
|
16149
|
+
* ],
|
|
16150
|
+
* "created_by_token": "usr_f26745be72a42d31",
|
|
16151
|
+
* "created_at": "2026-07-28T15:37:52Z",
|
|
16152
|
+
* "updated_at": "2026-07-28T15:37:52Z"
|
|
15383
16153
|
* }
|
|
15384
16154
|
*/
|
|
15385
|
-
"application/json": components["schemas"]["
|
|
16155
|
+
"application/json": components["schemas"]["ScenarioModel"];
|
|
15386
16156
|
};
|
|
15387
16157
|
};
|
|
15388
|
-
/** @description
|
|
15389
|
-
|
|
16158
|
+
/** @description Forbidden */
|
|
16159
|
+
403: {
|
|
15390
16160
|
headers: {
|
|
15391
16161
|
[name: string]: unknown;
|
|
15392
16162
|
};
|
|
@@ -15414,23 +16184,33 @@ interface operations {
|
|
|
15414
16184
|
};
|
|
15415
16185
|
};
|
|
15416
16186
|
};
|
|
15417
|
-
|
|
16187
|
+
deleteScenarioModel: {
|
|
15418
16188
|
parameters: {
|
|
15419
16189
|
query?: never;
|
|
15420
16190
|
header?: never;
|
|
15421
16191
|
path: {
|
|
15422
|
-
|
|
16192
|
+
scenario_model_token: string;
|
|
15423
16193
|
};
|
|
15424
16194
|
cookie?: never;
|
|
15425
16195
|
};
|
|
15426
16196
|
requestBody?: never;
|
|
15427
16197
|
responses: {
|
|
16198
|
+
/** @description Delete a ScenarioModel. */
|
|
15428
16199
|
204: {
|
|
15429
16200
|
headers: {
|
|
15430
16201
|
[name: string]: unknown;
|
|
15431
16202
|
};
|
|
15432
16203
|
content: {
|
|
15433
|
-
"application/json": components["schemas"]["
|
|
16204
|
+
"application/json": components["schemas"]["ScenarioModel"];
|
|
16205
|
+
};
|
|
16206
|
+
};
|
|
16207
|
+
/** @description Forbidden */
|
|
16208
|
+
403: {
|
|
16209
|
+
headers: {
|
|
16210
|
+
[name: string]: unknown;
|
|
16211
|
+
};
|
|
16212
|
+
content: {
|
|
16213
|
+
"application/json": components["schemas"]["Errors"];
|
|
15434
16214
|
};
|
|
15435
16215
|
};
|
|
15436
16216
|
/** @description NotFound */
|
|
@@ -18408,6 +19188,38 @@ type UpdateRecommendationViewResponse = ResponseBodyForPathAndMethod<`/v2/recomm
|
|
|
18408
19188
|
* Response type for Delete recommendation view
|
|
18409
19189
|
*/
|
|
18410
19190
|
type DeleteRecommendationViewResponse = ResponseBodyForPathAndMethod<`/v2/recommendation_views/${NoSlashString}`, "DELETE">;
|
|
19191
|
+
/**
|
|
19192
|
+
* Return all scenario-model ReportForecasts for a CostReport.
|
|
19193
|
+
*/
|
|
19194
|
+
type GetReportForecastsRequest = RequestBodyForPathAndMethod<"/v2/report_forecasts", "GET">;
|
|
19195
|
+
/**
|
|
19196
|
+
* Response type for Get all report forecasts
|
|
19197
|
+
*/
|
|
19198
|
+
type GetReportForecastsResponse = ResponseBodyForPathAndMethod<"/v2/report_forecasts", "GET">;
|
|
19199
|
+
/**
|
|
19200
|
+
* Create a scenario-model ReportForecast.
|
|
19201
|
+
*/
|
|
19202
|
+
type CreateReportForecastRequest = RequestBodyForPathAndMethod<"/v2/report_forecasts", "POST">;
|
|
19203
|
+
/**
|
|
19204
|
+
* Response type for Create report forecast
|
|
19205
|
+
*/
|
|
19206
|
+
type CreateReportForecastResponse = ResponseBodyForPathAndMethod<"/v2/report_forecasts", "POST">;
|
|
19207
|
+
/**
|
|
19208
|
+
* Response type for Get report forecast by token
|
|
19209
|
+
*/
|
|
19210
|
+
type GetReportForecastResponse = ResponseBodyForPathAndMethod<`/v2/report_forecasts/${NoSlashString}`, "GET">;
|
|
19211
|
+
/**
|
|
19212
|
+
* Update a scenario-model ReportForecast.
|
|
19213
|
+
*/
|
|
19214
|
+
type UpdateReportForecastRequest = RequestBodyForPathAndMethod<`/v2/report_forecasts/${NoSlashString}`, "PUT">;
|
|
19215
|
+
/**
|
|
19216
|
+
* Response type for Update report forecast
|
|
19217
|
+
*/
|
|
19218
|
+
type UpdateReportForecastResponse = ResponseBodyForPathAndMethod<`/v2/report_forecasts/${NoSlashString}`, "PUT">;
|
|
19219
|
+
/**
|
|
19220
|
+
* Response type for Delete report forecast
|
|
19221
|
+
*/
|
|
19222
|
+
type DeleteReportForecastResponse = ResponseBodyForPathAndMethod<`/v2/report_forecasts/${NoSlashString}`, "DELETE">;
|
|
18411
19223
|
/**
|
|
18412
19224
|
* Return all ReportNotifications.
|
|
18413
19225
|
*/
|
|
@@ -18528,6 +19340,38 @@ type UpdateSavedFilterResponse = ResponseBodyForPathAndMethod<`/v2/saved_filters
|
|
|
18528
19340
|
* Response type for Delete saved filter
|
|
18529
19341
|
*/
|
|
18530
19342
|
type DeleteSavedFilterResponse = ResponseBodyForPathAndMethod<`/v2/saved_filters/${NoSlashString}`, "DELETE">;
|
|
19343
|
+
/**
|
|
19344
|
+
* Return all ScenarioModels.
|
|
19345
|
+
*/
|
|
19346
|
+
type GetScenarioModelsRequest = RequestBodyForPathAndMethod<"/v2/scenario_models", "GET">;
|
|
19347
|
+
/**
|
|
19348
|
+
* Response type for Get all scenario models
|
|
19349
|
+
*/
|
|
19350
|
+
type GetScenarioModelsResponse = ResponseBodyForPathAndMethod<"/v2/scenario_models", "GET">;
|
|
19351
|
+
/**
|
|
19352
|
+
* Create a ScenarioModel.
|
|
19353
|
+
*/
|
|
19354
|
+
type CreateScenarioModelRequest = RequestBodyForPathAndMethod<"/v2/scenario_models", "POST">;
|
|
19355
|
+
/**
|
|
19356
|
+
* Response type for Create scenario model
|
|
19357
|
+
*/
|
|
19358
|
+
type CreateScenarioModelResponse = ResponseBodyForPathAndMethod<"/v2/scenario_models", "POST">;
|
|
19359
|
+
/**
|
|
19360
|
+
* Response type for Get scenario model by token
|
|
19361
|
+
*/
|
|
19362
|
+
type GetScenarioModelResponse = ResponseBodyForPathAndMethod<`/v2/scenario_models/${NoSlashString}`, "GET">;
|
|
19363
|
+
/**
|
|
19364
|
+
* Update a ScenarioModel.
|
|
19365
|
+
*/
|
|
19366
|
+
type UpdateScenarioModelRequest = RequestBodyForPathAndMethod<`/v2/scenario_models/${NoSlashString}`, "PUT">;
|
|
19367
|
+
/**
|
|
19368
|
+
* Response type for Update scenario model
|
|
19369
|
+
*/
|
|
19370
|
+
type UpdateScenarioModelResponse = ResponseBodyForPathAndMethod<`/v2/scenario_models/${NoSlashString}`, "PUT">;
|
|
19371
|
+
/**
|
|
19372
|
+
* Response type for Delete scenario model
|
|
19373
|
+
*/
|
|
19374
|
+
type DeleteScenarioModelResponse = ResponseBodyForPathAndMethod<`/v2/scenario_models/${NoSlashString}`, "DELETE">;
|
|
18531
19375
|
/**
|
|
18532
19376
|
* Return all Segments.
|
|
18533
19377
|
*/
|
|
@@ -18803,10 +19647,12 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
|
|
|
18803
19647
|
private _products?;
|
|
18804
19648
|
private _recommendations?;
|
|
18805
19649
|
private _recommendationViews?;
|
|
19650
|
+
private _reportForecasts?;
|
|
18806
19651
|
private _reportNotifications?;
|
|
18807
19652
|
private _resourceReports?;
|
|
18808
19653
|
private _resources?;
|
|
18809
19654
|
private _savedFilters?;
|
|
19655
|
+
private _scenarioModels?;
|
|
18810
19656
|
private _segments?;
|
|
18811
19657
|
private _tags?;
|
|
18812
19658
|
private _teams?;
|
|
@@ -18848,10 +19694,12 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
|
|
|
18848
19694
|
get products(): ProductsApi<NeverThrow>;
|
|
18849
19695
|
get recommendations(): RecommendationsApi<NeverThrow>;
|
|
18850
19696
|
get recommendationViews(): RecommendationViewsApi<NeverThrow>;
|
|
19697
|
+
get reportForecasts(): ReportForecastsApi<NeverThrow>;
|
|
18851
19698
|
get reportNotifications(): ReportNotificationsApi<NeverThrow>;
|
|
18852
19699
|
get resourceReports(): ResourceReportsApi<NeverThrow>;
|
|
18853
19700
|
get resources(): ResourcesApi<NeverThrow>;
|
|
18854
19701
|
get savedFilters(): SavedFiltersApi<NeverThrow>;
|
|
19702
|
+
get scenarioModels(): ScenarioModelsApi<NeverThrow>;
|
|
18855
19703
|
get segments(): SegmentsApi<NeverThrow>;
|
|
18856
19704
|
get tags(): TagsApi<NeverThrow>;
|
|
18857
19705
|
get teams(): TeamsApi<NeverThrow>;
|
|
@@ -21571,6 +22419,96 @@ declare class RecommendationViewsApi<NeverThrow extends boolean> {
|
|
|
21571
22419
|
*/
|
|
21572
22420
|
delete(recommendationViewToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
|
|
21573
22421
|
}
|
|
22422
|
+
declare class ReportForecastsApi<NeverThrow extends boolean> {
|
|
22423
|
+
private client;
|
|
22424
|
+
constructor(client: BaseClient<NeverThrow>);
|
|
22425
|
+
/**
|
|
22426
|
+
* Return all scenario-model ReportForecasts for a CostReport.
|
|
22427
|
+
*/
|
|
22428
|
+
list(body?: GetReportForecastsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
22429
|
+
links?: components["schemas"]["Links"];
|
|
22430
|
+
report_forecasts: components["schemas"]["ReportForecast"][];
|
|
22431
|
+
}, null] : {
|
|
22432
|
+
links?: components["schemas"]["Links"];
|
|
22433
|
+
report_forecasts: components["schemas"]["ReportForecast"][];
|
|
22434
|
+
}>;
|
|
22435
|
+
/**
|
|
22436
|
+
* Create a scenario-model ReportForecast.
|
|
22437
|
+
*/
|
|
22438
|
+
create(body: CreateReportForecastRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
22439
|
+
token: string;
|
|
22440
|
+
title: string;
|
|
22441
|
+
cost_report_token: string;
|
|
22442
|
+
scenario_model_tokens: string[];
|
|
22443
|
+
business_metric_token: string | null;
|
|
22444
|
+
is_default: boolean;
|
|
22445
|
+
created_by_token: string | null;
|
|
22446
|
+
created_at: string;
|
|
22447
|
+
updated_at: string;
|
|
22448
|
+
}, null] : {
|
|
22449
|
+
token: string;
|
|
22450
|
+
title: string;
|
|
22451
|
+
cost_report_token: string;
|
|
22452
|
+
scenario_model_tokens: string[];
|
|
22453
|
+
business_metric_token: string | null;
|
|
22454
|
+
is_default: boolean;
|
|
22455
|
+
created_by_token: string | null;
|
|
22456
|
+
created_at: string;
|
|
22457
|
+
updated_at: string;
|
|
22458
|
+
}>;
|
|
22459
|
+
/**
|
|
22460
|
+
* Return a scenario-model ReportForecast.
|
|
22461
|
+
*/
|
|
22462
|
+
get(reportForecastToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
22463
|
+
token: string;
|
|
22464
|
+
title: string;
|
|
22465
|
+
cost_report_token: string;
|
|
22466
|
+
scenario_model_tokens: string[];
|
|
22467
|
+
business_metric_token: string | null;
|
|
22468
|
+
is_default: boolean;
|
|
22469
|
+
created_by_token: string | null;
|
|
22470
|
+
created_at: string;
|
|
22471
|
+
updated_at: string;
|
|
22472
|
+
}, null] : {
|
|
22473
|
+
token: string;
|
|
22474
|
+
title: string;
|
|
22475
|
+
cost_report_token: string;
|
|
22476
|
+
scenario_model_tokens: string[];
|
|
22477
|
+
business_metric_token: string | null;
|
|
22478
|
+
is_default: boolean;
|
|
22479
|
+
created_by_token: string | null;
|
|
22480
|
+
created_at: string;
|
|
22481
|
+
updated_at: string;
|
|
22482
|
+
}>;
|
|
22483
|
+
/**
|
|
22484
|
+
* Update a scenario-model ReportForecast.
|
|
22485
|
+
*/
|
|
22486
|
+
update(reportForecastToken: string, body: UpdateReportForecastRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
22487
|
+
token: string;
|
|
22488
|
+
title: string;
|
|
22489
|
+
cost_report_token: string;
|
|
22490
|
+
scenario_model_tokens: string[];
|
|
22491
|
+
business_metric_token: string | null;
|
|
22492
|
+
is_default: boolean;
|
|
22493
|
+
created_by_token: string | null;
|
|
22494
|
+
created_at: string;
|
|
22495
|
+
updated_at: string;
|
|
22496
|
+
}, null] : {
|
|
22497
|
+
token: string;
|
|
22498
|
+
title: string;
|
|
22499
|
+
cost_report_token: string;
|
|
22500
|
+
scenario_model_tokens: string[];
|
|
22501
|
+
business_metric_token: string | null;
|
|
22502
|
+
is_default: boolean;
|
|
22503
|
+
created_by_token: string | null;
|
|
22504
|
+
created_at: string;
|
|
22505
|
+
updated_at: string;
|
|
22506
|
+
}>;
|
|
22507
|
+
/**
|
|
22508
|
+
* Delete a scenario-model ReportForecast.
|
|
22509
|
+
*/
|
|
22510
|
+
delete(reportForecastToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
|
|
22511
|
+
}
|
|
21574
22512
|
declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
21575
22513
|
private client;
|
|
21576
22514
|
constructor(client: BaseClient<NeverThrow>);
|
|
@@ -21839,6 +22777,102 @@ declare class SavedFiltersApi<NeverThrow extends boolean> {
|
|
|
21839
22777
|
*/
|
|
21840
22778
|
delete(savedFilterToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
|
|
21841
22779
|
}
|
|
22780
|
+
declare class ScenarioModelsApi<NeverThrow extends boolean> {
|
|
22781
|
+
private client;
|
|
22782
|
+
constructor(client: BaseClient<NeverThrow>);
|
|
22783
|
+
/**
|
|
22784
|
+
* Return all ScenarioModels.
|
|
22785
|
+
*/
|
|
22786
|
+
list(body?: GetScenarioModelsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
22787
|
+
links?: components["schemas"]["Links"];
|
|
22788
|
+
scenario_models: components["schemas"]["ScenarioModel"][];
|
|
22789
|
+
}, null] : {
|
|
22790
|
+
links?: components["schemas"]["Links"];
|
|
22791
|
+
scenario_models: components["schemas"]["ScenarioModel"][];
|
|
22792
|
+
}>;
|
|
22793
|
+
/**
|
|
22794
|
+
* Create a ScenarioModel.
|
|
22795
|
+
*/
|
|
22796
|
+
create(body: CreateScenarioModelRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
22797
|
+
token: string;
|
|
22798
|
+
title: string;
|
|
22799
|
+
priority: number | null;
|
|
22800
|
+
workspace_token: string | null;
|
|
22801
|
+
provider: string | null;
|
|
22802
|
+
service: string | null;
|
|
22803
|
+
periods: components["schemas"]["ScenarioModelPeriod"][];
|
|
22804
|
+
created_by_token: string | null;
|
|
22805
|
+
created_at: string;
|
|
22806
|
+
updated_at: string;
|
|
22807
|
+
}, null] : {
|
|
22808
|
+
token: string;
|
|
22809
|
+
title: string;
|
|
22810
|
+
priority: number | null;
|
|
22811
|
+
workspace_token: string | null;
|
|
22812
|
+
provider: string | null;
|
|
22813
|
+
service: string | null;
|
|
22814
|
+
periods: components["schemas"]["ScenarioModelPeriod"][];
|
|
22815
|
+
created_by_token: string | null;
|
|
22816
|
+
created_at: string;
|
|
22817
|
+
updated_at: string;
|
|
22818
|
+
}>;
|
|
22819
|
+
/**
|
|
22820
|
+
* Return a ScenarioModel.
|
|
22821
|
+
*/
|
|
22822
|
+
get(scenarioModelToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
22823
|
+
token: string;
|
|
22824
|
+
title: string;
|
|
22825
|
+
priority: number | null;
|
|
22826
|
+
workspace_token: string | null;
|
|
22827
|
+
provider: string | null;
|
|
22828
|
+
service: string | null;
|
|
22829
|
+
periods: components["schemas"]["ScenarioModelPeriod"][];
|
|
22830
|
+
created_by_token: string | null;
|
|
22831
|
+
created_at: string;
|
|
22832
|
+
updated_at: string;
|
|
22833
|
+
}, null] : {
|
|
22834
|
+
token: string;
|
|
22835
|
+
title: string;
|
|
22836
|
+
priority: number | null;
|
|
22837
|
+
workspace_token: string | null;
|
|
22838
|
+
provider: string | null;
|
|
22839
|
+
service: string | null;
|
|
22840
|
+
periods: components["schemas"]["ScenarioModelPeriod"][];
|
|
22841
|
+
created_by_token: string | null;
|
|
22842
|
+
created_at: string;
|
|
22843
|
+
updated_at: string;
|
|
22844
|
+
}>;
|
|
22845
|
+
/**
|
|
22846
|
+
* Update a ScenarioModel.
|
|
22847
|
+
*/
|
|
22848
|
+
update(scenarioModelToken: string, body: UpdateScenarioModelRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
22849
|
+
token: string;
|
|
22850
|
+
title: string;
|
|
22851
|
+
priority: number | null;
|
|
22852
|
+
workspace_token: string | null;
|
|
22853
|
+
provider: string | null;
|
|
22854
|
+
service: string | null;
|
|
22855
|
+
periods: components["schemas"]["ScenarioModelPeriod"][];
|
|
22856
|
+
created_by_token: string | null;
|
|
22857
|
+
created_at: string;
|
|
22858
|
+
updated_at: string;
|
|
22859
|
+
}, null] : {
|
|
22860
|
+
token: string;
|
|
22861
|
+
title: string;
|
|
22862
|
+
priority: number | null;
|
|
22863
|
+
workspace_token: string | null;
|
|
22864
|
+
provider: string | null;
|
|
22865
|
+
service: string | null;
|
|
22866
|
+
periods: components["schemas"]["ScenarioModelPeriod"][];
|
|
22867
|
+
created_by_token: string | null;
|
|
22868
|
+
created_at: string;
|
|
22869
|
+
updated_at: string;
|
|
22870
|
+
}>;
|
|
22871
|
+
/**
|
|
22872
|
+
* Delete a ScenarioModel.
|
|
22873
|
+
*/
|
|
22874
|
+
delete(scenarioModelToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
|
|
22875
|
+
}
|
|
21842
22876
|
declare class SegmentsApi<NeverThrow extends boolean> {
|
|
21843
22877
|
private client;
|
|
21844
22878
|
constructor(client: BaseClient<NeverThrow>);
|
|
@@ -22482,4 +23516,4 @@ declare class BaseClient<NeverThrow extends boolean> {
|
|
|
22482
23516
|
request<RequestPath extends Path, RequestMethod extends SupportedMethods<RequestPath>>(path: RequestPath, method: RequestMethod, body: RequestBodyForPathAndMethod<RequestPath, RequestMethod>): Promise<NeverThrow extends true ? NeverThrowResult<ResponseBodyForPathAndMethod<RequestPath, RequestMethod>> : ResponseBodyForPathAndMethod<RequestPath, RequestMethod>>;
|
|
22483
23517
|
}
|
|
22484
23518
|
|
|
22485
|
-
export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricLabelsRequest, type GetBusinessMetricLabelsResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowLogsRequest, type GetNetworkFlowLogsResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigsRequest, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCanvasRequest, type UpdateCanvasResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
|
|
23519
|
+
export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportForecastRequest, type CreateReportForecastResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateScenarioModelRequest, type CreateScenarioModelResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportForecastResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteScenarioModelResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricLabelsRequest, type GetBusinessMetricLabelsResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowLogsRequest, type GetNetworkFlowLogsResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportForecastResponse, type GetReportForecastsRequest, type GetReportForecastsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetScenarioModelResponse, type GetScenarioModelsRequest, type GetScenarioModelsResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigsRequest, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCanvasRequest, type UpdateCanvasResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportForecastRequest, type UpdateReportForecastResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateScenarioModelRequest, type UpdateScenarioModelResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
|