@vantage-sh/vantage-client 2.4.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +678 -77
- package/dist/index.d.ts +678 -77
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -447,6 +447,26 @@ interface paths {
|
|
|
447
447
|
patch?: never;
|
|
448
448
|
trace?: never;
|
|
449
449
|
};
|
|
450
|
+
"/business_metrics/{business_metric_token}/labels": {
|
|
451
|
+
parameters: {
|
|
452
|
+
query?: never;
|
|
453
|
+
header?: never;
|
|
454
|
+
path?: never;
|
|
455
|
+
cookie?: never;
|
|
456
|
+
};
|
|
457
|
+
/**
|
|
458
|
+
* Get business metric labels
|
|
459
|
+
* @description Return labels of a BusinessMetric.
|
|
460
|
+
*/
|
|
461
|
+
get: operations["getBusinessMetricLabels"];
|
|
462
|
+
put?: never;
|
|
463
|
+
post?: never;
|
|
464
|
+
delete?: never;
|
|
465
|
+
options?: never;
|
|
466
|
+
head?: never;
|
|
467
|
+
patch?: never;
|
|
468
|
+
trace?: never;
|
|
469
|
+
};
|
|
450
470
|
"/business_metrics/{business_metric_token}/values": {
|
|
451
471
|
parameters: {
|
|
452
472
|
query?: never;
|
|
@@ -511,6 +531,58 @@ interface paths {
|
|
|
511
531
|
patch?: never;
|
|
512
532
|
trace?: never;
|
|
513
533
|
};
|
|
534
|
+
"/canvases": {
|
|
535
|
+
parameters: {
|
|
536
|
+
query?: never;
|
|
537
|
+
header?: never;
|
|
538
|
+
path?: never;
|
|
539
|
+
cookie?: never;
|
|
540
|
+
};
|
|
541
|
+
/**
|
|
542
|
+
* Get all canvases
|
|
543
|
+
* @description Return all Canvases.
|
|
544
|
+
*/
|
|
545
|
+
get: operations["getCanvases"];
|
|
546
|
+
put?: never;
|
|
547
|
+
/**
|
|
548
|
+
* Create canvas
|
|
549
|
+
* @description Create a Canvas.
|
|
550
|
+
*/
|
|
551
|
+
post: operations["createCanvas"];
|
|
552
|
+
delete?: never;
|
|
553
|
+
options?: never;
|
|
554
|
+
head?: never;
|
|
555
|
+
patch?: never;
|
|
556
|
+
trace?: never;
|
|
557
|
+
};
|
|
558
|
+
"/canvases/{canvas_token}": {
|
|
559
|
+
parameters: {
|
|
560
|
+
query?: never;
|
|
561
|
+
header?: never;
|
|
562
|
+
path?: never;
|
|
563
|
+
cookie?: never;
|
|
564
|
+
};
|
|
565
|
+
/**
|
|
566
|
+
* Get canvas by token
|
|
567
|
+
* @description Return a specific Canvas.
|
|
568
|
+
*/
|
|
569
|
+
get: operations["getCanvas"];
|
|
570
|
+
/**
|
|
571
|
+
* Update canvas
|
|
572
|
+
* @description Update a Canvas.
|
|
573
|
+
*/
|
|
574
|
+
put: operations["updateCanvas"];
|
|
575
|
+
post?: never;
|
|
576
|
+
/**
|
|
577
|
+
* Delete canvas
|
|
578
|
+
* @description Delete a Canvas.
|
|
579
|
+
*/
|
|
580
|
+
delete: operations["deleteCanvas"];
|
|
581
|
+
options?: never;
|
|
582
|
+
head?: never;
|
|
583
|
+
patch?: never;
|
|
584
|
+
trace?: never;
|
|
585
|
+
};
|
|
514
586
|
"/cost_alerts/{cost_alert_token}/events": {
|
|
515
587
|
parameters: {
|
|
516
588
|
query?: never;
|
|
@@ -3380,6 +3452,17 @@ interface components {
|
|
|
3380
3452
|
* @enum {string}
|
|
3381
3453
|
*/
|
|
3382
3454
|
unit_scale: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
3455
|
+
/**
|
|
3456
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
3457
|
+
* @example unit_cost
|
|
3458
|
+
* @enum {string}
|
|
3459
|
+
*/
|
|
3460
|
+
calculation_type: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
3461
|
+
/**
|
|
3462
|
+
* @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type.
|
|
3463
|
+
* @example Gross Margin
|
|
3464
|
+
*/
|
|
3465
|
+
label?: string | null;
|
|
3383
3466
|
/** @description The labels that the BusinessMetric is filtered by within a particular CostReport. */
|
|
3384
3467
|
label_filter?: string[] | null;
|
|
3385
3468
|
};
|
|
@@ -3428,6 +3511,18 @@ interface components {
|
|
|
3428
3511
|
*/
|
|
3429
3512
|
sql_query: string;
|
|
3430
3513
|
};
|
|
3514
|
+
/** @description BusinessMetricLabels model */
|
|
3515
|
+
BusinessMetricLabels: {
|
|
3516
|
+
links?: components["schemas"]["Links"];
|
|
3517
|
+
labels: components["schemas"]["BusinessMetricLabel"][];
|
|
3518
|
+
};
|
|
3519
|
+
BusinessMetricLabel: {
|
|
3520
|
+
/**
|
|
3521
|
+
* @description A label value associated with the BusinessMetric.
|
|
3522
|
+
* @example Enterprise
|
|
3523
|
+
*/
|
|
3524
|
+
value: string;
|
|
3525
|
+
};
|
|
3431
3526
|
/** @description BusinessMetricValues model */
|
|
3432
3527
|
BusinessMetricValues: {
|
|
3433
3528
|
values: components["schemas"]["BusinessMetricValue"][];
|
|
@@ -3463,6 +3558,14 @@ interface components {
|
|
|
3463
3558
|
* @enum {string}
|
|
3464
3559
|
*/
|
|
3465
3560
|
unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
3561
|
+
/**
|
|
3562
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
3563
|
+
* @default unit_cost
|
|
3564
|
+
* @enum {string}
|
|
3565
|
+
*/
|
|
3566
|
+
calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
3567
|
+
/** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
|
|
3568
|
+
label?: string;
|
|
3466
3569
|
/** @description Include only values with these labels in the CostReport. */
|
|
3467
3570
|
label_filter?: string[];
|
|
3468
3571
|
}[];
|
|
@@ -3503,6 +3606,13 @@ interface components {
|
|
|
3503
3606
|
value?: string;
|
|
3504
3607
|
}[];
|
|
3505
3608
|
};
|
|
3609
|
+
/** @description Snowflake metric configuration fields. */
|
|
3610
|
+
snowflake_metric_fields?: {
|
|
3611
|
+
/** @description Integration token for the Snowflake integration from which you would like to fetch metrics. */
|
|
3612
|
+
integration_token?: string;
|
|
3613
|
+
/** @description Snowflake SQL query returning date, value, and optional label columns. */
|
|
3614
|
+
sql_query?: string;
|
|
3615
|
+
};
|
|
3506
3616
|
};
|
|
3507
3617
|
/** @description Updates an existing BusinessMetric. */
|
|
3508
3618
|
updateBusinessMetric: {
|
|
@@ -3518,6 +3628,14 @@ interface components {
|
|
|
3518
3628
|
* @enum {string}
|
|
3519
3629
|
*/
|
|
3520
3630
|
unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
3631
|
+
/**
|
|
3632
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
3633
|
+
* @default unit_cost
|
|
3634
|
+
* @enum {string}
|
|
3635
|
+
*/
|
|
3636
|
+
calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
3637
|
+
/** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
|
|
3638
|
+
label?: string;
|
|
3521
3639
|
/** @description Include only values with these labels in the CostReport. */
|
|
3522
3640
|
label_filter?: string[];
|
|
3523
3641
|
}[];
|
|
@@ -3558,6 +3676,13 @@ interface components {
|
|
|
3558
3676
|
value?: string;
|
|
3559
3677
|
}[];
|
|
3560
3678
|
};
|
|
3679
|
+
/** @description Snowflake metric configuration fields. */
|
|
3680
|
+
snowflake_metric_fields?: {
|
|
3681
|
+
/** @description Integration token for the Snowflake integration from which you would like to fetch metrics. */
|
|
3682
|
+
integration_token?: string;
|
|
3683
|
+
/** @description Snowflake SQL query returning date, value, and optional label columns. */
|
|
3684
|
+
sql_query?: string;
|
|
3685
|
+
};
|
|
3561
3686
|
};
|
|
3562
3687
|
/** @description BusinessMetricValuesDeleteResponse model */
|
|
3563
3688
|
BusinessMetricValuesDeleteResponse: {
|
|
@@ -3568,6 +3693,61 @@ interface components {
|
|
|
3568
3693
|
*/
|
|
3569
3694
|
deleted_count: number;
|
|
3570
3695
|
};
|
|
3696
|
+
/** @description Canvases model */
|
|
3697
|
+
Canvases: {
|
|
3698
|
+
links?: components["schemas"]["Links"];
|
|
3699
|
+
canvases: components["schemas"]["Canvas"][];
|
|
3700
|
+
};
|
|
3701
|
+
/** @description Canvas model */
|
|
3702
|
+
Canvas: {
|
|
3703
|
+
/** @example cnvs_abcd1234567890 */
|
|
3704
|
+
token: string;
|
|
3705
|
+
/**
|
|
3706
|
+
* @description The title of the Canvas.
|
|
3707
|
+
* @example Weekly Spend by Team
|
|
3708
|
+
*/
|
|
3709
|
+
title: string;
|
|
3710
|
+
/** @description The prompt used to generate the Canvas. */
|
|
3711
|
+
prompt: string;
|
|
3712
|
+
data?: components["schemas"]["CanvasData"];
|
|
3713
|
+
/**
|
|
3714
|
+
* @description The token for the Workspace the Canvas belongs to.
|
|
3715
|
+
* @example wrkspc_abcd1234567890
|
|
3716
|
+
*/
|
|
3717
|
+
workspace_token: string;
|
|
3718
|
+
/**
|
|
3719
|
+
* @description The date and time, in UTC, the Canvas was created. ISO 8601 Formatted.
|
|
3720
|
+
* @example 2024-01-01T00:00:00Z
|
|
3721
|
+
*/
|
|
3722
|
+
created_at: string;
|
|
3723
|
+
/**
|
|
3724
|
+
* @description The date and time, in UTC, the Canvas was last updated. ISO 8601 Formatted.
|
|
3725
|
+
* @example 2024-01-01T00:00:00Z
|
|
3726
|
+
*/
|
|
3727
|
+
updated_at: string;
|
|
3728
|
+
};
|
|
3729
|
+
CanvasData: {
|
|
3730
|
+
table?: components["schemas"]["CanvasTable"];
|
|
3731
|
+
/** @description Error message if the refresh workflow failed. Read-only. */
|
|
3732
|
+
error?: string | null;
|
|
3733
|
+
};
|
|
3734
|
+
CanvasTable: Record<string, any>;
|
|
3735
|
+
/** @description Create a Canvas. */
|
|
3736
|
+
createCanvas: {
|
|
3737
|
+
/** @description The title of the Canvas. */
|
|
3738
|
+
title: string;
|
|
3739
|
+
/** @description The prompt used to generate the Canvas. */
|
|
3740
|
+
prompt: string;
|
|
3741
|
+
/** @description The token of the Workspace to add the Canvas to. Required if the API token is associated with multiple Workspaces. */
|
|
3742
|
+
workspace_token?: string;
|
|
3743
|
+
};
|
|
3744
|
+
/** @description Update a Canvas. */
|
|
3745
|
+
updateCanvas: {
|
|
3746
|
+
/** @description The title of the Canvas. */
|
|
3747
|
+
title?: string;
|
|
3748
|
+
/** @description The prompt used to generate the Canvas. */
|
|
3749
|
+
prompt?: string;
|
|
3750
|
+
};
|
|
3571
3751
|
/** @description CostAlertEvents model */
|
|
3572
3752
|
CostAlertEvents: {
|
|
3573
3753
|
links?: components["schemas"]["Links"];
|
|
@@ -3737,6 +3917,13 @@ interface components {
|
|
|
3737
3917
|
saved_filter_tokens?: string[] | null;
|
|
3738
3918
|
/** @description The tokens for the BusinessMetrics assigned to the CostReport, the unit scale, and label filter. */
|
|
3739
3919
|
business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
|
|
3920
|
+
/**
|
|
3921
|
+
* @description The default forecast selection for the CostReport.
|
|
3922
|
+
* @example {
|
|
3923
|
+
* "kind": "baseline"
|
|
3924
|
+
* }
|
|
3925
|
+
*/
|
|
3926
|
+
default_forecast: Record<string, any>;
|
|
3740
3927
|
/** @description The filter applied to the CostReport. Additional documentation available at https://docs.vantage.sh/vql. */
|
|
3741
3928
|
filter: string | null;
|
|
3742
3929
|
/**
|
|
@@ -3839,11 +4026,22 @@ interface components {
|
|
|
3839
4026
|
* @enum {string}
|
|
3840
4027
|
*/
|
|
3841
4028
|
unit_scale: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
4029
|
+
/**
|
|
4030
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
4031
|
+
* @example unit_cost
|
|
4032
|
+
* @enum {string}
|
|
4033
|
+
*/
|
|
4034
|
+
calculation_type: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
4035
|
+
/**
|
|
4036
|
+
* @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type.
|
|
4037
|
+
* @example Gross Margin
|
|
4038
|
+
*/
|
|
4039
|
+
label?: string | null;
|
|
3842
4040
|
/** @description The labels that the BusinessMetric is filtered by within a particular CostReport. */
|
|
3843
4041
|
label_filter?: string[] | null;
|
|
3844
4042
|
};
|
|
3845
4043
|
ChartSettings: {
|
|
3846
|
-
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage'. Defaults to 'cost'. */
|
|
4044
|
+
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
|
|
3847
4045
|
y_axis_dimension: string;
|
|
3848
4046
|
/** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
|
|
3849
4047
|
x_axis_dimension: string[];
|
|
@@ -3875,7 +4073,7 @@ interface components {
|
|
|
3875
4073
|
* @example aws
|
|
3876
4074
|
* @enum {string}
|
|
3877
4075
|
*/
|
|
3878
|
-
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" | "all";
|
|
4076
|
+
provider: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai" | "all";
|
|
3879
4077
|
/**
|
|
3880
4078
|
* @description The service for the forecasted cost. Will be 'all' for all combined services
|
|
3881
4079
|
* @example Amazon Elastic Compute Cloud - Compute
|
|
@@ -3904,6 +4102,14 @@ interface components {
|
|
|
3904
4102
|
* @enum {string}
|
|
3905
4103
|
*/
|
|
3906
4104
|
unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
4105
|
+
/**
|
|
4106
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
4107
|
+
* @default unit_cost
|
|
4108
|
+
* @enum {string}
|
|
4109
|
+
*/
|
|
4110
|
+
calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
4111
|
+
/** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
|
|
4112
|
+
label?: string;
|
|
3907
4113
|
/** @description Include only values with these labels in the CostReport. */
|
|
3908
4114
|
label_filter?: string[];
|
|
3909
4115
|
}[];
|
|
@@ -3986,7 +4192,7 @@ interface components {
|
|
|
3986
4192
|
chart_settings?: {
|
|
3987
4193
|
/** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
|
|
3988
4194
|
x_axis_dimension?: string[];
|
|
3989
|
-
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage'. Defaults to 'cost'. */
|
|
4195
|
+
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
|
|
3990
4196
|
y_axis_dimension?: string;
|
|
3991
4197
|
};
|
|
3992
4198
|
};
|
|
@@ -4010,11 +4216,29 @@ interface components {
|
|
|
4010
4216
|
* @enum {string}
|
|
4011
4217
|
*/
|
|
4012
4218
|
unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
|
|
4219
|
+
/**
|
|
4220
|
+
* @description The calculation type applied when this BusinessMetric is used in the CostReport.
|
|
4221
|
+
* @default unit_cost
|
|
4222
|
+
* @enum {string}
|
|
4223
|
+
*/
|
|
4224
|
+
calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
|
|
4225
|
+
/** @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type. */
|
|
4226
|
+
label?: string;
|
|
4013
4227
|
/** @description Include only values with these labels in the CostReport. */
|
|
4014
4228
|
label_filter?: string[];
|
|
4015
4229
|
}[];
|
|
4016
4230
|
/** @description The token of the Folder to add the CostReport to. Determines the Workspace the report is assigned to. */
|
|
4017
4231
|
folder_token?: string;
|
|
4232
|
+
/** @description The default forecast selection for the CostReport. */
|
|
4233
|
+
default_forecast?: {
|
|
4234
|
+
/**
|
|
4235
|
+
* @description The default forecast selection kind.
|
|
4236
|
+
* @enum {string}
|
|
4237
|
+
*/
|
|
4238
|
+
kind: "baseline" | "report_forecast";
|
|
4239
|
+
/** @description The token for the report forecast to set as default when kind is report_forecast. */
|
|
4240
|
+
report_forecast_token?: string;
|
|
4241
|
+
};
|
|
4018
4242
|
/** @description Report settings. */
|
|
4019
4243
|
settings?: {
|
|
4020
4244
|
/** @description Report will include credits. */
|
|
@@ -4040,7 +4264,7 @@ interface components {
|
|
|
4040
4264
|
chart_settings?: {
|
|
4041
4265
|
/** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
|
|
4042
4266
|
x_axis_dimension?: string[];
|
|
4043
|
-
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage'. Defaults to 'cost'. */
|
|
4267
|
+
/** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
|
|
4044
4268
|
y_axis_dimension?: string;
|
|
4045
4269
|
};
|
|
4046
4270
|
/** @description The previous period start date of the CostReport. ISO 8601 Formatted. */
|
|
@@ -4058,13 +4282,11 @@ interface components {
|
|
|
4058
4282
|
date_interval?: "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";
|
|
4059
4283
|
/**
|
|
4060
4284
|
* @description The chart type of the CostReport.
|
|
4061
|
-
* @default line
|
|
4062
4285
|
* @enum {string}
|
|
4063
4286
|
*/
|
|
4064
4287
|
chart_type?: "area" | "line" | "pie" | "bar" | "multi_bar";
|
|
4065
4288
|
/**
|
|
4066
4289
|
* @description The date bin of the CostReport.
|
|
4067
|
-
* @default cumulative
|
|
4068
4290
|
* @enum {string}
|
|
4069
4291
|
*/
|
|
4070
4292
|
date_bin?: "cumulative" | "day" | "week" | "month" | "quarter" | "hour";
|
|
@@ -4195,7 +4417,7 @@ interface components {
|
|
|
4195
4417
|
* @example aws
|
|
4196
4418
|
* @enum {string|null}
|
|
4197
4419
|
*/
|
|
4198
|
-
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" | null;
|
|
4420
|
+
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai" | null;
|
|
4199
4421
|
/**
|
|
4200
4422
|
* @description The cost provider's billing account id that incurred the cost.
|
|
4201
4423
|
* @example 9109237192
|
|
@@ -5022,7 +5244,7 @@ interface components {
|
|
|
5022
5244
|
parent_account_token: string;
|
|
5023
5245
|
/** @description The tokens for the Access Credentials assigned to the Managed Account. */
|
|
5024
5246
|
access_credential_tokens: string[];
|
|
5025
|
-
/** @description The tokens for the Billing Rules assigned to the Managed Account. */
|
|
5247
|
+
/** @description The tokens for the Billing Rules assigned to the Managed Account, in the order they will execute against this account's cost data. */
|
|
5026
5248
|
billing_rule_tokens: string[];
|
|
5027
5249
|
/** @description Email domain associated with this Managed Account for SSO. */
|
|
5028
5250
|
email_domain?: string | null;
|
|
@@ -5046,7 +5268,7 @@ interface components {
|
|
|
5046
5268
|
contact_email: string;
|
|
5047
5269
|
/** @description Access Credential (aka Integrations) tokens to assign to the Managed Account. */
|
|
5048
5270
|
access_credential_tokens?: string[];
|
|
5049
|
-
/** @description Billing Rule tokens to assign to the Managed Account. */
|
|
5271
|
+
/** @description Billing Rule tokens to assign to the Managed Account, in their desired execution order. Tokens must be ordered by execution group: AWS transforms, then COST inserts, then COST transforms, then monthly post-transform inserts. Within a group any order is accepted and persisted as-is. Submitting a list whose cross-group ordering does not match the pipeline returns a 400.Existing rules with apply_to_all enabled will be added implicity to the end of their execution group. */
|
|
5050
5272
|
billing_rule_tokens?: string[];
|
|
5051
5273
|
/** @description Email domain to associate with this Managed Account for SSO. */
|
|
5052
5274
|
email_domain?: string;
|
|
@@ -5059,7 +5281,7 @@ interface components {
|
|
|
5059
5281
|
contact_email?: string;
|
|
5060
5282
|
/** @description Access Credential (aka Integrations) tokens to assign to the Managed Account. */
|
|
5061
5283
|
access_credential_tokens?: string[];
|
|
5062
|
-
/** @description Billing Rule tokens to assign to the Managed Account. */
|
|
5284
|
+
/** @description Billing Rule tokens to assign to the Managed Account, in their desired execution order. Tokens must be ordered by execution group: AWS transforms, then COST inserts, then COST transforms, then monthly post-transform inserts. Within a group any order is accepted and persisted as-is. Submitting a list whose cross-group ordering does not match the pipeline returns a 400. */
|
|
5063
5285
|
billing_rule_tokens?: string[];
|
|
5064
5286
|
/** @description Email domain to associate with this Managed Account for SSO. */
|
|
5065
5287
|
email_domain?: string;
|
|
@@ -6208,7 +6430,13 @@ interface components {
|
|
|
6208
6430
|
*/
|
|
6209
6431
|
business_metric_title: string;
|
|
6210
6432
|
/**
|
|
6211
|
-
* @description The
|
|
6433
|
+
* @description The calculation type applied to produce this result.
|
|
6434
|
+
* @example unit_cost
|
|
6435
|
+
* @enum {string|null}
|
|
6436
|
+
*/
|
|
6437
|
+
calculation_type?: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric" | null;
|
|
6438
|
+
/**
|
|
6439
|
+
* @description The amount of the unit cost. For raw_business_metric types, this equals the business_metric_amount.
|
|
6212
6440
|
* @example 4.25
|
|
6213
6441
|
*/
|
|
6214
6442
|
unit_cost_amount: string;
|
|
@@ -6293,7 +6521,7 @@ interface components {
|
|
|
6293
6521
|
overridable: boolean;
|
|
6294
6522
|
/**
|
|
6295
6523
|
* @description The earliest month VirtualTagConfig should be backfilled to.
|
|
6296
|
-
* @example
|
|
6524
|
+
* @example 2026-01-01
|
|
6297
6525
|
*/
|
|
6298
6526
|
backfill_until: string;
|
|
6299
6527
|
/** @description Tag keys to collapse values for. */
|
|
@@ -8722,6 +8950,63 @@ interface operations {
|
|
|
8722
8950
|
};
|
|
8723
8951
|
};
|
|
8724
8952
|
};
|
|
8953
|
+
getBusinessMetricLabels: {
|
|
8954
|
+
parameters: {
|
|
8955
|
+
query?: {
|
|
8956
|
+
/** @description The page of results to return. */
|
|
8957
|
+
page?: number;
|
|
8958
|
+
/** @description The number of results to return per page. Defaults to 1000. The maximum is 5000. */
|
|
8959
|
+
limit?: number;
|
|
8960
|
+
};
|
|
8961
|
+
header?: never;
|
|
8962
|
+
path: {
|
|
8963
|
+
business_metric_token: string;
|
|
8964
|
+
};
|
|
8965
|
+
cookie?: never;
|
|
8966
|
+
};
|
|
8967
|
+
requestBody?: never;
|
|
8968
|
+
responses: {
|
|
8969
|
+
200: {
|
|
8970
|
+
headers: {
|
|
8971
|
+
[name: string]: unknown;
|
|
8972
|
+
};
|
|
8973
|
+
content: {
|
|
8974
|
+
/**
|
|
8975
|
+
* @example {
|
|
8976
|
+
* "links": {
|
|
8977
|
+
* "self": "https://api.vantage.sh/v2/business_metrics/bsnss_mtrc_aaf0a1b22b10aecc/labels",
|
|
8978
|
+
* "first": "https://api.vantage.sh/v2/business_metrics/bsnss_mtrc_aaf0a1b22b10aecc/labels?page=1",
|
|
8979
|
+
* "next": null,
|
|
8980
|
+
* "last": "https://api.vantage.sh/v2/business_metrics/bsnss_mtrc_aaf0a1b22b10aecc/labels?page=1",
|
|
8981
|
+
* "prev": null
|
|
8982
|
+
* },
|
|
8983
|
+
* "labels": [
|
|
8984
|
+
* {
|
|
8985
|
+
* "value": "alpha"
|
|
8986
|
+
* },
|
|
8987
|
+
* {
|
|
8988
|
+
* "value": "beta"
|
|
8989
|
+
* },
|
|
8990
|
+
* {
|
|
8991
|
+
* "value": "Enterprise"
|
|
8992
|
+
* }
|
|
8993
|
+
* ]
|
|
8994
|
+
* }
|
|
8995
|
+
*/
|
|
8996
|
+
"application/json": components["schemas"]["BusinessMetricLabels"];
|
|
8997
|
+
};
|
|
8998
|
+
};
|
|
8999
|
+
/** @description NotFound */
|
|
9000
|
+
404: {
|
|
9001
|
+
headers: {
|
|
9002
|
+
[name: string]: unknown;
|
|
9003
|
+
};
|
|
9004
|
+
content: {
|
|
9005
|
+
"application/json": components["schemas"]["Errors"];
|
|
9006
|
+
};
|
|
9007
|
+
};
|
|
9008
|
+
};
|
|
9009
|
+
};
|
|
8725
9010
|
getBusinessMetricValues: {
|
|
8726
9011
|
parameters: {
|
|
8727
9012
|
query?: {
|
|
@@ -8731,6 +9016,8 @@ interface operations {
|
|
|
8731
9016
|
limit?: number;
|
|
8732
9017
|
/** @description Query BusinessMetrics by the first date you would like to filter from. ISO 8601 Formatted - 2021-07-15 */
|
|
8733
9018
|
start_date?: string;
|
|
9019
|
+
/** @description Return values matching any exact label value. For multi-label metrics, matches values under any label key. */
|
|
9020
|
+
label_values?: string[];
|
|
8734
9021
|
};
|
|
8735
9022
|
header?: never;
|
|
8736
9023
|
path: {
|
|
@@ -8988,6 +9275,165 @@ interface operations {
|
|
|
8988
9275
|
};
|
|
8989
9276
|
};
|
|
8990
9277
|
};
|
|
9278
|
+
getCanvases: {
|
|
9279
|
+
parameters: {
|
|
9280
|
+
query?: {
|
|
9281
|
+
/** @description The page of results to return. */
|
|
9282
|
+
page?: number;
|
|
9283
|
+
/** @description The amount of results to return. The maximum is 1000. */
|
|
9284
|
+
limit?: number;
|
|
9285
|
+
};
|
|
9286
|
+
header?: never;
|
|
9287
|
+
path?: never;
|
|
9288
|
+
cookie?: never;
|
|
9289
|
+
};
|
|
9290
|
+
requestBody?: never;
|
|
9291
|
+
responses: {
|
|
9292
|
+
200: {
|
|
9293
|
+
headers: {
|
|
9294
|
+
[name: string]: unknown;
|
|
9295
|
+
};
|
|
9296
|
+
content: {
|
|
9297
|
+
"application/json": components["schemas"]["Canvases"];
|
|
9298
|
+
};
|
|
9299
|
+
};
|
|
9300
|
+
};
|
|
9301
|
+
};
|
|
9302
|
+
createCanvas: {
|
|
9303
|
+
parameters: {
|
|
9304
|
+
query?: never;
|
|
9305
|
+
header?: never;
|
|
9306
|
+
path?: never;
|
|
9307
|
+
cookie?: never;
|
|
9308
|
+
};
|
|
9309
|
+
requestBody: {
|
|
9310
|
+
content: {
|
|
9311
|
+
"application/json": components["schemas"]["createCanvas"];
|
|
9312
|
+
};
|
|
9313
|
+
};
|
|
9314
|
+
responses: {
|
|
9315
|
+
201: {
|
|
9316
|
+
headers: {
|
|
9317
|
+
[name: string]: unknown;
|
|
9318
|
+
};
|
|
9319
|
+
content: {
|
|
9320
|
+
"application/json": components["schemas"]["Canvas"];
|
|
9321
|
+
};
|
|
9322
|
+
};
|
|
9323
|
+
/** @description BadRequest */
|
|
9324
|
+
400: {
|
|
9325
|
+
headers: {
|
|
9326
|
+
[name: string]: unknown;
|
|
9327
|
+
};
|
|
9328
|
+
content: {
|
|
9329
|
+
"application/json": components["schemas"]["Errors"];
|
|
9330
|
+
};
|
|
9331
|
+
};
|
|
9332
|
+
};
|
|
9333
|
+
};
|
|
9334
|
+
getCanvas: {
|
|
9335
|
+
parameters: {
|
|
9336
|
+
query?: never;
|
|
9337
|
+
header?: never;
|
|
9338
|
+
path: {
|
|
9339
|
+
canvas_token: string;
|
|
9340
|
+
};
|
|
9341
|
+
cookie?: never;
|
|
9342
|
+
};
|
|
9343
|
+
requestBody?: never;
|
|
9344
|
+
responses: {
|
|
9345
|
+
200: {
|
|
9346
|
+
headers: {
|
|
9347
|
+
[name: string]: unknown;
|
|
9348
|
+
};
|
|
9349
|
+
content: {
|
|
9350
|
+
"application/json": components["schemas"]["Canvas"];
|
|
9351
|
+
};
|
|
9352
|
+
};
|
|
9353
|
+
/** @description NotFound */
|
|
9354
|
+
404: {
|
|
9355
|
+
headers: {
|
|
9356
|
+
[name: string]: unknown;
|
|
9357
|
+
};
|
|
9358
|
+
content: {
|
|
9359
|
+
"application/json": components["schemas"]["Errors"];
|
|
9360
|
+
};
|
|
9361
|
+
};
|
|
9362
|
+
};
|
|
9363
|
+
};
|
|
9364
|
+
updateCanvas: {
|
|
9365
|
+
parameters: {
|
|
9366
|
+
query?: never;
|
|
9367
|
+
header?: never;
|
|
9368
|
+
path: {
|
|
9369
|
+
canvas_token: string;
|
|
9370
|
+
};
|
|
9371
|
+
cookie?: never;
|
|
9372
|
+
};
|
|
9373
|
+
requestBody: {
|
|
9374
|
+
content: {
|
|
9375
|
+
"application/json": components["schemas"]["updateCanvas"];
|
|
9376
|
+
};
|
|
9377
|
+
};
|
|
9378
|
+
responses: {
|
|
9379
|
+
200: {
|
|
9380
|
+
headers: {
|
|
9381
|
+
[name: string]: unknown;
|
|
9382
|
+
};
|
|
9383
|
+
content: {
|
|
9384
|
+
"application/json": components["schemas"]["Canvas"];
|
|
9385
|
+
};
|
|
9386
|
+
};
|
|
9387
|
+
/** @description BadRequest */
|
|
9388
|
+
400: {
|
|
9389
|
+
headers: {
|
|
9390
|
+
[name: string]: unknown;
|
|
9391
|
+
};
|
|
9392
|
+
content: {
|
|
9393
|
+
"application/json": components["schemas"]["Errors"];
|
|
9394
|
+
};
|
|
9395
|
+
};
|
|
9396
|
+
/** @description NotFound */
|
|
9397
|
+
404: {
|
|
9398
|
+
headers: {
|
|
9399
|
+
[name: string]: unknown;
|
|
9400
|
+
};
|
|
9401
|
+
content: {
|
|
9402
|
+
"application/json": components["schemas"]["Errors"];
|
|
9403
|
+
};
|
|
9404
|
+
};
|
|
9405
|
+
};
|
|
9406
|
+
};
|
|
9407
|
+
deleteCanvas: {
|
|
9408
|
+
parameters: {
|
|
9409
|
+
query?: never;
|
|
9410
|
+
header?: never;
|
|
9411
|
+
path: {
|
|
9412
|
+
canvas_token: string;
|
|
9413
|
+
};
|
|
9414
|
+
cookie?: never;
|
|
9415
|
+
};
|
|
9416
|
+
requestBody?: never;
|
|
9417
|
+
responses: {
|
|
9418
|
+
204: {
|
|
9419
|
+
headers: {
|
|
9420
|
+
[name: string]: unknown;
|
|
9421
|
+
};
|
|
9422
|
+
content: {
|
|
9423
|
+
"application/json": components["schemas"]["Canvas"];
|
|
9424
|
+
};
|
|
9425
|
+
};
|
|
9426
|
+
/** @description NotFound */
|
|
9427
|
+
404: {
|
|
9428
|
+
headers: {
|
|
9429
|
+
[name: string]: unknown;
|
|
9430
|
+
};
|
|
9431
|
+
content: {
|
|
9432
|
+
"application/json": components["schemas"]["Errors"];
|
|
9433
|
+
};
|
|
9434
|
+
};
|
|
9435
|
+
};
|
|
9436
|
+
};
|
|
8991
9437
|
getCostAlertEvents: {
|
|
8992
9438
|
parameters: {
|
|
8993
9439
|
query?: {
|
|
@@ -9372,7 +9818,7 @@ interface operations {
|
|
|
9372
9818
|
/** @description The token of the Workspace to list CostProviderAccounts for. Required if the API token is associated with multiple Workspaces. */
|
|
9373
9819
|
workspace_token?: string;
|
|
9374
9820
|
/** @description Filter by provider type. */
|
|
9375
|
-
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";
|
|
9821
|
+
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai";
|
|
9376
9822
|
/** @description Filter by provider account identifier. */
|
|
9377
9823
|
account_id?: string;
|
|
9378
9824
|
/** @description Filter by account name (exact match). */
|
|
@@ -9445,13 +9891,16 @@ interface operations {
|
|
|
9445
9891
|
* },
|
|
9446
9892
|
* "cost_reports": [
|
|
9447
9893
|
* {
|
|
9448
|
-
* "token": "
|
|
9894
|
+
* "token": "rprt_6f2c7d330c05636f",
|
|
9449
9895
|
* "title": "Untitled",
|
|
9450
9896
|
* "folder_token": null,
|
|
9451
9897
|
* "saved_filter_tokens": [
|
|
9452
|
-
* "
|
|
9898
|
+
* "svd_fltr_9f2aca5e894b432a"
|
|
9453
9899
|
* ],
|
|
9454
9900
|
* "business_metric_tokens_with_metadata": [],
|
|
9901
|
+
* "default_forecast": {
|
|
9902
|
+
* "kind": "baseline"
|
|
9903
|
+
* },
|
|
9455
9904
|
* "filter": null,
|
|
9456
9905
|
* "groupings": "service,provider",
|
|
9457
9906
|
* "settings": {
|
|
@@ -9462,10 +9911,11 @@ interface operations {
|
|
|
9462
9911
|
* "amortize": true,
|
|
9463
9912
|
* "unallocated": false,
|
|
9464
9913
|
* "aggregate_by": "cost",
|
|
9465
|
-
* "show_previous_period": true
|
|
9914
|
+
* "show_previous_period": true,
|
|
9915
|
+
* "complete_period": false
|
|
9466
9916
|
* },
|
|
9467
9917
|
* "created_at": "2024-07-03T00:00:00Z",
|
|
9468
|
-
* "workspace_token": "
|
|
9918
|
+
* "workspace_token": "wrkspc_3f4145fd51b19463",
|
|
9469
9919
|
* "previous_period_start_date": null,
|
|
9470
9920
|
* "previous_period_end_date": null,
|
|
9471
9921
|
* "start_date": "2024-07-01",
|
|
@@ -9508,15 +9958,15 @@ interface operations {
|
|
|
9508
9958
|
content: {
|
|
9509
9959
|
/**
|
|
9510
9960
|
* @example {
|
|
9511
|
-
* "token": "
|
|
9961
|
+
* "token": "rprt_299359872859a568",
|
|
9512
9962
|
* "title": "New Cost Report",
|
|
9513
|
-
* "folder_token": "
|
|
9963
|
+
* "folder_token": "fldr_736175272c30b820",
|
|
9514
9964
|
* "saved_filter_tokens": [
|
|
9515
|
-
* "
|
|
9965
|
+
* "svd_fltr_3cf17b5bd79e849c"
|
|
9516
9966
|
* ],
|
|
9517
9967
|
* "business_metric_tokens_with_metadata": [
|
|
9518
9968
|
* {
|
|
9519
|
-
* "business_metric_token": "
|
|
9969
|
+
* "business_metric_token": "bsnss_mtrc_b90d5fe5fbff292d",
|
|
9520
9970
|
* "unit_scale": "per_thousand",
|
|
9521
9971
|
* "label_filter": [
|
|
9522
9972
|
* "CBGB",
|
|
@@ -9526,6 +9976,9 @@ interface operations {
|
|
|
9526
9976
|
* ]
|
|
9527
9977
|
* }
|
|
9528
9978
|
* ],
|
|
9979
|
+
* "default_forecast": {
|
|
9980
|
+
* "kind": "baseline"
|
|
9981
|
+
* },
|
|
9529
9982
|
* "filter": "costs.provider = 'aws' AND costs.service = 'Amazon Simple Storage Service'",
|
|
9530
9983
|
* "groupings": "service,provider",
|
|
9531
9984
|
* "settings": {
|
|
@@ -9536,10 +9989,11 @@ interface operations {
|
|
|
9536
9989
|
* "amortize": true,
|
|
9537
9990
|
* "unallocated": false,
|
|
9538
9991
|
* "aggregate_by": "cost",
|
|
9539
|
-
* "show_previous_period": true
|
|
9992
|
+
* "show_previous_period": true,
|
|
9993
|
+
* "complete_period": false
|
|
9540
9994
|
* },
|
|
9541
9995
|
* "created_at": "2024-07-03T00:00:00Z",
|
|
9542
|
-
* "workspace_token": "
|
|
9996
|
+
* "workspace_token": "wrkspc_9e2675148d6275f8",
|
|
9543
9997
|
* "previous_period_start_date": null,
|
|
9544
9998
|
* "previous_period_end_date": null,
|
|
9545
9999
|
* "start_date": "2024-07-01",
|
|
@@ -9596,13 +10050,16 @@ interface operations {
|
|
|
9596
10050
|
content: {
|
|
9597
10051
|
/**
|
|
9598
10052
|
* @example {
|
|
9599
|
-
* "token": "
|
|
10053
|
+
* "token": "rprt_5db7a73cf4d09998",
|
|
9600
10054
|
* "title": "Untitled",
|
|
9601
10055
|
* "folder_token": null,
|
|
9602
10056
|
* "saved_filter_tokens": [
|
|
9603
|
-
* "
|
|
10057
|
+
* "svd_fltr_e1166df04e1709bf"
|
|
9604
10058
|
* ],
|
|
9605
10059
|
* "business_metric_tokens_with_metadata": [],
|
|
10060
|
+
* "default_forecast": {
|
|
10061
|
+
* "kind": "baseline"
|
|
10062
|
+
* },
|
|
9606
10063
|
* "filter": null,
|
|
9607
10064
|
* "groupings": "service,provider",
|
|
9608
10065
|
* "settings": {
|
|
@@ -9613,10 +10070,11 @@ interface operations {
|
|
|
9613
10070
|
* "amortize": true,
|
|
9614
10071
|
* "unallocated": false,
|
|
9615
10072
|
* "aggregate_by": "cost",
|
|
9616
|
-
* "show_previous_period": true
|
|
10073
|
+
* "show_previous_period": true,
|
|
10074
|
+
* "complete_period": false
|
|
9617
10075
|
* },
|
|
9618
10076
|
* "created_at": "2024-07-03T00:00:00Z",
|
|
9619
|
-
* "workspace_token": "
|
|
10077
|
+
* "workspace_token": "wrkspc_9c6847147c762f2a",
|
|
9620
10078
|
* "previous_period_start_date": null,
|
|
9621
10079
|
* "previous_period_end_date": null,
|
|
9622
10080
|
* "start_date": "2024-07-01",
|
|
@@ -9668,15 +10126,15 @@ interface operations {
|
|
|
9668
10126
|
content: {
|
|
9669
10127
|
/**
|
|
9670
10128
|
* @example {
|
|
9671
|
-
* "token": "
|
|
10129
|
+
* "token": "rprt_1e692ea6b3eddf6b",
|
|
9672
10130
|
* "title": "Updated Cost Report",
|
|
9673
|
-
* "folder_token": "
|
|
10131
|
+
* "folder_token": "fldr_86dec25791dca5ce",
|
|
9674
10132
|
* "saved_filter_tokens": [
|
|
9675
|
-
* "
|
|
10133
|
+
* "svd_fltr_1977fb9dc5e2b336"
|
|
9676
10134
|
* ],
|
|
9677
10135
|
* "business_metric_tokens_with_metadata": [
|
|
9678
10136
|
* {
|
|
9679
|
-
* "business_metric_token": "
|
|
10137
|
+
* "business_metric_token": "bsnss_mtrc_14dc9a1fb1ce67ce",
|
|
9680
10138
|
* "unit_scale": "per_thousand",
|
|
9681
10139
|
* "label_filter": [
|
|
9682
10140
|
* "CBGB",
|
|
@@ -9686,10 +10144,13 @@ interface operations {
|
|
|
9686
10144
|
* ]
|
|
9687
10145
|
* },
|
|
9688
10146
|
* {
|
|
9689
|
-
* "business_metric_token": "
|
|
10147
|
+
* "business_metric_token": "bsnss_mtrc_ab4227c15f99f995",
|
|
9690
10148
|
* "unit_scale": "per_million"
|
|
9691
10149
|
* }
|
|
9692
10150
|
* ],
|
|
10151
|
+
* "default_forecast": {
|
|
10152
|
+
* "kind": "baseline"
|
|
10153
|
+
* },
|
|
9693
10154
|
* "filter": "costs.provider = 'azure'",
|
|
9694
10155
|
* "groupings": "account_id,service",
|
|
9695
10156
|
* "settings": {
|
|
@@ -9700,10 +10161,11 @@ interface operations {
|
|
|
9700
10161
|
* "amortize": true,
|
|
9701
10162
|
* "unallocated": false,
|
|
9702
10163
|
* "aggregate_by": "cost",
|
|
9703
|
-
* "show_previous_period": true
|
|
10164
|
+
* "show_previous_period": true,
|
|
10165
|
+
* "complete_period": false
|
|
9704
10166
|
* },
|
|
9705
10167
|
* "created_at": "2024-07-03T00:00:00Z",
|
|
9706
|
-
* "workspace_token": "
|
|
10168
|
+
* "workspace_token": "wrkspc_a8fb0662fdca90e0",
|
|
9707
10169
|
* "previous_period_start_date": null,
|
|
9708
10170
|
* "previous_period_end_date": null,
|
|
9709
10171
|
* "start_date": "2024-07-01",
|
|
@@ -9780,7 +10242,7 @@ interface operations {
|
|
|
9780
10242
|
/** @description Last date you would like to filter forecasted costs from. ISO 8601 formatted. */
|
|
9781
10243
|
end_date?: string;
|
|
9782
10244
|
/** @description Limit the forecasted costs to a specific provider. 'all' is accepted to filter to overall forecast. */
|
|
9783
|
-
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" | "all";
|
|
10245
|
+
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai" | "all";
|
|
9784
10246
|
/** @description Limit the forecasted costs to a specific service. 'all' is accepted to filter to overall forecast. e.g. 'Amazon ElastiCache'. */
|
|
9785
10247
|
service?: string;
|
|
9786
10248
|
/** @description The page of results to return. */
|
|
@@ -9804,10 +10266,10 @@ interface operations {
|
|
|
9804
10266
|
/**
|
|
9805
10267
|
* @example {
|
|
9806
10268
|
* "links": {
|
|
9807
|
-
* "self": "https://api.vantage.sh/v2/cost_reports/
|
|
9808
|
-
* "first": "https://api.vantage.sh/v2/cost_reports/
|
|
10269
|
+
* "self": "https://api.vantage.sh/v2/cost_reports/rprt_106b4bfcc2a03f63/forecasted_costs",
|
|
10270
|
+
* "first": "https://api.vantage.sh/v2/cost_reports/rprt_106b4bfcc2a03f63/forecasted_costs?page=1",
|
|
9809
10271
|
* "next": null,
|
|
9810
|
-
* "last": "https://api.vantage.sh/v2/cost_reports/
|
|
10272
|
+
* "last": "https://api.vantage.sh/v2/cost_reports/rprt_106b4bfcc2a03f63/forecasted_costs?page=1",
|
|
9811
10273
|
* "prev": null
|
|
9812
10274
|
* },
|
|
9813
10275
|
* "forecasted_costs": [
|
|
@@ -11105,7 +11567,7 @@ interface operations {
|
|
|
11105
11567
|
parameters: {
|
|
11106
11568
|
query?: {
|
|
11107
11569
|
/** @description Query by provider name to list all Integrations for a specific provider. */
|
|
11108
|
-
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";
|
|
11570
|
+
provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai";
|
|
11109
11571
|
/** @description Query by account identifier to list all Integrations that match a specific account. For Azure, this is the subscription ID. Must include provider when using this parameter. */
|
|
11110
11572
|
account_identifier?: string;
|
|
11111
11573
|
/** @description The page of results to return. */
|
|
@@ -14943,7 +15405,7 @@ interface operations {
|
|
|
14943
15405
|
parameters: {
|
|
14944
15406
|
query?: {
|
|
14945
15407
|
/** @description An array of providers to scope Tags by. */
|
|
14946
|
-
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")[];
|
|
15408
|
+
providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai")[];
|
|
14947
15409
|
/** @description A search query to filter Tags by tag key. */
|
|
14948
15410
|
search_query?: string;
|
|
14949
15411
|
/** @description The direction in which you would like to sort the data by. Defaults to 'asc'. */
|
|
@@ -15081,7 +15543,7 @@ interface operations {
|
|
|
15081
15543
|
parameters: {
|
|
15082
15544
|
query?: {
|
|
15083
15545
|
/** @description An array of providers to scope TagValues by. */
|
|
15084
|
-
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")[];
|
|
15546
|
+
providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai")[];
|
|
15085
15547
|
/** @description The direction in which to sort the TagValues. Defaults to 'asc'. */
|
|
15086
15548
|
sort_direction?: "asc" | "desc";
|
|
15087
15549
|
/** @description A search query to filter TagValues by the value name. */
|
|
@@ -15971,7 +16433,10 @@ interface operations {
|
|
|
15971
16433
|
};
|
|
15972
16434
|
getVirtualTagConfigs: {
|
|
15973
16435
|
parameters: {
|
|
15974
|
-
query?:
|
|
16436
|
+
query?: {
|
|
16437
|
+
/** @description A search query to filter VirtualTagConfigs by key. */
|
|
16438
|
+
q?: string;
|
|
16439
|
+
};
|
|
15975
16440
|
header?: never;
|
|
15976
16441
|
path?: never;
|
|
15977
16442
|
cookie?: never;
|
|
@@ -16994,6 +17459,14 @@ type UpdateBusinessMetricResponse = ResponseBodyForPathAndMethod<`/v2/business_m
|
|
|
16994
17459
|
* Response type for Delete business metric
|
|
16995
17460
|
*/
|
|
16996
17461
|
type DeleteBusinessMetricResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}`, "DELETE">;
|
|
17462
|
+
/**
|
|
17463
|
+
* Return labels of a BusinessMetric.
|
|
17464
|
+
*/
|
|
17465
|
+
type GetBusinessMetricLabelsRequest = RequestBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/labels`, "GET">;
|
|
17466
|
+
/**
|
|
17467
|
+
* Response type for Get business metric labels
|
|
17468
|
+
*/
|
|
17469
|
+
type GetBusinessMetricLabelsResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/labels`, "GET">;
|
|
16997
17470
|
/**
|
|
16998
17471
|
* Return values of a BusinessMetric
|
|
16999
17472
|
*/
|
|
@@ -17026,6 +17499,38 @@ type UpdateBusinessMetricValuesCSVRequest = RequestBodyForPathAndMethod<`/v2/bus
|
|
|
17026
17499
|
* Response type for Update business metric values from CSV
|
|
17027
17500
|
*/
|
|
17028
17501
|
type UpdateBusinessMetricValuesCSVResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/values.csv`, "PUT">;
|
|
17502
|
+
/**
|
|
17503
|
+
* Return all Canvases.
|
|
17504
|
+
*/
|
|
17505
|
+
type GetCanvasesRequest = RequestBodyForPathAndMethod<"/v2/canvases", "GET">;
|
|
17506
|
+
/**
|
|
17507
|
+
* Response type for Get all canvases
|
|
17508
|
+
*/
|
|
17509
|
+
type GetCanvasesResponse = ResponseBodyForPathAndMethod<"/v2/canvases", "GET">;
|
|
17510
|
+
/**
|
|
17511
|
+
* Create a Canvas.
|
|
17512
|
+
*/
|
|
17513
|
+
type CreateCanvasRequest = RequestBodyForPathAndMethod<"/v2/canvases", "POST">;
|
|
17514
|
+
/**
|
|
17515
|
+
* Response type for Create canvas
|
|
17516
|
+
*/
|
|
17517
|
+
type CreateCanvasResponse = ResponseBodyForPathAndMethod<"/v2/canvases", "POST">;
|
|
17518
|
+
/**
|
|
17519
|
+
* Response type for Get canvas by token
|
|
17520
|
+
*/
|
|
17521
|
+
type GetCanvasResponse = ResponseBodyForPathAndMethod<`/v2/canvases/${NoSlashString}`, "GET">;
|
|
17522
|
+
/**
|
|
17523
|
+
* Update a Canvas.
|
|
17524
|
+
*/
|
|
17525
|
+
type UpdateCanvasRequest = RequestBodyForPathAndMethod<`/v2/canvases/${NoSlashString}`, "PUT">;
|
|
17526
|
+
/**
|
|
17527
|
+
* Response type for Update canvas
|
|
17528
|
+
*/
|
|
17529
|
+
type UpdateCanvasResponse = ResponseBodyForPathAndMethod<`/v2/canvases/${NoSlashString}`, "PUT">;
|
|
17530
|
+
/**
|
|
17531
|
+
* Response type for Delete canvas
|
|
17532
|
+
*/
|
|
17533
|
+
type DeleteCanvasResponse = ResponseBodyForPathAndMethod<`/v2/canvases/${NoSlashString}`, "DELETE">;
|
|
17029
17534
|
/**
|
|
17030
17535
|
* Get all CostAlertEvents
|
|
17031
17536
|
*/
|
|
@@ -17875,6 +18380,10 @@ type UpdateUserRequest = RequestBodyForPathAndMethod<`/v2/users/${NoSlashString}
|
|
|
17875
18380
|
* Response type for Update a user
|
|
17876
18381
|
*/
|
|
17877
18382
|
type UpdateUserResponse = ResponseBodyForPathAndMethod<`/v2/users/${NoSlashString}`, "PUT">;
|
|
18383
|
+
/**
|
|
18384
|
+
* Return all VirtualTagConfigs that the current API token has access to.
|
|
18385
|
+
*/
|
|
18386
|
+
type GetVirtualTagConfigsRequest = RequestBodyForPathAndMethod<"/v2/virtual_tag_configs", "GET">;
|
|
17878
18387
|
/**
|
|
17879
18388
|
* Response type for Get all virtual tag configs
|
|
17880
18389
|
*/
|
|
@@ -17970,6 +18479,7 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
|
|
|
17970
18479
|
private _budgetAlerts?;
|
|
17971
18480
|
private _budgets?;
|
|
17972
18481
|
private _businessMetrics?;
|
|
18482
|
+
private _canvases?;
|
|
17973
18483
|
private _costAlerts?;
|
|
17974
18484
|
private _costProviders?;
|
|
17975
18485
|
private _costProviderAccounts?;
|
|
@@ -18013,6 +18523,7 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
|
|
|
18013
18523
|
get budgetAlerts(): BudgetAlertsApi<NeverThrow>;
|
|
18014
18524
|
get budgets(): BudgetsApi<NeverThrow>;
|
|
18015
18525
|
get businessMetrics(): BusinessMetricsApi<NeverThrow>;
|
|
18526
|
+
get canvases(): CanvasesApi<NeverThrow>;
|
|
18016
18527
|
get costAlerts(): CostAlertsApi<NeverThrow>;
|
|
18017
18528
|
get costProviders(): CostProvidersApi<NeverThrow>;
|
|
18018
18529
|
get costProviderAccounts(): CostProviderAccountsApi<NeverThrow>;
|
|
@@ -18347,11 +18858,7 @@ declare class BillingProfilesApi<NeverThrow extends boolean> {
|
|
|
18347
18858
|
updated_at: string;
|
|
18348
18859
|
billing_information_attributes: components["schemas"]["BillingInformation"];
|
|
18349
18860
|
business_information_attributes: components["schemas"]["BusinessInformation"];
|
|
18350
|
-
banking_information_attributes?:
|
|
18351
|
-
/**
|
|
18352
|
-
* Generate a DataExport of costs.
|
|
18353
|
-
*/
|
|
18354
|
-
components["schemas"]["BankingInformation"];
|
|
18861
|
+
banking_information_attributes?: components["schemas"]["BankingInformation"];
|
|
18355
18862
|
invoice_adjustment_attributes: components["schemas"]["InvoiceAdjustment"];
|
|
18356
18863
|
managed_accounts_count: string;
|
|
18357
18864
|
}, null] : {
|
|
@@ -18361,11 +18868,7 @@ declare class BillingProfilesApi<NeverThrow extends boolean> {
|
|
|
18361
18868
|
updated_at: string;
|
|
18362
18869
|
billing_information_attributes: components["schemas"]["BillingInformation"];
|
|
18363
18870
|
business_information_attributes: components["schemas"]["BusinessInformation"];
|
|
18364
|
-
banking_information_attributes?:
|
|
18365
|
-
/**
|
|
18366
|
-
* Generate a DataExport of costs.
|
|
18367
|
-
*/
|
|
18368
|
-
components["schemas"]["BankingInformation"];
|
|
18871
|
+
banking_information_attributes?: components["schemas"]["BankingInformation"];
|
|
18369
18872
|
invoice_adjustment_attributes: components["schemas"]["InvoiceAdjustment"];
|
|
18370
18873
|
managed_accounts_count: string;
|
|
18371
18874
|
}>;
|
|
@@ -18379,11 +18882,7 @@ declare class BillingProfilesApi<NeverThrow extends boolean> {
|
|
|
18379
18882
|
updated_at: string;
|
|
18380
18883
|
billing_information_attributes: components["schemas"]["BillingInformation"];
|
|
18381
18884
|
business_information_attributes: components["schemas"]["BusinessInformation"];
|
|
18382
|
-
banking_information_attributes?:
|
|
18383
|
-
/**
|
|
18384
|
-
* Generate a DataExport of costs.
|
|
18385
|
-
*/
|
|
18386
|
-
components["schemas"]["BankingInformation"];
|
|
18885
|
+
banking_information_attributes?: components["schemas"]["BankingInformation"];
|
|
18387
18886
|
invoice_adjustment_attributes: components["schemas"]["InvoiceAdjustment"];
|
|
18388
18887
|
managed_accounts_count: string;
|
|
18389
18888
|
}, null] : {
|
|
@@ -18393,11 +18892,7 @@ declare class BillingProfilesApi<NeverThrow extends boolean> {
|
|
|
18393
18892
|
updated_at: string;
|
|
18394
18893
|
billing_information_attributes: components["schemas"]["BillingInformation"];
|
|
18395
18894
|
business_information_attributes: components["schemas"]["BusinessInformation"];
|
|
18396
|
-
banking_information_attributes?:
|
|
18397
|
-
/**
|
|
18398
|
-
* Generate a DataExport of costs.
|
|
18399
|
-
*/
|
|
18400
|
-
components["schemas"]["BankingInformation"];
|
|
18895
|
+
banking_information_attributes?: components["schemas"]["BankingInformation"];
|
|
18401
18896
|
invoice_adjustment_attributes: components["schemas"]["InvoiceAdjustment"];
|
|
18402
18897
|
managed_accounts_count: string;
|
|
18403
18898
|
}>;
|
|
@@ -18411,11 +18906,7 @@ declare class BillingProfilesApi<NeverThrow extends boolean> {
|
|
|
18411
18906
|
updated_at: string;
|
|
18412
18907
|
billing_information_attributes: components["schemas"]["BillingInformation"];
|
|
18413
18908
|
business_information_attributes: components["schemas"]["BusinessInformation"];
|
|
18414
|
-
banking_information_attributes?:
|
|
18415
|
-
/**
|
|
18416
|
-
* Generate a DataExport of costs.
|
|
18417
|
-
*/
|
|
18418
|
-
components["schemas"]["BankingInformation"];
|
|
18909
|
+
banking_information_attributes?: components["schemas"]["BankingInformation"];
|
|
18419
18910
|
invoice_adjustment_attributes: components["schemas"]["InvoiceAdjustment"];
|
|
18420
18911
|
managed_accounts_count: string;
|
|
18421
18912
|
}, null] : {
|
|
@@ -18425,11 +18916,7 @@ declare class BillingProfilesApi<NeverThrow extends boolean> {
|
|
|
18425
18916
|
updated_at: string;
|
|
18426
18917
|
billing_information_attributes: components["schemas"]["BillingInformation"];
|
|
18427
18918
|
business_information_attributes: components["schemas"]["BusinessInformation"];
|
|
18428
|
-
banking_information_attributes?:
|
|
18429
|
-
/**
|
|
18430
|
-
* Generate a DataExport of costs.
|
|
18431
|
-
*/
|
|
18432
|
-
components["schemas"]["BankingInformation"];
|
|
18919
|
+
banking_information_attributes?: components["schemas"]["BankingInformation"];
|
|
18433
18920
|
invoice_adjustment_attributes: components["schemas"]["InvoiceAdjustment"];
|
|
18434
18921
|
managed_accounts_count: string;
|
|
18435
18922
|
}>;
|
|
@@ -18833,6 +19320,16 @@ declare class BusinessMetricsApi<NeverThrow extends boolean> {
|
|
|
18833
19320
|
* Deletes an existing BusinessMetric.
|
|
18834
19321
|
*/
|
|
18835
19322
|
delete(businessMetricToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
|
|
19323
|
+
/**
|
|
19324
|
+
* Return labels of a BusinessMetric.
|
|
19325
|
+
*/
|
|
19326
|
+
getLabels(businessMetricToken: string, body?: GetBusinessMetricLabelsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
19327
|
+
links?: components["schemas"]["Links"];
|
|
19328
|
+
labels: components["schemas"]["BusinessMetricLabel"][];
|
|
19329
|
+
}, null] : {
|
|
19330
|
+
links?: components["schemas"]["Links"];
|
|
19331
|
+
labels: components["schemas"]["BusinessMetricLabel"][];
|
|
19332
|
+
}>;
|
|
18836
19333
|
/**
|
|
18837
19334
|
* Return values of a BusinessMetric
|
|
18838
19335
|
*/
|
|
@@ -18882,6 +19379,84 @@ declare class BusinessMetricsApi<NeverThrow extends boolean> {
|
|
|
18882
19379
|
snowflake_metric_fields?: components["schemas"]["SnowflakeMetricFields"];
|
|
18883
19380
|
}>;
|
|
18884
19381
|
}
|
|
19382
|
+
declare class CanvasesApi<NeverThrow extends boolean> {
|
|
19383
|
+
private client;
|
|
19384
|
+
constructor(client: BaseClient<NeverThrow>);
|
|
19385
|
+
/**
|
|
19386
|
+
* Return all Canvases.
|
|
19387
|
+
*/
|
|
19388
|
+
list(body?: GetCanvasesRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
19389
|
+
links?: components["schemas"]["Links"];
|
|
19390
|
+
canvases: components["schemas"]["Canvas"][];
|
|
19391
|
+
}, null] : {
|
|
19392
|
+
links?: components["schemas"]["Links"];
|
|
19393
|
+
canvases: components["schemas"]["Canvas"][];
|
|
19394
|
+
}>;
|
|
19395
|
+
/**
|
|
19396
|
+
* Create a Canvas.
|
|
19397
|
+
*/
|
|
19398
|
+
create(body: CreateCanvasRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
19399
|
+
token: string;
|
|
19400
|
+
title: string;
|
|
19401
|
+
prompt: string;
|
|
19402
|
+
data?: components["schemas"]["CanvasData"];
|
|
19403
|
+
workspace_token: string;
|
|
19404
|
+
created_at: string;
|
|
19405
|
+
updated_at: string;
|
|
19406
|
+
}, null] : {
|
|
19407
|
+
token: string;
|
|
19408
|
+
title: string;
|
|
19409
|
+
prompt: string;
|
|
19410
|
+
data?: components["schemas"]["CanvasData"];
|
|
19411
|
+
workspace_token: string;
|
|
19412
|
+
created_at: string;
|
|
19413
|
+
updated_at: string;
|
|
19414
|
+
}>;
|
|
19415
|
+
/**
|
|
19416
|
+
* Return a specific Canvas.
|
|
19417
|
+
*/
|
|
19418
|
+
get(canvasToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
19419
|
+
token: string;
|
|
19420
|
+
title: string;
|
|
19421
|
+
prompt: string;
|
|
19422
|
+
data?: components["schemas"]["CanvasData"];
|
|
19423
|
+
workspace_token: string;
|
|
19424
|
+
created_at: string;
|
|
19425
|
+
updated_at: string;
|
|
19426
|
+
}, null] : {
|
|
19427
|
+
token: string;
|
|
19428
|
+
title: string;
|
|
19429
|
+
prompt: string;
|
|
19430
|
+
data?: components["schemas"]["CanvasData"];
|
|
19431
|
+
workspace_token: string;
|
|
19432
|
+
created_at: string;
|
|
19433
|
+
updated_at: string;
|
|
19434
|
+
}>;
|
|
19435
|
+
/**
|
|
19436
|
+
* Update a Canvas.
|
|
19437
|
+
*/
|
|
19438
|
+
update(canvasToken: string, body: UpdateCanvasRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
19439
|
+
token: string;
|
|
19440
|
+
title: string;
|
|
19441
|
+
prompt: string;
|
|
19442
|
+
data?: components["schemas"]["CanvasData"];
|
|
19443
|
+
workspace_token: string;
|
|
19444
|
+
created_at: string;
|
|
19445
|
+
updated_at: string;
|
|
19446
|
+
}, null] : {
|
|
19447
|
+
token: string;
|
|
19448
|
+
title: string;
|
|
19449
|
+
prompt: string;
|
|
19450
|
+
data?: components["schemas"]["CanvasData"];
|
|
19451
|
+
workspace_token: string;
|
|
19452
|
+
created_at: string;
|
|
19453
|
+
updated_at: string;
|
|
19454
|
+
}>;
|
|
19455
|
+
/**
|
|
19456
|
+
* Delete a Canvas.
|
|
19457
|
+
*/
|
|
19458
|
+
delete(canvasToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
|
|
19459
|
+
}
|
|
18885
19460
|
declare class CostAlertsApi<NeverThrow extends boolean> {
|
|
18886
19461
|
private client;
|
|
18887
19462
|
constructor(client: BaseClient<NeverThrow>);
|
|
@@ -19058,6 +19633,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
|
|
|
19058
19633
|
folder_token?: string | null;
|
|
19059
19634
|
saved_filter_tokens?: string[] | null;
|
|
19060
19635
|
business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
|
|
19636
|
+
default_forecast: Record<string, any>;
|
|
19061
19637
|
filter: string | null;
|
|
19062
19638
|
groupings?: string | null;
|
|
19063
19639
|
settings?: {
|
|
@@ -19087,6 +19663,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
|
|
|
19087
19663
|
folder_token?: string | null;
|
|
19088
19664
|
saved_filter_tokens?: string[] | null;
|
|
19089
19665
|
business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
|
|
19666
|
+
default_forecast: Record<string, any>;
|
|
19090
19667
|
filter: string | null;
|
|
19091
19668
|
groupings?: string | null;
|
|
19092
19669
|
settings?: {
|
|
@@ -19120,6 +19697,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
|
|
|
19120
19697
|
folder_token?: string | null;
|
|
19121
19698
|
saved_filter_tokens?: string[] | null;
|
|
19122
19699
|
business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
|
|
19700
|
+
default_forecast: Record<string, any>;
|
|
19123
19701
|
filter: string | null;
|
|
19124
19702
|
groupings?: string | null;
|
|
19125
19703
|
settings?: {
|
|
@@ -19149,6 +19727,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
|
|
|
19149
19727
|
folder_token?: string | null;
|
|
19150
19728
|
saved_filter_tokens?: string[] | null;
|
|
19151
19729
|
business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
|
|
19730
|
+
default_forecast: Record<string, any>;
|
|
19152
19731
|
filter: string | null;
|
|
19153
19732
|
groupings?: string | null;
|
|
19154
19733
|
settings?: {
|
|
@@ -19182,6 +19761,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
|
|
|
19182
19761
|
folder_token?: string | null;
|
|
19183
19762
|
saved_filter_tokens?: string[] | null;
|
|
19184
19763
|
business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
|
|
19764
|
+
default_forecast: Record<string, any>;
|
|
19185
19765
|
filter: string | null;
|
|
19186
19766
|
groupings?: string | null;
|
|
19187
19767
|
settings?: {
|
|
@@ -19211,6 +19791,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
|
|
|
19211
19791
|
folder_token?: string | null;
|
|
19212
19792
|
saved_filter_tokens?: string[] | null;
|
|
19213
19793
|
business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
|
|
19794
|
+
default_forecast: Record<string, any>;
|
|
19214
19795
|
filter: string | null;
|
|
19215
19796
|
groupings?: string | null;
|
|
19216
19797
|
settings?: {
|
|
@@ -21291,6 +21872,14 @@ declare class UsersApi<NeverThrow extends boolean> {
|
|
|
21291
21872
|
declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
21292
21873
|
private client;
|
|
21293
21874
|
constructor(client: BaseClient<NeverThrow>);
|
|
21875
|
+
/**
|
|
21876
|
+
* Return all VirtualTagConfigs that the current API token has access to.
|
|
21877
|
+
*/
|
|
21878
|
+
list(body?: GetVirtualTagConfigsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
21879
|
+
virtual_tag_configs: components["schemas"]["VirtualTagConfig"][];
|
|
21880
|
+
}, null] : {
|
|
21881
|
+
virtual_tag_configs: components["schemas"]["VirtualTagConfig"][];
|
|
21882
|
+
}>;
|
|
21294
21883
|
/**
|
|
21295
21884
|
* Create a new VirtualTagConfig.
|
|
21296
21885
|
*/
|
|
@@ -21312,12 +21901,24 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
|
|
|
21312
21901
|
values: components["schemas"]["VirtualTagConfigValue"][];
|
|
21313
21902
|
}>;
|
|
21314
21903
|
/**
|
|
21315
|
-
* Return
|
|
21904
|
+
* Return a specific VirtualTagConfig.
|
|
21316
21905
|
*/
|
|
21317
|
-
get(): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
21318
|
-
|
|
21906
|
+
get(token: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
21907
|
+
token: string;
|
|
21908
|
+
created_by_token: string | null;
|
|
21909
|
+
key: string;
|
|
21910
|
+
overridable: boolean;
|
|
21911
|
+
backfill_until: string;
|
|
21912
|
+
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
21913
|
+
values: components["schemas"]["VirtualTagConfigValue"][];
|
|
21319
21914
|
}, null] : {
|
|
21320
|
-
|
|
21915
|
+
token: string;
|
|
21916
|
+
created_by_token: string | null;
|
|
21917
|
+
key: string;
|
|
21918
|
+
overridable: boolean;
|
|
21919
|
+
backfill_until: string;
|
|
21920
|
+
collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
|
|
21921
|
+
values: components["schemas"]["VirtualTagConfigValue"][];
|
|
21321
21922
|
}>;
|
|
21322
21923
|
/**
|
|
21323
21924
|
* Updates an existing VirtualTagConfig.
|
|
@@ -21557,4 +22158,4 @@ declare class BaseClient<NeverThrow extends boolean> {
|
|
|
21557
22158
|
request<RequestPath extends Path, RequestMethod extends SupportedMethods<RequestPath>>(path: RequestPath, method: RequestMethod, body: RequestBodyForPathAndMethod<RequestPath, RequestMethod>): Promise<NeverThrow extends true ? NeverThrowResult<ResponseBodyForPathAndMethod<RequestPath, RequestMethod>> : ResponseBodyForPathAndMethod<RequestPath, RequestMethod>>;
|
|
21558
22159
|
}
|
|
21559
22160
|
|
|
21560
|
-
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 CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
|
|
22161
|
+
export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricLabelsRequest, type GetBusinessMetricLabelsResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigsRequest, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCanvasRequest, type UpdateCanvasResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
|