@vantage-sh/vantage-client 2.16.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 +402 -22
- package/dist/index.d.ts +402 -22
- 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
|
@@ -64,13 +64,41 @@ interface paths {
|
|
|
64
64
|
*/
|
|
65
65
|
get: operations["getAnnotations"];
|
|
66
66
|
put?: never;
|
|
67
|
-
|
|
67
|
+
/**
|
|
68
|
+
* Create an annotation
|
|
69
|
+
* @description Create an Annotation.
|
|
70
|
+
*/
|
|
71
|
+
post: operations["createAnnotation"];
|
|
68
72
|
delete?: never;
|
|
69
73
|
options?: never;
|
|
70
74
|
head?: never;
|
|
71
75
|
patch?: never;
|
|
72
76
|
trace?: never;
|
|
73
77
|
};
|
|
78
|
+
"/annotations/{annotation_token}": {
|
|
79
|
+
parameters: {
|
|
80
|
+
query?: never;
|
|
81
|
+
header?: never;
|
|
82
|
+
path?: never;
|
|
83
|
+
cookie?: never;
|
|
84
|
+
};
|
|
85
|
+
get?: never;
|
|
86
|
+
/**
|
|
87
|
+
* Update an annotation
|
|
88
|
+
* @description Update an Annotation.
|
|
89
|
+
*/
|
|
90
|
+
put: operations["updateAnnotation"];
|
|
91
|
+
post?: never;
|
|
92
|
+
/**
|
|
93
|
+
* Delete an annotation
|
|
94
|
+
* @description Delete an Annotation.
|
|
95
|
+
*/
|
|
96
|
+
delete: operations["deleteAnnotation"];
|
|
97
|
+
options?: never;
|
|
98
|
+
head?: never;
|
|
99
|
+
patch?: never;
|
|
100
|
+
trace?: never;
|
|
101
|
+
};
|
|
74
102
|
"/anomaly_alerts": {
|
|
75
103
|
parameters: {
|
|
76
104
|
query?: never;
|
|
@@ -2878,8 +2906,10 @@ interface components {
|
|
|
2878
2906
|
* @description The threshold amount that must be met for the notification to fire.
|
|
2879
2907
|
*/
|
|
2880
2908
|
threshold: number;
|
|
2881
|
-
/** @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. */
|
|
2882
2910
|
user_tokens: string[];
|
|
2911
|
+
/** @description The email addresses that receive the notification, including organization users and verified-domain addresses. */
|
|
2912
|
+
recipient_emails: string[];
|
|
2883
2913
|
/** @description The channels that the notification is sent to. */
|
|
2884
2914
|
recipient_channels: string[];
|
|
2885
2915
|
};
|
|
@@ -2894,6 +2924,8 @@ interface components {
|
|
|
2894
2924
|
threshold?: number;
|
|
2895
2925
|
/** @description The tokens of the Users that receive the notification. */
|
|
2896
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[];
|
|
2897
2929
|
/** @description The Slack/MS Teams channels that receive the notification. */
|
|
2898
2930
|
recipient_channels?: string[];
|
|
2899
2931
|
};
|
|
@@ -2906,6 +2938,8 @@ interface components {
|
|
|
2906
2938
|
threshold?: number;
|
|
2907
2939
|
/** @description The tokens of the users that receive the notification. */
|
|
2908
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[];
|
|
2909
2943
|
/** @description The Slack/MS Teams channels that receive the notification. */
|
|
2910
2944
|
recipient_channels?: string[];
|
|
2911
2945
|
};
|
|
@@ -2914,9 +2948,12 @@ interface components {
|
|
|
2914
2948
|
links?: components["schemas"]["Links"];
|
|
2915
2949
|
annotations: components["schemas"]["Annotation"][];
|
|
2916
2950
|
};
|
|
2951
|
+
/** @description Annotation model */
|
|
2917
2952
|
Annotation: {
|
|
2918
2953
|
/** @description The unique token identifying the Annotation. */
|
|
2919
2954
|
token: string;
|
|
2955
|
+
/** @description The title of the Annotation. */
|
|
2956
|
+
title: string;
|
|
2920
2957
|
/** @description The tokens of the Reports associated with the Annotation. */
|
|
2921
2958
|
report_tokens: string[];
|
|
2922
2959
|
/**
|
|
@@ -2927,6 +2964,34 @@ interface components {
|
|
|
2927
2964
|
/** @description The message of the Annotation. */
|
|
2928
2965
|
message: string | null;
|
|
2929
2966
|
};
|
|
2967
|
+
/** @description Create an Annotation. */
|
|
2968
|
+
createAnnotation: {
|
|
2969
|
+
/** @description The tokens of the Reports to annotate. */
|
|
2970
|
+
report_tokens: string[];
|
|
2971
|
+
/** @description The title of the Annotation. Defaults to a title generated from the first Report and date. */
|
|
2972
|
+
title?: string;
|
|
2973
|
+
/**
|
|
2974
|
+
* Format: date
|
|
2975
|
+
* @description The date of the Annotation. ISO 8601 formatted.
|
|
2976
|
+
*/
|
|
2977
|
+
date: string;
|
|
2978
|
+
/** @description The message of the Annotation. */
|
|
2979
|
+
message: string;
|
|
2980
|
+
};
|
|
2981
|
+
/** @description Update an Annotation. */
|
|
2982
|
+
updateAnnotation: {
|
|
2983
|
+
/** @description The title of the Annotation. */
|
|
2984
|
+
title?: string;
|
|
2985
|
+
/**
|
|
2986
|
+
* Format: date
|
|
2987
|
+
* @description The date of the Annotation. ISO 8601 formatted.
|
|
2988
|
+
*/
|
|
2989
|
+
date?: string | null;
|
|
2990
|
+
/** @description The message of the Annotation. */
|
|
2991
|
+
message?: string;
|
|
2992
|
+
/** @description The tokens of the Reports to associate with the Annotation. */
|
|
2993
|
+
report_tokens?: string[];
|
|
2994
|
+
};
|
|
2930
2995
|
/** @description AuditLogs model */
|
|
2931
2996
|
AuditLogs: {
|
|
2932
2997
|
links?: components["schemas"]["Links"];
|
|
@@ -3428,8 +3493,10 @@ interface components {
|
|
|
3428
3493
|
workspace_token: string | null;
|
|
3429
3494
|
/** @description The token for the User who created this BudgetAlert. */
|
|
3430
3495
|
user_token?: string | null;
|
|
3431
|
-
/** @description The
|
|
3496
|
+
/** @description The tokens of organization users that receive the alert. Freeform verified-domain emails are not included; see recipient_emails. */
|
|
3432
3497
|
user_tokens: string[];
|
|
3498
|
+
/** @description The email addresses that receive the alert, including organization users and verified-domain addresses. */
|
|
3499
|
+
recipient_emails: string[];
|
|
3433
3500
|
/**
|
|
3434
3501
|
* Format: int32
|
|
3435
3502
|
* @description The number of days from the start or end of the month to trigger the alert if the threshold is reached.
|
|
@@ -3465,6 +3532,8 @@ interface components {
|
|
|
3465
3532
|
threshold: number;
|
|
3466
3533
|
/** @description The tokens of the users that receive the alert. */
|
|
3467
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[];
|
|
3468
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. */
|
|
3469
3538
|
duration_in_days: string;
|
|
3470
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. */
|
|
@@ -3483,6 +3552,8 @@ interface components {
|
|
|
3483
3552
|
threshold?: number;
|
|
3484
3553
|
/** @description The tokens of the users that receive the alert. */
|
|
3485
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[];
|
|
3486
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. */
|
|
3487
3558
|
duration_in_days?: string;
|
|
3488
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. */
|
|
@@ -4085,7 +4156,7 @@ interface components {
|
|
|
4085
4156
|
workspace_token: string;
|
|
4086
4157
|
/** @description The tokens of the reports to alert on. */
|
|
4087
4158
|
report_tokens: string[];
|
|
4088
|
-
/** @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. */
|
|
4089
4160
|
email_recipients?: string[];
|
|
4090
4161
|
/** @description The Slack channels that will receive the alert. */
|
|
4091
4162
|
slack_channels?: string[];
|
|
@@ -4101,7 +4172,7 @@ interface components {
|
|
|
4101
4172
|
updateCostAlert: {
|
|
4102
4173
|
/** @description The title of the Cost Alert. */
|
|
4103
4174
|
title?: string;
|
|
4104
|
-
/** @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. */
|
|
4105
4176
|
email_recipients?: string[];
|
|
4106
4177
|
/** @description The period of time used to compare costs. Options are 'day', 'week', 'month', 'quarter'. */
|
|
4107
4178
|
interval?: string;
|
|
@@ -4348,7 +4419,7 @@ interface components {
|
|
|
4348
4419
|
* @example aws
|
|
4349
4420
|
* @enum {string}
|
|
4350
4421
|
*/
|
|
4351
|
-
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";
|
|
4352
4423
|
/**
|
|
4353
4424
|
* @description The service for the forecasted cost. Will be 'all' for all combined services
|
|
4354
4425
|
* @example Amazon Elastic Compute Cloud - Compute
|
|
@@ -4753,7 +4824,7 @@ interface components {
|
|
|
4753
4824
|
* @example aws
|
|
4754
4825
|
* @enum {string|null}
|
|
4755
4826
|
*/
|
|
4756
|
-
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;
|
|
4757
4828
|
/**
|
|
4758
4829
|
* @description The cost provider's billing account id that incurred the cost.
|
|
4759
4830
|
* @example 9109237192
|
|
@@ -4942,7 +5013,7 @@ interface components {
|
|
|
4942
5013
|
start_date?: string;
|
|
4943
5014
|
/** @description The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter. */
|
|
4944
5015
|
end_date?: string;
|
|
4945
|
-
/** @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. */
|
|
4946
5017
|
workspace_token?: string;
|
|
4947
5018
|
};
|
|
4948
5019
|
/** @description DataExport model */
|
|
@@ -6295,8 +6366,10 @@ interface components {
|
|
|
6295
6366
|
* @example rprt_abcd1234
|
|
6296
6367
|
*/
|
|
6297
6368
|
cost_report_token: string;
|
|
6298
|
-
/** @description The
|
|
6369
|
+
/** @description The tokens of organization users that receive the notification. Freeform verified-domain emails are not included; see recipient_emails. */
|
|
6299
6370
|
user_tokens: string[];
|
|
6371
|
+
/** @description The email addresses that receive the notification, including organization users and verified-domain addresses. */
|
|
6372
|
+
recipient_emails: string[];
|
|
6300
6373
|
/** @description The Slack or Microsoft Teams channels that receive the notification. */
|
|
6301
6374
|
recipient_channels: string[];
|
|
6302
6375
|
/**
|
|
@@ -6322,6 +6395,8 @@ interface components {
|
|
|
6322
6395
|
workspace_token?: string;
|
|
6323
6396
|
/** @description The Users that receive the notification. */
|
|
6324
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[];
|
|
6325
6400
|
/** @description The Slack or Microsoft Teams channels that receive the notification. */
|
|
6326
6401
|
recipient_channels?: string[];
|
|
6327
6402
|
/** @description The frequency the ReportNotification is sent. Possible values: daily, weekly, monthly. */
|
|
@@ -6337,6 +6412,8 @@ interface components {
|
|
|
6337
6412
|
cost_report_token?: string;
|
|
6338
6413
|
/** @description The Users that receive the notification. */
|
|
6339
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[];
|
|
6340
6417
|
/** @description The Slack or Microsoft Teams channels that receive the notification. */
|
|
6341
6418
|
recipient_channels?: string[];
|
|
6342
6419
|
/** @description The frequency the ReportNotification is sent. Possible values: daily, weekly, monthly. */
|
|
@@ -6763,9 +6840,9 @@ interface components {
|
|
|
6763
6840
|
tag_key?: string;
|
|
6764
6841
|
tag_keys?: string[];
|
|
6765
6842
|
/** @description Whether the Tag is hidden from the Vantage UI. */
|
|
6766
|
-
hidden?: boolean;
|
|
6843
|
+
hidden?: boolean | null;
|
|
6767
6844
|
/** @description Whether the Tag is marked as preferred in the Vantage UI. */
|
|
6768
|
-
preferred?: boolean;
|
|
6845
|
+
preferred?: boolean | null;
|
|
6769
6846
|
};
|
|
6770
6847
|
/** @description Teams model */
|
|
6771
6848
|
Teams: {
|
|
@@ -6997,6 +7074,10 @@ interface components {
|
|
|
6997
7074
|
* @example Cost Center
|
|
6998
7075
|
*/
|
|
6999
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;
|
|
7000
7081
|
/** @description Whether the VirtualTagConfig can override a provider-supplied tag on a matching Cost. */
|
|
7001
7082
|
overridable: boolean;
|
|
7002
7083
|
/**
|
|
@@ -7746,18 +7827,20 @@ interface operations {
|
|
|
7746
7827
|
* },
|
|
7747
7828
|
* "annotations": [
|
|
7748
7829
|
* {
|
|
7749
|
-
* "token": "
|
|
7830
|
+
* "token": "issue_946526bd88c296c6",
|
|
7831
|
+
* "title": "Down-sized",
|
|
7750
7832
|
* "report_tokens": [
|
|
7751
|
-
* "
|
|
7752
|
-
* "
|
|
7833
|
+
* "rprt_b03547330d3808a0",
|
|
7834
|
+
* "rprt_c4c97225bf1fa392"
|
|
7753
7835
|
* ],
|
|
7754
7836
|
* "date": "2026-08-12",
|
|
7755
7837
|
* "message": "Infrastructure migration"
|
|
7756
7838
|
* },
|
|
7757
7839
|
* {
|
|
7758
|
-
* "token": "
|
|
7840
|
+
* "token": "issue_56063755b6a82997",
|
|
7841
|
+
* "title": "Persistent",
|
|
7759
7842
|
* "report_tokens": [
|
|
7760
|
-
* "
|
|
7843
|
+
* "rprt_5649e387dc43ca2d"
|
|
7761
7844
|
* ],
|
|
7762
7845
|
* "date": "2026-08-10",
|
|
7763
7846
|
* "message": "Pricing update"
|
|
@@ -7770,6 +7853,194 @@ interface operations {
|
|
|
7770
7853
|
};
|
|
7771
7854
|
};
|
|
7772
7855
|
};
|
|
7856
|
+
createAnnotation: {
|
|
7857
|
+
parameters: {
|
|
7858
|
+
query?: never;
|
|
7859
|
+
header?: never;
|
|
7860
|
+
path?: never;
|
|
7861
|
+
cookie?: never;
|
|
7862
|
+
};
|
|
7863
|
+
requestBody: {
|
|
7864
|
+
content: {
|
|
7865
|
+
"application/json": components["schemas"]["createAnnotation"];
|
|
7866
|
+
};
|
|
7867
|
+
};
|
|
7868
|
+
responses: {
|
|
7869
|
+
/** @description Annotation created successfully. */
|
|
7870
|
+
201: {
|
|
7871
|
+
headers: {
|
|
7872
|
+
[name: string]: unknown;
|
|
7873
|
+
};
|
|
7874
|
+
content: {
|
|
7875
|
+
/**
|
|
7876
|
+
* @example {
|
|
7877
|
+
* "token": "issue_4b05d8f17aea0580",
|
|
7878
|
+
* "title": "Infrastructure migration completed",
|
|
7879
|
+
* "report_tokens": [
|
|
7880
|
+
* "rprt_5b72ee3954cf82e9",
|
|
7881
|
+
* "rprt_3ec37e01a019b9a6"
|
|
7882
|
+
* ],
|
|
7883
|
+
* "date": "2026-08-12",
|
|
7884
|
+
* "message": "Infrastructure migration completed"
|
|
7885
|
+
* }
|
|
7886
|
+
*/
|
|
7887
|
+
"application/json": components["schemas"]["Annotation"];
|
|
7888
|
+
};
|
|
7889
|
+
};
|
|
7890
|
+
/** @description BadRequest */
|
|
7891
|
+
400: {
|
|
7892
|
+
headers: {
|
|
7893
|
+
[name: string]: unknown;
|
|
7894
|
+
};
|
|
7895
|
+
content: {
|
|
7896
|
+
"application/json": components["schemas"]["Errors"];
|
|
7897
|
+
};
|
|
7898
|
+
};
|
|
7899
|
+
/** @description Forbidden */
|
|
7900
|
+
403: {
|
|
7901
|
+
headers: {
|
|
7902
|
+
[name: string]: unknown;
|
|
7903
|
+
};
|
|
7904
|
+
content: {
|
|
7905
|
+
"application/json": components["schemas"]["Errors"];
|
|
7906
|
+
};
|
|
7907
|
+
};
|
|
7908
|
+
/** @description NotFound */
|
|
7909
|
+
404: {
|
|
7910
|
+
headers: {
|
|
7911
|
+
[name: string]: unknown;
|
|
7912
|
+
};
|
|
7913
|
+
content: {
|
|
7914
|
+
"application/json": components["schemas"]["Errors"];
|
|
7915
|
+
};
|
|
7916
|
+
};
|
|
7917
|
+
/** @description UnprocessableEntity */
|
|
7918
|
+
422: {
|
|
7919
|
+
headers: {
|
|
7920
|
+
[name: string]: unknown;
|
|
7921
|
+
};
|
|
7922
|
+
content: {
|
|
7923
|
+
"application/json": components["schemas"]["Errors"];
|
|
7924
|
+
};
|
|
7925
|
+
};
|
|
7926
|
+
};
|
|
7927
|
+
};
|
|
7928
|
+
updateAnnotation: {
|
|
7929
|
+
parameters: {
|
|
7930
|
+
query?: never;
|
|
7931
|
+
header?: never;
|
|
7932
|
+
path: {
|
|
7933
|
+
/** @description The token of the Annotation. */
|
|
7934
|
+
annotation_token: string;
|
|
7935
|
+
};
|
|
7936
|
+
cookie?: never;
|
|
7937
|
+
};
|
|
7938
|
+
requestBody: {
|
|
7939
|
+
content: {
|
|
7940
|
+
"application/json": components["schemas"]["updateAnnotation"];
|
|
7941
|
+
};
|
|
7942
|
+
};
|
|
7943
|
+
responses: {
|
|
7944
|
+
/** @description Annotation updated successfully. */
|
|
7945
|
+
200: {
|
|
7946
|
+
headers: {
|
|
7947
|
+
[name: string]: unknown;
|
|
7948
|
+
};
|
|
7949
|
+
content: {
|
|
7950
|
+
/**
|
|
7951
|
+
* @example {
|
|
7952
|
+
* "token": "issue_f05d884fed1221e5",
|
|
7953
|
+
* "title": "Migration rescheduled",
|
|
7954
|
+
* "report_tokens": [
|
|
7955
|
+
* "rprt_7ed0e557ae72559d",
|
|
7956
|
+
* "rprt_3f5eebef4caea173"
|
|
7957
|
+
* ],
|
|
7958
|
+
* "date": "2026-08-14",
|
|
7959
|
+
* "message": "Infrastructure migration rescheduled"
|
|
7960
|
+
* }
|
|
7961
|
+
*/
|
|
7962
|
+
"application/json": components["schemas"]["Annotation"];
|
|
7963
|
+
};
|
|
7964
|
+
};
|
|
7965
|
+
/** @description BadRequest */
|
|
7966
|
+
400: {
|
|
7967
|
+
headers: {
|
|
7968
|
+
[name: string]: unknown;
|
|
7969
|
+
};
|
|
7970
|
+
content: {
|
|
7971
|
+
"application/json": components["schemas"]["Errors"];
|
|
7972
|
+
};
|
|
7973
|
+
};
|
|
7974
|
+
/** @description Forbidden */
|
|
7975
|
+
403: {
|
|
7976
|
+
headers: {
|
|
7977
|
+
[name: string]: unknown;
|
|
7978
|
+
};
|
|
7979
|
+
content: {
|
|
7980
|
+
"application/json": components["schemas"]["Errors"];
|
|
7981
|
+
};
|
|
7982
|
+
};
|
|
7983
|
+
/** @description NotFound */
|
|
7984
|
+
404: {
|
|
7985
|
+
headers: {
|
|
7986
|
+
[name: string]: unknown;
|
|
7987
|
+
};
|
|
7988
|
+
content: {
|
|
7989
|
+
"application/json": components["schemas"]["Errors"];
|
|
7990
|
+
};
|
|
7991
|
+
};
|
|
7992
|
+
/** @description UnprocessableEntity */
|
|
7993
|
+
422: {
|
|
7994
|
+
headers: {
|
|
7995
|
+
[name: string]: unknown;
|
|
7996
|
+
};
|
|
7997
|
+
content: {
|
|
7998
|
+
"application/json": components["schemas"]["Errors"];
|
|
7999
|
+
};
|
|
8000
|
+
};
|
|
8001
|
+
};
|
|
8002
|
+
};
|
|
8003
|
+
deleteAnnotation: {
|
|
8004
|
+
parameters: {
|
|
8005
|
+
query?: never;
|
|
8006
|
+
header?: never;
|
|
8007
|
+
path: {
|
|
8008
|
+
/** @description The token of the Annotation. */
|
|
8009
|
+
annotation_token: string;
|
|
8010
|
+
};
|
|
8011
|
+
cookie?: never;
|
|
8012
|
+
};
|
|
8013
|
+
requestBody?: never;
|
|
8014
|
+
responses: {
|
|
8015
|
+
/** @description Annotation deleted successfully. */
|
|
8016
|
+
204: {
|
|
8017
|
+
headers: {
|
|
8018
|
+
[name: string]: unknown;
|
|
8019
|
+
};
|
|
8020
|
+
content: {
|
|
8021
|
+
"application/json": components["schemas"]["Annotation"];
|
|
8022
|
+
};
|
|
8023
|
+
};
|
|
8024
|
+
/** @description Forbidden */
|
|
8025
|
+
403: {
|
|
8026
|
+
headers: {
|
|
8027
|
+
[name: string]: unknown;
|
|
8028
|
+
};
|
|
8029
|
+
content: {
|
|
8030
|
+
"application/json": components["schemas"]["Errors"];
|
|
8031
|
+
};
|
|
8032
|
+
};
|
|
8033
|
+
/** @description NotFound */
|
|
8034
|
+
404: {
|
|
8035
|
+
headers: {
|
|
8036
|
+
[name: string]: unknown;
|
|
8037
|
+
};
|
|
8038
|
+
content: {
|
|
8039
|
+
"application/json": components["schemas"]["Errors"];
|
|
8040
|
+
};
|
|
8041
|
+
};
|
|
8042
|
+
};
|
|
8043
|
+
};
|
|
7773
8044
|
getAnomalyAlerts: {
|
|
7774
8045
|
parameters: {
|
|
7775
8046
|
query?: {
|
|
@@ -10492,7 +10763,7 @@ interface operations {
|
|
|
10492
10763
|
/** @description The token of the Workspace to list CostProviderAccounts for. Required if the API token is associated with multiple Workspaces. */
|
|
10493
10764
|
workspace_token?: string;
|
|
10494
10765
|
/** @description Filter by provider type. */
|
|
10495
|
-
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";
|
|
10496
10767
|
/** @description Filter by provider account identifier. */
|
|
10497
10768
|
account_id?: string;
|
|
10498
10769
|
/** @description Filter by account name (exact match). */
|
|
@@ -10920,7 +11191,7 @@ interface operations {
|
|
|
10920
11191
|
/** @description Last date you would like to filter forecasted costs from. ISO 8601 formatted. */
|
|
10921
11192
|
end_date?: string;
|
|
10922
11193
|
/** @description Limit the forecasted costs to a specific provider. 'all' is accepted to filter to overall forecast. */
|
|
10923
|
-
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";
|
|
10924
11195
|
/** @description Limit the forecasted costs to a specific service. 'all' is accepted to filter to overall forecast. e.g. 'Amazon ElastiCache'. */
|
|
10925
11196
|
service?: string;
|
|
10926
11197
|
/** @description The page of results to return. */
|
|
@@ -12257,7 +12528,7 @@ interface operations {
|
|
|
12257
12528
|
parameters: {
|
|
12258
12529
|
query?: {
|
|
12259
12530
|
/** @description Query by provider name to list all Integrations for a specific provider. */
|
|
12260
|
-
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";
|
|
12261
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. */
|
|
12262
12533
|
account_identifier?: string;
|
|
12263
12534
|
/** @description The page of results to return. */
|
|
@@ -16790,7 +17061,7 @@ interface operations {
|
|
|
16790
17061
|
parameters: {
|
|
16791
17062
|
query?: {
|
|
16792
17063
|
/** @description An array of providers to scope Tags by. */
|
|
16793
|
-
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")[];
|
|
16794
17065
|
/** @description A search query to filter Tags by tag key. */
|
|
16795
17066
|
search_query?: string;
|
|
16796
17067
|
/** @description The direction in which you would like to sort the data by. Defaults to 'asc'. */
|
|
@@ -16928,7 +17199,7 @@ interface operations {
|
|
|
16928
17199
|
parameters: {
|
|
16929
17200
|
query?: {
|
|
16930
17201
|
/** @description An array of providers to scope TagValues by. */
|
|
16931
|
-
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")[];
|
|
16932
17203
|
/** @description The direction in which to sort the TagValues. Defaults to 'asc'. */
|
|
16933
17204
|
sort_direction?: "asc" | "desc";
|
|
16934
17205
|
/** @description A search query to filter TagValues by the value name. */
|
|
@@ -18872,6 +19143,26 @@ type GetAnnotationsRequest = RequestBodyForPathAndMethod<"/v2/annotations", "GET
|
|
|
18872
19143
|
* Response type for Get all annotations
|
|
18873
19144
|
*/
|
|
18874
19145
|
type GetAnnotationsResponse = ResponseBodyForPathAndMethod<"/v2/annotations", "GET">;
|
|
19146
|
+
/**
|
|
19147
|
+
* Create an Annotation.
|
|
19148
|
+
*/
|
|
19149
|
+
type CreateAnnotationRequest = RequestBodyForPathAndMethod<"/v2/annotations", "POST">;
|
|
19150
|
+
/**
|
|
19151
|
+
* Response type for Create an annotation
|
|
19152
|
+
*/
|
|
19153
|
+
type CreateAnnotationResponse = ResponseBodyForPathAndMethod<"/v2/annotations", "POST">;
|
|
19154
|
+
/**
|
|
19155
|
+
* Update an Annotation.
|
|
19156
|
+
*/
|
|
19157
|
+
type UpdateAnnotationRequest = RequestBodyForPathAndMethod<`/v2/annotations/${NoSlashString}`, "PUT">;
|
|
19158
|
+
/**
|
|
19159
|
+
* Response type for Update an annotation
|
|
19160
|
+
*/
|
|
19161
|
+
type UpdateAnnotationResponse = ResponseBodyForPathAndMethod<`/v2/annotations/${NoSlashString}`, "PUT">;
|
|
19162
|
+
/**
|
|
19163
|
+
* Response type for Delete an annotation
|
|
19164
|
+
*/
|
|
19165
|
+
type DeleteAnnotationResponse = ResponseBodyForPathAndMethod<`/v2/annotations/${NoSlashString}`, "DELETE">;
|
|
18875
19166
|
/**
|
|
18876
19167
|
* Return all Anomaly Alerts that the current API token has access to.
|
|
18877
19168
|
*/
|
|
@@ -20393,6 +20684,42 @@ declare class AnnotationsApi<NeverThrow extends boolean> {
|
|
|
20393
20684
|
links?: components["schemas"]["Links"];
|
|
20394
20685
|
annotations: components["schemas"]["Annotation"][];
|
|
20395
20686
|
}>;
|
|
20687
|
+
/**
|
|
20688
|
+
* Create an Annotation.
|
|
20689
|
+
*/
|
|
20690
|
+
create(body: CreateAnnotationRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
20691
|
+
token: string;
|
|
20692
|
+
title: string;
|
|
20693
|
+
report_tokens: string[];
|
|
20694
|
+
date: string | null;
|
|
20695
|
+
message: string | null;
|
|
20696
|
+
}, null] : {
|
|
20697
|
+
token: string;
|
|
20698
|
+
title: string;
|
|
20699
|
+
report_tokens: string[];
|
|
20700
|
+
date: string | null;
|
|
20701
|
+
message: string | null;
|
|
20702
|
+
}>;
|
|
20703
|
+
/**
|
|
20704
|
+
* Update an Annotation.
|
|
20705
|
+
*/
|
|
20706
|
+
update(annotationToken: string, body: UpdateAnnotationRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
20707
|
+
token: string;
|
|
20708
|
+
title: string;
|
|
20709
|
+
report_tokens: string[];
|
|
20710
|
+
date: string | null;
|
|
20711
|
+
message: string | null;
|
|
20712
|
+
}, null] : {
|
|
20713
|
+
token: string;
|
|
20714
|
+
title: string;
|
|
20715
|
+
report_tokens: string[];
|
|
20716
|
+
date: string | null;
|
|
20717
|
+
message: string | null;
|
|
20718
|
+
}>;
|
|
20719
|
+
/**
|
|
20720
|
+
* Delete an Annotation.
|
|
20721
|
+
*/
|
|
20722
|
+
delete(annotationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
|
|
20396
20723
|
}
|
|
20397
20724
|
declare class AnomalyAlertsApi<NeverThrow extends boolean> {
|
|
20398
20725
|
private client;
|
|
@@ -20499,6 +20826,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20499
20826
|
updated_at: string;
|
|
20500
20827
|
threshold: number;
|
|
20501
20828
|
user_tokens: string[];
|
|
20829
|
+
recipient_emails: string[];
|
|
20502
20830
|
recipient_channels: string[];
|
|
20503
20831
|
}, null] : {
|
|
20504
20832
|
token: string;
|
|
@@ -20507,6 +20835,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20507
20835
|
updated_at: string;
|
|
20508
20836
|
threshold: number;
|
|
20509
20837
|
user_tokens: string[];
|
|
20838
|
+
recipient_emails: string[];
|
|
20510
20839
|
recipient_channels: string[];
|
|
20511
20840
|
}>;
|
|
20512
20841
|
/**
|
|
@@ -20519,6 +20848,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20519
20848
|
updated_at: string;
|
|
20520
20849
|
threshold: number;
|
|
20521
20850
|
user_tokens: string[];
|
|
20851
|
+
recipient_emails: string[];
|
|
20522
20852
|
recipient_channels: string[];
|
|
20523
20853
|
}, null] : {
|
|
20524
20854
|
token: string;
|
|
@@ -20527,6 +20857,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20527
20857
|
updated_at: string;
|
|
20528
20858
|
threshold: number;
|
|
20529
20859
|
user_tokens: string[];
|
|
20860
|
+
recipient_emails: string[];
|
|
20530
20861
|
recipient_channels: string[];
|
|
20531
20862
|
}>;
|
|
20532
20863
|
/**
|
|
@@ -20539,6 +20870,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20539
20870
|
updated_at: string;
|
|
20540
20871
|
threshold: number;
|
|
20541
20872
|
user_tokens: string[];
|
|
20873
|
+
recipient_emails: string[];
|
|
20542
20874
|
recipient_channels: string[];
|
|
20543
20875
|
}, null] : {
|
|
20544
20876
|
token: string;
|
|
@@ -20547,6 +20879,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
|
|
|
20547
20879
|
updated_at: string;
|
|
20548
20880
|
threshold: number;
|
|
20549
20881
|
user_tokens: string[];
|
|
20882
|
+
recipient_emails: string[];
|
|
20550
20883
|
recipient_channels: string[];
|
|
20551
20884
|
}>;
|
|
20552
20885
|
/**
|
|
@@ -20843,6 +21176,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
20843
21176
|
workspace_token: string | null;
|
|
20844
21177
|
user_token?: string | null;
|
|
20845
21178
|
user_tokens: string[];
|
|
21179
|
+
recipient_emails: string[];
|
|
20846
21180
|
duration_in_days: number | null;
|
|
20847
21181
|
threshold: number;
|
|
20848
21182
|
period_to_track: string | null;
|
|
@@ -20855,6 +21189,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
20855
21189
|
workspace_token: string | null;
|
|
20856
21190
|
user_token?: string | null;
|
|
20857
21191
|
user_tokens: string[];
|
|
21192
|
+
recipient_emails: string[];
|
|
20858
21193
|
duration_in_days: number | null;
|
|
20859
21194
|
threshold: number;
|
|
20860
21195
|
period_to_track: string | null;
|
|
@@ -20871,6 +21206,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
20871
21206
|
workspace_token: string | null;
|
|
20872
21207
|
user_token?: string | null;
|
|
20873
21208
|
user_tokens: string[];
|
|
21209
|
+
recipient_emails: string[];
|
|
20874
21210
|
duration_in_days: number | null;
|
|
20875
21211
|
threshold: number;
|
|
20876
21212
|
period_to_track: string | null;
|
|
@@ -20883,6 +21219,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
20883
21219
|
workspace_token: string | null;
|
|
20884
21220
|
user_token?: string | null;
|
|
20885
21221
|
user_tokens: string[];
|
|
21222
|
+
recipient_emails: string[];
|
|
20886
21223
|
duration_in_days: number | null;
|
|
20887
21224
|
threshold: number;
|
|
20888
21225
|
period_to_track: string | null;
|
|
@@ -20899,6 +21236,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
20899
21236
|
workspace_token: string | null;
|
|
20900
21237
|
user_token?: string | null;
|
|
20901
21238
|
user_tokens: string[];
|
|
21239
|
+
recipient_emails: string[];
|
|
20902
21240
|
duration_in_days: number | null;
|
|
20903
21241
|
threshold: number;
|
|
20904
21242
|
period_to_track: string | null;
|
|
@@ -20911,6 +21249,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
|
|
|
20911
21249
|
workspace_token: string | null;
|
|
20912
21250
|
user_token?: string | null;
|
|
20913
21251
|
user_tokens: string[];
|
|
21252
|
+
recipient_emails: string[];
|
|
20914
21253
|
duration_in_days: number | null;
|
|
20915
21254
|
threshold: number;
|
|
20916
21255
|
period_to_track: string | null;
|
|
@@ -23153,6 +23492,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23153
23492
|
title: string;
|
|
23154
23493
|
cost_report_token: string;
|
|
23155
23494
|
user_tokens: string[];
|
|
23495
|
+
recipient_emails: string[];
|
|
23156
23496
|
recipient_channels: string[];
|
|
23157
23497
|
frequency: "daily" | "weekly" | "monthly";
|
|
23158
23498
|
change: "percentage" | "dollars";
|
|
@@ -23161,6 +23501,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23161
23501
|
title: string;
|
|
23162
23502
|
cost_report_token: string;
|
|
23163
23503
|
user_tokens: string[];
|
|
23504
|
+
recipient_emails: string[];
|
|
23164
23505
|
recipient_channels: string[];
|
|
23165
23506
|
frequency: "daily" | "weekly" | "monthly";
|
|
23166
23507
|
change: "percentage" | "dollars";
|
|
@@ -23173,6 +23514,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23173
23514
|
title: string;
|
|
23174
23515
|
cost_report_token: string;
|
|
23175
23516
|
user_tokens: string[];
|
|
23517
|
+
recipient_emails: string[];
|
|
23176
23518
|
recipient_channels: string[];
|
|
23177
23519
|
frequency: "daily" | "weekly" | "monthly";
|
|
23178
23520
|
change: "percentage" | "dollars";
|
|
@@ -23181,6 +23523,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23181
23523
|
title: string;
|
|
23182
23524
|
cost_report_token: string;
|
|
23183
23525
|
user_tokens: string[];
|
|
23526
|
+
recipient_emails: string[];
|
|
23184
23527
|
recipient_channels: string[];
|
|
23185
23528
|
frequency: "daily" | "weekly" | "monthly";
|
|
23186
23529
|
change: "percentage" | "dollars";
|
|
@@ -23193,6 +23536,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23193
23536
|
title: string;
|
|
23194
23537
|
cost_report_token: string;
|
|
23195
23538
|
user_tokens: string[];
|
|
23539
|
+
recipient_emails: string[];
|
|
23196
23540
|
recipient_channels: string[];
|
|
23197
23541
|
frequency: "daily" | "weekly" | "monthly";
|
|
23198
23542
|
change: "percentage" | "dollars";
|
|
@@ -23201,6 +23545,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
|
|
|
23201
23545
|
title: string;
|
|
23202
23546
|
cost_report_token: string;
|
|
23203
23547
|
user_tokens: string[];
|
|
23548
|
+
recipient_emails: string[];
|
|
23204
23549
|
recipient_channels: string[];
|
|
23205
23550
|
frequency: "daily" | "weekly" | "monthly";
|
|
23206
23551
|
change: "percentage" | "dollars";
|
|
@@ -23868,6 +24213,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
23868
24213
|
token: string;
|
|
23869
24214
|
created_by_token: string | null;
|
|
23870
24215
|
key: string;
|
|
24216
|
+
hidden: boolean;
|
|
24217
|
+
preferred: boolean;
|
|
23871
24218
|
overridable: boolean;
|
|
23872
24219
|
backfill_until: string;
|
|
23873
24220
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -23876,6 +24223,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
23876
24223
|
token: string;
|
|
23877
24224
|
created_by_token: string | null;
|
|
23878
24225
|
key: string;
|
|
24226
|
+
hidden: boolean;
|
|
24227
|
+
preferred: boolean;
|
|
23879
24228
|
overridable: boolean;
|
|
23880
24229
|
backfill_until: string;
|
|
23881
24230
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -23888,6 +24237,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
23888
24237
|
token: string;
|
|
23889
24238
|
created_by_token: string | null;
|
|
23890
24239
|
key: string;
|
|
24240
|
+
hidden: boolean;
|
|
24241
|
+
preferred: boolean;
|
|
23891
24242
|
overridable: boolean;
|
|
23892
24243
|
backfill_until: string;
|
|
23893
24244
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -23896,6 +24247,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
23896
24247
|
token: string;
|
|
23897
24248
|
created_by_token: string | null;
|
|
23898
24249
|
key: string;
|
|
24250
|
+
hidden: boolean;
|
|
24251
|
+
preferred: boolean;
|
|
23899
24252
|
overridable: boolean;
|
|
23900
24253
|
backfill_until: string;
|
|
23901
24254
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -23908,6 +24261,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
23908
24261
|
token: string;
|
|
23909
24262
|
created_by_token: string | null;
|
|
23910
24263
|
key: string;
|
|
24264
|
+
hidden: boolean;
|
|
24265
|
+
preferred: boolean;
|
|
23911
24266
|
overridable: boolean;
|
|
23912
24267
|
backfill_until: string;
|
|
23913
24268
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -23919,6 +24274,8 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
23919
24274
|
token: string;
|
|
23920
24275
|
created_by_token: string | null;
|
|
23921
24276
|
key: string;
|
|
24277
|
+
hidden: boolean;
|
|
24278
|
+
preferred: boolean;
|
|
23922
24279
|
overridable: boolean;
|
|
23923
24280
|
backfill_until: string;
|
|
23924
24281
|
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
@@ -24227,4 +24584,27 @@ declare class BaseClient<NeverThrow extends boolean> {
|
|
|
24227
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>>;
|
|
24228
24585
|
}
|
|
24229
24586
|
|
|
24230
|
-
export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportForecastRequest, type CreateReportForecastResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateScenarioModelRequest, type CreateScenarioModelResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateVirtualTagConfigValueRequest, type CreateVirtualTagConfigValueResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportForecastResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteScenarioModelResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteVirtualTagConfigValueResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type 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 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 };
|