@vantage-sh/vantage-client 2.10.0 → 2.12.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 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 | null;
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 | null;
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"];
@@ -6734,6 +6951,10 @@ interface components {
6734
6951
  * @example bsnss_mtrc_abc123
6735
6952
  */
6736
6953
  business_metric_token?: string | null;
6954
+ /** @description The business metric label key used for this virtual tag value. */
6955
+ label_key?: string | null;
6956
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
6957
+ label_values?: string[] | null;
6737
6958
  cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
6738
6959
  /** @description The display name for this allocation value. */
6739
6960
  display_name?: string | null;
@@ -6839,6 +7060,10 @@ interface components {
6839
7060
  name?: string;
6840
7061
  /** @description The token of an associated business metric. */
6841
7062
  business_metric_token?: string;
7063
+ /** @description The business metric label key used for this virtual tag value. */
7064
+ label_key?: string;
7065
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
7066
+ label_values?: string[];
6842
7067
  /** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
6843
7068
  display_name?: string;
6844
7069
  label_transforms?: {
@@ -6896,6 +7121,10 @@ interface components {
6896
7121
  name?: string;
6897
7122
  /** @description The token of an associated business metric. */
6898
7123
  business_metric_token?: string;
7124
+ /** @description The business metric label key used for this virtual tag value. */
7125
+ label_key?: string;
7126
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
7127
+ label_values?: string[];
6899
7128
  /** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
6900
7129
  display_name?: string;
6901
7130
  label_transforms?: {
@@ -6966,6 +7195,10 @@ interface components {
6966
7195
  name?: string;
6967
7196
  /** @description The token of an associated business metric. */
6968
7197
  business_metric_token?: string;
7198
+ /** @description The business metric label key used for this virtual tag value. */
7199
+ label_key?: string;
7200
+ /** @description Optional business metric label values. An empty array includes every value for the label key. */
7201
+ label_values?: string[];
6969
7202
  /** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
6970
7203
  display_name?: string;
6971
7204
  label_transforms?: {
@@ -14407,12 +14640,11 @@ interface operations {
14407
14640
  };
14408
14641
  };
14409
14642
  };
14410
- getReportNotifications: {
14643
+ getReportForecasts: {
14411
14644
  parameters: {
14412
- query?: {
14413
- /** @description The page of results to return. */
14645
+ query: {
14646
+ cost_report_token: string;
14414
14647
  page?: number;
14415
- /** @description The amount of results to return. The maximum is 1000. */
14416
14648
  limit?: number;
14417
14649
  };
14418
14650
  header?: never;
@@ -14421,6 +14653,7 @@ interface operations {
14421
14653
  };
14422
14654
  requestBody?: never;
14423
14655
  responses: {
14656
+ /** @description Return all scenario-model ReportForecasts for a CostReport. */
14424
14657
  200: {
14425
14658
  headers: {
14426
14659
  [name: string]: unknown;
@@ -14429,32 +14662,44 @@ interface operations {
14429
14662
  /**
14430
14663
  * @example {
14431
14664
  * "links": {
14432
- * "self": "https://api.vantage.sh/v2/report_notifications",
14433
- * "first": "https://api.vantage.sh/v2/report_notifications?page=1",
14665
+ * "self": "https://api.vantage.sh/v2/report_forecasts?cost_report_token=rprt_fd7190753bb1ce4a",
14666
+ * "first": "https://api.vantage.sh/v2/report_forecasts?cost_report_token=rprt_fd7190753bb1ce4a&page=1",
14434
14667
  * "next": null,
14435
- * "last": "https://api.vantage.sh/v2/report_notifications?page=1",
14668
+ * "last": "https://api.vantage.sh/v2/report_forecasts?cost_report_token=rprt_fd7190753bb1ce4a&page=1",
14436
14669
  * "prev": null
14437
14670
  * },
14438
- * "report_notifications": [
14671
+ * "report_forecasts": [
14439
14672
  * {
14440
- * "token": "rprt_ntfctn_7c09ca27d07d8d1e",
14441
- * "title": "Test Notification",
14442
- * "cost_report_token": "rprt_ba0a5a5201390d72",
14443
- * "user_tokens": [
14444
- * "usr_27edb13f3beac3cb"
14673
+ * "token": "rprt_frcst_b6fc93cfbe7bb782",
14674
+ * "title": "Board Plan",
14675
+ * "cost_report_token": "rprt_fd7190753bb1ce4a",
14676
+ * "scenario_model_tokens": [
14677
+ * "frcst_mdl_998be85cff4d0574"
14445
14678
  * ],
14446
- * "frequency": "weekly",
14447
- * "change": "percentage"
14679
+ * "business_metric_token": null,
14680
+ * "is_default": false,
14681
+ * "created_by_token": "usr_9be7c063f1529dff",
14682
+ * "created_at": "2026-07-28T15:37:51Z",
14683
+ * "updated_at": "2026-07-28T15:37:51Z"
14448
14684
  * }
14449
14685
  * ]
14450
14686
  * }
14451
14687
  */
14452
- "application/json": components["schemas"]["ReportNotifications"];
14688
+ "application/json": components["schemas"]["ReportForecasts"];
14689
+ };
14690
+ };
14691
+ /** @description NotFound */
14692
+ 404: {
14693
+ headers: {
14694
+ [name: string]: unknown;
14695
+ };
14696
+ content: {
14697
+ "application/json": components["schemas"]["Errors"];
14453
14698
  };
14454
14699
  };
14455
14700
  };
14456
14701
  };
14457
- createReportNotification: {
14702
+ createReportForecast: {
14458
14703
  parameters: {
14459
14704
  query?: never;
14460
14705
  header?: never;
@@ -14463,10 +14708,11 @@ interface operations {
14463
14708
  };
14464
14709
  requestBody: {
14465
14710
  content: {
14466
- "application/json": components["schemas"]["createReportNotification"];
14711
+ "application/json": components["schemas"]["createReportForecast"];
14467
14712
  };
14468
14713
  };
14469
14714
  responses: {
14715
+ /** @description Create a scenario-model ReportForecast. */
14470
14716
  201: {
14471
14717
  headers: {
14472
14718
  [name: string]: unknown;
@@ -14474,21 +14720,33 @@ interface operations {
14474
14720
  content: {
14475
14721
  /**
14476
14722
  * @example {
14477
- * "token": "rprt_ntfctn_8ce31b43a149cd2e",
14478
- * "title": "New Report Notification",
14479
- * "cost_report_token": "rprt_933010600676b02f",
14480
- * "user_tokens": [
14481
- * "usr_45e7d17e9f402226"
14723
+ * "token": "rprt_frcst_5d4cc7ef29bed6d2",
14724
+ * "title": "Operating Plan",
14725
+ * "cost_report_token": "rprt_82a0304aaf254804",
14726
+ * "scenario_model_tokens": [
14727
+ * "frcst_mdl_ebb14bfd8eabc5fd"
14482
14728
  * ],
14483
- * "frequency": "daily",
14484
- * "change": "percentage"
14729
+ * "business_metric_token": null,
14730
+ * "is_default": true,
14731
+ * "created_by_token": "usr_10a09baaa100511e",
14732
+ * "created_at": "2026-07-28T15:37:52Z",
14733
+ * "updated_at": "2026-07-28T15:37:52Z"
14485
14734
  * }
14486
14735
  */
14487
- "application/json": components["schemas"]["ReportNotification"];
14736
+ "application/json": components["schemas"]["ReportForecast"];
14488
14737
  };
14489
14738
  };
14490
- /** @description BadRequest */
14491
- 400: {
14739
+ /** @description Forbidden */
14740
+ 403: {
14741
+ headers: {
14742
+ [name: string]: unknown;
14743
+ };
14744
+ content: {
14745
+ "application/json": components["schemas"]["Errors"];
14746
+ };
14747
+ };
14748
+ /** @description NotFound */
14749
+ 404: {
14492
14750
  headers: {
14493
14751
  [name: string]: unknown;
14494
14752
  };
@@ -14507,17 +14765,18 @@ interface operations {
14507
14765
  };
14508
14766
  };
14509
14767
  };
14510
- getReportNotification: {
14768
+ getReportForecast: {
14511
14769
  parameters: {
14512
14770
  query?: never;
14513
14771
  header?: never;
14514
14772
  path: {
14515
- report_notification_token: string;
14773
+ report_forecast_token: string;
14516
14774
  };
14517
14775
  cookie?: never;
14518
14776
  };
14519
14777
  requestBody?: never;
14520
14778
  responses: {
14779
+ /** @description Return a scenario-model ReportForecast. */
14521
14780
  200: {
14522
14781
  headers: {
14523
14782
  [name: string]: unknown;
@@ -14525,17 +14784,20 @@ interface operations {
14525
14784
  content: {
14526
14785
  /**
14527
14786
  * @example {
14528
- * "token": "rprt_ntfctn_21b4287a212406b1",
14529
- * "title": "Test Notification",
14530
- * "cost_report_token": "rprt_d084c84455edc606",
14531
- * "user_tokens": [
14532
- * "usr_56d53f802edba3e6"
14787
+ * "token": "rprt_frcst_4eb4953f73d088c3",
14788
+ * "title": "Board Plan",
14789
+ * "cost_report_token": "rprt_89d0dacbe6bdee16",
14790
+ * "scenario_model_tokens": [
14791
+ * "frcst_mdl_f2fbc239e8f733f5"
14533
14792
  * ],
14534
- * "frequency": "weekly",
14535
- * "change": "percentage"
14793
+ * "business_metric_token": null,
14794
+ * "is_default": false,
14795
+ * "created_by_token": "usr_9c1be40b31fe536c",
14796
+ * "created_at": "2026-07-28T15:37:50Z",
14797
+ * "updated_at": "2026-07-28T15:37:50Z"
14536
14798
  * }
14537
14799
  */
14538
- "application/json": components["schemas"]["ReportNotification"];
14800
+ "application/json": components["schemas"]["ReportForecast"];
14539
14801
  };
14540
14802
  };
14541
14803
  /** @description NotFound */
@@ -14549,21 +14811,22 @@ interface operations {
14549
14811
  };
14550
14812
  };
14551
14813
  };
14552
- updateReportNotification: {
14814
+ updateReportForecast: {
14553
14815
  parameters: {
14554
14816
  query?: never;
14555
14817
  header?: never;
14556
14818
  path: {
14557
- report_notification_token: string;
14819
+ report_forecast_token: string;
14558
14820
  };
14559
14821
  cookie?: never;
14560
14822
  };
14561
14823
  requestBody: {
14562
14824
  content: {
14563
- "application/json": components["schemas"]["updateReportNotification"];
14825
+ "application/json": components["schemas"]["updateReportForecast"];
14564
14826
  };
14565
14827
  };
14566
14828
  responses: {
14829
+ /** @description Update a scenario-model ReportForecast. */
14567
14830
  200: {
14568
14831
  headers: {
14569
14832
  [name: string]: unknown;
@@ -14571,21 +14834,24 @@ interface operations {
14571
14834
  content: {
14572
14835
  /**
14573
14836
  * @example {
14574
- * "token": "rprt_ntfctn_b36b208a90ee87f6",
14575
- * "title": "Updated Report Notification",
14576
- * "cost_report_token": "rprt_07b88c04aa6bed8c",
14577
- * "user_tokens": [
14578
- * "usr_35ed19fadcfed8c9"
14837
+ * "token": "rprt_frcst_1857da57e1638621",
14838
+ * "title": "Revised Board Plan",
14839
+ * "cost_report_token": "rprt_2ba2ed341ec3140f",
14840
+ * "scenario_model_tokens": [
14841
+ * "frcst_mdl_71ba27b133ee9ff3"
14579
14842
  * ],
14580
- * "frequency": "weekly",
14581
- * "change": "dollars"
14843
+ * "business_metric_token": null,
14844
+ * "is_default": true,
14845
+ * "created_by_token": "usr_5341c3c0f83a1a3f",
14846
+ * "created_at": "2026-07-28T15:37:48Z",
14847
+ * "updated_at": "2026-07-28T15:37:48Z"
14582
14848
  * }
14583
14849
  */
14584
- "application/json": components["schemas"]["ReportNotification"];
14850
+ "application/json": components["schemas"]["ReportForecast"];
14585
14851
  };
14586
14852
  };
14587
- /** @description BadRequest */
14588
- 400: {
14853
+ /** @description Forbidden */
14854
+ 403: {
14589
14855
  headers: {
14590
14856
  [name: string]: unknown;
14591
14857
  };
@@ -14602,25 +14868,44 @@ interface operations {
14602
14868
  "application/json": components["schemas"]["Errors"];
14603
14869
  };
14604
14870
  };
14871
+ /** @description UnprocessableEntity */
14872
+ 422: {
14873
+ headers: {
14874
+ [name: string]: unknown;
14875
+ };
14876
+ content: {
14877
+ "application/json": components["schemas"]["Errors"];
14878
+ };
14879
+ };
14605
14880
  };
14606
14881
  };
14607
- deleteReportNotification: {
14882
+ deleteReportForecast: {
14608
14883
  parameters: {
14609
14884
  query?: never;
14610
14885
  header?: never;
14611
14886
  path: {
14612
- report_notification_token: string;
14887
+ report_forecast_token: string;
14613
14888
  };
14614
14889
  cookie?: never;
14615
14890
  };
14616
14891
  requestBody?: never;
14617
14892
  responses: {
14893
+ /** @description Delete a scenario-model ReportForecast. */
14618
14894
  204: {
14619
14895
  headers: {
14620
14896
  [name: string]: unknown;
14621
14897
  };
14622
14898
  content: {
14623
- "application/json": components["schemas"]["ReportNotification"];
14899
+ "application/json": components["schemas"]["ReportForecast"];
14900
+ };
14901
+ };
14902
+ /** @description Forbidden */
14903
+ 403: {
14904
+ headers: {
14905
+ [name: string]: unknown;
14906
+ };
14907
+ content: {
14908
+ "application/json": components["schemas"]["Errors"];
14624
14909
  };
14625
14910
  };
14626
14911
  /** @description NotFound */
@@ -14634,11 +14919,13 @@ interface operations {
14634
14919
  };
14635
14920
  };
14636
14921
  };
14637
- getResourceReportColumns: {
14922
+ getReportNotifications: {
14638
14923
  parameters: {
14639
- query: {
14640
- /** @description VQL resource type name (https://docs.vantage.sh/vql_resource_report#costs-by-resource-type) */
14641
- resource_type: string;
14924
+ query?: {
14925
+ /** @description The page of results to return. */
14926
+ page?: number;
14927
+ /** @description The amount of results to return. The maximum is 1000. */
14928
+ limit?: number;
14642
14929
  };
14643
14930
  header?: never;
14644
14931
  path?: never;
@@ -14646,7 +14933,6 @@ interface operations {
14646
14933
  };
14647
14934
  requestBody?: never;
14648
14935
  responses: {
14649
- /** @description Returns array of available column names for the specified resource type */
14650
14936
  200: {
14651
14937
  headers: {
14652
14938
  [name: string]: unknown;
@@ -14654,24 +14940,250 @@ interface operations {
14654
14940
  content: {
14655
14941
  /**
14656
14942
  * @example {
14657
- * "columns": [
14658
- * "provider",
14659
- * "label",
14660
- * "accruedCosts",
14661
- * "recommendationSavings",
14662
- * "resource",
14663
- * "type",
14664
- * "region",
14665
- * "account",
14666
- * "provisionedState",
14667
- * "maxCpu",
14668
- * "maxMemory",
14669
- * "maxGpu",
14670
- * "maxGpuMemory",
14671
- * "maxEbsReadOpsPerSecond",
14672
- * "maxEbsWriteOpsPerSecond",
14673
- * "maxEbsReadBytesPerSecond",
14674
- * "maxEbsWriteBytesPerSecond",
14943
+ * "links": {
14944
+ * "self": "https://api.vantage.sh/v2/report_notifications",
14945
+ * "first": "https://api.vantage.sh/v2/report_notifications?page=1",
14946
+ * "next": null,
14947
+ * "last": "https://api.vantage.sh/v2/report_notifications?page=1",
14948
+ * "prev": null
14949
+ * },
14950
+ * "report_notifications": [
14951
+ * {
14952
+ * "token": "rprt_ntfctn_7c09ca27d07d8d1e",
14953
+ * "title": "Test Notification",
14954
+ * "cost_report_token": "rprt_ba0a5a5201390d72",
14955
+ * "user_tokens": [
14956
+ * "usr_27edb13f3beac3cb"
14957
+ * ],
14958
+ * "frequency": "weekly",
14959
+ * "change": "percentage"
14960
+ * }
14961
+ * ]
14962
+ * }
14963
+ */
14964
+ "application/json": components["schemas"]["ReportNotifications"];
14965
+ };
14966
+ };
14967
+ };
14968
+ };
14969
+ createReportNotification: {
14970
+ parameters: {
14971
+ query?: never;
14972
+ header?: never;
14973
+ path?: never;
14974
+ cookie?: never;
14975
+ };
14976
+ requestBody: {
14977
+ content: {
14978
+ "application/json": components["schemas"]["createReportNotification"];
14979
+ };
14980
+ };
14981
+ responses: {
14982
+ 201: {
14983
+ headers: {
14984
+ [name: string]: unknown;
14985
+ };
14986
+ content: {
14987
+ /**
14988
+ * @example {
14989
+ * "token": "rprt_ntfctn_8ce31b43a149cd2e",
14990
+ * "title": "New Report Notification",
14991
+ * "cost_report_token": "rprt_933010600676b02f",
14992
+ * "user_tokens": [
14993
+ * "usr_45e7d17e9f402226"
14994
+ * ],
14995
+ * "frequency": "daily",
14996
+ * "change": "percentage"
14997
+ * }
14998
+ */
14999
+ "application/json": components["schemas"]["ReportNotification"];
15000
+ };
15001
+ };
15002
+ /** @description BadRequest */
15003
+ 400: {
15004
+ headers: {
15005
+ [name: string]: unknown;
15006
+ };
15007
+ content: {
15008
+ "application/json": components["schemas"]["Errors"];
15009
+ };
15010
+ };
15011
+ /** @description UnprocessableEntity */
15012
+ 422: {
15013
+ headers: {
15014
+ [name: string]: unknown;
15015
+ };
15016
+ content: {
15017
+ "application/json": components["schemas"]["Errors"];
15018
+ };
15019
+ };
15020
+ };
15021
+ };
15022
+ getReportNotification: {
15023
+ parameters: {
15024
+ query?: never;
15025
+ header?: never;
15026
+ path: {
15027
+ report_notification_token: string;
15028
+ };
15029
+ cookie?: never;
15030
+ };
15031
+ requestBody?: never;
15032
+ responses: {
15033
+ 200: {
15034
+ headers: {
15035
+ [name: string]: unknown;
15036
+ };
15037
+ content: {
15038
+ /**
15039
+ * @example {
15040
+ * "token": "rprt_ntfctn_21b4287a212406b1",
15041
+ * "title": "Test Notification",
15042
+ * "cost_report_token": "rprt_d084c84455edc606",
15043
+ * "user_tokens": [
15044
+ * "usr_56d53f802edba3e6"
15045
+ * ],
15046
+ * "frequency": "weekly",
15047
+ * "change": "percentage"
15048
+ * }
15049
+ */
15050
+ "application/json": components["schemas"]["ReportNotification"];
15051
+ };
15052
+ };
15053
+ /** @description NotFound */
15054
+ 404: {
15055
+ headers: {
15056
+ [name: string]: unknown;
15057
+ };
15058
+ content: {
15059
+ "application/json": components["schemas"]["Errors"];
15060
+ };
15061
+ };
15062
+ };
15063
+ };
15064
+ updateReportNotification: {
15065
+ parameters: {
15066
+ query?: never;
15067
+ header?: never;
15068
+ path: {
15069
+ report_notification_token: string;
15070
+ };
15071
+ cookie?: never;
15072
+ };
15073
+ requestBody: {
15074
+ content: {
15075
+ "application/json": components["schemas"]["updateReportNotification"];
15076
+ };
15077
+ };
15078
+ responses: {
15079
+ 200: {
15080
+ headers: {
15081
+ [name: string]: unknown;
15082
+ };
15083
+ content: {
15084
+ /**
15085
+ * @example {
15086
+ * "token": "rprt_ntfctn_b36b208a90ee87f6",
15087
+ * "title": "Updated Report Notification",
15088
+ * "cost_report_token": "rprt_07b88c04aa6bed8c",
15089
+ * "user_tokens": [
15090
+ * "usr_35ed19fadcfed8c9"
15091
+ * ],
15092
+ * "frequency": "weekly",
15093
+ * "change": "dollars"
15094
+ * }
15095
+ */
15096
+ "application/json": components["schemas"]["ReportNotification"];
15097
+ };
15098
+ };
15099
+ /** @description BadRequest */
15100
+ 400: {
15101
+ headers: {
15102
+ [name: string]: unknown;
15103
+ };
15104
+ content: {
15105
+ "application/json": components["schemas"]["Errors"];
15106
+ };
15107
+ };
15108
+ /** @description NotFound */
15109
+ 404: {
15110
+ headers: {
15111
+ [name: string]: unknown;
15112
+ };
15113
+ content: {
15114
+ "application/json": components["schemas"]["Errors"];
15115
+ };
15116
+ };
15117
+ };
15118
+ };
15119
+ deleteReportNotification: {
15120
+ parameters: {
15121
+ query?: never;
15122
+ header?: never;
15123
+ path: {
15124
+ report_notification_token: string;
15125
+ };
15126
+ cookie?: never;
15127
+ };
15128
+ requestBody?: never;
15129
+ responses: {
15130
+ 204: {
15131
+ headers: {
15132
+ [name: string]: unknown;
15133
+ };
15134
+ content: {
15135
+ "application/json": components["schemas"]["ReportNotification"];
15136
+ };
15137
+ };
15138
+ /** @description NotFound */
15139
+ 404: {
15140
+ headers: {
15141
+ [name: string]: unknown;
15142
+ };
15143
+ content: {
15144
+ "application/json": components["schemas"]["Errors"];
15145
+ };
15146
+ };
15147
+ };
15148
+ };
15149
+ getResourceReportColumns: {
15150
+ parameters: {
15151
+ query: {
15152
+ /** @description VQL resource type name (https://docs.vantage.sh/vql_resource_report#costs-by-resource-type) */
15153
+ resource_type: string;
15154
+ };
15155
+ header?: never;
15156
+ path?: never;
15157
+ cookie?: never;
15158
+ };
15159
+ requestBody?: never;
15160
+ responses: {
15161
+ /** @description Returns array of available column names for the specified resource type */
15162
+ 200: {
15163
+ headers: {
15164
+ [name: string]: unknown;
15165
+ };
15166
+ content: {
15167
+ /**
15168
+ * @example {
15169
+ * "columns": [
15170
+ * "provider",
15171
+ * "label",
15172
+ * "accruedCosts",
15173
+ * "recommendationSavings",
15174
+ * "resource",
15175
+ * "type",
15176
+ * "region",
15177
+ * "account",
15178
+ * "provisionedState",
15179
+ * "maxCpu",
15180
+ * "maxMemory",
15181
+ * "maxGpu",
15182
+ * "maxGpuMemory",
15183
+ * "maxEbsReadOpsPerSecond",
15184
+ * "maxEbsWriteOpsPerSecond",
15185
+ * "maxEbsReadBytesPerSecond",
15186
+ * "maxEbsWriteBytesPerSecond",
14675
15187
  * "maxDiskReadOpsPerSecond",
14676
15188
  * "maxDiskWriteOpsPerSecond",
14677
15189
  * "maxDiskReadBytesPerSecond",
@@ -15208,12 +15720,246 @@ interface operations {
15208
15720
  };
15209
15721
  };
15210
15722
  };
15211
- getSavedFilters: {
15723
+ getSavedFilters: {
15724
+ parameters: {
15725
+ query?: {
15726
+ /** @description The page of results to return. */
15727
+ page?: number;
15728
+ /** @description The amount of results to return. The maximum is 1000. */
15729
+ limit?: number;
15730
+ };
15731
+ header?: never;
15732
+ path?: never;
15733
+ cookie?: never;
15734
+ };
15735
+ requestBody?: never;
15736
+ responses: {
15737
+ 200: {
15738
+ headers: {
15739
+ [name: string]: unknown;
15740
+ };
15741
+ content: {
15742
+ /**
15743
+ * @example {
15744
+ * "links": {
15745
+ * "self": "https://api.vantage.sh/v2/saved_filters",
15746
+ * "first": "https://api.vantage.sh/v2/saved_filters?page=1",
15747
+ * "next": null,
15748
+ * "last": "https://api.vantage.sh/v2/saved_filters?page=1",
15749
+ * "prev": null
15750
+ * },
15751
+ * "saved_filters": [
15752
+ * {
15753
+ * "token": "svd_fltr_3dffc0458f7a2487",
15754
+ * "title": "AWS Account",
15755
+ * "cost_report_tokens": [
15756
+ * "rprt_3d0ae4648f5fd8f7"
15757
+ * ],
15758
+ * "filter": "(costs.provider = 'aws' AND costs.account_id = '30')",
15759
+ * "created_at": "2024-07-15T16:08:53Z",
15760
+ * "created_by": "usr_95fac32734bdceab",
15761
+ * "workspace_token": "wrkspc_914dcb0959497507"
15762
+ * }
15763
+ * ]
15764
+ * }
15765
+ */
15766
+ "application/json": components["schemas"]["SavedFilters"];
15767
+ };
15768
+ };
15769
+ };
15770
+ };
15771
+ createSavedFilter: {
15772
+ parameters: {
15773
+ query?: never;
15774
+ header?: never;
15775
+ path?: never;
15776
+ cookie?: never;
15777
+ };
15778
+ requestBody: {
15779
+ content: {
15780
+ "application/json": components["schemas"]["createSavedFilter"];
15781
+ };
15782
+ };
15783
+ responses: {
15784
+ 201: {
15785
+ headers: {
15786
+ [name: string]: unknown;
15787
+ };
15788
+ content: {
15789
+ /**
15790
+ * @example {
15791
+ * "token": "svd_fltr_4de629566ddd68c9",
15792
+ * "title": "New Saved Filter",
15793
+ * "cost_report_tokens": [],
15794
+ * "filter": "costs.provider = 'datadog'",
15795
+ * "created_at": "2024-07-15T16:08:58Z",
15796
+ * "created_by": "team_e58399e4df1175e9",
15797
+ * "workspace_token": "wrkspc_e4cacf2493142e5b"
15798
+ * }
15799
+ */
15800
+ "application/json": components["schemas"]["SavedFilter"];
15801
+ };
15802
+ };
15803
+ /** @description BadRequest */
15804
+ 400: {
15805
+ headers: {
15806
+ [name: string]: unknown;
15807
+ };
15808
+ content: {
15809
+ "application/json": components["schemas"]["Errors"];
15810
+ };
15811
+ };
15812
+ /** @description UnprocessableEntity */
15813
+ 422: {
15814
+ headers: {
15815
+ [name: string]: unknown;
15816
+ };
15817
+ content: {
15818
+ "application/json": components["schemas"]["Errors"];
15819
+ };
15820
+ };
15821
+ };
15822
+ };
15823
+ getSavedFilter: {
15824
+ parameters: {
15825
+ query?: never;
15826
+ header?: never;
15827
+ path: {
15828
+ saved_filter_token: string;
15829
+ };
15830
+ cookie?: never;
15831
+ };
15832
+ requestBody?: never;
15833
+ responses: {
15834
+ 200: {
15835
+ headers: {
15836
+ [name: string]: unknown;
15837
+ };
15838
+ content: {
15839
+ /**
15840
+ * @example {
15841
+ * "token": "svd_fltr_be3f24eb1b5aabf6",
15842
+ * "title": "AWS Account",
15843
+ * "cost_report_tokens": [
15844
+ * "rprt_47023ad2b735f57d"
15845
+ * ],
15846
+ * "filter": "(costs.provider = 'aws' AND costs.account_id = '98')",
15847
+ * "created_at": "2024-07-15T16:08:54Z",
15848
+ * "created_by": "team_73f6001f98e9012b",
15849
+ * "workspace_token": "wrkspc_be6568a301b1d06c"
15850
+ * }
15851
+ */
15852
+ "application/json": components["schemas"]["SavedFilter"];
15853
+ };
15854
+ };
15855
+ /** @description NotFound */
15856
+ 404: {
15857
+ headers: {
15858
+ [name: string]: unknown;
15859
+ };
15860
+ content: {
15861
+ "application/json": components["schemas"]["Errors"];
15862
+ };
15863
+ };
15864
+ };
15865
+ };
15866
+ updateSavedFilter: {
15867
+ parameters: {
15868
+ query?: never;
15869
+ header?: never;
15870
+ path: {
15871
+ saved_filter_token: string;
15872
+ };
15873
+ cookie?: never;
15874
+ };
15875
+ requestBody: {
15876
+ content: {
15877
+ "application/json": components["schemas"]["updateSavedFilter"];
15878
+ };
15879
+ };
15880
+ responses: {
15881
+ 200: {
15882
+ headers: {
15883
+ [name: string]: unknown;
15884
+ };
15885
+ content: {
15886
+ /**
15887
+ * @example {
15888
+ * "token": "svd_fltr_eeabf4c7264f94a8",
15889
+ * "title": "Updated Saved Filter",
15890
+ * "cost_report_tokens": [],
15891
+ * "filter": "costs.provider = 'azure'",
15892
+ * "created_at": "2024-07-15T16:08:55Z",
15893
+ * "created_by": "usr_240a5fd77d5da076",
15894
+ * "workspace_token": "wrkspc_0b7ef373f9c5d485"
15895
+ * }
15896
+ */
15897
+ "application/json": components["schemas"]["SavedFilter"];
15898
+ };
15899
+ };
15900
+ /** @description BadRequest */
15901
+ 400: {
15902
+ headers: {
15903
+ [name: string]: unknown;
15904
+ };
15905
+ content: {
15906
+ "application/json": components["schemas"]["Errors"];
15907
+ };
15908
+ };
15909
+ /** @description NotFound */
15910
+ 404: {
15911
+ headers: {
15912
+ [name: string]: unknown;
15913
+ };
15914
+ content: {
15915
+ "application/json": components["schemas"]["Errors"];
15916
+ };
15917
+ };
15918
+ /** @description UnprocessableEntity */
15919
+ 422: {
15920
+ headers: {
15921
+ [name: string]: unknown;
15922
+ };
15923
+ content: {
15924
+ "application/json": components["schemas"]["Errors"];
15925
+ };
15926
+ };
15927
+ };
15928
+ };
15929
+ deleteSavedFilter: {
15930
+ parameters: {
15931
+ query?: never;
15932
+ header?: never;
15933
+ path: {
15934
+ saved_filter_token: string;
15935
+ };
15936
+ cookie?: never;
15937
+ };
15938
+ requestBody?: never;
15939
+ responses: {
15940
+ 204: {
15941
+ headers: {
15942
+ [name: string]: unknown;
15943
+ };
15944
+ content: {
15945
+ "application/json": components["schemas"]["SavedFilter"];
15946
+ };
15947
+ };
15948
+ /** @description NotFound */
15949
+ 404: {
15950
+ headers: {
15951
+ [name: string]: unknown;
15952
+ };
15953
+ content: {
15954
+ "application/json": components["schemas"]["Errors"];
15955
+ };
15956
+ };
15957
+ };
15958
+ };
15959
+ getScenarioModels: {
15212
15960
  parameters: {
15213
15961
  query?: {
15214
- /** @description The page of results to return. */
15215
15962
  page?: number;
15216
- /** @description The amount of results to return. The maximum is 1000. */
15217
15963
  limit?: number;
15218
15964
  };
15219
15965
  header?: never;
@@ -15222,6 +15968,7 @@ interface operations {
15222
15968
  };
15223
15969
  requestBody?: never;
15224
15970
  responses: {
15971
+ /** @description Return all ScenarioModels. */
15225
15972
  200: {
15226
15973
  headers: {
15227
15974
  [name: string]: unknown;
@@ -15230,33 +15977,41 @@ interface operations {
15230
15977
  /**
15231
15978
  * @example {
15232
15979
  * "links": {
15233
- * "self": "https://api.vantage.sh/v2/saved_filters",
15234
- * "first": "https://api.vantage.sh/v2/saved_filters?page=1",
15980
+ * "self": "https://api.vantage.sh/v2/scenario_models",
15981
+ * "first": "https://api.vantage.sh/v2/scenario_models?page=1",
15235
15982
  * "next": null,
15236
- * "last": "https://api.vantage.sh/v2/saved_filters?page=1",
15983
+ * "last": "https://api.vantage.sh/v2/scenario_models?page=1",
15237
15984
  * "prev": null
15238
15985
  * },
15239
- * "saved_filters": [
15986
+ * "scenario_models": [
15240
15987
  * {
15241
- * "token": "svd_fltr_3dffc0458f7a2487",
15242
- * "title": "AWS Account",
15243
- * "cost_report_tokens": [
15244
- * "rprt_3d0ae4648f5fd8f7"
15988
+ * "token": "frcst_mdl_47f8f6511171bc8f",
15989
+ * "title": "Hiring Plan",
15990
+ * "priority": 2,
15991
+ * "workspace_token": null,
15992
+ * "provider": null,
15993
+ * "service": null,
15994
+ * "periods": [
15995
+ * {
15996
+ * "start_at": "2026-01-01",
15997
+ * "end_at": "2026-03-31",
15998
+ * "amount": "1250.75",
15999
+ * "amount_type": "dollar"
16000
+ * }
15245
16001
  * ],
15246
- * "filter": "(costs.provider = 'aws' AND costs.account_id = '30')",
15247
- * "created_at": "2024-07-15T16:08:53Z",
15248
- * "created_by": "usr_95fac32734bdceab",
15249
- * "workspace_token": "wrkspc_914dcb0959497507"
16002
+ * "created_by_token": "usr_41333d06c73b9405",
16003
+ * "created_at": "2026-07-28T15:37:49Z",
16004
+ * "updated_at": "2026-07-28T15:37:49Z"
15250
16005
  * }
15251
16006
  * ]
15252
16007
  * }
15253
16008
  */
15254
- "application/json": components["schemas"]["SavedFilters"];
16009
+ "application/json": components["schemas"]["ScenarioModels"];
15255
16010
  };
15256
16011
  };
15257
16012
  };
15258
16013
  };
15259
- createSavedFilter: {
16014
+ createScenarioModel: {
15260
16015
  parameters: {
15261
16016
  query?: never;
15262
16017
  header?: never;
@@ -15265,10 +16020,11 @@ interface operations {
15265
16020
  };
15266
16021
  requestBody: {
15267
16022
  content: {
15268
- "application/json": components["schemas"]["createSavedFilter"];
16023
+ "application/json": components["schemas"]["createScenarioModel"];
15269
16024
  };
15270
16025
  };
15271
16026
  responses: {
16027
+ /** @description Create a ScenarioModel. */
15272
16028
  201: {
15273
16029
  headers: {
15274
16030
  [name: string]: unknown;
@@ -15276,20 +16032,30 @@ interface operations {
15276
16032
  content: {
15277
16033
  /**
15278
16034
  * @example {
15279
- * "token": "svd_fltr_4de629566ddd68c9",
15280
- * "title": "New Saved Filter",
15281
- * "cost_report_tokens": [],
15282
- * "filter": "costs.provider = 'datadog'",
15283
- * "created_at": "2024-07-15T16:08:58Z",
15284
- * "created_by": "team_e58399e4df1175e9",
15285
- * "workspace_token": "wrkspc_e4cacf2493142e5b"
16035
+ * "token": "frcst_mdl_e42020822501d0ee",
16036
+ * "title": "Expansion Plan",
16037
+ * "priority": 4,
16038
+ * "workspace_token": null,
16039
+ * "provider": null,
16040
+ * "service": null,
16041
+ * "periods": [
16042
+ * {
16043
+ * "start_at": "2026-04-01",
16044
+ * "end_at": null,
16045
+ * "amount": "9876.54321",
16046
+ * "amount_type": "percent"
16047
+ * }
16048
+ * ],
16049
+ * "created_by_token": "usr_cc82bf4cf16d5452",
16050
+ * "created_at": "2026-07-28T15:37:50Z",
16051
+ * "updated_at": "2026-07-28T15:37:50Z"
15286
16052
  * }
15287
16053
  */
15288
- "application/json": components["schemas"]["SavedFilter"];
16054
+ "application/json": components["schemas"]["ScenarioModel"];
15289
16055
  };
15290
16056
  };
15291
- /** @description BadRequest */
15292
- 400: {
16057
+ /** @description Forbidden */
16058
+ 403: {
15293
16059
  headers: {
15294
16060
  [name: string]: unknown;
15295
16061
  };
@@ -15308,17 +16074,18 @@ interface operations {
15308
16074
  };
15309
16075
  };
15310
16076
  };
15311
- getSavedFilter: {
16077
+ getScenarioModel: {
15312
16078
  parameters: {
15313
16079
  query?: never;
15314
16080
  header?: never;
15315
16081
  path: {
15316
- saved_filter_token: string;
16082
+ scenario_model_token: string;
15317
16083
  };
15318
16084
  cookie?: never;
15319
16085
  };
15320
16086
  requestBody?: never;
15321
16087
  responses: {
16088
+ /** @description Return a ScenarioModel. */
15322
16089
  200: {
15323
16090
  headers: {
15324
16091
  [name: string]: unknown;
@@ -15326,18 +16093,26 @@ interface operations {
15326
16093
  content: {
15327
16094
  /**
15328
16095
  * @example {
15329
- * "token": "svd_fltr_be3f24eb1b5aabf6",
15330
- * "title": "AWS Account",
15331
- * "cost_report_tokens": [
15332
- * "rprt_47023ad2b735f57d"
16096
+ * "token": "frcst_mdl_a7684dd8104260da",
16097
+ * "title": "Hiring Plan",
16098
+ * "priority": 2,
16099
+ * "workspace_token": null,
16100
+ * "provider": null,
16101
+ * "service": null,
16102
+ * "periods": [
16103
+ * {
16104
+ * "start_at": "2026-01-01",
16105
+ * "end_at": "2026-03-31",
16106
+ * "amount": "1250.75",
16107
+ * "amount_type": "dollar"
16108
+ * }
15333
16109
  * ],
15334
- * "filter": "(costs.provider = 'aws' AND costs.account_id = '98')",
15335
- * "created_at": "2024-07-15T16:08:54Z",
15336
- * "created_by": "team_73f6001f98e9012b",
15337
- * "workspace_token": "wrkspc_be6568a301b1d06c"
16110
+ * "created_by_token": "usr_2943707386442e61",
16111
+ * "created_at": "2026-07-28T15:37:49Z",
16112
+ * "updated_at": "2026-07-28T15:37:49Z"
15338
16113
  * }
15339
16114
  */
15340
- "application/json": components["schemas"]["SavedFilter"];
16115
+ "application/json": components["schemas"]["ScenarioModel"];
15341
16116
  };
15342
16117
  };
15343
16118
  /** @description NotFound */
@@ -15351,21 +16126,22 @@ interface operations {
15351
16126
  };
15352
16127
  };
15353
16128
  };
15354
- updateSavedFilter: {
16129
+ updateScenarioModel: {
15355
16130
  parameters: {
15356
16131
  query?: never;
15357
16132
  header?: never;
15358
16133
  path: {
15359
- saved_filter_token: string;
16134
+ scenario_model_token: string;
15360
16135
  };
15361
16136
  cookie?: never;
15362
16137
  };
15363
16138
  requestBody: {
15364
16139
  content: {
15365
- "application/json": components["schemas"]["updateSavedFilter"];
16140
+ "application/json": components["schemas"]["updateScenarioModel"];
15366
16141
  };
15367
16142
  };
15368
16143
  responses: {
16144
+ /** @description Update a ScenarioModel. */
15369
16145
  200: {
15370
16146
  headers: {
15371
16147
  [name: string]: unknown;
@@ -15373,20 +16149,30 @@ interface operations {
15373
16149
  content: {
15374
16150
  /**
15375
16151
  * @example {
15376
- * "token": "svd_fltr_eeabf4c7264f94a8",
15377
- * "title": "Updated Saved Filter",
15378
- * "cost_report_tokens": [],
15379
- * "filter": "costs.provider = 'azure'",
15380
- * "created_at": "2024-07-15T16:08:55Z",
15381
- * "created_by": "usr_240a5fd77d5da076",
15382
- * "workspace_token": "wrkspc_0b7ef373f9c5d485"
16152
+ * "token": "frcst_mdl_09c6dc8b48640f37",
16153
+ * "title": "Updated Hiring Plan",
16154
+ * "priority": 2,
16155
+ * "workspace_token": null,
16156
+ * "provider": null,
16157
+ * "service": null,
16158
+ * "periods": [
16159
+ * {
16160
+ * "start_at": "2026-01-01",
16161
+ * "end_at": "2026-03-31",
16162
+ * "amount": "1250.75",
16163
+ * "amount_type": "dollar"
16164
+ * }
16165
+ * ],
16166
+ * "created_by_token": "usr_f26745be72a42d31",
16167
+ * "created_at": "2026-07-28T15:37:52Z",
16168
+ * "updated_at": "2026-07-28T15:37:52Z"
15383
16169
  * }
15384
16170
  */
15385
- "application/json": components["schemas"]["SavedFilter"];
16171
+ "application/json": components["schemas"]["ScenarioModel"];
15386
16172
  };
15387
16173
  };
15388
- /** @description BadRequest */
15389
- 400: {
16174
+ /** @description Forbidden */
16175
+ 403: {
15390
16176
  headers: {
15391
16177
  [name: string]: unknown;
15392
16178
  };
@@ -15414,23 +16200,33 @@ interface operations {
15414
16200
  };
15415
16201
  };
15416
16202
  };
15417
- deleteSavedFilter: {
16203
+ deleteScenarioModel: {
15418
16204
  parameters: {
15419
16205
  query?: never;
15420
16206
  header?: never;
15421
16207
  path: {
15422
- saved_filter_token: string;
16208
+ scenario_model_token: string;
15423
16209
  };
15424
16210
  cookie?: never;
15425
16211
  };
15426
16212
  requestBody?: never;
15427
16213
  responses: {
16214
+ /** @description Delete a ScenarioModel. */
15428
16215
  204: {
15429
16216
  headers: {
15430
16217
  [name: string]: unknown;
15431
16218
  };
15432
16219
  content: {
15433
- "application/json": components["schemas"]["SavedFilter"];
16220
+ "application/json": components["schemas"]["ScenarioModel"];
16221
+ };
16222
+ };
16223
+ /** @description Forbidden */
16224
+ 403: {
16225
+ headers: {
16226
+ [name: string]: unknown;
16227
+ };
16228
+ content: {
16229
+ "application/json": components["schemas"]["Errors"];
15434
16230
  };
15435
16231
  };
15436
16232
  /** @description NotFound */
@@ -18408,6 +19204,38 @@ type UpdateRecommendationViewResponse = ResponseBodyForPathAndMethod<`/v2/recomm
18408
19204
  * Response type for Delete recommendation view
18409
19205
  */
18410
19206
  type DeleteRecommendationViewResponse = ResponseBodyForPathAndMethod<`/v2/recommendation_views/${NoSlashString}`, "DELETE">;
19207
+ /**
19208
+ * Return all scenario-model ReportForecasts for a CostReport.
19209
+ */
19210
+ type GetReportForecastsRequest = RequestBodyForPathAndMethod<"/v2/report_forecasts", "GET">;
19211
+ /**
19212
+ * Response type for Get all report forecasts
19213
+ */
19214
+ type GetReportForecastsResponse = ResponseBodyForPathAndMethod<"/v2/report_forecasts", "GET">;
19215
+ /**
19216
+ * Create a scenario-model ReportForecast.
19217
+ */
19218
+ type CreateReportForecastRequest = RequestBodyForPathAndMethod<"/v2/report_forecasts", "POST">;
19219
+ /**
19220
+ * Response type for Create report forecast
19221
+ */
19222
+ type CreateReportForecastResponse = ResponseBodyForPathAndMethod<"/v2/report_forecasts", "POST">;
19223
+ /**
19224
+ * Response type for Get report forecast by token
19225
+ */
19226
+ type GetReportForecastResponse = ResponseBodyForPathAndMethod<`/v2/report_forecasts/${NoSlashString}`, "GET">;
19227
+ /**
19228
+ * Update a scenario-model ReportForecast.
19229
+ */
19230
+ type UpdateReportForecastRequest = RequestBodyForPathAndMethod<`/v2/report_forecasts/${NoSlashString}`, "PUT">;
19231
+ /**
19232
+ * Response type for Update report forecast
19233
+ */
19234
+ type UpdateReportForecastResponse = ResponseBodyForPathAndMethod<`/v2/report_forecasts/${NoSlashString}`, "PUT">;
19235
+ /**
19236
+ * Response type for Delete report forecast
19237
+ */
19238
+ type DeleteReportForecastResponse = ResponseBodyForPathAndMethod<`/v2/report_forecasts/${NoSlashString}`, "DELETE">;
18411
19239
  /**
18412
19240
  * Return all ReportNotifications.
18413
19241
  */
@@ -18528,6 +19356,38 @@ type UpdateSavedFilterResponse = ResponseBodyForPathAndMethod<`/v2/saved_filters
18528
19356
  * Response type for Delete saved filter
18529
19357
  */
18530
19358
  type DeleteSavedFilterResponse = ResponseBodyForPathAndMethod<`/v2/saved_filters/${NoSlashString}`, "DELETE">;
19359
+ /**
19360
+ * Return all ScenarioModels.
19361
+ */
19362
+ type GetScenarioModelsRequest = RequestBodyForPathAndMethod<"/v2/scenario_models", "GET">;
19363
+ /**
19364
+ * Response type for Get all scenario models
19365
+ */
19366
+ type GetScenarioModelsResponse = ResponseBodyForPathAndMethod<"/v2/scenario_models", "GET">;
19367
+ /**
19368
+ * Create a ScenarioModel.
19369
+ */
19370
+ type CreateScenarioModelRequest = RequestBodyForPathAndMethod<"/v2/scenario_models", "POST">;
19371
+ /**
19372
+ * Response type for Create scenario model
19373
+ */
19374
+ type CreateScenarioModelResponse = ResponseBodyForPathAndMethod<"/v2/scenario_models", "POST">;
19375
+ /**
19376
+ * Response type for Get scenario model by token
19377
+ */
19378
+ type GetScenarioModelResponse = ResponseBodyForPathAndMethod<`/v2/scenario_models/${NoSlashString}`, "GET">;
19379
+ /**
19380
+ * Update a ScenarioModel.
19381
+ */
19382
+ type UpdateScenarioModelRequest = RequestBodyForPathAndMethod<`/v2/scenario_models/${NoSlashString}`, "PUT">;
19383
+ /**
19384
+ * Response type for Update scenario model
19385
+ */
19386
+ type UpdateScenarioModelResponse = ResponseBodyForPathAndMethod<`/v2/scenario_models/${NoSlashString}`, "PUT">;
19387
+ /**
19388
+ * Response type for Delete scenario model
19389
+ */
19390
+ type DeleteScenarioModelResponse = ResponseBodyForPathAndMethod<`/v2/scenario_models/${NoSlashString}`, "DELETE">;
18531
19391
  /**
18532
19392
  * Return all Segments.
18533
19393
  */
@@ -18803,10 +19663,12 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
18803
19663
  private _products?;
18804
19664
  private _recommendations?;
18805
19665
  private _recommendationViews?;
19666
+ private _reportForecasts?;
18806
19667
  private _reportNotifications?;
18807
19668
  private _resourceReports?;
18808
19669
  private _resources?;
18809
19670
  private _savedFilters?;
19671
+ private _scenarioModels?;
18810
19672
  private _segments?;
18811
19673
  private _tags?;
18812
19674
  private _teams?;
@@ -18848,10 +19710,12 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
18848
19710
  get products(): ProductsApi<NeverThrow>;
18849
19711
  get recommendations(): RecommendationsApi<NeverThrow>;
18850
19712
  get recommendationViews(): RecommendationViewsApi<NeverThrow>;
19713
+ get reportForecasts(): ReportForecastsApi<NeverThrow>;
18851
19714
  get reportNotifications(): ReportNotificationsApi<NeverThrow>;
18852
19715
  get resourceReports(): ResourceReportsApi<NeverThrow>;
18853
19716
  get resources(): ResourcesApi<NeverThrow>;
18854
19717
  get savedFilters(): SavedFiltersApi<NeverThrow>;
19718
+ get scenarioModels(): ScenarioModelsApi<NeverThrow>;
18855
19719
  get segments(): SegmentsApi<NeverThrow>;
18856
19720
  get tags(): TagsApi<NeverThrow>;
18857
19721
  get teams(): TeamsApi<NeverThrow>;
@@ -21571,6 +22435,96 @@ declare class RecommendationViewsApi<NeverThrow extends boolean> {
21571
22435
  */
21572
22436
  delete(recommendationViewToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
21573
22437
  }
22438
+ declare class ReportForecastsApi<NeverThrow extends boolean> {
22439
+ private client;
22440
+ constructor(client: BaseClient<NeverThrow>);
22441
+ /**
22442
+ * Return all scenario-model ReportForecasts for a CostReport.
22443
+ */
22444
+ list(body?: GetReportForecastsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22445
+ links?: components["schemas"]["Links"];
22446
+ report_forecasts: components["schemas"]["ReportForecast"][];
22447
+ }, null] : {
22448
+ links?: components["schemas"]["Links"];
22449
+ report_forecasts: components["schemas"]["ReportForecast"][];
22450
+ }>;
22451
+ /**
22452
+ * Create a scenario-model ReportForecast.
22453
+ */
22454
+ create(body: CreateReportForecastRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22455
+ token: string;
22456
+ title: string;
22457
+ cost_report_token: string;
22458
+ scenario_model_tokens: string[];
22459
+ business_metric_token: string | null;
22460
+ is_default: boolean;
22461
+ created_by_token: string | null;
22462
+ created_at: string;
22463
+ updated_at: string;
22464
+ }, null] : {
22465
+ token: string;
22466
+ title: string;
22467
+ cost_report_token: string;
22468
+ scenario_model_tokens: string[];
22469
+ business_metric_token: string | null;
22470
+ is_default: boolean;
22471
+ created_by_token: string | null;
22472
+ created_at: string;
22473
+ updated_at: string;
22474
+ }>;
22475
+ /**
22476
+ * Return a scenario-model ReportForecast.
22477
+ */
22478
+ get(reportForecastToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22479
+ token: string;
22480
+ title: string;
22481
+ cost_report_token: string;
22482
+ scenario_model_tokens: string[];
22483
+ business_metric_token: string | null;
22484
+ is_default: boolean;
22485
+ created_by_token: string | null;
22486
+ created_at: string;
22487
+ updated_at: string;
22488
+ }, null] : {
22489
+ token: string;
22490
+ title: string;
22491
+ cost_report_token: string;
22492
+ scenario_model_tokens: string[];
22493
+ business_metric_token: string | null;
22494
+ is_default: boolean;
22495
+ created_by_token: string | null;
22496
+ created_at: string;
22497
+ updated_at: string;
22498
+ }>;
22499
+ /**
22500
+ * Update a scenario-model ReportForecast.
22501
+ */
22502
+ update(reportForecastToken: string, body: UpdateReportForecastRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22503
+ token: string;
22504
+ title: string;
22505
+ cost_report_token: string;
22506
+ scenario_model_tokens: string[];
22507
+ business_metric_token: string | null;
22508
+ is_default: boolean;
22509
+ created_by_token: string | null;
22510
+ created_at: string;
22511
+ updated_at: string;
22512
+ }, null] : {
22513
+ token: string;
22514
+ title: string;
22515
+ cost_report_token: string;
22516
+ scenario_model_tokens: string[];
22517
+ business_metric_token: string | null;
22518
+ is_default: boolean;
22519
+ created_by_token: string | null;
22520
+ created_at: string;
22521
+ updated_at: string;
22522
+ }>;
22523
+ /**
22524
+ * Delete a scenario-model ReportForecast.
22525
+ */
22526
+ delete(reportForecastToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
22527
+ }
21574
22528
  declare class ReportNotificationsApi<NeverThrow extends boolean> {
21575
22529
  private client;
21576
22530
  constructor(client: BaseClient<NeverThrow>);
@@ -21839,6 +22793,102 @@ declare class SavedFiltersApi<NeverThrow extends boolean> {
21839
22793
  */
21840
22794
  delete(savedFilterToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
21841
22795
  }
22796
+ declare class ScenarioModelsApi<NeverThrow extends boolean> {
22797
+ private client;
22798
+ constructor(client: BaseClient<NeverThrow>);
22799
+ /**
22800
+ * Return all ScenarioModels.
22801
+ */
22802
+ list(body?: GetScenarioModelsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22803
+ links?: components["schemas"]["Links"];
22804
+ scenario_models: components["schemas"]["ScenarioModel"][];
22805
+ }, null] : {
22806
+ links?: components["schemas"]["Links"];
22807
+ scenario_models: components["schemas"]["ScenarioModel"][];
22808
+ }>;
22809
+ /**
22810
+ * Create a ScenarioModel.
22811
+ */
22812
+ create(body: CreateScenarioModelRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22813
+ token: string;
22814
+ title: string;
22815
+ priority: number | null;
22816
+ workspace_token: string | null;
22817
+ provider: string | null;
22818
+ service: string | null;
22819
+ periods: components["schemas"]["ScenarioModelPeriod"][];
22820
+ created_by_token: string | null;
22821
+ created_at: string;
22822
+ updated_at: string;
22823
+ }, null] : {
22824
+ token: string;
22825
+ title: string;
22826
+ priority: number | null;
22827
+ workspace_token: string | null;
22828
+ provider: string | null;
22829
+ service: string | null;
22830
+ periods: components["schemas"]["ScenarioModelPeriod"][];
22831
+ created_by_token: string | null;
22832
+ created_at: string;
22833
+ updated_at: string;
22834
+ }>;
22835
+ /**
22836
+ * Return a ScenarioModel.
22837
+ */
22838
+ get(scenarioModelToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22839
+ token: string;
22840
+ title: string;
22841
+ priority: number | null;
22842
+ workspace_token: string | null;
22843
+ provider: string | null;
22844
+ service: string | null;
22845
+ periods: components["schemas"]["ScenarioModelPeriod"][];
22846
+ created_by_token: string | null;
22847
+ created_at: string;
22848
+ updated_at: string;
22849
+ }, null] : {
22850
+ token: string;
22851
+ title: string;
22852
+ priority: number | null;
22853
+ workspace_token: string | null;
22854
+ provider: string | null;
22855
+ service: string | null;
22856
+ periods: components["schemas"]["ScenarioModelPeriod"][];
22857
+ created_by_token: string | null;
22858
+ created_at: string;
22859
+ updated_at: string;
22860
+ }>;
22861
+ /**
22862
+ * Update a ScenarioModel.
22863
+ */
22864
+ update(scenarioModelToken: string, body: UpdateScenarioModelRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22865
+ token: string;
22866
+ title: string;
22867
+ priority: number | null;
22868
+ workspace_token: string | null;
22869
+ provider: string | null;
22870
+ service: string | null;
22871
+ periods: components["schemas"]["ScenarioModelPeriod"][];
22872
+ created_by_token: string | null;
22873
+ created_at: string;
22874
+ updated_at: string;
22875
+ }, null] : {
22876
+ token: string;
22877
+ title: string;
22878
+ priority: number | null;
22879
+ workspace_token: string | null;
22880
+ provider: string | null;
22881
+ service: string | null;
22882
+ periods: components["schemas"]["ScenarioModelPeriod"][];
22883
+ created_by_token: string | null;
22884
+ created_at: string;
22885
+ updated_at: string;
22886
+ }>;
22887
+ /**
22888
+ * Delete a ScenarioModel.
22889
+ */
22890
+ delete(scenarioModelToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
22891
+ }
21842
22892
  declare class SegmentsApi<NeverThrow extends boolean> {
21843
22893
  private client;
21844
22894
  constructor(client: BaseClient<NeverThrow>);
@@ -22482,4 +23532,4 @@ declare class BaseClient<NeverThrow extends boolean> {
22482
23532
  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
23533
  }
22484
23534
 
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 };
23535
+ 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 };