@vantage-sh/vantage-client 2.12.0 → 2.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -483,7 +483,7 @@ interface paths {
483
483
  post?: never;
484
484
  /**
485
485
  * Delete business metric values
486
- * @description Deletes Business Metric values (historical or forecasted unit metrics).
486
+ * @description Deletes Business Metric values (historical or forecasted unit metrics). BusinessMetrics whose values are stored in ClickHouse only support deleting every historical value or every forecasted value, so supplying start_date, end_date, or label returns 422.
487
487
  */
488
488
  delete: operations["deleteBusinessMetricValues"];
489
489
  options?: never;
@@ -2620,6 +2620,54 @@ interface paths {
2620
2620
  patch?: never;
2621
2621
  trace?: never;
2622
2622
  };
2623
+ "/virtual_tag_configs/{virtual_tag_config_token}/values": {
2624
+ parameters: {
2625
+ query?: never;
2626
+ header?: never;
2627
+ path?: never;
2628
+ cookie?: never;
2629
+ };
2630
+ get?: never;
2631
+ put?: never;
2632
+ /**
2633
+ * Create virtual tag config value
2634
+ * @description Create a VirtualTagConfigValue.
2635
+ */
2636
+ post: operations["createVirtualTagConfigValue"];
2637
+ delete?: never;
2638
+ options?: never;
2639
+ head?: never;
2640
+ patch?: never;
2641
+ trace?: never;
2642
+ };
2643
+ "/virtual_tag_configs/{virtual_tag_config_token}/values/{virtual_tag_config_value_token}": {
2644
+ parameters: {
2645
+ query?: never;
2646
+ header?: never;
2647
+ path?: never;
2648
+ cookie?: never;
2649
+ };
2650
+ /**
2651
+ * Get virtual tag config value by token
2652
+ * @description Return a VirtualTagConfigValue.
2653
+ */
2654
+ get: operations["getVirtualTagConfigValue"];
2655
+ put?: never;
2656
+ post?: never;
2657
+ /**
2658
+ * Delete virtual tag config value
2659
+ * @description Delete a VirtualTagConfigValue.
2660
+ */
2661
+ delete: operations["deleteVirtualTagConfigValue"];
2662
+ options?: never;
2663
+ head?: never;
2664
+ /**
2665
+ * Update virtual tag config value
2666
+ * @description Update a VirtualTagConfigValue.
2667
+ */
2668
+ patch: operations["updateVirtualTagConfigValue"];
2669
+ trace?: never;
2670
+ };
2623
2671
  "/workspaces": {
2624
2672
  parameters: {
2625
2673
  query?: never;
@@ -6913,7 +6961,7 @@ interface components {
6913
6961
  overridable: boolean;
6914
6962
  /**
6915
6963
  * @description The earliest month VirtualTagConfig should be backfilled to.
6916
- * @example 2026-01-01
6964
+ * @example 2026-02-01
6917
6965
  */
6918
6966
  backfill_until: string;
6919
6967
  /** @description Tag keys to collapse values for. */
@@ -6935,7 +6983,13 @@ interface components {
6935
6983
  */
6936
6984
  filter: string | null;
6937
6985
  };
6986
+ /** @description VirtualTagConfigValue model */
6938
6987
  VirtualTagConfigValue: {
6988
+ /**
6989
+ * @description The token of the Value.
6990
+ * @example vtag_val_1234
6991
+ */
6992
+ token: string;
6939
6993
  /**
6940
6994
  * @description The filter VQL for the Value.
6941
6995
  * @example costs.provider = 'aws' AND costs.service = 'Amazon Simple Storage Service'
@@ -7228,6 +7282,84 @@ interface components {
7228
7282
  }[];
7229
7283
  }[];
7230
7284
  };
7285
+ /** @description Create a VirtualTagConfigValue. */
7286
+ createVirtualTagConfigValue: {
7287
+ /** @description The filter query language to apply to the value. Additional documentation available at https://docs.vantage.sh/vql. */
7288
+ filter: string;
7289
+ /** @description The name of the value. */
7290
+ name?: string;
7291
+ /** @description The token of an associated business metric. */
7292
+ business_metric_token?: string;
7293
+ /** @description The business metric label key used for this virtual tag value. */
7294
+ label_key?: string;
7295
+ /** @description Business metric label values. An empty array includes every value for the label key. */
7296
+ label_values?: string[];
7297
+ /** @description The display name for a cost metric or percentage allocation value. */
7298
+ display_name?: string | null;
7299
+ label_transforms?: {
7300
+ /** @enum {string} */
7301
+ type: "split" | "format";
7302
+ delimiter?: string | null;
7303
+ /** Format: int32 */
7304
+ index?: number | null;
7305
+ template?: string | null;
7306
+ }[];
7307
+ cost_metric?: {
7308
+ filter: string;
7309
+ aggregation: {
7310
+ tag: string;
7311
+ };
7312
+ };
7313
+ percentages?: {
7314
+ value: string;
7315
+ /** Format: float */
7316
+ pct: number;
7317
+ }[];
7318
+ /** @description Date ranges restricting when this value applies. */
7319
+ date_ranges?: {
7320
+ start_date?: string | null;
7321
+ end_date?: string | null;
7322
+ }[];
7323
+ };
7324
+ /** @description Update a VirtualTagConfigValue. */
7325
+ updateVirtualTagConfigValue: {
7326
+ /** @description The filter query language to apply to the value. Additional documentation available at https://docs.vantage.sh/vql. */
7327
+ filter?: string;
7328
+ /** @description The name of the value. */
7329
+ name?: string;
7330
+ /** @description The token of an associated business metric. */
7331
+ business_metric_token?: string;
7332
+ /** @description The business metric label key used for this virtual tag value. */
7333
+ label_key?: string;
7334
+ /** @description Business metric label values. An empty array includes every value for the label key. */
7335
+ label_values?: string[];
7336
+ /** @description The display name for a cost metric or percentage allocation value. */
7337
+ display_name?: string | null;
7338
+ label_transforms?: {
7339
+ /** @enum {string} */
7340
+ type: "split" | "format";
7341
+ delimiter?: string | null;
7342
+ /** Format: int32 */
7343
+ index?: number | null;
7344
+ template?: string | null;
7345
+ }[];
7346
+ cost_metric?: {
7347
+ filter: string;
7348
+ aggregation: {
7349
+ tag: string;
7350
+ };
7351
+ };
7352
+ percentages?: {
7353
+ value: string;
7354
+ /** Format: float */
7355
+ pct: number;
7356
+ }[];
7357
+ /** @description Date ranges restricting when this value applies. */
7358
+ date_ranges?: {
7359
+ start_date?: string | null;
7360
+ end_date?: string | null;
7361
+ }[];
7362
+ };
7231
7363
  /** @description Workspaces model */
7232
7364
  Workspaces: {
7233
7365
  links?: components["schemas"]["Links"];
@@ -7747,6 +7879,10 @@ interface operations {
7747
7879
  page?: number;
7748
7880
  /** @description The amount of results to return. The maximum is 1000. */
7749
7881
  limit?: number;
7882
+ /** @description Filter by workspace token. */
7883
+ workspace_token?: string;
7884
+ /** @description Filter by Cost Report token. */
7885
+ cost_report_token?: string;
7750
7886
  };
7751
7887
  header?: never;
7752
7888
  path?: never;
@@ -8553,6 +8689,10 @@ interface operations {
8553
8689
  page?: number;
8554
8690
  /** @description The number of results to return. The maximum is 1000. */
8555
8691
  limit?: number;
8692
+ /** @description Filter by workspace token. */
8693
+ workspace_token?: string;
8694
+ /** @description Filter by budget token. */
8695
+ budget_token?: string;
8556
8696
  };
8557
8697
  header?: never;
8558
8698
  path?: never;
@@ -8703,6 +8843,10 @@ interface operations {
8703
8843
  page?: number;
8704
8844
  /** @description The number of results to return. The maximum is 1000. */
8705
8845
  limit?: number;
8846
+ /** @description Search budgets by name. */
8847
+ q?: string;
8848
+ /** @description The workspace token of the budgets to return. */
8849
+ workspace_token?: string;
8706
8850
  };
8707
8851
  header?: never;
8708
8852
  path?: never;
@@ -9050,6 +9194,8 @@ interface operations {
9050
9194
  page?: number;
9051
9195
  /** @description The amount of results to return. The maximum is 5000. */
9052
9196
  limit?: number;
9197
+ /** @description Search business metrics by title. */
9198
+ q?: string;
9053
9199
  };
9054
9200
  header?: never;
9055
9201
  path?: never;
@@ -9701,6 +9847,10 @@ interface operations {
9701
9847
  page?: number;
9702
9848
  /** @description The amount of results to return. The maximum is 1000. */
9703
9849
  limit?: number;
9850
+ /** @description Filter by workspace token. */
9851
+ workspace_token?: string;
9852
+ /** @description Search canvases by title. */
9853
+ q?: string;
9704
9854
  };
9705
9855
  header?: never;
9706
9856
  path?: never;
@@ -9969,7 +10119,12 @@ interface operations {
9969
10119
  };
9970
10120
  getCostAlerts: {
9971
10121
  parameters: {
9972
- query?: never;
10122
+ query?: {
10123
+ /** @description Search cost alerts by title. */
10124
+ q?: string;
10125
+ /** @description The workspace token of the cost alerts to return. */
10126
+ workspace_token?: string;
10127
+ };
9973
10128
  header?: never;
9974
10129
  path?: never;
9975
10130
  cookie?: never;
@@ -10287,6 +10442,10 @@ interface operations {
10287
10442
  limit?: number;
10288
10443
  /** @description The token for the Folder you would like to fetch Reports from. */
10289
10444
  folder_token?: string;
10445
+ /** @description Search cost reports by title. */
10446
+ q?: string;
10447
+ /** @description The workspace token of the cost reports to return. */
10448
+ workspace_token?: string;
10290
10449
  };
10291
10450
  header?: never;
10292
10451
  path?: never;
@@ -10974,6 +11133,10 @@ interface operations {
10974
11133
  page?: number;
10975
11134
  /** @description The amount of results to return. The maximum is 1000. */
10976
11135
  limit?: number;
11136
+ /** @description Search dashboards by title. */
11137
+ q?: string;
11138
+ /** @description The workspace token of the dashboards to return. */
11139
+ workspace_token?: string;
10977
11140
  };
10978
11141
  header?: never;
10979
11142
  path?: never;
@@ -11469,6 +11632,10 @@ interface operations {
11469
11632
  page?: number;
11470
11633
  /** @description The amount of results to return. The maximum is 1000. */
11471
11634
  limit?: number;
11635
+ /** @description Search financial commitment reports by title. */
11636
+ q?: string;
11637
+ /** @description The workspace token of the financial commitment reports to return. */
11638
+ workspace_token?: string;
11472
11639
  };
11473
11640
  header?: never;
11474
11641
  path?: never;
@@ -11771,6 +11938,10 @@ interface operations {
11771
11938
  limit?: number;
11772
11939
  /** @description Filter by folder type. */
11773
11940
  type?: "CostFolder" | "ProviderResourceFolder";
11941
+ /** @description Search folders by title. */
11942
+ q?: string;
11943
+ /** @description The workspace token of the folders to return. */
11944
+ workspace_token?: string;
11774
11945
  };
11775
11946
  header?: never;
11776
11947
  path?: never;
@@ -12756,6 +12927,10 @@ interface operations {
12756
12927
  page?: number;
12757
12928
  /** @description The amount of results to return. The maximum is 1000. */
12758
12929
  limit?: number;
12930
+ /** @description Filter by workspace token. */
12931
+ workspace_token?: string;
12932
+ /** @description Search Kubernetes efficiency reports by title. */
12933
+ q?: string;
12759
12934
  };
12760
12935
  header?: never;
12761
12936
  path?: never;
@@ -13542,6 +13717,8 @@ interface operations {
13542
13717
  query?: {
13543
13718
  /** @description A search query to filter NetworkFlowReports by title. */
13544
13719
  q?: string;
13720
+ /** @description Filter by workspace token. */
13721
+ workspace_token?: string;
13545
13722
  /** @description The page of results to return. */
13546
13723
  page?: number;
13547
13724
  /** @description The amount of results to return. The maximum is 1000. */
@@ -14362,6 +14539,10 @@ interface operations {
14362
14539
  page?: number;
14363
14540
  /** @description The amount of results to return. The maximum is 1000. */
14364
14541
  limit?: number;
14542
+ /** @description Filter by workspace token. */
14543
+ workspace_token?: string;
14544
+ /** @description Search recommendation views by title. */
14545
+ q?: string;
14365
14546
  };
14366
14547
  header?: never;
14367
14548
  path?: never;
@@ -14926,6 +15107,10 @@ interface operations {
14926
15107
  page?: number;
14927
15108
  /** @description The amount of results to return. The maximum is 1000. */
14928
15109
  limit?: number;
15110
+ /** @description Filter by workspace token. */
15111
+ workspace_token?: string;
15112
+ /** @description Search report notifications by title. */
15113
+ q?: string;
14929
15114
  };
14930
15115
  header?: never;
14931
15116
  path?: never;
@@ -15240,6 +15425,10 @@ interface operations {
15240
15425
  page?: number;
15241
15426
  /** @description The number of results to return. The maximum is 1000. */
15242
15427
  limit?: number;
15428
+ /** @description Filter by workspace token. */
15429
+ workspace_token?: string;
15430
+ /** @description A search query to filter ResourceReports by title. */
15431
+ q?: string;
15243
15432
  };
15244
15433
  header?: never;
15245
15434
  path?: never;
@@ -15727,6 +15916,10 @@ interface operations {
15727
15916
  page?: number;
15728
15917
  /** @description The amount of results to return. The maximum is 1000. */
15729
15918
  limit?: number;
15919
+ /** @description Search saved filters by title. */
15920
+ q?: string;
15921
+ /** @description The workspace token of the saved filters to return. */
15922
+ workspace_token?: string;
15730
15923
  };
15731
15924
  header?: never;
15732
15925
  path?: never;
@@ -16247,6 +16440,10 @@ interface operations {
16247
16440
  page?: number;
16248
16441
  /** @description The amount of results to return. The maximum is 1000. */
16249
16442
  limit?: number;
16443
+ /** @description Search segments by title. */
16444
+ q?: string;
16445
+ /** @description The workspace token of the segments to return. */
16446
+ workspace_token?: string;
16250
16447
  };
16251
16448
  header?: never;
16252
16449
  path?: never;
@@ -16705,6 +16902,10 @@ interface operations {
16705
16902
  page?: number;
16706
16903
  /** @description The amount of results to return. The maximum is 1000. */
16707
16904
  limit?: number;
16905
+ /** @description Search teams by name. */
16906
+ q?: string;
16907
+ /** @description Filter by workspace token. */
16908
+ workspace_token?: string;
16708
16909
  };
16709
16910
  header?: never;
16710
16911
  path?: never;
@@ -17548,6 +17749,7 @@ interface operations {
17548
17749
  * "collapsed_tag_keys": [],
17549
17750
  * "values": [
17550
17751
  * {
17752
+ * "token": "vtag_val_0000000000000003",
17551
17753
  * "filter": "(costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud' AND costs.account_id IN ('1234', '5678'))",
17552
17754
  * "name": "Growth",
17553
17755
  * "label_transforms": [],
@@ -17555,6 +17757,7 @@ interface operations {
17555
17757
  * "date_ranges": []
17556
17758
  * },
17557
17759
  * {
17760
+ * "token": "vtag_val_0000000000000004",
17558
17761
  * "filter": "(costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR (costs.provider = 'gcp' AND costs.service = 'Google Compute Engine')",
17559
17762
  * "name": "API",
17560
17763
  * "label_transforms": [],
@@ -17562,6 +17765,7 @@ interface operations {
17562
17765
  * "date_ranges": []
17563
17766
  * },
17564
17767
  * {
17768
+ * "token": "vtag_val_0000000000000005",
17565
17769
  * "filter": "(costs.provider = 'aws' AND costs.service = 'AmazonEC2')",
17566
17770
  * "business_metric_token": "bsnss_mtrc_60e1ffb95a9a00f0",
17567
17771
  * "label_transforms": [],
@@ -17569,6 +17773,7 @@ interface operations {
17569
17773
  * "date_ranges": []
17570
17774
  * },
17571
17775
  * {
17776
+ * "token": "vtag_val_0000000000000006",
17572
17777
  * "filter": "(costs.provider = 'aws' AND costs.service != 'Amazon Elastic Compute Cloud')",
17573
17778
  * "cost_metric": {
17574
17779
  * "filter": "costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud'",
@@ -17581,6 +17786,7 @@ interface operations {
17581
17786
  * "date_ranges": []
17582
17787
  * },
17583
17788
  * {
17789
+ * "token": "vtag_val_0000000000000007",
17584
17790
  * "filter": "(costs.provider = 'azure' AND costs.service = 'Azure Compute')",
17585
17791
  * "label_transforms": [],
17586
17792
  * "percentages": [
@@ -17633,6 +17839,7 @@ interface operations {
17633
17839
  * "collapsed_tag_keys": [],
17634
17840
  * "values": [
17635
17841
  * {
17842
+ * "token": "vtag_val_0000000000000001",
17636
17843
  * "filter": "costs.provider = 'aws' AND\ncosts.service = 'Amazon Elastic Compute Cloud' AND\ncosts.account_id IN ('1234', '5678')\n",
17637
17844
  * "name": "EXPC-1234",
17638
17845
  * "label_transforms": [],
@@ -17645,6 +17852,7 @@ interface operations {
17645
17852
  * ]
17646
17853
  * },
17647
17854
  * {
17855
+ * "token": "vtag_val_0000000000000002",
17648
17856
  * "filter": "(\n (costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR\n (costs.provider = 'gcp' AND costs.service = 'Google Compute Engine')\n)\n",
17649
17857
  * "name": "EXPC-9876",
17650
17858
  * "label_transforms": [],
@@ -17721,6 +17929,7 @@ interface operations {
17721
17929
  * "collapsed_tag_keys": [],
17722
17930
  * "values": [
17723
17931
  * {
17932
+ * "token": "vtag_val_0000000000000001",
17724
17933
  * "filter": "(costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud') AND (costs.provider = 'aws' AND costs.account_id IN ('1234', '5678'))",
17725
17934
  * "name": "Growth",
17726
17935
  * "label_transforms": [],
@@ -17733,6 +17942,7 @@ interface operations {
17733
17942
  * ]
17734
17943
  * },
17735
17944
  * {
17945
+ * "token": "vtag_val_0000000000000002",
17736
17946
  * "filter": "(costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR (costs.provider = 'gcp' AND costs.service = 'Google Compute Engine')",
17737
17947
  * "name": "API",
17738
17948
  * "label_transforms": [],
@@ -17786,6 +17996,7 @@ interface operations {
17786
17996
  * "collapsed_tag_keys": [],
17787
17997
  * "values": [
17788
17998
  * {
17999
+ * "token": "vtag_val_0000000000000001",
17789
18000
  * "filter": "costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud' AND\ncosts.account_id IN ('1234', '5678')\n",
17790
18001
  * "name": "marketing",
17791
18002
  * "label_transforms": [],
@@ -17798,6 +18009,7 @@ interface operations {
17798
18009
  * ]
17799
18010
  * },
17800
18011
  * {
18012
+ * "token": "vtag_val_0000000000000002",
17801
18013
  * "filter": "((costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR\n(costs.provider = 'gcp' AND costs.service = 'Google Compute Engine'))\n",
17802
18014
  * "name": "third-party integrations",
17803
18015
  * "label_transforms": [],
@@ -18059,6 +18271,237 @@ interface operations {
18059
18271
  };
18060
18272
  };
18061
18273
  };
18274
+ createVirtualTagConfigValue: {
18275
+ parameters: {
18276
+ query?: never;
18277
+ header?: never;
18278
+ path: {
18279
+ virtual_tag_config_token: string;
18280
+ };
18281
+ cookie?: never;
18282
+ };
18283
+ requestBody: {
18284
+ content: {
18285
+ "application/json": components["schemas"]["createVirtualTagConfigValue"];
18286
+ };
18287
+ };
18288
+ responses: {
18289
+ 201: {
18290
+ headers: {
18291
+ [name: string]: unknown;
18292
+ };
18293
+ content: {
18294
+ /**
18295
+ * @example {
18296
+ * "token": "vtag_val_d104b11fc34ef7f3",
18297
+ * "filter": "costs.provider = 'aws'",
18298
+ * "name": "First",
18299
+ * "label_transforms": [],
18300
+ * "percentages": [],
18301
+ * "date_ranges": []
18302
+ * }
18303
+ */
18304
+ "application/json": components["schemas"]["VirtualTagConfigValue"];
18305
+ };
18306
+ };
18307
+ /** @description BadRequest */
18308
+ 400: {
18309
+ headers: {
18310
+ [name: string]: unknown;
18311
+ };
18312
+ content: {
18313
+ "application/json": components["schemas"]["Errors"];
18314
+ };
18315
+ };
18316
+ /** @description Forbidden */
18317
+ 403: {
18318
+ headers: {
18319
+ [name: string]: unknown;
18320
+ };
18321
+ content: {
18322
+ "application/json": components["schemas"]["Errors"];
18323
+ };
18324
+ };
18325
+ /** @description NotFound */
18326
+ 404: {
18327
+ headers: {
18328
+ [name: string]: unknown;
18329
+ };
18330
+ content: {
18331
+ "application/json": components["schemas"]["Errors"];
18332
+ };
18333
+ };
18334
+ /** @description UnprocessableEntity */
18335
+ 422: {
18336
+ headers: {
18337
+ [name: string]: unknown;
18338
+ };
18339
+ content: {
18340
+ "application/json": components["schemas"]["Errors"];
18341
+ };
18342
+ };
18343
+ };
18344
+ };
18345
+ getVirtualTagConfigValue: {
18346
+ parameters: {
18347
+ query?: never;
18348
+ header?: never;
18349
+ path: {
18350
+ virtual_tag_config_token: string;
18351
+ virtual_tag_config_value_token: string;
18352
+ };
18353
+ cookie?: never;
18354
+ };
18355
+ requestBody?: never;
18356
+ responses: {
18357
+ 200: {
18358
+ headers: {
18359
+ [name: string]: unknown;
18360
+ };
18361
+ content: {
18362
+ /**
18363
+ * @example {
18364
+ * "token": "vtag_val_d104b11fc34ef7f3",
18365
+ * "filter": "costs.provider = 'aws'",
18366
+ * "name": "First",
18367
+ * "label_transforms": [],
18368
+ * "percentages": [],
18369
+ * "date_ranges": []
18370
+ * }
18371
+ */
18372
+ "application/json": components["schemas"]["VirtualTagConfigValue"];
18373
+ };
18374
+ };
18375
+ /** @description Forbidden */
18376
+ 403: {
18377
+ headers: {
18378
+ [name: string]: unknown;
18379
+ };
18380
+ content: {
18381
+ "application/json": components["schemas"]["Errors"];
18382
+ };
18383
+ };
18384
+ /** @description NotFound */
18385
+ 404: {
18386
+ headers: {
18387
+ [name: string]: unknown;
18388
+ };
18389
+ content: {
18390
+ "application/json": components["schemas"]["Errors"];
18391
+ };
18392
+ };
18393
+ };
18394
+ };
18395
+ deleteVirtualTagConfigValue: {
18396
+ parameters: {
18397
+ query?: never;
18398
+ header?: never;
18399
+ path: {
18400
+ virtual_tag_config_token: string;
18401
+ virtual_tag_config_value_token: string;
18402
+ };
18403
+ cookie?: never;
18404
+ };
18405
+ requestBody?: never;
18406
+ responses: {
18407
+ 204: {
18408
+ headers: {
18409
+ [name: string]: unknown;
18410
+ };
18411
+ content?: never;
18412
+ };
18413
+ /** @description Forbidden */
18414
+ 403: {
18415
+ headers: {
18416
+ [name: string]: unknown;
18417
+ };
18418
+ content: {
18419
+ "application/json": components["schemas"]["Errors"];
18420
+ };
18421
+ };
18422
+ /** @description NotFound */
18423
+ 404: {
18424
+ headers: {
18425
+ [name: string]: unknown;
18426
+ };
18427
+ content: {
18428
+ "application/json": components["schemas"]["Errors"];
18429
+ };
18430
+ };
18431
+ };
18432
+ };
18433
+ updateVirtualTagConfigValue: {
18434
+ parameters: {
18435
+ query?: never;
18436
+ header?: never;
18437
+ path: {
18438
+ virtual_tag_config_token: string;
18439
+ virtual_tag_config_value_token: string;
18440
+ };
18441
+ cookie?: never;
18442
+ };
18443
+ requestBody: {
18444
+ content: {
18445
+ "application/json": components["schemas"]["updateVirtualTagConfigValue"];
18446
+ };
18447
+ };
18448
+ responses: {
18449
+ 200: {
18450
+ headers: {
18451
+ [name: string]: unknown;
18452
+ };
18453
+ content: {
18454
+ /**
18455
+ * @example {
18456
+ * "token": "vtag_val_d104b11fc34ef7f3",
18457
+ * "filter": "costs.provider = 'aws'",
18458
+ * "name": "First",
18459
+ * "label_transforms": [],
18460
+ * "percentages": [],
18461
+ * "date_ranges": []
18462
+ * }
18463
+ */
18464
+ "application/json": components["schemas"]["VirtualTagConfigValue"];
18465
+ };
18466
+ };
18467
+ /** @description BadRequest */
18468
+ 400: {
18469
+ headers: {
18470
+ [name: string]: unknown;
18471
+ };
18472
+ content: {
18473
+ "application/json": components["schemas"]["Errors"];
18474
+ };
18475
+ };
18476
+ /** @description Forbidden */
18477
+ 403: {
18478
+ headers: {
18479
+ [name: string]: unknown;
18480
+ };
18481
+ content: {
18482
+ "application/json": components["schemas"]["Errors"];
18483
+ };
18484
+ };
18485
+ /** @description NotFound */
18486
+ 404: {
18487
+ headers: {
18488
+ [name: string]: unknown;
18489
+ };
18490
+ content: {
18491
+ "application/json": components["schemas"]["Errors"];
18492
+ };
18493
+ };
18494
+ /** @description UnprocessableEntity */
18495
+ 422: {
18496
+ headers: {
18497
+ [name: string]: unknown;
18498
+ };
18499
+ content: {
18500
+ "application/json": components["schemas"]["Errors"];
18501
+ };
18502
+ };
18503
+ };
18504
+ };
18062
18505
  getWorkspaces: {
18063
18506
  parameters: {
18064
18507
  query?: {
@@ -18066,6 +18509,8 @@ interface operations {
18066
18509
  page?: number;
18067
18510
  /** @description The amount of results to return. The maximum is 1000. */
18068
18511
  limit?: number;
18512
+ /** @description Search workspaces by name. */
18513
+ q?: string;
18069
18514
  };
18070
18515
  header?: never;
18071
18516
  path?: never;
@@ -18564,7 +19009,7 @@ type GetBusinessMetricValuesRequest = RequestBodyForPathAndMethod<`/v2/business_
18564
19009
  */
18565
19010
  type GetBusinessMetricValuesResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/values`, "GET">;
18566
19011
  /**
18567
- * Deletes Business Metric values (historical or forecasted unit metrics).
19012
+ * Deletes Business Metric values (historical or forecasted unit metrics). BusinessMetrics whose values are stored in ClickHouse only support deleting every historical value or every forecasted value, so supplying start_date, end_date, or label returns 422.
18568
19013
  */
18569
19014
  type DeleteBusinessMetricValuesRequest = RequestBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/values`, "DELETE">;
18570
19015
  /**
@@ -18631,6 +19076,10 @@ type GetCostAlertEventsResponse = ResponseBodyForPathAndMethod<`/v2/cost_alerts/
18631
19076
  * Response type for Get cost alert event by token
18632
19077
  */
18633
19078
  type GetCostAlertEventResponse = ResponseBodyForPathAndMethod<`/v2/cost_alerts/${NoSlashString}/events/${NoSlashString}`, "GET">;
19079
+ /**
19080
+ * List all Cost Alerts
19081
+ */
19082
+ type GetCostAlertsRequest = RequestBodyForPathAndMethod<"/v2/cost_alerts", "GET">;
18634
19083
  /**
18635
19084
  * Response type for Get all cost alerts
18636
19085
  */
@@ -19588,6 +20037,30 @@ type UpdateAsyncVirtualTagConfigResponse = ResponseBodyForPathAndMethod<`/v2/vir
19588
20037
  * Response type for Get async virtual tag config update status
19589
20038
  */
19590
20039
  type GetAsyncVirtualTagConfigStatusResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/async/${NoSlashString}`, "GET">;
20040
+ /**
20041
+ * Create a VirtualTagConfigValue.
20042
+ */
20043
+ type CreateVirtualTagConfigValueRequest = RequestBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values`, "POST">;
20044
+ /**
20045
+ * Response type for Create virtual tag config value
20046
+ */
20047
+ type CreateVirtualTagConfigValueResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values`, "POST">;
20048
+ /**
20049
+ * Response type for Get virtual tag config value by token
20050
+ */
20051
+ type GetVirtualTagConfigValueResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values/${NoSlashString}`, "GET">;
20052
+ /**
20053
+ * Response type for Delete virtual tag config value
20054
+ */
20055
+ type DeleteVirtualTagConfigValueResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values/${NoSlashString}`, "DELETE">;
20056
+ /**
20057
+ * Update a VirtualTagConfigValue.
20058
+ */
20059
+ type UpdateVirtualTagConfigValueRequest = RequestBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values/${NoSlashString}`, "PATCH">;
20060
+ /**
20061
+ * Response type for Update virtual tag config value
20062
+ */
20063
+ type UpdateVirtualTagConfigValueResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values/${NoSlashString}`, "PATCH">;
19591
20064
  /**
19592
20065
  * Return all Workspaces that the current API token has access to.
19593
20066
  */
@@ -19965,10 +20438,18 @@ declare class AuditLogsApi<NeverThrow extends boolean> {
19965
20438
  */
19966
20439
  list(body?: GetAuditLogsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19967
20440
  links?: components["schemas"]["Links"];
19968
- audit_logs: components["schemas"]["AuditLog"][];
20441
+ audit_logs:
20442
+ /**
20443
+ * Create a Canvas.
20444
+ */
20445
+ components["schemas"]["AuditLog"][];
19969
20446
  }, null] : {
19970
20447
  links?: components["schemas"]["Links"];
19971
- audit_logs: components["schemas"]["AuditLog"][];
20448
+ audit_logs:
20449
+ /**
20450
+ * Create a Canvas.
20451
+ */
20452
+ components["schemas"]["AuditLog"][];
19972
20453
  }>;
19973
20454
  /**
19974
20455
  * Return a specific AuditLog.
@@ -20505,7 +20986,7 @@ declare class BusinessMetricsApi<NeverThrow extends boolean> {
20505
20986
  values: components["schemas"]["BusinessMetricValue"][];
20506
20987
  }>;
20507
20988
  /**
20508
- * Deletes Business Metric values (historical or forecasted unit metrics).
20989
+ * Deletes Business Metric values (historical or forecasted unit metrics). BusinessMetrics whose values are stored in ClickHouse only support deleting every historical value or every forecasted value, so supplying start_date, end_date, or label returns 422.
20509
20990
  */
20510
20991
  deleteValues(businessMetricToken: string, body?: DeleteBusinessMetricValuesRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20511
20992
  deleted_count: number;
@@ -20626,6 +21107,16 @@ declare class CanvasesApi<NeverThrow extends boolean> {
20626
21107
  declare class CostAlertsApi<NeverThrow extends boolean> {
20627
21108
  private client;
20628
21109
  constructor(client: BaseClient<NeverThrow>);
21110
+ /**
21111
+ * List all Cost Alerts
21112
+ */
21113
+ list(body?: GetCostAlertsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
21114
+ links?: components["schemas"]["Links"];
21115
+ cost_alerts: components["schemas"]["CostAlert"][];
21116
+ }, null] : {
21117
+ links?: components["schemas"]["Links"];
21118
+ cost_alerts: components["schemas"]["CostAlert"][];
21119
+ }>;
20629
21120
  /**
20630
21121
  * Create a new Cost Alert
20631
21122
  */
@@ -23350,6 +23841,94 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
23350
23841
  * Check the status of an async VirtualTagConfig update.
23351
23842
  */
23352
23843
  getAsyncVirtualTagConfigStatus(requestId: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [boolean, null] : boolean>;
23844
+ /**
23845
+ * Create a VirtualTagConfigValue.
23846
+ */
23847
+ createValue(virtualTagConfigToken: string, body: CreateVirtualTagConfigValueRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
23848
+ token: string;
23849
+ filter: string | null;
23850
+ name?: string | null;
23851
+ business_metric_token?: string | null;
23852
+ label_key?: string | null;
23853
+ label_values?: string[] | null;
23854
+ cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
23855
+ display_name?: string | null;
23856
+ label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
23857
+ percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
23858
+ date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
23859
+ }, null] : {
23860
+ token: string;
23861
+ filter: string | null;
23862
+ name?: string | null;
23863
+ business_metric_token?: string | null;
23864
+ label_key?: string | null;
23865
+ label_values?: string[] | null;
23866
+ cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
23867
+ display_name?: string | null;
23868
+ label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
23869
+ percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
23870
+ date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
23871
+ }>;
23872
+ /**
23873
+ * Return a VirtualTagConfigValue.
23874
+ */
23875
+ getValue(virtualTagConfigToken: string, virtualTagConfigValueToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
23876
+ token: string;
23877
+ filter: string | null;
23878
+ name?: string | null;
23879
+ business_metric_token?: string | null;
23880
+ label_key?: string | null;
23881
+ label_values?: string[] | null;
23882
+ cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
23883
+ display_name?: string | null;
23884
+ label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
23885
+ percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
23886
+ date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
23887
+ }, null] : {
23888
+ token: string;
23889
+ filter: string | null;
23890
+ name?: string | null;
23891
+ business_metric_token?: string | null;
23892
+ label_key?: string | null;
23893
+ label_values?: string[] | null;
23894
+ cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
23895
+ display_name?: string | null;
23896
+ label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
23897
+ percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
23898
+ date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
23899
+ }>;
23900
+ /**
23901
+ * Delete a VirtualTagConfigValue.
23902
+ */
23903
+ deleteValue(virtualTagConfigToken: string, virtualTagConfigValueToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
23904
+ /**
23905
+ * Update a VirtualTagConfigValue.
23906
+ */
23907
+ updateValue(virtualTagConfigToken: string, virtualTagConfigValueToken: string, body: UpdateVirtualTagConfigValueRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
23908
+ token: string;
23909
+ filter: string | null;
23910
+ name?: string | null;
23911
+ business_metric_token?: string | null;
23912
+ label_key?: string | null;
23913
+ label_values?: string[] | null;
23914
+ cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
23915
+ display_name?: string | null;
23916
+ label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
23917
+ percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
23918
+ date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
23919
+ }, null] : {
23920
+ token: string;
23921
+ filter: string | null;
23922
+ name?: string | null;
23923
+ business_metric_token?: string | null;
23924
+ label_key?: string | null;
23925
+ label_values?: string[] | null;
23926
+ cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
23927
+ display_name?: string | null;
23928
+ label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
23929
+ percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
23930
+ date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
23931
+ }>;
23353
23932
  }
23354
23933
  declare class WorkspacesApi<NeverThrow extends boolean> {
23355
23934
  private client;
@@ -23532,4 +24111,4 @@ declare class BaseClient<NeverThrow extends boolean> {
23532
24111
  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>>;
23533
24112
  }
23534
24113
 
23535
- export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportForecastRequest, type CreateReportForecastResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateScenarioModelRequest, type CreateScenarioModelResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportForecastResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteScenarioModelResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricLabelsRequest, type GetBusinessMetricLabelsResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowLogsRequest, type GetNetworkFlowLogsResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportForecastResponse, type GetReportForecastsRequest, type GetReportForecastsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetScenarioModelResponse, type GetScenarioModelsRequest, type GetScenarioModelsResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigsRequest, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCanvasRequest, type UpdateCanvasResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportForecastRequest, type UpdateReportForecastResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateScenarioModelRequest, type UpdateScenarioModelResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
24114
+ 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 CreateVirtualTagConfigValueRequest, type CreateVirtualTagConfigValueResponse, 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 DeleteVirtualTagConfigValueResponse, 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 GetCostAlertsRequest, 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 GetVirtualTagConfigValueResponse, 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 UpdateVirtualTagConfigValueRequest, type UpdateVirtualTagConfigValueResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };