@vantage-sh/vantage-client 2.8.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.ts 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;
@@ -3591,6 +3695,14 @@ interface components {
3591
3695
  * @enum {string}
3592
3696
  */
3593
3697
  unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
3698
+ /**
3699
+ * @description The calculation type applied when this BusinessMetric is used in the CostReport.
3700
+ * @default unit_cost
3701
+ * @enum {string}
3702
+ */
3703
+ calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
3704
+ /** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
3705
+ label?: string;
3594
3706
  /** @description Include only values with these labels in the CostReport. */
3595
3707
  label_filter?: string[];
3596
3708
  /**
@@ -3668,6 +3780,14 @@ interface components {
3668
3780
  * @enum {string}
3669
3781
  */
3670
3782
  unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
3783
+ /**
3784
+ * @description The calculation type applied when this BusinessMetric is used in the CostReport.
3785
+ * @default unit_cost
3786
+ * @enum {string}
3787
+ */
3788
+ calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
3789
+ /** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
3790
+ label?: string;
3671
3791
  /** @description Include only values with these labels in the CostReport. */
3672
3792
  label_filter?: string[];
3673
3793
  /**
@@ -3964,13 +4084,7 @@ interface components {
3964
4084
  saved_filter_tokens?: string[] | null;
3965
4085
  /** @description The tokens for the BusinessMetrics assigned to the CostReport, the unit scale, and label filter. */
3966
4086
  business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
3967
- /**
3968
- * @description The default forecast selection for the CostReport.
3969
- * @example {
3970
- * "kind": "baseline"
3971
- * }
3972
- */
3973
- default_forecast: Record<string, any>;
4087
+ default_forecast: components["schemas"]["DefaultForecast"];
3974
4088
  /** @description The filter applied to the CostReport. Additional documentation available at https://docs.vantage.sh/vql. */
3975
4089
  filter: string | null;
3976
4090
  /**
@@ -4011,12 +4125,13 @@ interface components {
4011
4125
  */
4012
4126
  unallocated?: boolean | null;
4013
4127
  /**
4014
- * @description Report will aggregate by cost or usage.
4128
+ * @description Report will aggregate by cost, usage, or count.
4015
4129
  * @default cost
4130
+ * @enum {string|null}
4016
4131
  */
4017
- aggregate_by?: string | null;
4132
+ aggregate_by?: "cost" | "usage" | "count" | null;
4018
4133
  /**
4019
- * @description Report will show previous period costs or usage comparison.
4134
+ * @description Report will show previous period cost, usage, or count comparison.
4020
4135
  * @default true
4021
4136
  */
4022
4137
  show_previous_period?: boolean | null;
@@ -4098,11 +4213,25 @@ interface components {
4098
4213
  * ]
4099
4214
  * }
4100
4215
  */
4101
- label_filters?: Record<string, any> | null;
4216
+ label_filters?: {
4217
+ [key: string]: string[];
4218
+ } | null;
4219
+ };
4220
+ DefaultForecast: {
4221
+ /**
4222
+ * @description The default forecast selection kind.
4223
+ * @enum {string}
4224
+ */
4225
+ kind: "baseline" | "report_forecast";
4226
+ /** @description The token for the report forecast selected as the default. */
4227
+ report_forecast_token?: string | null;
4102
4228
  };
