@vantage-sh/vantage-client 2.11.0 → 2.13.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 +506 -4
- package/dist/index.d.ts +506 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -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;
|
|
@@ -6281,14 +6329,14 @@ interface components {
|
|
|
6281
6329
|
title: string;
|
|
6282
6330
|
scenario_model_tokens?: string[];
|
|
6283
6331
|
business_metric_token?: string | null;
|
|
6284
|
-
set_as_default?: boolean;
|
|
6332
|
+
set_as_default?: boolean | null;
|
|
6285
6333
|
};
|
|
6286
6334
|
/** @description Update a scenario-model ReportForecast. */
|
|
6287
6335
|
updateReportForecast: {
|
|
6288
6336
|
title?: string;
|
|
6289
6337
|
scenario_model_tokens?: string[];
|
|
6290
6338
|
business_metric_token?: string | null;
|
|
6291
|
-
set_as_default?: boolean;
|
|
6339
|
+
set_as_default?: boolean | null;
|
|
6292
6340
|
};
|
|
6293
6341
|
/** @description ResourceReportColumns model */
|
|
6294
6342
|
ResourceReportColumns: {
|
|
@@ -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-
|
|
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'
|
|
@@ -6951,6 +7005,10 @@ interface components {
|
|
|
6951
7005
|
* @example bsnss_mtrc_abc123
|
|
6952
7006
|
*/
|
|
6953
7007
|
business_metric_token?: string | null;
|
|
7008
|
+
/** @description The business metric label key used for this virtual tag value. */
|
|
7009
|
+
label_key?: string | null;
|
|
7010
|
+
/** @description Optional business metric label values. An empty array includes every value for the label key. */
|
|
7011
|
+
label_values?: string[] | null;
|
|
6954
7012
|
cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
|
|
6955
7013
|
/** @description The display name for this allocation value. */
|
|
6956
7014
|
display_name?: string | null;
|
|
@@ -7056,6 +7114,10 @@ interface components {
|
|
|
7056
7114
|
name?: string;
|
|
7057
7115
|
/** @description The token of an associated business metric. */
|
|
7058
7116
|
business_metric_token?: string;
|
|
7117
|
+
/** @description The business metric label key used for this virtual tag value. */
|
|
7118
|
+
label_key?: string;
|
|
7119
|
+
/** @description Optional business metric label values. An empty array includes every value for the label key. */
|
|
7120
|
+
label_values?: string[];
|
|
7059
7121
|
/** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
|
|
7060
7122
|
display_name?: string;
|
|
7061
7123
|
label_transforms?: {
|
|
@@ -7113,6 +7175,10 @@ interface components {
|
|
|
7113
7175
|
name?: string;
|
|
7114
7176
|
/** @description The token of an associated business metric. */
|
|
7115
7177
|
business_metric_token?: string;
|
|
7178
|
+
/** @description The business metric label key used for this virtual tag value. */
|
|
7179
|
+
label_key?: string;
|
|
7180
|
+
/** @description Optional business metric label values. An empty array includes every value for the label key. */
|
|
7181
|
+
label_values?: string[];
|
|
7116
7182
|
/** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
|
|
7117
7183
|
display_name?: string;
|
|
7118
7184
|
label_transforms?: {
|
|
@@ -7183,6 +7249,10 @@ interface components {
|
|
|
7183
7249
|
name?: string;
|
|
7184
7250
|
/** @description The token of an associated business metric. */
|
|
7185
7251
|
business_metric_token?: string;
|
|
7252
|
+
/** @description The business metric label key used for this virtual tag value. */
|
|
7253
|
+
label_key?: string;
|
|
7254
|
+
/** @description Optional business metric label values. An empty array includes every value for the label key. */
|
|
7255
|
+
label_values?: string[];
|
|
7186
7256
|
/** @description The display name for an allocation value (cost_metric or percentages). Invalid when name is set. */
|
|
7187
7257
|
display_name?: string;
|
|
7188
7258
|
label_transforms?: {
|
|
@@ -7212,6 +7282,84 @@ interface components {
|
|
|
7212
7282
|
}[];
|
|
7213
7283
|
}[];
|
|
7214
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
|
+
};
|
|
7215
7363
|
/** @description Workspaces model */
|
|
7216
7364
|
Workspaces: {
|
|
7217
7365
|
links?: components["schemas"]["Links"];
|
|
@@ -17532,6 +17680,7 @@ interface operations {
|
|
|
17532
17680
|
* "collapsed_tag_keys": [],
|
|
17533
17681
|
* "values": [
|
|
17534
17682
|
* {
|
|
17683
|
+
* "token": "vtag_val_0000000000000003",
|
|
17535
17684
|
* "filter": "(costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud' AND costs.account_id IN ('1234', '5678'))",
|
|
17536
17685
|
* "name": "Growth",
|
|
17537
17686
|
* "label_transforms": [],
|
|
@@ -17539,6 +17688,7 @@ interface operations {
|
|
|
17539
17688
|
* "date_ranges": []
|
|
17540
17689
|
* },
|
|
17541
17690
|
* {
|
|
17691
|
+
* "token": "vtag_val_0000000000000004",
|
|
17542
17692
|
* "filter": "(costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR (costs.provider = 'gcp' AND costs.service = 'Google Compute Engine')",
|
|
17543
17693
|
* "name": "API",
|
|
17544
17694
|
* "label_transforms": [],
|
|
@@ -17546,6 +17696,7 @@ interface operations {
|
|
|
17546
17696
|
* "date_ranges": []
|
|
17547
17697
|
* },
|
|
17548
17698
|
* {
|
|
17699
|
+
* "token": "vtag_val_0000000000000005",
|
|
17549
17700
|
* "filter": "(costs.provider = 'aws' AND costs.service = 'AmazonEC2')",
|
|
17550
17701
|
* "business_metric_token": "bsnss_mtrc_60e1ffb95a9a00f0",
|
|
17551
17702
|
* "label_transforms": [],
|
|
@@ -17553,6 +17704,7 @@ interface operations {
|
|
|
17553
17704
|
* "date_ranges": []
|
|
17554
17705
|
* },
|
|
17555
17706
|
* {
|
|
17707
|
+
* "token": "vtag_val_0000000000000006",
|
|
17556
17708
|
* "filter": "(costs.provider = 'aws' AND costs.service != 'Amazon Elastic Compute Cloud')",
|
|
17557
17709
|
* "cost_metric": {
|
|
17558
17710
|
* "filter": "costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud'",
|
|
@@ -17565,6 +17717,7 @@ interface operations {
|
|
|
17565
17717
|
* "date_ranges": []
|
|
17566
17718
|
* },
|
|
17567
17719
|
* {
|
|
17720
|
+
* "token": "vtag_val_0000000000000007",
|
|
17568
17721
|
* "filter": "(costs.provider = 'azure' AND costs.service = 'Azure Compute')",
|
|
17569
17722
|
* "label_transforms": [],
|
|
17570
17723
|
* "percentages": [
|
|
@@ -17617,6 +17770,7 @@ interface operations {
|
|
|
17617
17770
|
* "collapsed_tag_keys": [],
|
|
17618
17771
|
* "values": [
|
|
17619
17772
|
* {
|
|
17773
|
+
* "token": "vtag_val_0000000000000001",
|
|
17620
17774
|
* "filter": "costs.provider = 'aws' AND\ncosts.service = 'Amazon Elastic Compute Cloud' AND\ncosts.account_id IN ('1234', '5678')\n",
|
|
17621
17775
|
* "name": "EXPC-1234",
|
|
17622
17776
|
* "label_transforms": [],
|
|
@@ -17629,6 +17783,7 @@ interface operations {
|
|
|
17629
17783
|
* ]
|
|
17630
17784
|
* },
|
|
17631
17785
|
* {
|
|
17786
|
+
* "token": "vtag_val_0000000000000002",
|
|
17632
17787
|
* "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",
|
|
17633
17788
|
* "name": "EXPC-9876",
|
|
17634
17789
|
* "label_transforms": [],
|
|
@@ -17705,6 +17860,7 @@ interface operations {
|
|
|
17705
17860
|
* "collapsed_tag_keys": [],
|
|
17706
17861
|
* "values": [
|
|
17707
17862
|
* {
|
|
17863
|
+
* "token": "vtag_val_0000000000000001",
|
|
17708
17864
|
* "filter": "(costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud') AND (costs.provider = 'aws' AND costs.account_id IN ('1234', '5678'))",
|
|
17709
17865
|
* "name": "Growth",
|
|
17710
17866
|
* "label_transforms": [],
|
|
@@ -17717,6 +17873,7 @@ interface operations {
|
|
|
17717
17873
|
* ]
|
|
17718
17874
|
* },
|
|
17719
17875
|
* {
|
|
17876
|
+
* "token": "vtag_val_0000000000000002",
|
|
17720
17877
|
* "filter": "(costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR (costs.provider = 'gcp' AND costs.service = 'Google Compute Engine')",
|
|
17721
17878
|
* "name": "API",
|
|
17722
17879
|
* "label_transforms": [],
|
|
@@ -17770,6 +17927,7 @@ interface operations {
|
|
|
17770
17927
|
* "collapsed_tag_keys": [],
|
|
17771
17928
|
* "values": [
|
|
17772
17929
|
* {
|
|
17930
|
+
* "token": "vtag_val_0000000000000001",
|
|
17773
17931
|
* "filter": "costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud' AND\ncosts.account_id IN ('1234', '5678')\n",
|
|
17774
17932
|
* "name": "marketing",
|
|
17775
17933
|
* "label_transforms": [],
|
|
@@ -17782,6 +17940,7 @@ interface operations {
|
|
|
17782
17940
|
* ]
|
|
17783
17941
|
* },
|
|
17784
17942
|
* {
|
|
17943
|
+
* "token": "vtag_val_0000000000000002",
|
|
17785
17944
|
* "filter": "((costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR\n(costs.provider = 'gcp' AND costs.service = 'Google Compute Engine'))\n",
|
|
17786
17945
|
* "name": "third-party integrations",
|
|
17787
17946
|
* "label_transforms": [],
|
|
@@ -18043,6 +18202,237 @@ interface operations {
|
|
|
18043
18202
|
};
|
|
18044
18203
|
};
|
|
18045
18204
|
};
|
|
18205
|
+
createVirtualTagConfigValue: {
|
|
18206
|
+
parameters: {
|
|
18207
|
+
query?: never;
|
|
18208
|
+
header?: never;
|
|
18209
|
+
path: {
|
|
18210
|
+
virtual_tag_config_token: string;
|
|
18211
|
+
};
|
|
18212
|
+
cookie?: never;
|
|
18213
|
+
};
|
|
18214
|
+
requestBody: {
|
|
18215
|
+
content: {
|
|
18216
|
+
"application/json": components["schemas"]["createVirtualTagConfigValue"];
|
|
18217
|
+
};
|
|
18218
|
+
};
|
|
18219
|
+
responses: {
|
|
18220
|
+
201: {
|
|
18221
|
+
headers: {
|
|
18222
|
+
[name: string]: unknown;
|
|
18223
|
+
};
|
|
18224
|
+
content: {
|
|
18225
|
+
/**
|
|
18226
|
+
* @example {
|
|
18227
|
+
* "token": "vtag_val_d104b11fc34ef7f3",
|
|
18228
|
+
* "filter": "costs.provider = 'aws'",
|
|
18229
|
+
* "name": "First",
|
|
18230
|
+
* "label_transforms": [],
|
|
18231
|
+
* "percentages": [],
|
|
18232
|
+
* "date_ranges": []
|
|
18233
|
+
* }
|
|
18234
|
+
*/
|
|
18235
|
+
"application/json": components["schemas"]["VirtualTagConfigValue"];
|
|
18236
|
+
};
|
|
18237
|
+
};
|
|
18238
|
+
/** @description BadRequest */
|
|
18239
|
+
400: {
|
|
18240
|
+
headers: {
|
|
18241
|
+
[name: string]: unknown;
|
|
18242
|
+
};
|
|
18243
|
+
content: {
|
|
18244
|
+
"application/json": components["schemas"]["Errors"];
|
|
18245
|
+
};
|
|
18246
|
+
};
|
|
18247
|
+
/** @description Forbidden */
|
|
18248
|
+
403: {
|
|
18249
|
+
headers: {
|
|
18250
|
+
[name: string]: unknown;
|
|
18251
|
+
};
|
|
18252
|
+
content: {
|
|
18253
|
+
"application/json": components["schemas"]["Errors"];
|
|
18254
|
+
};
|
|
18255
|
+
};
|
|
18256
|
+
/** @description NotFound */
|
|
18257
|
+
404: {
|
|
18258
|
+
headers: {
|
|
18259
|
+
[name: string]: unknown;
|
|
18260
|
+
};
|
|
18261
|
+
content: {
|
|
18262
|
+
"application/json": components["schemas"]["Errors"];
|
|
18263
|
+
};
|
|
18264
|
+
};
|
|
18265
|
+
/** @description UnprocessableEntity */
|
|
18266
|
+
422: {
|
|
18267
|
+
headers: {
|
|
18268
|
+
[name: string]: unknown;
|
|
18269
|
+
};
|
|
18270
|
+
content: {
|
|
18271
|
+
"application/json": components["schemas"]["Errors"];
|
|
18272
|
+
};
|
|
18273
|
+
};
|
|
18274
|
+
};
|
|
18275
|
+
};
|
|
18276
|
+
getVirtualTagConfigValue: {
|
|
18277
|
+
parameters: {
|
|
18278
|
+
query?: never;
|
|
18279
|
+
header?: never;
|
|
18280
|
+
path: {
|
|
18281
|
+
virtual_tag_config_token: string;
|
|
18282
|
+
virtual_tag_config_value_token: string;
|
|
18283
|
+
};
|
|
18284
|
+
cookie?: never;
|
|
18285
|
+
};
|
|
18286
|
+
requestBody?: never;
|
|
18287
|
+
responses: {
|
|
18288
|
+
200: {
|
|
18289
|
+
headers: {
|
|
18290
|
+
[name: string]: unknown;
|
|
18291
|
+
};
|
|
18292
|
+
content: {
|
|
18293
|
+
/**
|
|
18294
|
+
* @example {
|
|
18295
|
+
* "token": "vtag_val_d104b11fc34ef7f3",
|
|
18296
|
+
* "filter": "costs.provider = 'aws'",
|
|
18297
|
+
* "name": "First",
|
|
18298
|
+
* "label_transforms": [],
|
|
18299
|
+
* "percentages": [],
|
|
18300
|
+
* "date_ranges": []
|
|
18301
|
+
* }
|
|
18302
|
+
*/
|
|
18303
|
+
"application/json": components["schemas"]["VirtualTagConfigValue"];
|
|
18304
|
+
};
|
|
18305
|
+
};
|
|
18306
|
+
/** @description Forbidden */
|
|
18307
|
+
403: {
|
|
18308
|
+
headers: {
|
|
18309
|
+
[name: string]: unknown;
|
|
18310
|
+
};
|
|
18311
|
+
content: {
|
|
18312
|
+
"application/json": components["schemas"]["Errors"];
|
|
18313
|
+
};
|
|
18314
|
+
};
|
|
18315
|
+
/** @description NotFound */
|
|
18316
|
+
404: {
|
|
18317
|
+
headers: {
|
|
18318
|
+
[name: string]: unknown;
|
|
18319
|
+
};
|
|
18320
|
+
content: {
|
|
18321
|
+
"application/json": components["schemas"]["Errors"];
|
|
18322
|
+
};
|
|
18323
|
+
};
|
|
18324
|
+
};
|
|
18325
|
+
};
|
|
18326
|
+
deleteVirtualTagConfigValue: {
|
|
18327
|
+
parameters: {
|
|
18328
|
+
query?: never;
|
|
18329
|
+
header?: never;
|
|
18330
|
+
path: {
|
|
18331
|
+
virtual_tag_config_token: string;
|
|
18332
|
+
virtual_tag_config_value_token: string;
|
|
18333
|
+
};
|
|
18334
|
+
cookie?: never;
|
|
18335
|
+
};
|
|
18336
|
+
requestBody?: never;
|
|
18337
|
+
responses: {
|
|
18338
|
+
204: {
|
|
18339
|
+
headers: {
|
|
18340
|
+
[name: string]: unknown;
|
|
18341
|
+
};
|
|
18342
|
+
content?: never;
|
|
18343
|
+
};
|
|
18344
|
+
/** @description Forbidden */
|
|
18345
|
+
403: {
|
|
18346
|
+
headers: {
|
|
18347
|
+
[name: string]: unknown;
|
|
18348
|
+
};
|
|
18349
|
+
content: {
|
|
18350
|
+
"application/json": components["schemas"]["Errors"];
|
|
18351
|
+
};
|
|
18352
|
+
};
|
|
18353
|
+
/** @description NotFound */
|
|
18354
|
+
404: {
|
|
18355
|
+
headers: {
|
|
18356
|
+
[name: string]: unknown;
|
|
18357
|
+
};
|
|
18358
|
+
content: {
|
|
18359
|
+
"application/json": components["schemas"]["Errors"];
|
|
18360
|
+
};
|
|
18361
|
+
};
|
|
18362
|
+
};
|
|
18363
|
+
};
|
|
18364
|
+
updateVirtualTagConfigValue: {
|
|
18365
|
+
parameters: {
|
|
18366
|
+
query?: never;
|
|
18367
|
+
header?: never;
|
|
18368
|
+
path: {
|
|
18369
|
+
virtual_tag_config_token: string;
|
|
18370
|
+
virtual_tag_config_value_token: string;
|
|
18371
|
+
};
|
|
18372
|
+
cookie?: never;
|
|
18373
|
+
};
|
|
18374
|
+
requestBody: {
|
|
18375
|
+
content: {
|
|
18376
|
+
"application/json": components["schemas"]["updateVirtualTagConfigValue"];
|
|
18377
|
+
};
|
|
18378
|
+
};
|
|
18379
|
+
responses: {
|
|
18380
|
+
200: {
|
|
18381
|
+
headers: {
|
|
18382
|
+
[name: string]: unknown;
|
|
18383
|
+
};
|
|
18384
|
+
content: {
|
|
18385
|
+
/**
|
|
18386
|
+
* @example {
|
|
18387
|
+
* "token": "vtag_val_d104b11fc34ef7f3",
|
|
18388
|
+
* "filter": "costs.provider = 'aws'",
|
|
18389
|
+
* "name": "First",
|
|
18390
|
+
* "label_transforms": [],
|
|
18391
|
+
* "percentages": [],
|
|
18392
|
+
* "date_ranges": []
|
|
18393
|
+
* }
|
|
18394
|
+
*/
|
|
18395
|
+
"application/json": components["schemas"]["VirtualTagConfigValue"];
|
|
18396
|
+
};
|
|
18397
|
+
};
|
|
18398
|
+
/** @description BadRequest */
|
|
18399
|
+
400: {
|
|
18400
|
+
headers: {
|
|
18401
|
+
[name: string]: unknown;
|
|
18402
|
+
};
|
|
18403
|
+
content: {
|
|
18404
|
+
"application/json": components["schemas"]["Errors"];
|
|
18405
|
+
};
|
|
18406
|
+
};
|
|
18407
|
+
/** @description Forbidden */
|
|
18408
|
+
403: {
|
|
18409
|
+
headers: {
|
|
18410
|
+
[name: string]: unknown;
|
|
18411
|
+
};
|
|
18412
|
+
content: {
|
|
18413
|
+
"application/json": components["schemas"]["Errors"];
|
|
18414
|
+
};
|
|
18415
|
+
};
|
|
18416
|
+
/** @description NotFound */
|
|
18417
|
+
404: {
|
|
18418
|
+
headers: {
|
|
18419
|
+
[name: string]: unknown;
|
|
18420
|
+
};
|
|
18421
|
+
content: {
|
|
18422
|
+
"application/json": components["schemas"]["Errors"];
|
|
18423
|
+
};
|
|
18424
|
+
};
|
|
18425
|
+
/** @description UnprocessableEntity */
|
|
18426
|
+
422: {
|
|
18427
|
+
headers: {
|
|
18428
|
+
[name: string]: unknown;
|
|
18429
|
+
};
|
|
18430
|
+
content: {
|
|
18431
|
+
"application/json": components["schemas"]["Errors"];
|
|
18432
|
+
};
|
|
18433
|
+
};
|
|
18434
|
+
};
|
|
18435
|
+
};
|
|
18046
18436
|
getWorkspaces: {
|
|
18047
18437
|
parameters: {
|
|
18048
18438
|
query?: {
|
|
@@ -19572,6 +19962,30 @@ type UpdateAsyncVirtualTagConfigResponse = ResponseBodyForPathAndMethod<`/v2/vir
|
|
|
19572
19962
|
* Response type for Get async virtual tag config update status
|
|
19573
19963
|
*/
|
|
19574
19964
|
type GetAsyncVirtualTagConfigStatusResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/async/${NoSlashString}`, "GET">;
|
|
19965
|
+
/**
|
|
19966
|
+
* Create a VirtualTagConfigValue.
|
|
19967
|
+
*/
|
|
19968
|
+
type CreateVirtualTagConfigValueRequest = RequestBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values`, "POST">;
|
|
19969
|
+
/**
|
|
19970
|
+
* Response type for Create virtual tag config value
|
|
19971
|
+
*/
|
|
19972
|
+
type CreateVirtualTagConfigValueResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values`, "POST">;
|
|
19973
|
+
/**
|
|
19974
|
+
* Response type for Get virtual tag config value by token
|
|
19975
|
+
*/
|
|
19976
|
+
type GetVirtualTagConfigValueResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values/${NoSlashString}`, "GET">;
|
|
19977
|
+
/**
|
|
19978
|
+
* Response type for Delete virtual tag config value
|
|
19979
|
+
*/
|
|
19980
|
+
type DeleteVirtualTagConfigValueResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values/${NoSlashString}`, "DELETE">;
|
|
19981
|
+
/**
|
|
19982
|
+
* Update a VirtualTagConfigValue.
|
|
19983
|
+
*/
|
|
19984
|
+
type UpdateVirtualTagConfigValueRequest = RequestBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values/${NoSlashString}`, "PATCH">;
|
|
19985
|
+
/**
|
|
19986
|
+
* Response type for Update virtual tag config value
|
|
19987
|
+
*/
|
|
19988
|
+
type UpdateVirtualTagConfigValueResponse = ResponseBodyForPathAndMethod<`/v2/virtual_tag_configs/${NoSlashString}/values/${NoSlashString}`, "PATCH">;
|
|
19575
19989
|
/**
|
|
19576
19990
|
* Return all Workspaces that the current API token has access to.
|
|
19577
19991
|
*/
|
|
@@ -23334,6 +23748,94 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
23334
23748
|
* Check the status of an async VirtualTagConfig update.
|
|
23335
23749
|
*/
|
|
23336
23750
|
getAsyncVirtualTagConfigStatus(requestId: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [boolean, null] : boolean>;
|
|
23751
|
+
/**
|
|
23752
|
+
* Create a VirtualTagConfigValue.
|
|
23753
|
+
*/
|
|
23754
|
+
createValue(virtualTagConfigToken: string, body: CreateVirtualTagConfigValueRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
23755
|
+
token: string;
|
|
23756
|
+
filter: string | null;
|
|
23757
|
+
name?: string | null;
|
|
23758
|
+
business_metric_token?: string | null;
|
|
23759
|
+
label_key?: string | null;
|
|
23760
|
+
label_values?: string[] | null;
|
|
23761
|
+
cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
|
|
23762
|
+
display_name?: string | null;
|
|
23763
|
+
label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
|
|
23764
|
+
percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
|
|
23765
|
+
date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
|
|
23766
|
+
}, null] : {
|
|
23767
|
+
token: string;
|
|
23768
|
+
filter: string | null;
|
|
23769
|
+
name?: string | null;
|
|
23770
|
+
business_metric_token?: string | null;
|
|
23771
|
+
label_key?: string | null;
|
|
23772
|
+
label_values?: string[] | null;
|
|
23773
|
+
cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
|
|
23774
|
+
display_name?: string | null;
|
|
23775
|
+
label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
|
|
23776
|
+
percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
|
|
23777
|
+
date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
|
|
23778
|
+
}>;
|
|
23779
|
+
/**
|
|
23780
|
+
* Return a VirtualTagConfigValue.
|
|
23781
|
+
*/
|
|
23782
|
+
getValue(virtualTagConfigToken: string, virtualTagConfigValueToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
23783
|
+
token: string;
|
|
23784
|
+
filter: string | null;
|
|
23785
|
+
name?: string | null;
|
|
23786
|
+
business_metric_token?: string | null;
|
|
23787
|
+
label_key?: string | null;
|
|
23788
|
+
label_values?: string[] | null;
|
|
23789
|
+
cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
|
|
23790
|
+
display_name?: string | null;
|
|
23791
|
+
label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
|
|
23792
|
+
percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
|
|
23793
|
+
date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
|
|
23794
|
+
}, null] : {
|
|
23795
|
+
token: string;
|
|
23796
|
+
filter: string | null;
|
|
23797
|
+
name?: string | null;
|
|
23798
|
+
business_metric_token?: string | null;
|
|
23799
|
+
label_key?: string | null;
|
|
23800
|
+
label_values?: string[] | null;
|
|
23801
|
+
cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
|
|
23802
|
+
display_name?: string | null;
|
|
23803
|
+
label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
|
|
23804
|
+
percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
|
|
23805
|
+
date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
|
|
23806
|
+
}>;
|
|
23807
|
+
/**
|
|
23808
|
+
* Delete a VirtualTagConfigValue.
|
|
23809
|
+
*/
|
|
23810
|
+
deleteValue(virtualTagConfigToken: string, virtualTagConfigValueToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
|
|
23811
|
+
/**
|
|
23812
|
+
* Update a VirtualTagConfigValue.
|
|
23813
|
+
*/
|
|
23814
|
+
updateValue(virtualTagConfigToken: string, virtualTagConfigValueToken: string, body: UpdateVirtualTagConfigValueRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
23815
|
+
token: string;
|
|
23816
|
+
filter: string | null;
|
|
23817
|
+
name?: string | null;
|
|
23818
|
+
business_metric_token?: string | null;
|
|
23819
|
+
label_key?: string | null;
|
|
23820
|
+
label_values?: string[] | null;
|
|
23821
|
+
cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
|
|
23822
|
+
display_name?: string | null;
|
|
23823
|
+
label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
|
|
23824
|
+
percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
|
|
23825
|
+
date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
|
|
23826
|
+
}, null] : {
|
|
23827
|
+
token: string;
|
|
23828
|
+
filter: string | null;
|
|
23829
|
+
name?: string | null;
|
|
23830
|
+
business_metric_token?: string | null;
|
|
23831
|
+
label_key?: string | null;
|
|
23832
|
+
label_values?: string[] | null;
|
|
23833
|
+
cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
|
|
23834
|
+
display_name?: string | null;
|
|
23835
|
+
label_transforms: components["schemas"]["VirtualTagConfigValueLabelTransform"][];
|
|
23836
|
+
percentages: components["schemas"]["VirtualTagConfigValuePercentage"][];
|
|
23837
|
+
date_ranges: components["schemas"]["VirtualTagConfigValueDateRange"][];
|
|
23838
|
+
}>;
|
|
23337
23839
|
}
|
|
23338
23840
|
declare class WorkspacesApi<NeverThrow extends boolean> {
|
|
23339
23841
|
private client;
|
|
@@ -23516,4 +24018,4 @@ declare class BaseClient<NeverThrow extends boolean> {
|
|
|
23516
24018
|
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>>;
|
|
23517
24019
|
}
|
|
23518
24020
|
|
|
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 };
|
|
24021
|
+
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 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 };
|