@vantage-sh/vantage-client 2.5.0 → 2.7.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 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;
@@ -1551,6 +1571,26 @@ interface paths {
1551
1571
  patch?: never;
1552
1572
  trace?: never;
1553
1573
  };
1574
+ "/network_flow_logs": {
1575
+ parameters: {
1576
+ query?: never;
1577
+ header?: never;
1578
+ path?: never;
1579
+ cookie?: never;
1580
+ };
1581
+ /**
1582
+ * Get network flow logs
1583
+ * @description Return aggregated Network Flow Logs for a saved report or ad hoc VQL query.
1584
+ */
1585
+ get: operations["getNetworkFlowLogs"];
1586
+ put?: never;
1587
+ post?: never;
1588
+ delete?: never;
1589
+ options?: never;
1590
+ head?: never;
1591
+ patch?: never;
1592
+ trace?: never;
1593
+ };
1554
1594
  "/network_flow_reports": {
1555
1595
  parameters: {
1556
1596
  query?: never;
@@ -3438,8 +3478,26 @@ interface components {
3438
3478
  * @enum {string}
3439
3479
  */
3440
3480
  calculation_type: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
3481
+ /**
3482
+ * @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type.
3483
+ * @example Gross Margin
3484
+ */
3485
+ label?: string | null;
3441
3486
  /** @description The labels that the BusinessMetric is filtered by within a particular CostReport. */
3442
3487
  label_filter?: string[] | null;
3488
+ /**
3489
+ * @description The ClickHouse BusinessMetric label filters applied within a CostReport. Each key is required and values within a key are alternatives.
3490
+ * @example {
3491
+ * "team": [
3492
+ * "platform",
3493
+ * "finops"
3494
+ * ],
3495
+ * "environment": [
3496
+ * "production"
3497
+ * ]
3498
+ * }
3499
+ */
3500
+ label_filters?: Record<string, any> | null;
3443
3501
  };
3444
3502
  CloudwatchFields: {
3445
3503
  /**
@@ -3486,6 +3544,18 @@ interface components {
3486
3544
  */
3487
3545
  sql_query: string;
3488
3546
  };
3547
+ /** @description BusinessMetricLabels model */
3548
+ BusinessMetricLabels: {
3549
+ links?: components["schemas"]["Links"];
3550
+ labels: components["schemas"]["BusinessMetricLabel"][];
3551
+ };
3552
+ BusinessMetricLabel: {
3553
+ /**
3554
+ * @description A label value associated with the BusinessMetric.
3555
+ * @example Enterprise
3556
+ */
3557
+ value: string;
3558
+ };
3489
3559
  /** @description BusinessMetricValues model */
3490
3560
  BusinessMetricValues: {
3491
3561
  values: components["schemas"]["BusinessMetricValue"][];
@@ -3523,6 +3593,21 @@ interface components {
3523
3593
  unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
3524
3594
  /** @description Include only values with these labels in the CostReport. */
3525
3595
  label_filter?: string[];
3596
+ /**
3597
+ * @description Include only ClickHouse BusinessMetric values matching every label key and one of its values.
3598
+ * @example {
3599
+ * "team": [
3600
+ * "platform",
3601
+ * "finops"
3602
+ * ],
3603
+ * "environment": [
3604
+ * "production"
3605
+ * ]
3606
+ * }
3607
+ */
3608
+ label_filters?: {
3609
+ [key: string]: string[];
3610
+ };
3526
3611
  }[];
3527
3612
  /** @description The dates, amounts, and (optional) labels for the BusinessMetric. */
3528
3613
  values?: {
@@ -3561,6 +3646,13 @@ interface components {
3561
3646
  value?: string;
3562
3647
  }[];
3563
3648
  };
3649
+ /** @description Snowflake metric configuration fields. */
3650
+ snowflake_metric_fields?: {
3651
+ /** @description Integration token for the Snowflake integration from which you would like to fetch metrics. */
3652
+ integration_token?: string;
3653
+ /** @description Snowflake SQL query returning date, value, and optional label columns. */
3654
+ sql_query?: string;
3655
+ };
3564
3656
  };
3565
3657
  /** @description Updates an existing BusinessMetric. */
3566
3658
  updateBusinessMetric: {
@@ -3578,6 +3670,21 @@ interface components {
3578
3670
  unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
3579
3671
  /** @description Include only values with these labels in the CostReport. */
3580
3672
  label_filter?: string[];
3673
+ /**
3674
+ * @description Include only ClickHouse BusinessMetric values matching every label key and one of its values.
3675
+ * @example {
3676
+ * "team": [
3677
+ * "platform",
3678
+ * "finops"
3679
+ * ],
3680
+ * "environment": [
3681
+ * "production"
3682
+ * ]
3683
+ * }
3684
+ */
3685
+ label_filters?: {
3686
+ [key: string]: string[];
3687
+ };
3581
3688
  }[];
3582
3689
  /** @description The dates, amounts, and (optional) labels for the BusinessMetric. */
3583
3690
  values?: {
@@ -3616,6 +3723,13 @@ interface components {
3616
3723
  value?: string;
3617
3724
  }[];
3618
3725
  };
3726
+ /** @description Snowflake metric configuration fields. */
3727
+ snowflake_metric_fields?: {
3728
+ /** @description Integration token for the Snowflake integration from which you would like to fetch metrics. */
3729
+ integration_token?: string;
3730
+ /** @description Snowflake SQL query returning date, value, and optional label columns. */
3731
+ sql_query?: string;
3732
+ };
3619
3733
  };
3620
3734
  /** @description BusinessMetricValuesDeleteResponse model */
3621
3735
  BusinessMetricValuesDeleteResponse: {
@@ -3965,11 +4079,29 @@ interface components {
3965
4079
  * @enum {string}
3966
4080
  */
3967
4081
  calculation_type: "unit_cost" | "gross_margin" | "usage_unit_cost" | "raw_business_metric";
4082
+ /**
4083
+ * @description Optional custom display name for this BusinessMetric on the CostReport. When omitted, a default is derived from the calculation type.
4084
+ * @example Gross Margin
4085
+ */
4086
+ label?: string | null;
3968
4087
  /** @description The labels that the BusinessMetric is filtered by within a particular CostReport. */
3969
4088
  label_filter?: string[] | null;
4089
+ /**
4090
+ * @description The ClickHouse BusinessMetric label filters applied within a CostReport. Each key is required and values within a key are alternatives.
4091
+ * @example {
4092
+ * "team": [
4093
+ * "platform",
4094
+ * "finops"
4095
+ * ],
4096
+ * "environment": [
4097
+ * "production"
4098
+ * ]
4099
+ * }
4100
+ */
4101
+ label_filters?: Record<string, any> | null;
3970
4102
  };
3971
4103
  ChartSettings: {
3972
- /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage'. Defaults to 'cost'. */
4104
+ /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
3973
4105
  y_axis_dimension: string;
3974
4106
  /** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
3975
4107
  x_axis_dimension: string[];
@@ -4001,7 +4133,7 @@ interface components {
4001
4133
  * @example aws
4002
4134
  * @enum {string}
4003
4135
  */
4004
- provider: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "all";
4136
+ provider: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai" | "all";
4005
4137
  /**
4006
4138
  * @description The service for the forecasted cost. Will be 'all' for all combined services
4007
4139
  * @example Amazon Elastic Compute Cloud - Compute
@@ -4014,7 +4146,7 @@ interface components {
4014
4146
  title: string;
4015
4147
  /** @description The token of the Workspace to add the Cost Report to. Ignored if 'folder_token' is set. Required if the API token is associated with multiple Workspaces. */
4016
4148
  workspace_token?: string;
4017
- /** @description Grouping values for aggregating costs on the report. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
4149
+ /** @description Grouping values for aggregating costs on the report. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, usage_unit, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
4018
4150
  groupings?: string;
4019
4151
  /** @description The filter query language to apply to the CostReport. Additional documentation available at https://docs.vantage.sh/vql. */
4020
4152
  filter?: string;
@@ -4032,6 +4164,21 @@ interface components {
4032
4164
  unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
4033
4165
  /** @description Include only values with these labels in the CostReport. */
4034
4166
  label_filter?: string[];
4167
+ /**
4168
+ * @description Include only ClickHouse BusinessMetric values matching every label key and one of its values.
4169
+ * @example {
4170
+ * "team": [
4171
+ * "platform",
4172
+ * "finops"
4173
+ * ],
4174
+ * "environment": [
4175
+ * "production"
4176
+ * ]
4177
+ * }
4178
+ */
4179
+ label_filters?: {
4180
+ [key: string]: string[];
4181
+ };
4035
4182
  }[];
4036
4183
  /** @description The token of the Folder to add the CostReport to. Determines the Workspace the report is assigned to. */
4037
4184
  folder_token?: string;
@@ -4112,7 +4259,7 @@ interface components {
4112
4259
  chart_settings?: {
4113
4260
  /** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
4114
4261
  x_axis_dimension?: string[];
4115
- /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage'. Defaults to 'cost'. */
4262
+ /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
4116
4263
  y_axis_dimension?: string;
4117
4264
  };
4118
4265
  };
@@ -4120,7 +4267,7 @@ interface components {
4120
4267
  updateCostReport: {
4121
4268
  /** @description The title of the CostReport. */
4122
4269
  title?: string;
4123
- /** @description Grouping values for aggregating costs on the report. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
4270
+ /** @description Grouping values for aggregating costs on the report. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, usage_unit, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
4124
4271
  groupings?: string;
4125
4272
  /** @description The filter query language to apply to the CostReport. Additional documentation available at https://docs.vantage.sh/vql. */
4126
4273
  filter?: string;
@@ -4138,6 +4285,21 @@ interface components {
4138
4285
  unit_scale?: "per_unit" | "per_hundred" | "per_thousand" | "per_million" | "per_billion";
4139
4286
  /** @description Include only values with these labels in the CostReport. */
4140
4287
  label_filter?: string[];
4288
+ /**
4289
+ * @description Include only ClickHouse BusinessMetric values matching every label key and one of its values.
4290
+ * @example {
4291
+ * "team": [
4292
+ * "platform",
4293
+ * "finops"
4294
+ * ],
4295
+ * "environment": [
4296
+ * "production"
4297
+ * ]
4298
+ * }
4299
+ */
4300
+ label_filters?: {
4301
+ [key: string]: string[];
4302
+ };
4141
4303
  }[];
4142
4304
  /** @description The token of the Folder to add the CostReport to. Determines the Workspace the report is assigned to. */
4143
4305
  folder_token?: string;
@@ -4176,7 +4338,7 @@ interface components {
4176
4338
  chart_settings?: {
4177
4339
  /** @description The dimension used to group or label data along the x-axis (e.g., by date, region, or service). NOTE: Only one value is allowed at this time. Defaults to ['date']. */
4178
4340
  x_axis_dimension?: string[];
4179
- /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage'. Defaults to 'cost'. */
4341
+ /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
4180
4342
  y_axis_dimension?: string;
4181
4343
  };
4182
4344
  /** @description The previous period start date of the CostReport. ISO 8601 Formatted. */
@@ -4215,7 +4377,7 @@ interface components {
4215
4377
  start_date?: string;
4216
4378
  /** @description Last date you would like to filter costs to. ISO 8601 formatted. */
4217
4379
  end_date?: string;
4218
- /** @description Group the results by specific field(s). Defaults to provider, service, account_id. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
4380
+ /** @description Group the results by specific field(s). Defaults to provider, service, account_id. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, usage_unit, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
4219
4381
  groupings?: string[];
4220
4382
  /**
4221
4383
  * @description The date bin of the costs. Defaults to the report's default or day.
@@ -4329,7 +4491,7 @@ interface components {
4329
4491
  * @example aws
4330
4492
  * @enum {string|null}
4331
4493
  */
4332
- provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | null;
4494
+ provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai" | null;
4333
4495
  /**
4334
4496
  * @description The cost provider's billing account id that incurred the cost.
4335
4497
  * @example 9109237192
@@ -5364,6 +5526,35 @@ interface components {
5364
5526
  */
5365
5527
  created_at: string;
5366
5528
  };
5529
+ /** @description NetworkFlowLogs model */
5530
+ NetworkFlowLogs: {
5531
+ links?: components["schemas"]["Links"];
5532
+ /** @description The dimension used to order the aggregated rows. */
5533
+ flow_weight: string;
5534
+ /** @description Sampling metadata for the selected data. */
5535
+ sampling: Record<string, any>;
5536
+ network_flow_logs: components["schemas"]["NetworkFlowLog"][];
5537
+ };
5538
+ NetworkFlowLog: {
5539
+ /** @description The grouping values for this aggregated Network Flow Log row. */
5540
+ groupings: Record<string, any>;
5541
+ /**
5542
+ * Format: float
5543
+ * @description The sampling-adjusted estimated byte count.
5544
+ */
5545
+ bytes: number;
5546
+ /** @description The sampling-adjusted estimated cost. */
5547
+ estimated_cost: string;
5548
+ /** @description The ISO 4217 currency code for estimated costs. */
5549
+ currency: string;
5550
+ /**
5551
+ * Format: float
5552
+ * @description The observed byte count when sampling applies.
5553
+ */
5554
+ sampled_bytes: number | null;
5555
+ /** @description The observed estimated cost when sampling applies. */
5556
+ sampled_estimated_cost: string | null;
5557
+ };
5367
5558
  /** @description NetworkFlowReports model */
5368
5559
  NetworkFlowReports: {
5369
5560
  links?: components["schemas"]["Links"];
@@ -5431,26 +5622,26 @@ interface components {
5431
5622
  filter?: string;
5432
5623
  /**
5433
5624
  * Format: date
5434
- * @description The start date of the NetworkFlowReport. YYYY-MM-DD formatted. Incompatible with 'date_interval' parameter.
5625
+ * @description The start date of a custom NetworkFlowReport. YYYY-MM-DD formatted.
5435
5626
  */
5436
5627
  start_date?: string;
5437
5628
  /**
5438
5629
  * Format: date
5439
- * @description The end date of the NetworkFlowReport. YYYY-MM-DD formatted. Incompatible with 'date_interval' parameter.
5630
+ * @description The end date of a custom NetworkFlowReport. YYYY-MM-DD formatted.
5440
5631
  */
5441
5632
  end_date?: string;
5442
5633
  /**
5443
- * @description The date interval of the NetworkFlowReport. Unless 'custom' is used, this is incompatible with 'start_date' and 'end_date' parameters. Defaults to 'last_7_days'.
5634
+ * @description The date interval of the NetworkFlowReport. Dates are used only for the 'custom' interval. Defaults to 'last_7_days'.
5444
5635
  * @enum {string}
5445
5636
  */
5446
- date_interval?: "last_3_days" | "last_7_days" | "custom";
5637
+ date_interval?: "last_3_days" | "last_7_days" | "last_14_days" | "last_30_days" | "custom";
5447
5638
  /** @description Grouping values for aggregating data on the NetworkFlowReport. Valid groupings: account_id, az_id, dstaddr, dsthostname, flow_direction, interface_id, instance_id, peer_resource_uuid, peer_account_id, peer_vpc_id, peer_region, peer_az_id, peer_subnet_id, peer_interface_id, peer_instance_id, region, resource_uuid, srcaddr, srchostname, subnet_id, traffic_category, traffic_path, vpc_id. */
5448
5639
  groupings?: ("account_id" | "az_id" | "dstaddr" | "dsthostname" | "flow_direction" | "interface_id" | "instance_id" | "peer_resource_uuid" | "peer_account_id" | "peer_vpc_id" | "peer_region" | "peer_az_id" | "peer_subnet_id" | "peer_interface_id" | "peer_instance_id" | "region" | "resource_uuid" | "srcaddr" | "srchostname" | "subnet_id" | "traffic_category" | "traffic_path" | "vpc_id")[];
5449
5640
  /**
5450
5641
  * @description The flow direction of the NetworkFlowReport.
5451
5642
  * @enum {string}
5452
5643
  */
5453
- flow_direction?: "ingress" | "egress";
5644
+ flow_direction?: "all" | "ingress" | "egress";
5454
5645
  /**
5455
5646
  * @description The dimension by which the logs in the report are sorted. Defaults to costs.
5456
5647
  * @enum {string}
@@ -5465,26 +5656,26 @@ interface components {
5465
5656
  filter?: string;
5466
5657
  /**
5467
5658
  * Format: date
5468
- * @description The start date of the NetworkFlowReport. YYYY-MM-DD formatted. Incompatible with 'date_interval' parameter.
5659
+ * @description The start date of a custom NetworkFlowReport. YYYY-MM-DD formatted.
5469
5660
  */
5470
5661
  start_date?: string;
5471
5662
  /**
5472
5663
  * Format: date
5473
- * @description The end date of the NetworkFlowReport. YYYY-MM-DD formatted. Incompatible with 'date_interval' parameter.
5664
+ * @description The end date of a custom NetworkFlowReport. YYYY-MM-DD formatted.
5474
5665
  */
5475
5666
  end_date?: string;
5476
5667
  /**
5477
- * @description The date interval of the NetworkFlowReport. Unless 'custom' is used, this is incompatible with 'start_date' and 'end_date' parameters. Defaults to 'last_7_days'.
5668
+ * @description The date interval of the NetworkFlowReport. Dates are used only for the 'custom' interval. Defaults to 'last_7_days'.
5478
5669
  * @enum {string}
5479
5670
  */
5480
- date_interval?: "last_3_days" | "last_7_days" | "custom";
5671
+ date_interval?: "last_3_days" | "last_7_days" | "last_14_days" | "last_30_days" | "custom";
5481
5672
  /** @description Grouping values for aggregating data on the NetworkFlowReport. Valid groupings: account_id, az_id, dstaddr, dsthostname, flow_direction, interface_id, instance_id, peer_resource_uuid, peer_account_id, peer_vpc_id, peer_region, peer_az_id, peer_subnet_id, peer_interface_id, peer_instance_id, region, resource_uuid, srcaddr, srchostname, subnet_id, traffic_category, traffic_path, vpc_id. */
5482
5673
  groupings?: ("account_id" | "az_id" | "dstaddr" | "dsthostname" | "flow_direction" | "interface_id" | "instance_id" | "peer_resource_uuid" | "peer_account_id" | "peer_vpc_id" | "peer_region" | "peer_az_id" | "peer_subnet_id" | "peer_interface_id" | "peer_instance_id" | "region" | "resource_uuid" | "srcaddr" | "srchostname" | "subnet_id" | "traffic_category" | "traffic_path" | "vpc_id")[];
5483
5674
  /**
5484
5675
  * @description The flow direction of the NetworkFlowReport.
5485
5676
  * @enum {string}
5486
5677
  */
5487
- flow_direction?: "ingress" | "egress";
5678
+ flow_direction?: "all" | "ingress" | "egress";
5488
5679
  /**
5489
5680
  * @description The dimension by which the logs in the report are sorted. Defaults to costs.
5490
5681
  * @enum {string}
@@ -8552,7 +8743,7 @@ interface operations {
8552
8743
  query?: {
8553
8744
  /** @description The page of results to return. */
8554
8745
  page?: number;
8555
- /** @description The amount of results to return. The maximum is 1000. */
8746
+ /** @description The amount of results to return. The maximum is 5000. */
8556
8747
  limit?: number;
8557
8748
  };
8558
8749
  header?: never;
@@ -8862,15 +9053,74 @@ interface operations {
8862
9053
  };
8863
9054
  };
8864
9055
  };
9056
+ getBusinessMetricLabels: {
9057
+ parameters: {
9058
+ query?: {
9059
+ /** @description The page of results to return. */
9060
+ page?: number;
9061
+ /** @description The number of results to return per page. Defaults to 1000. The maximum is 5000. */
9062
+ limit?: number;
9063
+ };
9064
+ header?: never;
9065
+ path: {
9066
+ business_metric_token: string;
9067
+ };
9068
+ cookie?: never;
9069
+ };
9070
+ requestBody?: never;
9071
+ responses: {
9072
+ 200: {
9073
+ headers: {
9074
+ [name: string]: unknown;
9075
+ };
9076
+ content: {
9077
+ /**
9078
+ * @example {
9079
+ * "links": {
9080
+ * "self": "https://api.vantage.sh/v2/business_metrics/bsnss_mtrc_aaf0a1b22b10aecc/labels",
9081
+ * "first": "https://api.vantage.sh/v2/business_metrics/bsnss_mtrc_aaf0a1b22b10aecc/labels?page=1",
9082
+ * "next": null,
9083
+ * "last": "https://api.vantage.sh/v2/business_metrics/bsnss_mtrc_aaf0a1b22b10aecc/labels?page=1",
9084
+ * "prev": null
9085
+ * },
9086
+ * "labels": [
9087
+ * {
9088
+ * "value": "alpha"
9089
+ * },
9090
+ * {
9091
+ * "value": "beta"
9092
+ * },
9093
+ * {
9094
+ * "value": "Enterprise"
9095
+ * }
9096
+ * ]
9097
+ * }
9098
+ */
9099
+ "application/json": components["schemas"]["BusinessMetricLabels"];
9100
+ };
9101
+ };
9102
+ /** @description NotFound */
9103
+ 404: {
9104
+ headers: {
9105
+ [name: string]: unknown;
9106
+ };
9107
+ content: {
9108
+ "application/json": components["schemas"]["Errors"];
9109
+ };
9110
+ };
9111
+ };
9112
+ };
8865
9113
  getBusinessMetricValues: {
8866
9114
  parameters: {
8867
9115
  query?: {
8868
9116
  /** @description The page of results to return. */
8869
9117
  page?: number;
8870
- /** @description The amount of results to return. The maximum is 1000. */
9118
+ /** @description The amount of results to return. The maximum is 5000. */
8871
9119
  limit?: number;
8872
9120
  /** @description Query BusinessMetrics by the first date you would like to filter from. ISO 8601 Formatted - 2021-07-15 */
8873
9121
  start_date?: string;
9122
+ /** @description Return values matching any exact label value. For multi-label metrics, matches values under any label key. */
9123
+ label_values?: string[];
8874
9124
  };
8875
9125
  header?: never;
8876
9126
  path: {
@@ -8984,7 +9234,7 @@ interface operations {
8984
9234
  query?: {
8985
9235
  /** @description The page of results to return. */
8986
9236
  page?: number;
8987
- /** @description The amount of results to return. The maximum is 1000. */
9237
+ /** @description The amount of results to return. The maximum is 5000. */
8988
9238
  limit?: number;
8989
9239
  /** @description Query BusinessMetrics by the first date you would like to filter from. ISO 8601 Formatted - 2021-07-15 */
8990
9240
  start_date?: string;
@@ -9671,7 +9921,7 @@ interface operations {
9671
9921
  /** @description The token of the Workspace to list CostProviderAccounts for. Required if the API token is associated with multiple Workspaces. */
9672
9922
  workspace_token?: string;
9673
9923
  /** @description Filter by provider type. */
9674
- provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten";
9924
+ provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai";
9675
9925
  /** @description Filter by provider account identifier. */
9676
9926
  account_id?: string;
9677
9927
  /** @description Filter by account name (exact match). */
@@ -10095,7 +10345,7 @@ interface operations {
10095
10345
  /** @description Last date you would like to filter forecasted costs from. ISO 8601 formatted. */
10096
10346
  end_date?: string;
10097
10347
  /** @description Limit the forecasted costs to a specific provider. 'all' is accepted to filter to overall forecast. */
10098
- provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "all";
10348
+ provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai" | "all";
10099
10349
  /** @description Limit the forecasted costs to a specific service. 'all' is accepted to filter to overall forecast. e.g. 'Amazon ElastiCache'. */
10100
10350
  service?: string;
10101
10351
  /** @description The page of results to return. */
@@ -10251,7 +10501,7 @@ interface operations {
10251
10501
  start_date?: string;
10252
10502
  /** @description Last date you would like to filter costs to. ISO 8601 formatted. */
10253
10503
  end_date?: string;
10254
- /** @description Group the results by specific field(s). Defaults to provider, service, account_id. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
10504
+ /** @description Group the results by specific field(s). Defaults to provider, service, account_id. Valid groupings: account_id, billing_account_id, charge_type, cost_category, cost_subcategory, provider, region, resource_id, service, tagged, usage_unit, tag:<tag_value>. If providing multiple groupings, join as comma separated values: groupings=provider,service,region */
10255
10505
  groupings?: string[];
10256
10506
  /** @description Whether to order costs by date in an ascending or descending manner. */
10257
10507
  order?: "asc" | "desc";
@@ -11420,7 +11670,7 @@ interface operations {
11420
11670
  parameters: {
11421
11671
  query?: {
11422
11672
  /** @description Query by provider name to list all Integrations for a specific provider. */
11423
- provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten";
11673
+ provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai";
11424
11674
  /** @description Query by account identifier to list all Integrations that match a specific account. For Azure, this is the subscription ID. Must include provider when using this parameter. */
11425
11675
  account_identifier?: string;
11426
11676
  /** @description The page of results to return. */
@@ -12867,9 +13117,115 @@ interface operations {
12867
13117
  };
12868
13118
  };
12869
13119
  };
13120
+ getNetworkFlowLogs: {
13121
+ parameters: {
13122
+ query?: {
13123
+ network_flow_report_token?: string;
13124
+ workspace_token?: string;
13125
+ filter?: string;
13126
+ date_interval?: "last_3_days" | "last_7_days" | "last_14_days" | "last_30_days";
13127
+ start_date?: string;
13128
+ end_date?: string;
13129
+ groupings?: ("account_id" | "az_id" | "dstaddr" | "dsthostname" | "flow_direction" | "interface_id" | "instance_id" | "peer_resource_uuid" | "peer_account_id" | "peer_vpc_id" | "peer_region" | "peer_az_id" | "peer_subnet_id" | "peer_interface_id" | "peer_instance_id" | "region" | "resource_uuid" | "srcaddr" | "srchostname" | "subnet_id" | "traffic_category" | "traffic_path" | "vpc_id")[];
13130
+ flow_direction?: "all" | "ingress" | "egress";
13131
+ flow_weight?: "costs" | "bytes";
13132
+ page?: number;
13133
+ limit?: number;
13134
+ };
13135
+ header?: never;
13136
+ path?: never;
13137
+ cookie?: never;
13138
+ };
13139
+ requestBody?: never;
13140
+ responses: {
13141
+ 200: {
13142
+ headers: {
13143
+ [name: string]: unknown;
13144
+ };
13145
+ content: {
13146
+ /**
13147
+ * @example {
13148
+ * "links": {
13149
+ * "self": "https://api.vantage.sh/v2/network_flow_logs?network_flow_report_token=ntflw_lg_rprt_aea0bdc238d0cf65",
13150
+ * "first": "https://api.vantage.sh/v2/network_flow_logs?network_flow_report_token=ntflw_lg_rprt_aea0bdc238d0cf65&page=1",
13151
+ * "next": null,
13152
+ * "last": null,
13153
+ * "prev": null
13154
+ * },
13155
+ * "flow_weight": "costs",
13156
+ * "sampling": {
13157
+ * "sampled": true,
13158
+ * "max_sampling_rate_percent": 50
13159
+ * },
13160
+ * "network_flow_logs": [
13161
+ * {
13162
+ * "groupings": {
13163
+ * "resource_uuid": {
13164
+ * "value": "resource-123",
13165
+ * "label": "production-web-1",
13166
+ * "provider_resource_token": "prvdr_rsrc_39e94b2468400dca"
13167
+ * },
13168
+ * "traffic_category": {
13169
+ * "value": "public",
13170
+ * "label": "public",
13171
+ * "provider_resource_token": null
13172
+ * }
13173
+ * },
13174
+ * "bytes": 200,
13175
+ * "estimated_cost": "2.5",
13176
+ * "currency": "USD",
13177
+ * "sampled_bytes": 100,
13178
+ * "sampled_estimated_cost": "1.25"
13179
+ * }
13180
+ * ]
13181
+ * }
13182
+ */
13183
+ "application/json": components["schemas"]["NetworkFlowLogs"];
13184
+ };
13185
+ };
13186
+ /** @description BadRequest */
13187
+ 400: {
13188
+ headers: {
13189
+ [name: string]: unknown;
13190
+ };
13191
+ content: {
13192
+ "application/json": components["schemas"]["Errors"];
13193
+ };
13194
+ };
13195
+ /** @description PaymentRequired */
13196
+ 402: {
13197
+ headers: {
13198
+ [name: string]: unknown;
13199
+ };
13200
+ content: {
13201
+ "application/json": components["schemas"]["Errors"];
13202
+ };
13203
+ };
13204
+ /** @description NotFound */
13205
+ 404: {
13206
+ headers: {
13207
+ [name: string]: unknown;
13208
+ };
13209
+ content: {
13210
+ "application/json": components["schemas"]["Errors"];
13211
+ };
13212
+ };
13213
+ /** @description UnprocessableEntity */
13214
+ 422: {
13215
+ headers: {
13216
+ [name: string]: unknown;
13217
+ };
13218
+ content: {
13219
+ "application/json": components["schemas"]["Errors"];
13220
+ };
13221
+ };
13222
+ };
13223
+ };
12870
13224
  getNetworkFlowReports: {
12871
13225
  parameters: {
12872
13226
  query?: {
13227
+ /** @description A search query to filter NetworkFlowReports by title. */
13228
+ q?: string;
12873
13229
  /** @description The page of results to return. */
12874
13230
  page?: number;
12875
13231
  /** @description The amount of results to return. The maximum is 1000. */
@@ -15258,7 +15614,7 @@ interface operations {
15258
15614
  parameters: {
15259
15615
  query?: {
15260
15616
  /** @description An array of providers to scope Tags by. */
15261
- providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten")[];
15617
+ providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai")[];
15262
15618
  /** @description A search query to filter Tags by tag key. */
15263
15619
  search_query?: string;
15264
15620
  /** @description The direction in which you would like to sort the data by. Defaults to 'asc'. */
@@ -15396,7 +15752,7 @@ interface operations {
15396
15752
  parameters: {
15397
15753
  query?: {
15398
15754
  /** @description An array of providers to scope TagValues by. */
15399
- providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten")[];
15755
+ providers?: ("aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | "redis_cloud" | "circle_ci" | "modal" | "eleven_labs" | "baseten" | "cloudflare" | "fireworks_ai")[];
15400
15756
  /** @description The direction in which to sort the TagValues. Defaults to 'asc'. */
15401
15757
  sort_direction?: "asc" | "desc";
15402
15758
  /** @description A search query to filter TagValues by the value name. */
@@ -16286,7 +16642,10 @@ interface operations {
16286
16642
  };
16287
16643
  getVirtualTagConfigs: {
16288
16644
  parameters: {
16289
- query?: never;
16645
+ query?: {
16646
+ /** @description A search query to filter VirtualTagConfigs by key. */
16647
+ q?: string;
16648
+ };
16290
16649
  header?: never;
16291
16650
  path?: never;
16292
16651
  cookie?: never;
@@ -17309,6 +17668,14 @@ type UpdateBusinessMetricResponse = ResponseBodyForPathAndMethod<`/v2/business_m
17309
17668
  * Response type for Delete business metric
17310
17669
  */
17311
17670
  type DeleteBusinessMetricResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}`, "DELETE">;
17671
+ /**
17672
+ * Return labels of a BusinessMetric.
17673
+ */
17674
+ type GetBusinessMetricLabelsRequest = RequestBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/labels`, "GET">;
17675
+ /**
17676
+ * Response type for Get business metric labels
17677
+ */
17678
+ type GetBusinessMetricLabelsResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/labels`, "GET">;
17312
17679
  /**
17313
17680
  * Return values of a BusinessMetric
17314
17681
  */
@@ -17829,6 +18196,14 @@ type UpdateMeRequest = RequestBodyForPathAndMethod<"/v2/me", "PUT">;
17829
18196
  * Response type for Update authenticated user
17830
18197
  */
17831
18198
  type UpdateMeResponse = ResponseBodyForPathAndMethod<"/v2/me", "PUT">;
18199
+ /**
18200
+ * Return aggregated Network Flow Logs for a saved report or ad hoc VQL query.
18201
+ */
18202
+ type GetNetworkFlowLogsRequest = RequestBodyForPathAndMethod<"/v2/network_flow_logs", "GET">;
18203
+ /**
18204
+ * Response type for Get network flow logs
18205
+ */
18206
+ type GetNetworkFlowLogsResponse = ResponseBodyForPathAndMethod<"/v2/network_flow_logs", "GET">;
17832
18207
  /**
17833
18208
  * Return all NetworkFlowReports.
17834
18209
  */
@@ -18222,6 +18597,10 @@ type UpdateUserRequest = RequestBodyForPathAndMethod<`/v2/users/${NoSlashString}
18222
18597
  * Response type for Update a user
18223
18598
  */
18224
18599
  type UpdateUserResponse = ResponseBodyForPathAndMethod<`/v2/users/${NoSlashString}`, "PUT">;
18600
+ /**
18601
+ * Return all VirtualTagConfigs that the current API token has access to.
18602
+ */
18603
+ type GetVirtualTagConfigsRequest = RequestBodyForPathAndMethod<"/v2/virtual_tag_configs", "GET">;
18225
18604
  /**
18226
18605
  * Response type for Get all virtual tag configs
18227
18606
  */
@@ -18335,6 +18714,7 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
18335
18714
  private _kubernetesEfficiencyReports?;
18336
18715
  private _managedAccounts?;
18337
18716
  private _me?;
18717
+ private _networkFlowLogs?;
18338
18718
  private _networkFlowReports?;
18339
18719
  private _ping?;
18340
18720
  private _products?;
@@ -18379,6 +18759,7 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
18379
18759
  get kubernetesEfficiencyReports(): KubernetesEfficiencyReportsApi<NeverThrow>;
18380
18760
  get managedAccounts(): ManagedAccountsApi<NeverThrow>;
18381
18761
  get me(): MeApi<NeverThrow>;
18762
+ get networkFlowLogs(): NetworkFlowLogsApi<NeverThrow>;
18382
18763
  get networkFlowReports(): NetworkFlowReportsApi<NeverThrow>;
18383
18764
  get ping(): PingApi<NeverThrow>;
18384
18765
  get products(): ProductsApi<NeverThrow>;
@@ -19158,6 +19539,16 @@ declare class BusinessMetricsApi<NeverThrow extends boolean> {
19158
19539
  * Deletes an existing BusinessMetric.
19159
19540
  */
19160
19541
  delete(businessMetricToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
19542
+ /**
19543
+ * Return labels of a BusinessMetric.
19544
+ */
19545
+ getLabels(businessMetricToken: string, body?: GetBusinessMetricLabelsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19546
+ links?: components["schemas"]["Links"];
19547
+ labels: components["schemas"]["BusinessMetricLabel"][];
19548
+ }, null] : {
19549
+ links?: components["schemas"]["Links"];
19550
+ labels: components["schemas"]["BusinessMetricLabel"][];
19551
+ }>;
19161
19552
  /**
19162
19553
  * Return values of a BusinessMetric
19163
19554
  */
@@ -20661,6 +21052,24 @@ declare class MeApi<NeverThrow extends boolean> {
20661
21052
  bearer_token: components["schemas"]["BearerToken"];
20662
21053
  }>;
20663
21054
  }
21055
+ declare class NetworkFlowLogsApi<NeverThrow extends boolean> {
21056
+ private client;
21057
+ constructor(client: BaseClient<NeverThrow>);
21058
+ /**
21059
+ * Return aggregated Network Flow Logs for a saved report or ad hoc VQL query.
21060
+ */
21061
+ list(body?: GetNetworkFlowLogsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
21062
+ links?: components["schemas"]["Links"];
21063
+ flow_weight: string;
21064
+ sampling: Record<string, any>;
21065
+ network_flow_logs: components["schemas"]["NetworkFlowLog"][];
21066
+ }, null] : {
21067
+ links?: components["schemas"]["Links"];
21068
+ flow_weight: string;
21069
+ sampling: Record<string, any>;
21070
+ network_flow_logs: components["schemas"]["NetworkFlowLog"][];
21071
+ }>;
21072
+ }
20664
21073
  declare class NetworkFlowReportsApi<NeverThrow extends boolean> {
20665
21074
  private client;
20666
21075
  constructor(client: BaseClient<NeverThrow>);
@@ -21700,6 +22109,14 @@ declare class UsersApi<NeverThrow extends boolean> {
21700
22109
  declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
21701
22110
  private client;
21702
22111
  constructor(client: BaseClient<NeverThrow>);
22112
+ /**
22113
+ * Return all VirtualTagConfigs that the current API token has access to.
22114
+ */
22115
+ list(body?: GetVirtualTagConfigsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22116
+ virtual_tag_configs: components["schemas"]["VirtualTagConfig"][];
22117
+ }, null] : {
22118
+ virtual_tag_configs: components["schemas"]["VirtualTagConfig"][];
22119
+ }>;
21703
22120
  /**
21704
22121
  * Create a new VirtualTagConfig.
21705
22122
  */
@@ -21721,12 +22138,24 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
21721
22138
  values: components["schemas"]["VirtualTagConfigValue"][];
21722
22139
  }>;
21723
22140
  /**
21724
- * Return all VirtualTagConfigs that the current API token has access to.
22141
+ * Return a specific VirtualTagConfig.
21725
22142
  */
21726
- get(): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
21727
- virtual_tag_configs: components["schemas"]["VirtualTagConfig"][];
22143
+ get(token: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
22144
+ token: string;
22145
+ created_by_token: string | null;
22146
+ key: string;
22147
+ overridable: boolean;
22148
+ backfill_until: string;
22149
+ collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
22150
+ values: components["schemas"]["VirtualTagConfigValue"][];
21728
22151
  }, null] : {
21729
- virtual_tag_configs: components["schemas"]["VirtualTagConfig"][];
22152
+ token: string;
22153
+ created_by_token: string | null;
22154
+ key: string;
22155
+ overridable: boolean;
22156
+ backfill_until: string;
22157
+ collapsed_tag_keys: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
22158
+ values: components["schemas"]["VirtualTagConfigValue"][];
21730
22159
  }>;
21731
22160
  /**
21732
22161
  * Updates an existing VirtualTagConfig.
@@ -21966,4 +22395,4 @@ declare class BaseClient<NeverThrow extends boolean> {
21966
22395
  request<RequestPath extends Path, RequestMethod extends SupportedMethods<RequestPath>>(path: RequestPath, method: RequestMethod, body: RequestBodyForPathAndMethod<RequestPath, RequestMethod>): Promise<NeverThrow extends true ? NeverThrowResult<ResponseBodyForPathAndMethod<RequestPath, RequestMethod>> : ResponseBodyForPathAndMethod<RequestPath, RequestMethod>>;
21967
22396
  }
21968
22397
 
21969
- export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCanvasRequest, type UpdateCanvasResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
22398
+ 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 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 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 };