@vantage-sh/vantage-client 2.5.0 → 2.6.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 +208 -16
- package/dist/index.d.ts +208 -16
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -447,6 +447,26 @@ interface paths {
|
|
|
447
447
|
patch?: never;
|
|
448
448
|
trace?: never;
|
|
449
449
|
};
|
|
450
|
+
"/business_metrics/{business_metric_token}/labels": {
|
|
451
|
+
parameters: {
|
|
452
|
+
query?: never;
|
|
453
|
+
header?: never;
|
|
454
|
+
path?: never;
|
|
455
|
+
cookie?: never;
|
|
456
|
+
};
|
|
457
|
+
/**
|
|
458
|
+
* Get business metric labels
|
|
459
|
+
* @description Return labels of a BusinessMetric.
|
|
460
|
+
*/
|
|
461
|
+
get: operations["getBusinessMetricLabels"];
|
|
462
|
+
put?: never;
|
|
463
|
+
post?: never;
|
|
464
|
+
delete?: never;
|
|
465
|
+
options?: never;
|
|
466
|
+
head?: never;
|
|
467
|
+
patch?: never;
|
|
468
|
+
trace?: never;
|
|
469
|
+
};
|
|
450
470
|
"/business_metrics/{business_metric_token}/values": {
|
|
451
471
|
parameters: {
|
|
452
472
|
query?: never;
|
|
@@ -3438,6 +3458,11 @@ interface components {
|
|
|
3438
3458
|
* @enum {string}
|
|
3439
3459
|
*/
|
|
3440
3460
|
calculation_type: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
3461
|
+
/**
|
|
3462
|
+
* @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type.
|
|
3463
|
+
* @example Gross Margin
|
|
3464
|
+
*/
|
|
3465
|
+
label?: string | null;
|
|
3441
3466
|
/** @description The labels that the BusinessMetric is filtered by within a particular CostReport. */
|
|
3442
3467
|
label_filter?: string[] | null;
|
|
3443
3468
|
};
|
|
@@ -3486,6 +3511,18 @@ interface components {
|
|
|
3486
3511
|
*/
|
|
3487
3512
|
sql_query: string;
|
|
3488
3513
|
};
|
|
3514
|
+
/** @description BusinessMetricLabels model */
|
|
3515
|
+
BusinessMetricLabels: {
|
|
3516
|
+
links?: components["schemas"]["Links"];
|
|
3517
|
+
labels: components["schemas"]["BusinessMetricLabel"][];
|
|
3518
|
+
};
|
|
3519
|
+
BusinessMetricLabel: {
|
|
3520
|
+
/**
|
|
3521
|
+
* @description A label value associated with the BusinessMetric.
|
|
3522
|
+
* @example Enterprise
|
|
3523
|
+
*/
|
|
3524
|
+
value: string;
|
|
3525
|
+
};
|
|
3489
3526
|
/** @description BusinessMetricValues model */
|
|
3490
3527
|
BusinessMetricValues: {
|
|
3491
3528
|
values: components["schemas"]["BusinessMetricValue"][];
|
|
@@ -3521,6 +3558,14 @@ interface components {
|
|
|
3521
3558
|
* @enum {string}
|
|
3522
3559
|
*/
|
|
3523
3560
|
unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
3561
|
+
/**
|
|
3562
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
3563
|
+
* @default unit_cost
|
|
3564
|
+
* @enum {string}
|
|
3565
|
+
*/
|
|
3566
|
+
calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
3567
|
+
/** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
|
|
3568
|
+
label?: string;
|
|
3524
3569
|
/** @description Include only values with these labels in the CostReport. */
|
|
3525
3570
|
label_filter?: string[];
|
|
3526
3571
|
}[];
|
|
@@ -3561,6 +3606,13 @@ interface components {
|
|
|
3561
3606
|
value?: string;
|
|
3562
3607
|
}[];
|
|
3563
3608
|
};
|
|
3609
|
+
/** @description Snowflake metric configuration fields. */
|
|
3610
|
+
snowflake_metric_fields?: {
|
|
3611
|
+
/** @description Integration token for the Snowflake integration from which you would like to fetch metrics. */
|
|
3612
|
+
integration_token?: string;
|
|
3613
|
+
/** @description Snowflake SQL query returning date, value, and optional label columns. */
|
|
3614
|
+
sql_query?: string;
|
|
3615
|
+
};
|
|
3564
3616
|
};
|
|
3565
3617
|
/** @description Updates an existing BusinessMetric. */
|
|
3566
3618
|
updateBusinessMetric: {
|
|
@@ -3576,6 +3628,14 @@ interface components {
|
|
|
3576
3628
|
* @enum {string}
|
|
3577
3629
|
*/
|
|
3578
3630
|
unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
3631
|
+
/**
|
|
3632
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
3633
|
+
* @default unit_cost
|
|
3634
|
+
* @enum {string}
|
|
3635
|
+
*/
|
|
3636
|
+
calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
3637
|
+
/** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
|
|
3638
|
+
label?: string;
|
|
3579
3639
|
/** @description Include only values with these labels in the CostReport. */
|
|
3580
3640
|
label_filter?: string[];
|
|
3581
3641
|
}[];
|
|
@@ -3616,6 +3676,13 @@ interface components {
|
|
|
3616
3676
|
value?: string;
|
|
3617
3677
|
}[];
|
|
3618
3678
|
};
|
|
3679
|
+
/** @description Snowflake metric configuration fields. */
|
|
3680
|
+
snowflake_metric_fields?: {
|
|
3681
|
+
/** @description Integration token for the Snowflake integration from which you would like to fetch metrics. */
|
|
3682
|
+
integration_token?: string;
|
|
3683
|
+
/** @description Snowflake SQL query returning date, value, and optional label columns. */
|
|
3684
|
+
sql_query?: string;
|
|
3685
|
+
};
|
|
3619
3686
|
};
|
|
3620
3687
|
/** @description BusinessMetricValuesDeleteResponse model */
|
|
3621
3688
|
BusinessMetricValuesDeleteResponse: {
|
|
@@ -3965,11 +4032,16 @@ interface components {
|
|
|
3965
4032
|
* @enum {string}
|
|
3966
4033
|
*/
|
|
3967
4034
|
calculation_type: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
4035
|
+
/**
|
|
4036
|
+
* @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type.
|
|
4037
|
+
* @example Gross Margin
|
|
4038
|
+
*/
|
|
4039
|
+
label?: string | null;
|
|
3968
4040
|
/** @description The labels that the BusinessMetric is filtered by within a particular CostReport. */
|
|
3969
4041
|
label_filter?: string[] | null;
|
|
3970
4042
|
};
|
|
3971
4043
|
ChartSettings: {
|
|
3972
|
-
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage'. Defaults to 'cost'. */
|
|
4044
|
+
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
|
|
3973
4045
|
y_axis_dimension: string;
|
|
3974
4046
|
/** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
|
|
3975
4047
|
x_axis_dimension: string[];
|
|
@@ -4001,7 +4073,7 @@ interface components {
|
|
|
4001
4073
|
* @example aws
|
|
4002
4074
|
* @enum {string}
|
|
4003
4075
|
*/
|
|
4004
|
-
provider: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "all";
|
|
4076
|
+
provider: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai" | "all";
|
|
4005
4077
|
/**
|
|
4006
4078
|
* @description The service for the forecasted cost. Will be 'all' for all combined services
|
|
4007
4079
|
* @example Amazon Elastic Compute Cloud - Compute
|
|
@@ -4030,6 +4102,14 @@ interface components {
|
|
|
4030
4102
|
* @enum {string}
|
|
4031
4103
|
*/
|
|
4032
4104
|
unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
4105
|
+
/**
|
|
4106
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
4107
|
+
* @default unit_cost
|
|
4108
|
+
* @enum {string}
|
|
4109
|
+
*/
|
|
4110
|
+
calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
4111
|
+
/** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
|
|
4112
|
+
label?: string;
|
|
4033
4113
|
/** @description Include only values with these labels in the CostReport. */
|
|
4034
4114
|
label_filter?: string[];
|
|
4035
4115
|
}[];
|
|
@@ -4112,7 +4192,7 @@ interface components {
|
|
|
4112
4192
|
chart_settings?: {
|
|
4113
4193
|
/** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
|
|
4114
4194
|
x_axis_dimension?: string[];
|
|
4115
|
-
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage'. Defaults to 'cost'. */
|
|
4195
|
+
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
|
|
4116
4196
|
y_axis_dimension?: string;
|
|
4117
4197
|
};
|
|
4118
4198
|
};
|
|
@@ -4136,6 +4216,14 @@ interface components {
|
|
|
4136
4216
|
* @enum {string}
|
|
4137
4217
|
*/
|
|
4138
4218
|
unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
4219
|
+
/**
|
|
4220
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
4221
|
+
* @default unit_cost
|
|
4222
|
+
* @enum {string}
|
|
4223
|
+
*/
|
|
4224
|
+
calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
4225
|
+
/** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
|
|
4226
|
+
label?: string;
|
|
4139
4227
|
/** @description Include only values with these labels in the CostReport. */
|
|
4140
4228
|
label_filter?: string[];
|
|
4141
4229
|
}[];
|
|
@@ -4176,7 +4264,7 @@ interface components {
|
|
|
4176
4264
|
chart_settings?: {
|
|
4177
4265
|
/** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
|
|
4178
4266
|
x_axis_dimension?: string[];
|
|
4179
|
-
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage'. Defaults to 'cost'. */
|
|
4267
|
+
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
|
|
4180
4268
|
y_axis_dimension?: string;
|
|
4181
4269
|
};
|
|
4182
4270
|
/** @description The previous period start date of the CostReport. ISO 8601 Formatted. */
|
|
@@ -4329,7 +4417,7 @@ interface components {
|
|
|
4329
4417
|
* @example aws
|
|
4330
4418
|
* @enum {string|null}
|
|
4331
4419
|
*/
|
|
4332
|
-
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | null;
|
|
4420
|
+
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai" | null;
|
|
4333
4421
|
/**
|
|
4334
4422
|
* @description The cost provider's billing account id that incurred the cost.
|
|
4335
4423
|
* @example 9109237192
|
|
@@ -8862,6 +8950,63 @@ interface operations {
|
|
|
8862
8950
|
};
|
|
8863
8951
|
};
|
|
8864
8952
|
};
|
|
8953
|
+
getBusinessMetricLabels: {
|
|
8954
|
+
parameters: {
|
|
8955
|
+
query?: {
|
|
8956
|
+
/** @description The page of results to return. */
|
|
8957
|
+
page?: number;
|
|
8958
|
+
/** @description The number of results to return per page. Defaults to 1000. The maximum is 5000. */
|
|
8959
|
+
limit?: number;
|
|
8960
|
+
};
|
|
8961
|
+
header?: never;
|
|
8962
|
+
path: {
|
|
8963
|
+
business_metric_token: string;
|
|
8964
|
+
};
|
|
8965
|
+
cookie?: never;
|
|
8966
|
+
};
|
|
8967
|
+
requestBody?: never;
|
|
8968
|
+
responses: {
|
|
8969
|
+
200: {
|
|
8970
|
+
headers: {
|
|
8971
|
+
[name: string]: unknown;
|
|
8972
|
+
};
|
|
8973
|
+
content: {
|
|
8974
|
+
/**
|
|
8975
|
+
* @example {
|
|
8976
|
+
* "links": {
|
|
8977
|
+
* "self": "https://api.vantage.sh/v2/business_metrics/bsnss_mtrc_aaf0a1b22b10aecc/labels",
|
|
8978
|
+
* "first": "https://api.vantage.sh/v2/business_metrics/bsnss_mtrc_aaf0a1b22b10aecc/labels?page=1",
|
|
8979
|
+
* "next": null,
|
|
8980
|
+
* "last": "https://api.vantage.sh/v2/business_metrics/bsnss_mtrc_aaf0a1b22b10aecc/labels?page=1",
|
|
8981
|
+
* "prev": null
|
|
8982
|
+
* },
|
|
8983
|
+
* "labels": [
|
|
8984
|
+
* {
|
|
8985
|
+
* "value": "alpha"
|
|
8986
|
+
* },
|
|
8987
|
+
* {
|
|
8988
|
+
* "value": "beta"
|
|
8989
|
+
* },
|
|
8990
|
+
* {
|
|
8991
|
+
* "value": "Enterprise"
|
|
8992
|
+
* }
|
|
8993
|
+
* ]
|
|
8994
|
+
* }
|
|
8995
|
+
*/
|
|
8996
|
+
"application/json": components["schemas"]["BusinessMetricLabels"];
|
|
8997
|
+
};
|
|
8998
|
+
};
|
|
8999
|
+
/** @description NotFound */
|
|
9000
|
+
404: {
|
|
9001
|
+
headers: {
|
|
9002
|
+
[name: string]: unknown;
|
|
9003
|
+
};
|
|
9004
|
+
content: {
|
|
9005
|
+
"application/json": components["schemas"]["Errors"];
|
|
9006
|
+
};
|
|
9007
|
+
};
|
|
9008
|
+
};
|
|
9009
|
+
};
|
|
8865
9010
|
getBusinessMetricValues: {
|
|
8866
9011
|
parameters: {
|
|
8867
9012
|
query?: {
|
|
@@ -8871,6 +9016,8 @@ interface operations {
|
|
|
8871
9016
|
limit?: number;
|
|
8872
9017
|
/** @description Query BusinessMetrics by the first date you would like to filter from. ISO 8601 Formatted - 2021-07-15 */
|
|
8873
9018
|
start_date?: string;
|
|
9019
|
+
/** @description Return values matching any exact label value. For multi-label metrics, matches values under any label key. */
|
|
9020
|
+
label_values?: string[];
|
|
8874
9021
|
};
|
|
8875
9022
|
header?: never;
|
|
8876
9023
|
path: {
|
|
@@ -9671,7 +9818,7 @@ interface operations {
|
|
|
9671
9818
|
/** @description The token of the Workspace to list CostProviderAccounts for. Required if the API token is associated with multiple Workspaces. */
|
|
9672
9819
|
workspace_token?: string;
|
|
9673
9820
|
/** @description Filter by provider type. */
|
|
9674
|
-
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten";
|
|
9821
|
+
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai";
|
|
9675
9822
|
/** @description Filter by provider account identifier. */
|
|
9676
9823
|
account_id?: string;
|
|
9677
9824
|
/** @description Filter by account name (exact match). */
|
|
@@ -10095,7 +10242,7 @@ interface operations {
|
|
|
10095
10242
|
/** @description Last date you would like to filter forecasted costs from. ISO 8601 formatted. */
|
|
10096
10243
|
end_date?: string;
|
|
10097
10244
|
/** @description Limit the forecasted costs to a specific provider. 'all' is accepted to filter to overall forecast. */
|
|
10098
|
-
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "all";
|
|
10245
|
+
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai" | "all";
|
|
10099
10246
|
/** @description Limit the forecasted costs to a specific service. 'all' is accepted to filter to overall forecast. e.g. 'Amazon ElastiCache'. */
|
|
10100
10247
|
service?: string;
|
|
10101
10248
|
/** @description The page of results to return. */
|
|
@@ -11420,7 +11567,7 @@ interface operations {
|
|
|
11420
11567
|
parameters: {
|
|
11421
11568
|
query?: {
|
|
11422
11569
|
/** @description Query by provider name to list all Integrations for a specific provider. */
|
|
11423
|
-
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten";
|
|
11570
|
+
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai";
|
|
11424
11571
|
/** @description Query by account identifier to list all Integrations that match a specific account. For Azure, this is the subscription ID. Must include provider when using this parameter. */
|
|
11425
11572
|
account_identifier?: string;
|
|
11426
11573
|
/** @description The page of results to return. */
|
|
@@ -15258,7 +15405,7 @@ interface operations {
|
|
|
15258
15405
|
parameters: {
|
|
15259
15406
|
query?: {
|
|
15260
15407
|
/** @description An array of providers to scope Tags by. */
|
|
15261
|
-
providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten")[];
|
|
15408
|
+
providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai")[];
|
|
15262
15409
|
/** @description A search query to filter Tags by tag key. */
|
|
15263
15410
|
search_query?: string;
|
|
15264
15411
|
/** @description The direction in which you would like to sort the data by. Defaults to 'asc'. */
|
|
@@ -15396,7 +15543,7 @@ interface operations {
|
|
|
15396
15543
|
parameters: {
|
|
15397
15544
|
query?: {
|
|
15398
15545
|
/** @description An array of providers to scope TagValues by. */
|
|
15399
|
-
providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten")[];
|
|
15546
|
+
providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai")[];
|
|
15400
15547
|
/** @description The direction in which to sort the TagValues. Defaults to 'asc'. */
|
|
15401
15548
|
sort_direction?: "asc" | "desc";
|
|
15402
15549
|
/** @description A search query to filter TagValues by the value name. */
|
|
@@ -16286,7 +16433,10 @@ interface operations {
|
|
|
16286
16433
|
};
|
|
16287
16434
|
getVirtualTagConfigs: {
|
|
16288
16435
|
parameters: {
|
|
16289
|
-
query?:
|
|
16436
|
+
query?: {
|
|
16437
|
+
/** @description A search query to filter VirtualTagConfigs by key. */
|
|
16438
|
+
q?: string;
|
|
16439
|
+
};
|
|
16290
16440
|
header?: never;
|
|
16291
16441
|
path?: never;
|
|
16292
16442
|
cookie?: never;
|
|
@@ -17309,6 +17459,14 @@ type UpdateBusinessMetricResponse = ResponseBodyForPathAndMethod<`/v2/business_m
|
|
|
17309
17459
|
* Response type for Delete business metric
|
|
17310
17460
|
*/
|
|
17311
17461
|
type DeleteBusinessMetricResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}`, "DELETE">;
|
|
17462
|
+
/**
|
|
17463
|
+
* Return labels of a BusinessMetric.
|
|
17464
|
+
*/
|
|
17465
|
+
type GetBusinessMetricLabelsRequest = RequestBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/labels`, "GET">;
|
|
17466
|
+
/**
|
|
17467
|
+
* Response type for Get business metric labels
|
|
17468
|
+
*/
|
|
17469
|
+
type GetBusinessMetricLabelsResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/labels`, "GET">;
|
|
17312
17470
|
/**
|
|
17313
17471
|
* Return values of a BusinessMetric
|
|
17314
17472
|
*/
|
|
@@ -18222,6 +18380,10 @@ type UpdateUserRequest = RequestBodyForPathAndMethod<`/v2/users/${NoSlashString}
|
|
|
18222
18380
|
* Response type for Update a user
|
|
18223
18381
|
*/
|
|
18224
18382
|
type UpdateUserResponse = ResponseBodyForPathAndMethod<`/v2/users/${NoSlashString}`, "PUT">;
|
|
18383
|
+
/**
|
|
18384
|
+
* Return all VirtualTagConfigs that the current API token has access to.
|
|
18385
|
+
*/
|
|
18386
|
+
type GetVirtualTagConfigsRequest = RequestBodyForPathAndMethod<"/v2/virtual_tag_configs", "GET">;
|
|
18225
18387
|
/**
|
|
18226
18388
|
* Response type for Get all virtual tag configs
|
|
18227
18389
|
*/
|
|
@@ -19158,6 +19320,16 @@ declare class BusinessMetricsApi<NeverThrow extends boolean> {
|
|
|
19158
19320
|
* Deletes an existing BusinessMetric.
|
|
19159
19321
|
*/
|
|
19160
19322
|
delete(businessMetricToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
|
|
19323
|
+
/**
|
|
19324
|
+
* Return labels of a BusinessMetric.
|
|
19325
|
+
*/
|
|
19326
|
+
getLabels(businessMetricToken: string, body?: GetBusinessMetricLabelsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
19327
|
+
links?: components["schemas"]["Links"];
|
|
19328
|
+
labels: components["schemas"]["BusinessMetricLabel"][];
|
|
19329
|
+
}, null] : {
|
|
19330
|
+
links?: components["schemas"]["Links"];
|
|
19331
|
+
labels: components["schemas"]["BusinessMetricLabel"][];
|
|
19332
|
+
}>;
|
|
19161
19333
|
/**
|
|
19162
19334
|
* Return values of a BusinessMetric
|
|
19163
19335
|
*/
|
|
@@ -21700,6 +21872,14 @@ declare class UsersApi<NeverThrow extends boolean> {
|
|
|
21700
21872
|
declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
21701
21873
|
private client;
|
|
21702
21874
|
constructor(client: BaseClient<NeverThrow>);
|
|
21875
|
+
/**
|
|
21876
|
+
* Return all VirtualTagConfigs that the current API token has access to.
|
|
21877
|
+
*/
|
|
21878
|
+
list(body?: GetVirtualTagConfigsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
21879
|
+
virtual_tag_configs: components["schemas"]["VirtualTagConfig"][];
|
|
21880
|
+
}, null] : {
|
|
21881
|
+
virtual_tag_configs: components["schemas"]["VirtualTagConfig"][];
|
|
21882
|
+
}>;
|
|
21703
21883
|
/**
|
|
21704
21884
|
* Create a new VirtualTagConfig.
|
|
21705
21885
|
*/
|
|
@@ -21721,12 +21901,24 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
21721
21901
|
values: components["schemas"]["VirtualTagConfigValue"][];
|
|
21722
21902
|
}>;
|
|
21723
21903
|
/**
|
|
21724
|
-
* Return
|
|
21904
|
+
* Return a specific VirtualTagConfig.
|
|
21725
21905
|
*/
|
|
21726
|
-
get(): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
21727
|
-
|
|
21906
|
+
get(token: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
21907
|
+
token: string;
|
|
21908
|
+
created_by_token: string | null;
|
|
21909
|
+
key: string;
|
|
21910
|
+
overridable: boolean;
|
|
21911
|
+
backfill_until: string;
|
|
21912
|
+
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
21913
|
+
values: components["schemas"]["VirtualTagConfigValue"][];
|
|
21728
21914
|
}, null] : {
|
|
21729
|
-
|
|
21915
|
+
token: string;
|
|
21916
|
+
created_by_token: string | null;
|
|
21917
|
+
key: string;
|
|
21918
|
+
overridable: boolean;
|
|
21919
|
+
backfill_until: string;
|
|
21920
|
+
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
21921
|
+
values: components["schemas"]["VirtualTagConfigValue"][];
|
|
21730
21922
|
}>;
|
|
21731
21923
|
/**
|
|
21732
21924
|
* Updates an existing VirtualTagConfig.
|
|
@@ -21966,4 +22158,4 @@ declare class BaseClient<NeverThrow extends boolean> {
|
|
|
21966
22158
|
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>>;
|
|
21967
22159
|
}
|
|
21968
22160
|
|
|
21969
|
-
export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type 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 GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCanvasRequest, type UpdateCanvasResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
|
|
22161
|
+
export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricLabelsRequest, type GetBusinessMetricLabelsResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigsRequest, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCanvasRequest, type UpdateCanvasResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
|