4103
4229
  ChartSettings: {
4104
- /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
4105
- y_axis_dimension: string;
4230
+ /**
4231
+ * @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'.
4232
+ * @enum {string}
4233
+ */
4234
+ y_axis_dimension: "cost" | "usage" | "count";
4106
4235
  /** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
4107
4236
  x_axis_dimension: string[];
4108
4237
  };
@@ -4162,6 +4291,14 @@ interface components {
4162
4291
  * @enum {string}
4163
4292
  */
4164
4293
  unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
4294
+ /**
4295
+ * @description The calculation type applied when this BusinessMetric is used in the CostReport.
4296
+ * @default unit_cost
4297
+ * @enum {string}
4298
+ */
4299
+ calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
4300
+ /** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
4301
+ label?: string;
4165
4302
  /** @description Include only values with these labels in the CostReport. */
4166
4303
  label_filter?: string[];
4167
4304
  /**
@@ -4215,12 +4352,13 @@ interface components {
4215
4352
  */
4216
4353
  unallocated?: boolean;
4217
4354
  /**
4218
- * @description Report will aggregate by cost or usage.
4355
+ * @description Report will aggregate by cost, usage, or count.
4219
4356
  * @default cost
4357
+ * @enum {string}
4220
4358
  */
4221
- aggregate_by?: string;
4359
+ aggregate_by?: "cost" | "usage" | "count";
4222
4360
  /**
4223
- * @description Report will show previous period costs or usage comparison.
4361
+ * @description Report will show previous period cost, usage, or count comparison.
4224
4362
  * @default true
4225
4363
  */
4226
4364
  show_previous_period?: boolean;
@@ -4259,8 +4397,11 @@ interface components {
4259
4397
  chart_settings?: {
4260
4398
  /** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
4261
4399
  x_axis_dimension?: string[];
4262
- /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
4263
- y_axis_dimension?: string;
4400
+ /**
4401
+ * @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'.
4402
+ * @enum {string}
4403
+ */
4404
+ y_axis_dimension?: "cost" | "usage" | "count";
4264
4405
  };
4265
4406
  };
4266
4407
  /** @description Update a CostReport. */
@@ -4283,6 +4424,14 @@ interface components {
4283
4424
  * @enum {string}
4284
4425
  */
4285
4426
  unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
4427
+ /**
4428
+ * @description The calculation type applied when this BusinessMetric is used in the CostReport.
4429
+ * @default unit_cost
4430
+ * @enum {string}
4431
+ */
4432
+ calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
4433
+ /** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
4434
+ label?: string;
4286
4435
  /** @description Include only values with these labels in the CostReport. */
4287
4436
  label_filter?: string[];
4288
4437
  /**
@@ -4327,9 +4476,12 @@ interface components {
4327
4476
  amortize?: boolean | null;
4328
4477
  /** @description Report will show unallocated costs. */
4329
4478
  unallocated?: boolean | null;
4330
- /** @description Report will aggregate by cost or usage. */
4331
- aggregate_by?: string | null;
4332
- /** @description Report will show previous period costs or usage comparison. */
4479
+ /**
4480
+ * @description Report will aggregate by cost, usage, or count.
4481
+ * @enum {string|null}
4482
+ */
4483
+ aggregate_by?: "cost" | "usage" | "count" | null;
4484
+ /** @description Report will show previous period cost, usage, or count comparison. */
4333
4485
  show_previous_period?: boolean | null;
4334
4486
  /** @description Report will restrict date ranges to completed periods only. */
4335
4487
  complete_period?: boolean;
@@ -4338,8 +4490,11 @@ interface components {
4338
4490
  chart_settings?: {
4339
4491
  /** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
4340
4492
  x_axis_dimension?: string[];
4341
- /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
4342
- y_axis_dimension?: string;
4493
+ /**
4494
+ * @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'.
4495
+ * @enum {string}
4496
+ */
4497
+ y_axis_dimension?: "cost" | "usage" | "count";
4343
4498
  };
4344
4499
  /** @description The previous period start date of the CostReport. ISO 8601 Formatted. */
4345
4500
  previous_period_start_date?: string;
@@ -4423,12 +4578,13 @@ interface components {
4423
4578
  */
4424
4579
  unallocated?: boolean;
4425
4580
  /**
4426
- * @description Results will aggregate by cost or usage.
4581
+ * @description Results will aggregate by cost, usage, or count.
4427
4582
  * @default cost
4583
+ * @enum {string}
4428
4584
  */
4429
- aggregate_by?: string;
4585
+ aggregate_by?: "cost" | "usage" | "count";
4430
4586
  /**
4431
- * @description Results will show previous period costs or usage comparison.
4587
+ * @description Results will show previous period cost, usage, or count comparison.
4432
4588
  * @default true
4433
4589
  */
4434
4590
  show_previous_period?: boolean;
@@ -4440,6 +4596,13 @@ interface components {
4440
4596
  total_cost: components["schemas"]["CostPartial"];
4441
4597
  /** @description The sum of all usage for the CostReport for the requested period, rounded to 2 decimal places, grouped by usage unit. */
4442
4598
  total_usage?: components["schemas"]["UsagePartial"][];
4599
+ /**
4600
+ * Format: int64
4601
+ * @description The sum of the date-binned counts. Present when settings.aggregate_by is 'count'.
4602
+ */
4603
+ total_count?: number | null;
4604
+ /** @description Distinct Group By permutation counts for the full requested period, unaffected by page and limit. Bins without cost are omitted. Present when settings.aggregate_by is 'count'. */
4605
+ counts?: components["schemas"]["CostCount"][];
4443
4606
  costs: components["schemas"]["Cost"][];
4444
4607
  };
4445
4608
  CostPartial: {
@@ -4466,6 +4629,19 @@ interface components {
4466
4629
  */
4467
4630
  unit: string;
4468
4631
  };
4632
+ CostCount: {
4633
+ /**
4634
+ * @description The date bin for the count. ISO 8601 Formatted.
4635
+ * @example 2023-09-05+00:00
4636
+ */
4637
+ accrued_at: string;
4638
+ /**
4639
+ * Format: int64
4640
+ * @description The number of distinct Group By permutations carrying cost in the date bin.
4641
+ * @example 2
4642
+ */
4643
+ count: number;
4644
+ };
4469
4645
  /** @description Cost model */
4470
4646
  Cost: {
4471
4647
  links?: components["schemas"]["Links"];
@@ -6082,6 +6258,38 @@ interface components {
6082
6258
  /** @description The type of change the ReportNotification is tracking. Possible values: percentage, dollars. */
6083
6259
  change?: string;
6084
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
+ };
6085
6293
  /** @description ResourceReportColumns model */
6086
6294
  ResourceReportColumns: {
6087
6295
  /** @description Array of available column names for the specified resource type. */
@@ -6230,6 +6438,87 @@ interface components {
6230
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. */
6231
6439
  filter?: string;
6232
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
+ };
6233
6522
  /** @description Segments model */
6234
6523
  Segments: {
6235
6524
  links?: components["schemas"]["Links"];
@@ -10534,9 +10823,9 @@ interface operations {
10534
10823
  "settings[amortize]"?: boolean;
10535
10824
  /** @description Results will show unallocated costs. */
10536
10825
  "settings[unallocated]"?: boolean;
10537
- /** @description Results will aggregate by cost or usage. */
10538
- "settings[aggregate_by]"?: string;
10539
- /** @description Results will show previous period costs or usage comparison. */
10826
+ /** @description Results will aggregate by cost, usage, or count. */
10827
+ "settings[aggregate_by]"?: "cost" | "usage" | "count";
10828
+ /** @description Results will show previous period cost, usage, or count comparison. */
10540
10829
  "settings[show_previous_period]"?: boolean;
10541
10830
  };
10542
10831
  header?: never;
@@ -14335,12 +14624,11 @@ interface operations {
14335
14624
  };
14336
14625
  };
14337
14626
  };
14338
- getReportNotifications: {
14627
+ getReportForecasts: {
14339
14628
  parameters: {
14340
- query?: {
14341
- /** @description The page of results to return. */
14629
+ query: {
14630
+ cost_report_token: string;
14342
14631
  page?: number;
14343
- /** @description The amount of results to return. The maximum is 1000. */
14344
14632
  limit?: number;
14345
14633
  };
14346
14634
  header?: never;
@@ -14349,6 +14637,7 @@ interface operations {
14349
14637
  };
14350
14638
  requestBody?: never;
14351
14639
  responses: {
14640
+ /** @description Return all scenario-model ReportForecasts for a CostReport. */
14352
14641
  200: {
14353
14642
  headers: {
14354
14643
  [name: string]: unknown;
@@ -14357,32 +14646,44 @@ interface operations {
14357
14646
  /**
14358
14647
  * @example {
14359
14648
  * "links": {
14360
- * "self": "https://api.vantage.sh/v2/report_notifications",
14361
- * "first": "https://api.vantage.sh/v2/report_notifications?page=1",
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",
14362
14651
  * "next": null,
14363
- * "last": "https://api.vantage.sh/v2/report_notifications?page=1",
14652
+ * "last": "https://api.vantage.sh/v2/report_forecasts?cost_report_token=rprt_fd7190753bb1ce4a&page=1",
14364
14653
  * "prev": null
14365
14654
  * },
14366
- * "report_notifications": [
14655
+ * "report_forecasts": [
14367
14656
  * {
14368
- * "token": "rprt_ntfctn_7c09ca27d07d8d1e",
14369
- * "title": "Test Notification",
14370
- * "cost_report_token": "rprt_ba0a5a5201390d72",
14371
- * "user_tokens": [
14372
- * "usr_27edb13f3beac3cb"
14657
+ * "token": "rprt_frcst_b6fc93cfbe7bb782",
14658
+ * "title": "Board Plan",
14659
+ * "cost_report_token": "rprt_fd7190753bb1ce4a",
14660
+ * "scenario_model_tokens": [
14661
+ * "frcst_mdl_998be85cff4d0574"
14373
14662
  * ],
14374
- * "frequency": "weekly",
14375
- * "change": "percentage"
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"
14376
14668
  * }
14377
14669
  * ]
14378
14670
  * }
14379
14671
  */
14380
- "application/json": components["schemas"]["ReportNotifications"];
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"];
14381
14682
  };
14382
14683
  };
14383
14684
  };
14384
14685
  };
14385
- createReportNotification: {
14686
+ createReportForecast: {
14386
14687
  parameters: {
14387
14688
  query?: never;
14388
14689
  header?: never;
@@ -14391,10 +14692,11 @@ interface operations {
14391
14692
  };
14392
14693
  requestBody: {
14393
14694
  content: {
14394
- "application/json": components["schemas"]["createReportNotification"];
14695
+ "application/json": components["schemas"]["createReportForecast"];
14395
14696
  };
14396
14697
  };
14397
14698
  responses: {
14699
+ /** @description Create a scenario-model ReportForecast. */
14398
14700
  201: {
14399
14701
  headers: {
14400
14702
  [name: string]: unknown;
@@ -14402,21 +14704,33 @@ interface operations {
14402
14704
  content: {
14403
14705
  /**
14404
14706
  * @example {
14405
- * "token": "rprt_ntfctn_8ce31b43a149cd2e",
14406
- * "title": "New Report Notification",
14407
- * "cost_report_token": "rprt_933010600676b02f",
14408
- * "user_tokens": [
14409
- * "usr_45e7d17e9f402226"
14707
+ * "token": "rprt_frcst_5d4cc7ef29bed6d2",
14708
+ * "title": "Operating Plan",
14709
+ * "cost_report_token": "rprt_82a0304aaf254804",
14710
+ * "scenario_model_tokens": [
14711
+ * "frcst_mdl_ebb14bfd8eabc5fd"
14410
14712
  * ],
14411
- * "frequency": "daily",
14412
- * "change": "percentage"
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"
14413
14718
  * }
14414
14719
  */
14415
- "application/json": components["schemas"]["ReportNotification"];
14720
+ "application/json": components["schemas"]["ReportForecast"];
14416
14721
  };
14417
14722
  };
14418
- /** @description BadRequest */
14419
- 400: {
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: {
14420
14734
  headers: {
14421
14735
  [name: string]: unknown;
14422
14736
  };
@@ -14435,17 +14749,18 @@ interface operations {
14435
14749
  };
14436
14750
  };
14437
14751
  };
14438
- getReportNotification: {
14752
+ getReportForecast: {
14439
14753
  parameters: {
14440
14754
  query?: never;
14441
14755
  header?: never;
14442
14756
  path: {
14443
- report_notification_token: string;
14757
+ report_forecast_token: string;
14444
14758
  };
14445
14759
  cookie?: never;
14446
14760
  };
14447
14761
  requestBody?: never;
14448
14762
  responses: {
14763
+ /** @description Return a scenario-model ReportForecast. */
14449
14764
  200: {
14450
14765
  headers: {
14451
14766
  [name: string]: unknown;
@@ -14453,17 +14768,20 @@ interface operations {
14453
14768
  content: {
14454
14769
  /**
14455
14770
  * @example {
14456
- * "token": "rprt_ntfctn_21b4287a212406b1",
14457
- * "title": "Test Notification",
14458
- * "cost_report_token": "rprt_d084c84455edc606",
14459
- * "user_tokens": [
14460
- * "usr_56d53f802edba3e6"
14771
+ * "token": "rprt_frcst_4eb4953f73d088c3",
14772
+ * "title": "Board Plan",
14773
+ * "cost_report_token": "rprt_89d0dacbe6bdee16",
14774
+ * "scenario_model_tokens": [
14775
+ * "frcst_mdl_f2fbc239e8f733f5"
14461
14776
  * ],
14462
- * "frequency": "weekly",
14463
- * "change": "percentage"
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"
14464
14782
  * }
14465
14783
  */
14466
- "application/json": components["schemas"]["ReportNotification"];
14784
+ "application/json": components["schemas"]["ReportForecast"];
14467
14785
  };
14468
14786
  };
14469
14787
  /** @description NotFound */
@@ -14477,21 +14795,22 @@ interface operations {
14477
14795
  };
14478
14796
  };
14479
14797
  };
14480
- updateReportNotification: {
14798
+ updateReportForecast: {
14481
14799
  parameters: {
14482
14800
  query?: never;
14483
14801
  header?: never;
14484
14802
  path: {
14485
- report_notification_token: string;
14803
+ report_forecast_token: string;
14486
14804
  };
14487
14805
  cookie?: never;
14488
14806
  };
14489
14807
  requestBody: {
14490
14808
  content: {
14491
- "application/json": components["schemas"]["updateReportNotification"];
14809
+ "application/json": components["schemas"]["updateReportForecast"];
14492
14810
  };
14493
14811
  };
14494
14812
  responses: {
14813
+ /** @description Update a scenario-model ReportForecast. */
14495
14814
  200: {
14496
14815
  headers: {
14497
14816
  [name: string]: unknown;
@@ -14499,21 +14818,24 @@ interface operations {
14499
14818
  content: {
14500
14819
  /**
14501
14820
  * @example {
14502
- * "token": "rprt_ntfctn_b36b208a90ee87f6",
14503
- * "title": "Updated Report Notification",
14504
- * "cost_report_token": "rprt_07b88c04aa6bed8c",
14505
- * "user_tokens": [
14506
- * "usr_35ed19fadcfed8c9"
14821
+ * "token": "rprt_frcst_1857da57e1638621",
14822
+ * "title": "Revised Board Plan",
14823
+ * "cost_report_token": "rprt_2ba2ed341ec3140f",
14824
+ * "scenario_model_tokens": [
14825
+ * "frcst_mdl_71ba27b133ee9ff3"
14507
14826
  * ],
14508
- * "frequency": "weekly",
14509
- * "change": "dollars"
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"
14510
14832
  * }
14511
14833
  */
14512
- "application/json": components["schemas"]["ReportNotification"];
14834
+ "application/json": components["schemas"]["ReportForecast"];
14513
14835
  };
14514
14836
  };
14515
- /** @description BadRequest */
14516
- 400: {
14837
+ /** @description Forbidden */
14838
+ 403: {
14517
14839
  headers: {
14518
14840
  [name: string]: unknown;
14519
14841
  };
@@ -14530,12 +14852,258 @@ interface operations {
14530
14852
  "application/json": components["schemas"]["Errors"];
14531
14853
  };
14532
14854
  };
14533
- };
14534
- };
14535
- deleteReportNotification: {
14536
- parameters: {
14537
- query?: never;
14538
- header?: never;
14855
+ /** @description UnprocessableEntity */
14856
+ 422: {
14857
+ headers: {
14858
+ [name: string]: unknown;
14859
+ };
14860
+ content: {
14861
+ "application/json": components["schemas"]["Errors"];
14862
+ };
14863
+ };
14864
+ };
14865
+ };
14866
+ deleteReportForecast: {
14867
+ parameters: {
14868
+ query?: never;
14869
+ header?: never;
14870
+ path: {
14871
+ report_forecast_token: string;
14872
+ };
14873
+ cookie?: never;
14874
+ };
14875
+ requestBody?: never;
14876
+ responses: {
14877
+ /** @description Delete a scenario-model ReportForecast. */
14878
+ 204: {
14879
+ headers: {
14880
+ [name: string]: unknown;
14881
+ };
14882
+ content: {
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"];
14893
+ };
14894
+ };
14895
+ /** @description NotFound */
14896
+ 404: {
14897
+ headers: {
14898
+ [name: string]: unknown;
14899
+ };
14900
+ content: {
14901
+ "application/json": components["schemas"]["Errors"];
14902
+ };
14903
+ };
14904
+ };
14905
+ };
14906
+ getReportNotifications: {
14907
+ parameters: {
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;
14913
+ };
14914
+ header?: never;
14915
+ path?: never;
14916
+ cookie?: never;
14917
+ };
14918
+ requestBody?: never;
14919
+ responses: {
14920
+ 200: {
14921
+ headers: {
14922
+ [name: string]: unknown;
14923
+ };
14924
+ content: {
14925
+ /**
14926
+ * @example {
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;
14539
15107
  path: {
14540
15108
  report_notification_token: string;
14541
15109
  };
@@ -15136,12 +15704,246 @@ interface operations {
15136
15704
  };
15137
15705
  };
15138
15706
  };
15139
- 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: {
15140
15944
  parameters: {
15141
15945
  query?: {
15142
- /** @description The page of results to return. */
15143
15946
  page?: number;
15144
- /** @description The amount of results to return. The maximum is 1000. */
15145
15947
  limit?: number;
15146
15948
  };
15147
15949
  header?: never;
@@ -15150,6 +15952,7 @@ interface operations {
15150
15952
  };
15151
15953
  requestBody?: never;
15152
15954
  responses: {
15955
+ /** @description Return all ScenarioModels. */
15153
15956
  200: {
15154
15957
  headers: {
15155
15958
  [name: string]: unknown;
@@ -15158,33 +15961,41 @@ interface operations {
15158
15961
  /**
15159
15962
  * @example {
15160
15963
  * "links": {
15161
- * "self": "https://api.vantage.sh/v2/saved_filters",
15162
- * "first": "https://api.vantage.sh/v2/saved_filters?page=1",
15964
+ * "self": "https://api.vantage.sh/v2/scenario_models",
15965
+ * "first": "https://api.vantage.sh/v2/scenario_models?page=1",
15163
15966
  * "next": null,
15164
- * "last": "https://api.vantage.sh/v2/saved_filters?page=1",
15967
+ * "last": "https://api.vantage.sh/v2/scenario_models?page=1",
15165
15968
  * "prev": null
15166
15969
  * },
15167
- * "saved_filters": [
15970
+ * "scenario_models": [
15168
15971
  * {
15169
- * "token": "svd_fltr_3dffc0458f7a2487",
15170
- * "title": "AWS Account",
15171
- * "cost_report_tokens": [
15172
- * "rprt_3d0ae4648f5fd8f7"
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
+ * }
15173
15985
  * ],
15174
- * "filter": "(costs.provider = 'aws' AND costs.account_id = '30')",
15175
- * "created_at": "2024-07-15T16:08:53Z",
15176
- * "created_by": "usr_95fac32734bdceab",
15177
- * "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"
15178
15989
  * }
15179
15990
  * ]
15180
15991
  * }
15181
15992
  */
15182
- "application/json": components["schemas"]["SavedFilters"];
15993
+ "application/json": components["schemas"]["ScenarioModels"];
15183
15994
  };
15184
15995
  };
15185
15996
  };
15186
15997
  };
15187
- createSavedFilter: {
15998
+ createScenarioModel: {
15188
15999
  parameters: {
15189
16000
  query?: never;
15190
16001
  header?: never;
@@ -15193,10 +16004,11 @@ interface operations {
15193
16004
  };
15194
16005
  requestBody: {
15195
16006
  content: {
15196
- "application/json": components["schemas"]["createSavedFilter"];
16007
+ "application/json": components["schemas"]["createScenarioModel"];
15197
16008
  };
15198
16009
  };
15199
16010
  responses: {
16011
+ /** @description Create a ScenarioModel. */
15200
16012
  201: {
15201
16013
  headers: {
15202
16014
  [name: string]: unknown;
@@ -15204,20 +16016,30 @@ interface operations {
15204
16016
  content: {
15205
16017
  /**
15206
16018
  * @example {
15207
- * "token": "svd_fltr_4de629566ddd68c9",
15208
- * "title": "New Saved Filter",
15209
- * "cost_report_tokens": [],
15210
- * "filter": "costs.provider = 'datadog'",
15211
- * "created_at": "2024-07-15T16:08:58Z",
15212
- * "created_by": "team_e58399e4df1175e9",
15213
- * "workspace_token": "wrkspc_e4cacf2493142e5b"
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"
15214
16036
  * }
15215
16037
  */
15216
- "application/json": components["schemas"]["SavedFilter"];
16038
+ "application/json": components["schemas"]["ScenarioModel"];
15217
16039
  };
15218
16040
  };
15219
- /** @description BadRequest */
15220
- 400: {
16041
+ /** @description Forbidden */
16042
+ 403: {
15221
16043
  headers: {
15222
16044
  [name: string]: unknown;
15223
16045
  };
@@ -15236,17 +16058,18 @@ interface operations {
15236
16058
  };
15237
16059
  };
15238
16060
  };
15239
- getSavedFilter: {
16061
+ getScenarioModel: {
15240
16062
  parameters: {
15241
16063
  query?: never;
15242
16064
  header?: never;
15243
16065
  path: {
15244
- saved_filter_token: string;
16066
+ scenario_model_token: string;
15245
16067
  };
15246
16068
  cookie?: never;
15247
16069
  };
15248
16070
  requestBody?: never;
15249
16071
  responses: {
16072
+ /** @description Return a ScenarioModel. */
15250
16073
  200: {
15251
16074
  headers: {
15252
16075
  [name: string]: unknown;
@@ -15254,18 +16077,26 @@ interface operations {
15254
16077
  content: {
15255
16078
  /**
15256
16079
  * @example {
15257
- * "token": "svd_fltr_be3f24eb1b5aabf6",
15258
- * "title": "AWS Account",
15259
- * "cost_report_tokens": [
15260
- * "rprt_47023ad2b735f57d"
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
+ * }
15261
16093
  * ],
15262
- * "filter": "(costs.provider = 'aws' AND costs.account_id = '98')",
15263
- * "created_at": "2024-07-15T16:08:54Z",
15264
- * "created_by": "team_73f6001f98e9012b",
15265
- * "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"
15266
16097
  * }
15267
16098
  */
15268
- "application/json": components["schemas"]["SavedFilter"];
16099
+ "application/json": components["schemas"]["ScenarioModel"];
15269
16100
  };
15270
16101
  };
15271
16102
  /** @description NotFound */
@@ -15279,21 +16110,22 @@ interface operations {
15279
16110
  };
15280
16111
  };
15281
16112
  };
15282
- updateSavedFilter: {
16113
+ updateScenarioModel: {
15283
16114
  parameters: {
15284
16115
  query?: never;
15285
16116
  header?: never;
15286
16117
  path: {
15287
- saved_filter_token: string;
16118
+ scenario_model_token: string;
15288
16119
  };
15289
16120
  cookie?: never;
15290
16121
  };
15291
16122
  requestBody: {
15292
16123
  content: {
15293
- "application/json": components["schemas"]["updateSavedFilter"];
16124
+ "application/json": components["schemas"]["updateScenarioModel"];
15294
16125
  };
15295
16126
  };
15296
16127
  responses: {
16128
+ /** @description Update a ScenarioModel. */
15297
16129
  200: {
15298
16130
  headers: {
15299
16131
  [name: string]: unknown;
@@ -15301,20 +16133,30 @@ interface operations {
15301
16133
  content: {
15302
16134
  /**
15303
16135
  * @example {
15304
- * "token": "svd_fltr_eeabf4c7264f94a8",
15305
- * "title": "Updated Saved Filter",
15306
- * "cost_report_tokens": [],
15307
- * "filter": "costs.provider = 'azure'",
15308
- * "created_at": "2024-07-15T16:08:55Z",
15309
- * "created_by": "usr_240a5fd77d5da076",
15310
- * "workspace_token": "wrkspc_0b7ef373f9c5d485"
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"
15311
16153
  * }
15312
16154
  */
15313
- "application/json": components["schemas"]["SavedFilter"];
16155
+ "application/json": components["schemas"]["ScenarioModel"];
15314
16156
  };
15315
16157
  };
15316
- /** @description BadRequest */
15317
- 400: {
16158
+ /** @description Forbidden */
16159
+ 403: {
15318
16160
  headers: {
15319
16161
  [name: string]: unknown;
15320
16162
  };
@@ -15342,23 +16184,33 @@ interface operations {
15342
16184
  };
15343
16185
  };
15344
16186
  };
15345
- deleteSavedFilter: {
16187
+ deleteScenarioModel: {
15346
16188
  parameters: {
15347
16189
  query?: never;
15348
16190
  header?: never;
15349
16191
  path: {
15350
- saved_filter_token: string;
16192
+ scenario_model_token: string;
15351
16193
  };
15352
16194
  cookie?: never;
15353
16195
  };
15354
16196
  requestBody?: never;
15355
16197
  responses: {
16198
+ /** @description Delete a ScenarioModel. */
15356
16199
  204: {
15357
16200
  headers: {
15358
16201
  [name: string]: unknown;
15359
16202
  };
15360
16203
  content: {
15361
- "application/json": components["schemas"]["SavedFilter"];
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"];
15362
16214
  };
15363
16215
  };
15364
16216
  /** @description NotFound */
@@ -18336,6 +19188,38 @@ type UpdateRecommendationViewResponse = ResponseBodyForPathAndMethod<`/v2/recomm
18336
19188
  * Response type for Delete recommendation view
18337
19189
  */
18338
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">;
18339
19223
  /**
18340
19224
  * Return all ReportNotifications.
18341
19225
  */
@@ -18456,6 +19340,38 @@ type UpdateSavedFilterResponse = ResponseBodyForPathAndMethod<`/v2/saved_filters
18456
19340
  * Response type for Delete saved filter
18457
19341
  */
18458
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">;
18459
19375
  /**
18460
19376
  * Return all Segments.
18461
19377
  */
@@ -18731,10 +19647,12 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
18731
19647
  private _products?;
18732
19648
  private _recommendations?;
18733
19649
  private _recommendationViews?;
19650
+ private _reportForecasts?;
18734
19651
  private _reportNotifications?;
18735
19652
  private _resourceReports?;
18736
19653
  private _resources?;
18737
19654
  private _savedFilters?;
19655
+ private _scenarioModels?;
18738
19656
  private _segments?;
18739
19657
  private _tags?;
18740
19658
  private _teams?;
@@ -18776,10 +19694,12 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
18776
19694
  get products(): ProductsApi<NeverThrow>;
18777
19695
  get recommendations(): RecommendationsApi<NeverThrow>;
18778
19696
  get recommendationViews(): RecommendationViewsApi<NeverThrow>;
19697
+ get reportForecasts(): ReportForecastsApi<NeverThrow>;
18779
19698
  get reportNotifications(): ReportNotificationsApi<NeverThrow>;
18780
19699
  get resourceReports(): ResourceReportsApi<NeverThrow>;
18781
19700
  get resources(): ResourcesApi<NeverThrow>;
18782
19701
  get savedFilters(): SavedFiltersApi<NeverThrow>;
19702
+ get scenarioModels(): ScenarioModelsApi<NeverThrow>;
18783
19703
  get segments(): SegmentsApi<NeverThrow>;
18784
19704
  get tags(): TagsApi<NeverThrow>;
18785
19705
  get teams(): TeamsApi<NeverThrow>;
@@ -19863,7 +20783,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
19863
20783
  folder_token?: string | null;
19864
20784
  saved_filter_tokens?: string[] | null;
19865
20785
  business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
19866
- default_forecast: Record<string, any>;
20786
+ default_forecast: components["schemas"]["DefaultForecast"];
19867
20787
  filter: string | null;
19868
20788
  groupings?: string | null;
19869
20789
  settings?: {
@@ -19873,7 +20793,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
19873
20793
  include_tax?: boolean | null;
19874
20794
  amortize?: boolean | null;
19875
20795
  unallocated?: boolean | null;
19876
- aggregate_by?: string | null;
20796
+ aggregate_by?: "cost" | "usage" | "count" | null;
19877
20797
  show_previous_period?: boolean | null;
19878
20798
  complete_period?: boolean | null;
19879
20799
  };
@@ -19893,7 +20813,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
19893
20813
  folder_token?: string | null;
19894
20814
  saved_filter_tokens?: string[] | null;
19895
20815
  business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
19896
- default_forecast: Record<string, any>;
20816
+ default_forecast: components["schemas"]["DefaultForecast"];
19897
20817
  filter: string | null;
19898
20818
  groupings?: string | null;
19899
20819
  settings?: {
@@ -19903,7 +20823,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
19903
20823
  include_tax?: boolean | null;
19904
20824
  amortize?: boolean | null;
19905
20825
  unallocated?: boolean | null;
19906
- aggregate_by?: string | null;
20826
+ aggregate_by?: "cost" | "usage" | "count" | null;
19907
20827
  show_previous_period?: boolean | null;
19908
20828
  complete_period?: boolean | null;
19909
20829
  };
@@ -19927,7 +20847,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
19927
20847
  folder_token?: string | null;
19928
20848
  saved_filter_tokens?: string[] | null;
19929
20849
  business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
19930
- default_forecast: Record<string, any>;
20850
+ default_forecast: components["schemas"]["DefaultForecast"];
19931
20851
  filter: string | null;
19932
20852
  groupings?: string | null;
19933
20853
  settings?: {
@@ -19937,7 +20857,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
19937
20857
  include_tax?: boolean | null;
19938
20858
  amortize?: boolean | null;
19939
20859
  unallocated?: boolean | null;
19940
- aggregate_by?: string | null;
20860
+ aggregate_by?: "cost" | "usage" | "count" | null;
19941
20861
  show_previous_period?: boolean | null;
19942
20862
  complete_period?: boolean | null;
19943
20863
  };
@@ -19957,7 +20877,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
19957
20877
  folder_token?: string | null;
19958
20878
  saved_filter_tokens?: string[] | null;
19959
20879
  business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
19960
- default_forecast: Record<string, any>;
20880
+ default_forecast: components["schemas"]["DefaultForecast"];
19961
20881
  filter: string | null;
19962
20882
  groupings?: string | null;
19963
20883
  settings?: {
@@ -19967,7 +20887,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
19967
20887
  include_tax?: boolean | null;
19968
20888
  amortize?: boolean | null;
19969
20889
  unallocated?: boolean | null;
19970
- aggregate_by?: string | null;
20890
+ aggregate_by?: "cost" | "usage" | "count" | null;
19971
20891
  show_previous_period?: boolean | null;
19972
20892
  complete_period?: boolean | null;
19973
20893
  };
@@ -19991,7 +20911,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
19991
20911
  folder_token?: string | null;
19992
20912
  saved_filter_tokens?: string[] | null;
19993
20913
  business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
19994
- default_forecast: Record<string, any>;
20914
+ default_forecast: components["schemas"]["DefaultForecast"];
19995
20915
  filter: string | null;
19996
20916
  groupings?: string | null;
19997
20917
  settings?: {
@@ -20001,7 +20921,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
20001
20921
  include_tax?: boolean | null;
20002
20922
  amortize?: boolean | null;
20003
20923
  unallocated?: boolean | null;
20004
- aggregate_by?: string | null;
20924
+ aggregate_by?: "cost" | "usage" | "count" | null;
20005
20925
  show_previous_period?: boolean | null;
20006
20926
  complete_period?: boolean | null;
20007
20927
  };
@@ -20021,7 +20941,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
20021
20941
  folder_token?: string | null;
20022
20942
  saved_filter_tokens?: string[] | null;
20023
20943
  business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
20024
- default_forecast: Record<string, any>;
20944
+ default_forecast: components["schemas"]["DefaultForecast"];
20025
20945
  filter: string | null;
20026
20946
  groupings?: string | null;
20027
20947
  settings?: {
@@ -20031,7 +20951,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
20031
20951
  include_tax?: boolean | null;
20032
20952
  amortize?: boolean | null;
20033
20953
  unallocated?: boolean | null;
20034
- aggregate_by?: string | null;
20954
+ aggregate_by?: "cost" | "usage" | "count" | null;
20035
20955
  show_previous_period?: boolean | null;
20036
20956
  complete_period?: boolean | null;
20037
20957
  };
@@ -20073,6 +20993,8 @@ declare class CostsApi<NeverThrow extends boolean> {
20073
20993
  links?: components["schemas"]["Links"];
20074
20994
  total_cost: components["schemas"]["CostPartial"];
20075
20995
  total_usage?: components["schemas"]["UsagePartial"][];
20996
+ total_count?: number | null;
20997
+ counts?: components["schemas"]["CostCount"][];
20076
20998
  costs: components["schemas"]["Cost"][];
20077
20999
  }, "total_usage"> & {
20078
21000
  total_usage?: {
@@ -20082,6 +21004,8 @@ declare class CostsApi<NeverThrow extends boolean> {
20082
21004
  links?: components["schemas"]["Links"];
20083
21005
  total_cost: components["schemas"]["CostPartial"];
20084
21006
  total_usage?: components["schemas"]["UsagePartial"][];
21007
+ total_count?: number | null;
21008
+ counts?: components["schemas"]["CostCount"][];
20085
21009
  costs: components["schemas"]["Cost"][];
20086
21010
  }, "total_usage"> & {
20087
21011
  total_usage?: {
@@ -21495,6 +22419,96 @@ declare class RecommendationViewsApi<NeverThrow extends boolean> {
21495
22419
  */
21496
22420
  delete(recommendationViewToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
21497
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
+ }
21498
22512
  declare class ReportNotificationsApi<NeverThrow extends boolean> {
21499
22513
  private client;
21500
22514
  constructor(client: BaseClient<NeverThrow>);
@@ -21763,6 +22777,102 @@ declare class SavedFiltersApi<NeverThrow extends boolean> {
21763
22777
  */
21764
22778
  delete(savedFilterToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
21765
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
+ }
21766
22876
  declare class SegmentsApi<NeverThrow extends boolean> {
21767
22877
  private client;
21768
22878
  constructor(client: BaseClient<NeverThrow>);
@@ -22406,4 +23516,4 @@ declare class BaseClient<NeverThrow extends boolean> {
22406
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>>;
22407
23517
  }
22408
23518
 
22409
- 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 };