@vantage-sh/vantage-client 2.17.0 → 2.18.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 +90 -15
- package/dist/index.d.ts +90 -15
- 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
|
@@ -2906,8 +2906,10 @@ interface components {
|
|
|
2906
2906
|
* @description The threshold amount that must be met for the notification to fire.
|
|
2907
2907
|
*/
|
|
2908
2908
|
threshold: number;
|
|
2909
|
-
/** @description The tokens of
|
|
2909
|
+
/** @description The tokens of organization users that receive the notification. Freeform verified-domain emails are not included; see recipient_emails. */
|
|
2910
2910
|
user_tokens: string[];
|
|
2911
|
+
/** @description The email addresses that receive the notification, including organization users and verified-domain addresses. */
|
|
2912
|
+
recipient_emails: string[];
|
|
2911
2913
|
/** @description The channels that the notification is sent to. */
|
|
2912
2914
|
recipient_channels: string[];
|
|
2913
2915
|
};
|
|
@@ -2922,6 +2924,8 @@ interface components {
|
|
|
2922
2924
|
threshold?: number;
|
|
2923
2925
|
/** @description The tokens of the Users that receive the notification. */
|
|
2924
2926
|
user_tokens?: string[];
|
|
2927
|
+
/** @description Email addresses that receive the notification. Must be organization users or addresses on a verified domain. */
|
|
2928
|
+
recipient_emails?: string[];
|
|
2925
2929
|
/** @description The Slack/MS Teams channels that receive the notification. */
|
|
2926
2930
|
recipient_channels?: string[];
|
|
2927
2931
|
};
|
|
@@ -2934,6 +2938,8 @@ interface components {
|
|
|
2934
2938
|
threshold?: number;
|
|
2935
2939
|
/** @description The tokens of the users that receive the notification. */
|
|
2936
2940
|
user_tokens?: string[];
|
|
2941
|
+
/** @description Email addresses that receive the notification. Must be organization users or addresses on a verified domain. */
|
|
2942
|
+
recipient_emails?: string[];
|
|
2937
2943
|
/** @description The Slack/MS Teams channels that receive the notification. */
|
|
2938
2944
|
recipient_channels?: string[];
|
|
2939
2945
|
};
|
|
@@ -2980,7 +2986,7 @@ interface components {
|
|
|
2980
2986
|
* Format: date
|
|
2981
2987
|
* @description The date of the Annotation. ISO 8601 formatted.
|
|
2982
2988
|
*/
|
|
2983
|
-
date?: string;
|
|
2989
|
+
date?: string | null;
|
|
2984
2990
|
/** @description The message of the Annotation. */
|
|
2985
2991
|
message?: string;
|
|
2986
2992
|
/** @description The tokens of the Reports to associate with the Annotation. */
|
|
@@ -3487,8 +3493,10 @@ interface components {
|
|
|
3487
3493
|
workspace_token: string | null;
|
|
3488
3494
|
/** @description The token for the User who created this BudgetAlert. */
|
|
3489
3495
|
user_token?: string | null;
|
|
3490
|
-
/** @description The
|
|
3496
|
+
/** @description The tokens of organization users that receive the alert. Freeform verified-domain emails are not included; see recipient_emails. */
|
|
3491
3497
|
user_tokens: string[];
|
|
3498
|
+
/** @description The email addresses that receive the alert, including organization users and verified-domain addresses. */
|
|
3499
|
+
recipient_emails: string[];
|
|
3492
3500
|
/**
|
|
3493
3501
|
* Format: int32
|
|
3494
3502
|
* @description The number of days from the start or end of the month to trigger the alert if the threshold is reached.
|
|
@@ -3524,6 +3532,8 @@ interface components {
|
|
|
3524
3532
|
threshold: number;
|
|
3525
3533
|
/** @description The tokens of the users that receive the alert. */
|
|
3526
3534
|
user_tokens?: string[];
|
|
3535
|
+
/** @description Email addresses that receive the alert. Must be organization users or addresses on a verified domain. */
|
|
3536
|
+
recipient_emails?: string[];
|
|
3527
3537
|
/** @description The number of days from the start or end of the month to trigger the alert if the threshold is reached. For the full month, pass an empty value. */
|
|
3528
3538
|
duration_in_days: string;
|
|
3529
3539
|
/** @description The period tracked on the alert. Used with duration_in_days to determine the time window of the alert. Defaults to start_of_the_month if not passed. Possible values: start_of_the_month, end_of_the_month. */
|
|
@@ -3542,6 +3552,8 @@ interface components {
|
|
|
3542
3552
|
threshold?: number;
|
|
3543
3553
|
/** @description The tokens of the users that receive the alert. */
|
|
3544
3554
|
user_tokens?: string[];
|
|
3555
|
+
/** @description Email addresses that receive the alert. Must be organization users or addresses on a verified domain. */
|
|
3556
|
+
recipient_emails?: string[];
|
|
3545
3557
|
/** @description The number of days from the start or end of the month to trigger the alert if the threshold is reached. For the full month, pass an empty value. */
|
|
3546
3558
|
duration_in_days?: string;
|
|
3547
3559
|
/** @description The period tracked on the alert. Used with duration_in_days to determine the time window of the alert. Defaults to start_of_the_month if not passed. Possible values: start_of_the_month, end_of_the_month. */
|
|
@@ -4144,7 +4156,7 @@ interface components {
|
|
|
4144
4156
|
workspace_token: string;
|
|
4145
4157
|
/** @description The tokens of the reports to alert on. */
|
|
4146
4158
|
report_tokens: string[];
|
|
4147
|
-
/** @description The email recipients for the Cost Alert. */
|
|
4159
|
+
/** @description The email recipients for the Cost Alert. Accepts organization users and emails on verified IdP domains. */
|
|
4148
4160
|
email_recipients?: string[];
|
|
4149
4161
|
/** @description The Slack channels that will receive the alert. */
|
|
4150
4162
|
slack_channels?: string[];
|
|
@@ -4160,7 +4172,7 @@ interface components {
|
|
|
4160
4172
|
updateCostAlert: {
|
|
4161
4173
|
/** @description The title of the Cost Alert. */
|
|
4162
4174
|
title?: string;
|
|
4163
|
-
/** @description The email recipients for the Cost Alert. */
|
|
4175
|
+
/** @description The email recipients for the Cost Alert. Accepts organization users and emails on verified IdP domains. */
|
|
4164
4176
|
email_recipients?: string[];
|
|
4165
4177
|
/** @description The period of time used to compare costs. Options are 'day', 'week', 'month', 'quarter'. */
|
|
4166
4178
|
interval?: string;
|
|
@@ -4407,7 +4419,7 @@ interface components {
|
|
|
4407
4419
|
* @example aws
|
|
4408
4420
|
* @enum {string}
|
|
4409
4421
|
*/
|
|
4410
|
-
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";
|
|
4422
|
+
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" | "cartesia" | "depot" | "xai" | "digital_ocean" | "together_ai" | "coreweave" | "all";
|
|
4411
4423
|
/**
|
|
4412
4424
|
* @description The service for the forecasted cost. Will be 'all' for all combined services
|
|
4413
4425
|
* @example Amazon Elastic Compute Cloud - Compute
|
|
@@ -4812,7 +4824,7 @@ interface components {
|
|
|
4812
4824
|
* @example aws
|
|
4813
4825
|
* @enum {string|null}
|
|
4814
4826
|
*/
|
|
4815
|
-
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;
|
|
4827
|
+
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" | "cartesia" | "depot" | "xai" | "digital_ocean" | "together_ai" | "coreweave" | null;
|
|
4816
4828
|
/**
|
|
4817
4829
|
* @description The cost provider's billing account id that incurred the cost.
|
|
4818
4830
|
* @example 9109237192
|
|
@@ -5001,7 +5013,7 @@ interface components {
|
|
|
5001
5013
|
start_date?: string;
|
|
5002
5014
|
/** @description The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter. */
|
|
5003
5015
|
end_date?: string;
|
|
5004
|
-
/** @description The token of the Workspace the Dashboard belongs to. Required if the API token is associated with multiple Workspaces. */
|
|
5016
|
+
/** @description The token of the Workspace the Dashboard belongs to. Required when updating widgets if the API token is associated with multiple Workspaces. */
|
|
5005
5017
|
workspace_token?: string;
|
|
5006
5018
|
};
|
|
5007
5019
|
/** @description DataExport model */
|
|
@@ -6354,8 +6366,10 @@ interface components {
|
|
|
6354
6366
|
* @example rprt_abcd1234
|
|
6355
6367
|
*/
|
|
6356
6368
|
cost_report_token: string;
|
|
6357
|
-
/** @description The
|
|
6369
|
+
/** @description The tokens of organization users that receive the notification. Freeform verified-domain emails are not included; see recipient_emails. */
|
|
6358
6370
|
user_tokens: string[];
|
|
6371
|
+
/** @description The email addresses that receive the notification, including organization users and verified-domain addresses. */
|
|
6372
|
+
recipient_emails: string[];
|
|
6359
6373
|
/** @description The Slack or Microsoft Teams channels that receive the notification. */
|
|
6360
6374
|
recipient_channels: string[];
|
|
6361
6375
|
/**
|
|
@@ -6381,6 +6395,8 @@ interface components {
|
|
|
6381
6395
|
workspace_token?: string;
|
|
6382
6396
|
/** @description The Users that receive the notification. */
|
|
6383
6397
|
user_tokens?: string[];
|
|
6398
|
+
/** @description Email addresses that receive the notification. Must be organization users or addresses on a verified domain. */
|
|
6399
|
+
recipient_emails?: string[];
|
|
6384
6400
|
/** @description The Slack or Microsoft Teams channels that receive the notification. */
|
|
6385
6401
|
recipient_channels?: string[];
|
|
6386
6402
|
/** @description The frequency the ReportNotification is sent. Possible values: daily, weekly, monthly. */
|
|
@@ -6396,6 +6412,8 @@ interface components {
|
|
|
6396
6412
|
cost_report_token?: string;
|
|
6397
6413
|
/** @description The Users that receive the notification. */
|
|
6398
6414
|
user_tokens?: string[];
|
|
6415
|
+
/** @description Email addresses that receive the notification. Must be organization users or addresses on a verified domain. */
|
|
6416
|
+
recipient_emails?: string[];
|
|
6399
6417
|
/** @description The Slack or Microsoft Teams channels that receive the notification. */
|
|
6400
6418
|
recipient_channels?: string[];
|
|
6401
6419
|
/** @description The frequency the ReportNotification is sent. Possible values: daily, weekly, monthly. */
|
|
@@ -7056,6 +7074,10 @@ interface components {
|
|
|
7056
7074
|
* @example Cost Center
|
|
7057
7075
|
*/
|
|
7058
7076
|
key: string;
|
|
7077
|
+
/** @description Whether the VirtualTagConfig key is hidden from the Vantage UI. */
|
|
7078
|
+
hidden: boolean;
|
|
7079
|
+
/** @description Whether the VirtualTagConfig key is marked as preferred in the Vantage UI. */
|
|
7080
|
+
preferred: boolean;
|
|
7059
7081
|
/** @description Whether the VirtualTagConfig can override a provider-supplied tag on a matching Cost. */
|
|
7060
7082
|
overridable: boolean;
|
|
7061
7083
|
/**
|
|
@@ -10741,7 +10763,7 @@ interface operations {
|
|
|
10741
10763
|
/** @description The token of the Workspace to list CostProviderAccounts for. Required if the API token is associated with multiple Workspaces. */
|
|
10742
10764
|
workspace_token?: string;
|
|
10743
10765
|
/** @description Filter by provider type. */
|
|
10744
|
-
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";
|
|
10766
|
+
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" | "cartesia" | "depot" | "xai" | "digital_ocean" | "together_ai" | "coreweave";
|
|
10745
10767
|
/** @description Filter by provider account identifier. */
|
|
10746
10768
|
account_id?: string;
|
|
10747
10769
|
/** @description Filter by account name (exact match). */
|
|
@@ -11169,7 +11191,7 @@ interface operations {
|
|
|
11169
11191
|
/** @description Last date you would like to filter forecasted costs from. ISO 8601 formatted. */
|
|
11170
11192
|
end_date?: string;
|
|
11171
11193
|
/** @description Limit the forecasted costs to a specific provider. 'all' is accepted to filter to overall forecast. */
|
|
11172
|
-
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";
|
|
11194
|
+
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" | "cartesia" | "depot" | "xai" | "digital_ocean" | "together_ai" | "coreweave" | "all";
|
|
11173
11195
|
/** @description Limit the forecasted costs to a specific service. 'all' is accepted to filter to overall forecast. e.g. 'Amazon ElastiCache'. */
|
|
11174
11196
|
service?: string;
|
|
11175
11197
|
/** @description The page of results to return. */
|
|
@@ -12506,7 +12528,7 @@ interface operations {
|
|
|
12506
12528
|
parameters: {
|
|
12507
12529
|
query?: {
|
|
12508
12530
|
/** @description Query by provider name to list all Integrations for a specific provider. */
|
|
12509
|
-
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";
|
|
12531
|
+
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" | "cartesia" | "depot" | "xai" | "digital_ocean" | "together_ai" | "coreweave";
|
|
12510
12532
|
/** @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. */
|
|
12511
12533
|
account_identifier?: string;
|
|
12512
12534
|
/** @description The page of results to return. */
|
|
@@ -17039,7 +17061,7 @@ interface operations {
|
|
|
17039
17061
|
parameters: {
|
|
17040
17062
|
query?: {
|
|
17041
17063
|
/** @description An array of providers to scope Tags by. */
|
|
17042
|
-
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")[];
|
|
17064
|
+
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" | "cartesia" | "depot" | "xai" | "digital_ocean" | "together_ai" | "coreweave")[];
|
|
17043
17065
|
/** @description A search query to filter Tags by tag key. */
|
|
17044
17066
|
search_query?: string;
|
|
17045
17067
|
/** @description The direction in which you would like to sort the data by. Defaults to 'asc'. */
|
|
@@ -17177,7 +17199,7 @@ interface operations {
|
|
|
17177
17199
|
parameters: {
|
|
17178
17200
|
query?: {
|
|
17179
17201
|
/** @description An array of providers to scope TagValues by. */
|
|
17180
|
-
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")[];
|
|
17202
|
+
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" | "cartesia" | "depot" | "xai" | "digital_ocean" | "together_ai" | "coreweave")[];
|
|
17181
17203
|
/** @description The direction in which to sort the TagValues. Defaults to 'asc'. */
|
|
17182
17204
|
sort_direction?: "asc" | "desc";
|
|
17183
17205
|
/** @description A search query to filter TagValues by the value name. */
|
|
@@ -20804,6 +20826,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20804
20826
|
updated_at: string;
|
|
20805
20827
|
threshold: number;
|
|
20806
20828
|
user_tokens: string[];
|
|
20829
|
+
recipient_emails: string[];
|
|
20807
20830
|
recipient_channels: string[];
|
|
20808
20831
|
}, null] : {
|
|
20809
20832
|
token: string;
|
|
@@ -20812,6 +20835,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20812
20835
|
updated_at: string;
|
|
20813
20836
|
threshold: number;
|
|
20814
20837
|
user_tokens: string[];
|
|
20838
|
+
recipient_emails: string[];
|
|
20815
20839
|
recipient_channels: string[];
|
|
20816
20840
|
}>;
|
|
20817
20841
|
/**
|
|
@@ -20824,6 +20848,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20824
20848
|
updated_at: string;
|
|
20825
20849
|
threshold: number;
|
|
20826
20850
|
user_tokens: string[];
|
|
20851
|
+
recipient_emails: string[];
|
|
20827
20852
|
recipient_channels: string[];
|
|
20828
20853
|
}, null] : {
|
|
20829
20854
|
token: string;
|
|
@@ -20832,6 +20857,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20832
20857
|
updated_at: string;
|
|
20833
20858
|
threshold: number;
|
|
20834
20859
|
user_tokens: string[];
|
|
20860
|
+
recipient_emails: string[];
|
|
20835
20861
|
recipient_channels: string[];
|
|
20836
20862
|
}>;
|
|
20837
20863
|
/**
|
|
@@ -20844,6 +20870,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20844
20870
|
updated_at: string;
|
|
20845
20871
|
threshold: number;
|
|
20846
20872
|
user_tokens: string[];
|
|
20873
|
+
recipient_emails: string[];
|
|
20847
20874
|
recipient_channels: string[];
|
|
20848
20875
|
}, null] : {
|
|
20849
20876
|
token: string;
|
|
@@ -20852,6 +20879,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20852
20879
|
updated_at: string;
|
|
20853
20880
|
threshold: number;
|
|
20854
20881
|
user_tokens: string[];
|
|
20882
|
+
recipient_emails: string[];
|
|
20855
20883
|
recipient_channels: string[];
|
|
20856
20884
|
}>;
|
|
20857
20885
|
/**
|
|
@@ -21148,6 +21176,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21148
21176
|
workspace_token: string | null;
|
|
21149
21177
|
user_token?: string | null;
|
|
21150
21178
|
user_tokens: string[];
|
|
21179
|
+
recipient_emails: string[];
|
|
21151
21180
|
duration_in_days: number | null;
|
|
21152
21181
|
threshold: number;
|
|
21153
21182
|
period_to_track: string | null;
|
|
@@ -21160,6 +21189,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21160
21189
|
workspace_token: string | null;
|
|
21161
21190
|
user_token?: string | null;
|
|
21162
21191
|
user_tokens: string[];
|
|
21192
|
+
recipient_emails: string[];
|
|
21163
21193
|
duration_in_days: number | null;
|
|
21164
21194
|
threshold: number;
|
|
21165
21195
|
period_to_track: string | null;
|
|
@@ -21176,6 +21206,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21176
21206
|
workspace_token: string | null;
|
|
21177
21207
|
user_token?: string | null;
|
|
21178
21208
|
user_tokens: string[];
|
|
21209
|
+
recipient_emails: string[];
|
|
21179
21210
|
duration_in_days: number | null;
|
|
21180
21211
|
threshold: number;
|
|
21181
21212
|
period_to_track: string | null;
|
|
@@ -21188,6 +21219,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21188
21219
|
workspace_token: string | null;
|
|
21189
21220
|
user_token?: string | null;
|
|
21190
21221
|
user_tokens: string[];
|
|
21222
|
+
recipient_emails: string[];
|
|
21191
21223
|
duration_in_days: number | null;
|
|
21192
21224
|
threshold: number;
|
|
21193
21225
|
period_to_track: string | null;
|
|
@@ -21204,6 +21236,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21204
21236
|
workspace_token: string | null;
|
|
21205
21237
|
user_token?: string | null;
|
|
21206
21238
|
user_tokens: string[];
|
|
21239
|
+
recipient_emails: string[];
|
|
21207
21240
|
duration_in_days: number | null;
|
|
21208
21241
|
threshold: number;
|
|
21209
21242
|
period_to_track: string | null;
|
|
@@ -21216,6 +21249,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21216
21249
|
workspace_token: string | null;
|
|
21217
21250
|
user_token?: string | null;
|
|
21218
21251
|
user_tokens: string[];
|
|
21252
|
+
recipient_emails: string[];
|
|
21219
21253
|
duration_in_days: number | null;
|
|
21220
21254
|
threshold: number;
|
|
21221
21255
|
period_to_track: string | null;
|
|
@@ -23458,6 +23492,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23458
23492
|
title: string;
|
|
23459
23493
|
cost_report_token: string;
|
|
23460
23494
|
user_tokens: string[];
|
|
23495
|
+
recipient_emails: string[];
|
|
23461
23496
|
recipient_channels: string[];
|
|
23462
23497
|
frequency: "daily" | "weekly" | "monthly";
|
|
23463
23498
|
change: "percentage" | "dollars";
|
|
@@ -23466,6 +23501,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23466
23501
|
title: string;
|
|
23467
23502
|
cost_report_token: string;
|
|
23468
23503
|
user_tokens: string[];
|
|
23504
|
+
recipient_emails: string[];
|
|
23469
23505
|
recipient_channels: string[];
|
|
23470
23506
|
frequency: "daily" | "weekly" | "monthly";
|
|
23471
23507
|
change: "percentage" | "dollars";
|
|
@@ -23478,6 +23514,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23478
23514
|
title: string;
|
|
23479
23515
|
cost_report_token: string;
|
|
23480
23516
|
user_tokens: string[];
|
|
23517
|
+
recipient_emails: string[];
|
|
23481
23518
|
recipient_channels: string[];
|
|
23482
23519
|
frequency: "daily" | "weekly" | "monthly";
|
|
23483
23520
|
change: "percentage" | "dollars";
|
|
@@ -23486,6 +23523,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23486
23523
|
title: string;
|
|
23487
23524
|
cost_report_token: string;
|
|
23488
23525
|
user_tokens: string[];
|
|
23526
|
+
recipient_emails: string[];
|
|
23489
23527
|
recipient_channels: string[];
|
|
23490
23528
|
frequency: "daily" | "weekly" | "monthly";
|
|
23491
23529
|
change: "percentage" | "dollars";
|
|
@@ -23498,6 +23536,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23498
23536
|
title: string;
|
|
23499
23537
|
cost_report_token: string;
|
|
23500
23538
|
user_tokens: string[];
|
|
23539
|
+
recipient_emails: string[];
|
|
23501
23540
|
recipient_channels: string[];
|
|
23502
23541
|
frequency: "daily" | "weekly" | "monthly";
|
|
23503
23542
|
change: "percentage" | "dollars";
|
|
@@ -23506,6 +23545,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23506
23545
|
title: string;
|
|
23507
23546
|
cost_report_token: string;
|
|
23508
23547
|
user_tokens: string[];
|
|
23548
|
+
recipient_emails: string[];
|
|
23509
23549
|
recipient_channels: string[];
|
|
23510
23550
|
frequency: "daily" | "weekly" | "monthly";
|
|
23511
23551
|
change: "percentage" | "dollars";
|
|
@@ -24173,6 +24213,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24173
24213
|
token: string;
|
|
24174
24214
|
created_by_token: string | null;
|
|
24175
24215
|
key: string;
|
|
24216
|
+
hidden: boolean;
|
|
24217
|
+
preferred: boolean;
|
|
24176
24218
|
overridable: boolean;
|
|
24177
24219
|
backfill_until: string;
|
|
24178
24220
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24181,6 +24223,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24181
24223
|
token: string;
|
|
24182
24224
|
created_by_token: string | null;
|
|
24183
24225
|
key: string;
|
|
24226
|
+
hidden: boolean;
|
|
24227
|
+
preferred: boolean;
|
|
24184
24228
|
overridable: boolean;
|
|
24185
24229
|
backfill_until: string;
|
|
24186
24230
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24193,6 +24237,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24193
24237
|
token: string;
|
|
24194
24238
|
created_by_token: string | null;
|
|
24195
24239
|
key: string;
|
|
24240
|
+
hidden: boolean;
|
|
24241
|
+
preferred: boolean;
|
|
24196
24242
|
overridable: boolean;
|
|
24197
24243
|
backfill_until: string;
|
|
24198
24244
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24201,6 +24247,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24201
24247
|
token: string;
|
|
24202
24248
|
created_by_token: string | null;
|
|
24203
24249
|
key: string;
|
|
24250
|
+
hidden: boolean;
|
|
24251
|
+
preferred: boolean;
|
|
24204
24252
|
overridable: boolean;
|
|
24205
24253
|
backfill_until: string;
|
|
24206
24254
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24213,6 +24261,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24213
24261
|
token: string;
|
|
24214
24262
|
created_by_token: string | null;
|
|
24215
24263
|
key: string;
|
|
24264
|
+
hidden: boolean;
|
|
24265
|
+
preferred: boolean;
|
|
24216
24266
|
overridable: boolean;
|
|
24217
24267
|
backfill_until: string;
|
|
24218
24268
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24224,6 +24274,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24224
24274
|
token: string;
|
|
24225
24275
|
created_by_token: string | null;
|
|
24226
24276
|
key: string;
|
|
24277
|
+
hidden: boolean;
|
|
24278
|
+
preferred: boolean;
|
|
24227
24279
|
overridable: boolean;
|
|
24228
24280
|
backfill_until: string;
|
|
24229
24281
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24532,4 +24584,27 @@ declare class BaseClient<NeverThrow extends boolean> {
|
|
|
24532
24584
|
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>>;
|
|
24533
24585
|
}
|
|
24534
24586
|
|
|
24535
|
-
export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnnotationRequest, type CreateAnnotationResponse, 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 DeleteAnnotationResponse, 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 GetAnnotationsRequest, type GetAnnotationsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricLabelsRequest, type GetBusinessMetricLabelsResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsRequest, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowLogsRequest, type GetNetworkFlowLogsResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportForecastResponse, type GetReportForecastsRequest, type GetReportForecastsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetScenarioModelResponse, type GetScenarioModelsRequest, type GetScenarioModelsResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigValueResponse, type GetVirtualTagConfigsRequest, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnnotationRequest, type UpdateAnnotationResponse, 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 };
|
|
24587
|
+
/** Provider identifiers supported by the Vantage API. */
|
|
24588
|
+
declare const VANTAGE_PROVIDERS: readonly ["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", "cartesia", "depot", "xai", "digital_ocean", "together_ai", "coreweave"];
|
|
24589
|
+
type VantageProvider = (typeof VANTAGE_PROVIDERS)[number];
|
|
24590
|
+
|
|
24591
|
+
/** Date interval values supported by Vantage reports. */
|
|
24592
|
+
declare const VANTAGE_DATE_INTERVALS: readonly ["this_month", "last_7_days", "last_30_days", "last_month", "last_3_months", "last_6_months", "custom", "last_12_months", "last_24_months", "last_36_months", "next_month", "next_3_months", "next_6_months", "next_12_months", "year_to_date", "last_3_days", "last_14_days"];
|
|
24593
|
+
type VantageDateInterval = (typeof VANTAGE_DATE_INTERVALS)[number];
|
|
24594
|
+
/** Date bin values supported by Vantage cost reports. */
|
|
24595
|
+
declare const VANTAGE_DATE_BINS: readonly ["cumulative", "day", "week", "month", "quarter", "hour"];
|
|
24596
|
+
type VantageDateBin = (typeof VANTAGE_DATE_BINS)[number];
|
|
24597
|
+
/** Cost aggregation dimensions supported by the Vantage costs query. */
|
|
24598
|
+
declare const VANTAGE_COST_AGGREGATIONS: readonly ["cost", "usage", "count"];
|
|
24599
|
+
type VantageCostAggregation = (typeof VANTAGE_COST_AGGREGATIONS)[number];
|
|
24600
|
+
/** Chart types supported by Vantage cost reports. */
|
|
24601
|
+
declare const VANTAGE_CHART_TYPES: readonly ["area", "line", "pie", "bar", "multi_bar"];
|
|
24602
|
+
type VantageChartType = (typeof VANTAGE_CHART_TYPES)[number];
|
|
24603
|
+
/** Network flow directions supported by Vantage. */
|
|
24604
|
+
declare const VANTAGE_NETWORK_FLOW_DIRECTIONS: readonly ["all", "ingress", "egress"];
|
|
24605
|
+
type VantageNetworkFlowDirection = (typeof VANTAGE_NETWORK_FLOW_DIRECTIONS)[number];
|
|
24606
|
+
/** Network flow weighting dimensions supported by Vantage. */
|
|
24607
|
+
declare const VANTAGE_NETWORK_FLOW_WEIGHTS: readonly ["costs", "bytes"];
|
|
24608
|
+
type VantageNetworkFlowWeight = (typeof VANTAGE_NETWORK_FLOW_WEIGHTS)[number];
|
|
24609
|
+
|
|
24610
|
+
export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnnotationRequest, type CreateAnnotationResponse, 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 DeleteAnnotationResponse, 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 GetAnnotationsRequest, type GetAnnotationsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricLabelsRequest, type GetBusinessMetricLabelsResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsRequest, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowLogsRequest, type GetNetworkFlowLogsResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportForecastResponse, type GetReportForecastsRequest, type GetReportForecastsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetScenarioModelResponse, type GetScenarioModelsRequest, type GetScenarioModelsResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigValueResponse, type GetVirtualTagConfigsRequest, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnnotationRequest, type UpdateAnnotationResponse, 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, VANTAGE_CHART_TYPES, VANTAGE_COST_AGGREGATIONS, VANTAGE_DATE_BINS, VANTAGE_DATE_INTERVALS, VANTAGE_NETWORK_FLOW_DIRECTIONS, VANTAGE_NETWORK_FLOW_WEIGHTS, VANTAGE_PROVIDERS, VantageAPIError, type VantageChartType, type VantageCostAggregation, type VantageDateBin, type VantageDateInterval, type VantageNetworkFlowDirection, type VantageNetworkFlowWeight, type VantageProvider, pathEncode };
|