@vantage-sh/vantage-client 2.17.0 → 2.19.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 +111 -21
- package/dist/index.d.ts +111 -21
- 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
|
|
@@ -4673,11 +4685,11 @@ interface components {
|
|
|
4673
4685
|
filter?: string;
|
|
4674
4686
|
/** @description The token of the Workspace to query costs from. Ignored if 'cost_report_token' is set. Required if the API token is associated with multiple Workspaces. */
|
|
4675
4687
|
workspace_token?: string;
|
|
4676
|
-
/** @description First date you would like to filter costs from. ISO 8601 formatted. */
|
|
4688
|
+
/** @description First date you would like to filter costs from. ISO 8601 formatted. When omitted with cost_report_token, the report's saved start date is used. */
|
|
4677
4689
|
start_date?: string;
|
|
4678
|
-
/** @description Last date you would like to filter costs to. ISO 8601 formatted. */
|
|
4690
|
+
/** @description Last date you would like to filter costs to. ISO 8601 formatted. When omitted with cost_report_token, the report's saved end date is used. */
|
|
4679
4691
|
end_date?: string;
|
|
4680
|
-
/** @description Group the results by specific field(s).
|
|
4692
|
+
/** @description Group the results by specific field(s). When omitted with cost_report_token, the report's saved groupings are used; otherwise defaults to provider, service, account_id. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, usage_unit, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
|
|
4681
4693
|
groupings?: string[];
|
|
4682
4694
|
/**
|
|
4683
4695
|
* @description The date bin of the costs. Defaults to the report's default or day.
|
|
@@ -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
|
|
@@ -4861,6 +4873,21 @@ interface components {
|
|
|
4861
4873
|
* @example DataTransfer-Regional-Bytes
|
|
4862
4874
|
*/
|
|
4863
4875
|
cost_subcategory?: string | null;
|
|
4876
|
+
/**
|
|
4877
|
+
* @description The charge type for the cost.
|
|
4878
|
+
* @example Usage
|
|
4879
|
+
*/
|
|
4880
|
+
charge_type?: string | null;
|
|
4881
|
+
/**
|
|
4882
|
+
* @description Whether the cost has tags.
|
|
4883
|
+
* @example true
|
|
4884
|
+
*/
|
|
4885
|
+
tagged?: boolean | null;
|
|
4886
|
+
/**
|
|
4887
|
+
* @description The unit used to measure usage.
|
|
4888
|
+
* @example GB
|
|
4889
|
+
*/
|
|
4890
|
+
usage_unit?: string | null;
|
|
4864
4891
|
/**
|
|
4865
4892
|
* @description The segment name for segment report costs.
|
|
4866
4893
|
* @example Engineering
|
|
@@ -5001,7 +5028,7 @@ interface components {
|
|
|
5001
5028
|
start_date?: string;
|
|
5002
5029
|
/** @description The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter. */
|
|
5003
5030
|
end_date?: string;
|
|
5004
|
-
/** @description The token of the Workspace the Dashboard belongs to. Required if the API token is associated with multiple Workspaces. */
|
|
5031
|
+
/** @description The token of the Workspace the Dashboard belongs to. Required when updating widgets if the API token is associated with multiple Workspaces. */
|
|
5005
5032
|
workspace_token?: string;
|
|
5006
5033
|
};
|
|
5007
5034
|
/** @description DataExport model */
|
|
@@ -6354,8 +6381,10 @@ interface components {
|
|
|
6354
6381
|
* @example rprt_abcd1234
|
|
6355
6382
|
*/
|
|
6356
6383
|
cost_report_token: string;
|
|
6357
|
-
/** @description The
|
|
6384
|
+
/** @description The tokens of organization users that receive the notification. Freeform verified-domain emails are not included; see recipient_emails. */
|
|
6358
6385
|
user_tokens: string[];
|
|
6386
|
+
/** @description The email addresses that receive the notification, including organization users and verified-domain addresses. */
|
|
6387
|
+
recipient_emails: string[];
|
|
6359
6388
|
/** @description The Slack or Microsoft Teams channels that receive the notification. */
|
|
6360
6389
|
recipient_channels: string[];
|
|
6361
6390
|
/**
|
|
@@ -6381,6 +6410,8 @@ interface components {
|
|
|
6381
6410
|
workspace_token?: string;
|
|
6382
6411
|
/** @description The Users that receive the notification. */
|
|
6383
6412
|
user_tokens?: string[];
|
|
6413
|
+
/** @description Email addresses that receive the notification. Must be organization users or addresses on a verified domain. */
|
|
6414
|
+
recipient_emails?: string[];
|
|
6384
6415
|
/** @description The Slack or Microsoft Teams channels that receive the notification. */
|
|
6385
6416
|
recipient_channels?: string[];
|
|
6386
6417
|
/** @description The frequency the ReportNotification is sent. Possible values: daily, weekly, monthly. */
|
|
@@ -6396,6 +6427,8 @@ interface components {
|
|
|
6396
6427
|
cost_report_token?: string;
|
|
6397
6428
|
/** @description The Users that receive the notification. */
|
|
6398
6429
|
user_tokens?: string[];
|
|
6430
|
+
/** @description Email addresses that receive the notification. Must be organization users or addresses on a verified domain. */
|
|
6431
|
+
recipient_emails?: string[];
|
|
6399
6432
|
/** @description The Slack or Microsoft Teams channels that receive the notification. */
|
|
6400
6433
|
recipient_channels?: string[];
|
|
6401
6434
|
/** @description The frequency the ReportNotification is sent. Possible values: daily, weekly, monthly. */
|
|
@@ -7056,6 +7089,10 @@ interface components {
|
|
|
7056
7089
|
* @example Cost Center
|
|
7057
7090
|
*/
|
|
7058
7091
|
key: string;
|
|
7092
|
+
/** @description Whether the VirtualTagConfig key is hidden from the Vantage UI. */
|
|
7093
|
+
hidden: boolean;
|
|
7094
|
+
/** @description Whether the VirtualTagConfig key is marked as preferred in the Vantage UI. */
|
|
7095
|
+
preferred: boolean;
|
|
7059
7096
|
/** @description Whether the VirtualTagConfig can override a provider-supplied tag on a matching Cost. */
|
|
7060
7097
|
overridable: boolean;
|
|
7061
7098
|
/**
|
|
@@ -10741,7 +10778,7 @@ interface operations {
|
|
|
10741
10778
|
/** @description The token of the Workspace to list CostProviderAccounts for. Required if the API token is associated with multiple Workspaces. */
|
|
10742
10779
|
workspace_token?: string;
|
|
10743
10780
|
/** @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";
|
|
10781
|
+
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
10782
|
/** @description Filter by provider account identifier. */
|
|
10746
10783
|
account_id?: string;
|
|
10747
10784
|
/** @description Filter by account name (exact match). */
|
|
@@ -11169,7 +11206,7 @@ interface operations {
|
|
|
11169
11206
|
/** @description Last date you would like to filter forecasted costs from. ISO 8601 formatted. */
|
|
11170
11207
|
end_date?: string;
|
|
11171
11208
|
/** @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";
|
|
11209
|
+
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
11210
|
/** @description Limit the forecasted costs to a specific service. 'all' is accepted to filter to overall forecast. e.g. 'Amazon ElastiCache'. */
|
|
11174
11211
|
service?: string;
|
|
11175
11212
|
/** @description The page of results to return. */
|
|
@@ -11321,11 +11358,11 @@ interface operations {
|
|
|
11321
11358
|
filter?: string;
|
|
11322
11359
|
/** @description The token of the Workspace to query costs from. Ignored if 'cost_report_token' is set. Required if the API token is associated with multiple Workspaces. */
|
|
11323
11360
|
workspace_token?: string;
|
|
11324
|
-
/** @description First date you would like to filter costs from. ISO 8601 formatted. */
|
|
11361
|
+
/** @description First date you would like to filter costs from. ISO 8601 formatted. When omitted with cost_report_token, the report's saved start date is used. */
|
|
11325
11362
|
start_date?: string;
|
|
11326
|
-
/** @description Last date you would like to filter costs to. ISO 8601 formatted. */
|
|
11363
|
+
/** @description Last date you would like to filter costs to. ISO 8601 formatted. When omitted with cost_report_token, the report's saved end date is used. */
|
|
11327
11364
|
end_date?: string;
|
|
11328
|
-
/** @description Group the results by specific field(s).
|
|
11365
|
+
/** @description Group the results by specific field(s). When omitted with cost_report_token, the report's saved groupings are used; otherwise defaults to provider, service, account_id. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, usage_unit, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
|
|
11329
11366
|
groupings?: string[];
|
|
11330
11367
|
/** @description Whether to order costs by date in an ascending or descending manner. */
|
|
11331
11368
|
order?: "asc" | "desc";
|
|
@@ -12506,7 +12543,7 @@ interface operations {
|
|
|
12506
12543
|
parameters: {
|
|
12507
12544
|
query?: {
|
|
12508
12545
|
/** @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";
|
|
12546
|
+
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
12547
|
/** @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
12548
|
account_identifier?: string;
|
|
12512
12549
|
/** @description The page of results to return. */
|
|
@@ -17039,7 +17076,7 @@ interface operations {
|
|
|
17039
17076
|
parameters: {
|
|
17040
17077
|
query?: {
|
|
17041
17078
|
/** @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")[];
|
|
17079
|
+
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
17080
|
/** @description A search query to filter Tags by tag key. */
|
|
17044
17081
|
search_query?: string;
|
|
17045
17082
|
/** @description The direction in which you would like to sort the data by. Defaults to 'asc'. */
|
|
@@ -17177,7 +17214,7 @@ interface operations {
|
|
|
17177
17214
|
parameters: {
|
|
17178
17215
|
query?: {
|
|
17179
17216
|
/** @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")[];
|
|
17217
|
+
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
17218
|
/** @description The direction in which to sort the TagValues. Defaults to 'asc'. */
|
|
17182
17219
|
sort_direction?: "asc" | "desc";
|
|
17183
17220
|
/** @description A search query to filter TagValues by the value name. */
|
|
@@ -20804,6 +20841,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20804
20841
|
updated_at: string;
|
|
20805
20842
|
threshold: number;
|
|
20806
20843
|
user_tokens: string[];
|
|
20844
|
+
recipient_emails: string[];
|
|
20807
20845
|
recipient_channels: string[];
|
|
20808
20846
|
}, null] : {
|
|
20809
20847
|
token: string;
|
|
@@ -20812,6 +20850,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20812
20850
|
updated_at: string;
|
|
20813
20851
|
threshold: number;
|
|
20814
20852
|
user_tokens: string[];
|
|
20853
|
+
recipient_emails: string[];
|
|
20815
20854
|
recipient_channels: string[];
|
|
20816
20855
|
}>;
|
|
20817
20856
|
/**
|
|
@@ -20824,6 +20863,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20824
20863
|
updated_at: string;
|
|
20825
20864
|
threshold: number;
|
|
20826
20865
|
user_tokens: string[];
|
|
20866
|
+
recipient_emails: string[];
|
|
20827
20867
|
recipient_channels: string[];
|
|
20828
20868
|
}, null] : {
|
|
20829
20869
|
token: string;
|
|
@@ -20832,6 +20872,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20832
20872
|
updated_at: string;
|
|
20833
20873
|
threshold: number;
|
|
20834
20874
|
user_tokens: string[];
|
|
20875
|
+
recipient_emails: string[];
|
|
20835
20876
|
recipient_channels: string[];
|
|
20836
20877
|
}>;
|
|
20837
20878
|
/**
|
|
@@ -20844,6 +20885,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20844
20885
|
updated_at: string;
|
|
20845
20886
|
threshold: number;
|
|
20846
20887
|
user_tokens: string[];
|
|
20888
|
+
recipient_emails: string[];
|
|
20847
20889
|
recipient_channels: string[];
|
|
20848
20890
|
}, null] : {
|
|
20849
20891
|
token: string;
|
|
@@ -20852,6 +20894,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20852
20894
|
updated_at: string;
|
|
20853
20895
|
threshold: number;
|
|
20854
20896
|
user_tokens: string[];
|
|
20897
|
+
recipient_emails: string[];
|
|
20855
20898
|
recipient_channels: string[];
|
|
20856
20899
|
}>;
|
|
20857
20900
|
/**
|
|
@@ -21148,6 +21191,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21148
21191
|
workspace_token: string | null;
|
|
21149
21192
|
user_token?: string | null;
|
|
21150
21193
|
user_tokens: string[];
|
|
21194
|
+
recipient_emails: string[];
|
|
21151
21195
|
duration_in_days: number | null;
|
|
21152
21196
|
threshold: number;
|
|
21153
21197
|
period_to_track: string | null;
|
|
@@ -21160,6 +21204,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21160
21204
|
workspace_token: string | null;
|
|
21161
21205
|
user_token?: string | null;
|
|
21162
21206
|
user_tokens: string[];
|
|
21207
|
+
recipient_emails: string[];
|
|
21163
21208
|
duration_in_days: number | null;
|
|
21164
21209
|
threshold: number;
|
|
21165
21210
|
period_to_track: string | null;
|
|
@@ -21176,6 +21221,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21176
21221
|
workspace_token: string | null;
|
|
21177
21222
|
user_token?: string | null;
|
|
21178
21223
|
user_tokens: string[];
|
|
21224
|
+
recipient_emails: string[];
|
|
21179
21225
|
duration_in_days: number | null;
|
|
21180
21226
|
threshold: number;
|
|
21181
21227
|
period_to_track: string | null;
|
|
@@ -21188,6 +21234,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21188
21234
|
workspace_token: string | null;
|
|
21189
21235
|
user_token?: string | null;
|
|
21190
21236
|
user_tokens: string[];
|
|
21237
|
+
recipient_emails: string[];
|
|
21191
21238
|
duration_in_days: number | null;
|
|
21192
21239
|
threshold: number;
|
|
21193
21240
|
period_to_track: string | null;
|
|
@@ -21204,6 +21251,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21204
21251
|
workspace_token: string | null;
|
|
21205
21252
|
user_token?: string | null;
|
|
21206
21253
|
user_tokens: string[];
|
|
21254
|
+
recipient_emails: string[];
|
|
21207
21255
|
duration_in_days: number | null;
|
|
21208
21256
|
threshold: number;
|
|
21209
21257
|
period_to_track: string | null;
|
|
@@ -21216,6 +21264,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
21216
21264
|
workspace_token: string | null;
|
|
21217
21265
|
user_token?: string | null;
|
|
21218
21266
|
user_tokens: string[];
|
|
21267
|
+
recipient_emails: string[];
|
|
21219
21268
|
duration_in_days: number | null;
|
|
21220
21269
|
threshold: number;
|
|
21221
21270
|
period_to_track: string | null;
|
|
@@ -23458,6 +23507,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23458
23507
|
title: string;
|
|
23459
23508
|
cost_report_token: string;
|
|
23460
23509
|
user_tokens: string[];
|
|
23510
|
+
recipient_emails: string[];
|
|
23461
23511
|
recipient_channels: string[];
|
|
23462
23512
|
frequency: "daily" | "weekly" | "monthly";
|
|
23463
23513
|
change: "percentage" | "dollars";
|
|
@@ -23466,6 +23516,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23466
23516
|
title: string;
|
|
23467
23517
|
cost_report_token: string;
|
|
23468
23518
|
user_tokens: string[];
|
|
23519
|
+
recipient_emails: string[];
|
|
23469
23520
|
recipient_channels: string[];
|
|
23470
23521
|
frequency: "daily" | "weekly" | "monthly";
|
|
23471
23522
|
change: "percentage" | "dollars";
|
|
@@ -23478,6 +23529,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23478
23529
|
title: string;
|
|
23479
23530
|
cost_report_token: string;
|
|
23480
23531
|
user_tokens: string[];
|
|
23532
|
+
recipient_emails: string[];
|
|
23481
23533
|
recipient_channels: string[];
|
|
23482
23534
|
frequency: "daily" | "weekly" | "monthly";
|
|
23483
23535
|
change: "percentage" | "dollars";
|
|
@@ -23486,6 +23538,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23486
23538
|
title: string;
|
|
23487
23539
|
cost_report_token: string;
|
|
23488
23540
|
user_tokens: string[];
|
|
23541
|
+
recipient_emails: string[];
|
|
23489
23542
|
recipient_channels: string[];
|
|
23490
23543
|
frequency: "daily" | "weekly" | "monthly";
|
|
23491
23544
|
change: "percentage" | "dollars";
|
|
@@ -23498,6 +23551,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23498
23551
|
title: string;
|
|
23499
23552
|
cost_report_token: string;
|
|
23500
23553
|
user_tokens: string[];
|
|
23554
|
+
recipient_emails: string[];
|
|
23501
23555
|
recipient_channels: string[];
|
|
23502
23556
|
frequency: "daily" | "weekly" | "monthly";
|
|
23503
23557
|
change: "percentage" | "dollars";
|
|
@@ -23506,6 +23560,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23506
23560
|
title: string;
|
|
23507
23561
|
cost_report_token: string;
|
|
23508
23562
|
user_tokens: string[];
|
|
23563
|
+
recipient_emails: string[];
|
|
23509
23564
|
recipient_channels: string[];
|
|
23510
23565
|
frequency: "daily" | "weekly" | "monthly";
|
|
23511
23566
|
change: "percentage" | "dollars";
|
|
@@ -24173,6 +24228,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24173
24228
|
token: string;
|
|
24174
24229
|
created_by_token: string | null;
|
|
24175
24230
|
key: string;
|
|
24231
|
+
hidden: boolean;
|
|
24232
|
+
preferred: boolean;
|
|
24176
24233
|
overridable: boolean;
|
|
24177
24234
|
backfill_until: string;
|
|
24178
24235
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24181,6 +24238,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24181
24238
|
token: string;
|
|
24182
24239
|
created_by_token: string | null;
|
|
24183
24240
|
key: string;
|
|
24241
|
+
hidden: boolean;
|
|
24242
|
+
preferred: boolean;
|
|
24184
24243
|
overridable: boolean;
|
|
24185
24244
|
backfill_until: string;
|
|
24186
24245
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24193,6 +24252,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24193
24252
|
token: string;
|
|
24194
24253
|
created_by_token: string | null;
|
|
24195
24254
|
key: string;
|
|
24255
|
+
hidden: boolean;
|
|
24256
|
+
preferred: boolean;
|
|
24196
24257
|
overridable: boolean;
|
|
24197
24258
|
backfill_until: string;
|
|
24198
24259
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24201,6 +24262,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24201
24262
|
token: string;
|
|
24202
24263
|
created_by_token: string | null;
|
|
24203
24264
|
key: string;
|
|
24265
|
+
hidden: boolean;
|
|
24266
|
+
preferred: boolean;
|
|
24204
24267
|
overridable: boolean;
|
|
24205
24268
|
backfill_until: string;
|
|
24206
24269
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24213,6 +24276,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24213
24276
|
token: string;
|
|
24214
24277
|
created_by_token: string | null;
|
|
24215
24278
|
key: string;
|
|
24279
|
+
hidden: boolean;
|
|
24280
|
+
preferred: boolean;
|
|
24216
24281
|
overridable: boolean;
|
|
24217
24282
|
backfill_until: string;
|
|
24218
24283
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24224,6 +24289,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
24224
24289
|
token: string;
|
|
24225
24290
|
created_by_token: string | null;
|
|
24226
24291
|
key: string;
|
|
24292
|
+
hidden: boolean;
|
|
24293
|
+
preferred: boolean;
|
|
24227
24294
|
overridable: boolean;
|
|
24228
24295
|
backfill_until: string;
|
|
24229
24296
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24532,4 +24599,27 @@ declare class BaseClient<NeverThrow extends boolean> {
|
|
|
24532
24599
|
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
24600
|
}
|
|
24534
24601
|
|
|
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 };
|
|
24602
|
+
/** Provider identifiers supported by the Vantage API. */
|
|
24603
|
+
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"];
|
|
24604
|
+
type VantageProvider = (typeof VANTAGE_PROVIDERS)[number];
|
|
24605
|
+
|
|
24606
|
+
/** Date interval values supported by Vantage reports. */
|
|
24607
|
+
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"];
|
|
24608
|
+
type VantageDateInterval = (typeof VANTAGE_DATE_INTERVALS)[number];
|
|
24609
|
+
/** Date bin values supported by Vantage cost reports. */
|
|
24610
|
+
declare const VANTAGE_DATE_BINS: readonly ["cumulative", "day", "week", "month", "quarter", "hour"];
|
|
24611
|
+
type VantageDateBin = (typeof VANTAGE_DATE_BINS)[number];
|
|
24612
|
+
/** Cost aggregation dimensions supported by the Vantage costs query. */
|
|
24613
|
+
declare const VANTAGE_COST_AGGREGATIONS: readonly ["cost", "usage", "count"];
|
|
24614
|
+
type VantageCostAggregation = (typeof VANTAGE_COST_AGGREGATIONS)[number];
|
|
24615
|
+
/** Chart types supported by Vantage cost reports. */
|
|
24616
|
+
declare const VANTAGE_CHART_TYPES: readonly ["area", "line", "pie", "bar", "multi_bar"];
|
|
24617
|
+
type VantageChartType = (typeof VANTAGE_CHART_TYPES)[number];
|
|
24618
|
+
/** Network flow directions supported by Vantage. */
|
|
24619
|
+
declare const VANTAGE_NETWORK_FLOW_DIRECTIONS: readonly ["all", "ingress", "egress"];
|
|
24620
|
+
type VantageNetworkFlowDirection = (typeof VANTAGE_NETWORK_FLOW_DIRECTIONS)[number];
|
|
24621
|
+
/** Network flow weighting dimensions supported by Vantage. */
|
|
24622
|
+
declare const VANTAGE_NETWORK_FLOW_WEIGHTS: readonly ["costs", "bytes"];
|
|
24623
|
+
type VantageNetworkFlowWeight = (typeof VANTAGE_NETWORK_FLOW_WEIGHTS)[number];
|
|
24624
|
+
|
|
24625
|
+
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 };
|