@vantage-sh/vantage-client 2.6.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.ts CHANGED
@@ -1571,6 +1571,26 @@ interface paths {
1571
1571
  patch?: never;
1572
1572
  trace?: never;
1573
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
+ };
1574
1594
  "/network_flow_reports": {
1575
1595
  parameters: {
1576
1596
  query?: never;
@@ -3465,6 +3485,19 @@ interface components {
3465
3485
  label?: string | null;
3466
3486
  /** @description The labels that the BusinessMetric is filtered by within a particular CostReport. */
3467
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;
3468
3501
  };
3469
3502
  CloudwatchFields: {
3470
3503
  /**
@@ -3558,16 +3591,23 @@ interface components {
3558
3591
  * @enum {string}
3559
3592
  */
3560
3593
  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;
3569
3594
  /** @description Include only values with these labels in the CostReport. */
3570
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
+ };
3571
3611
  }[];
3572
3612
  /** @description The dates, amounts, and (optional) labels for the BusinessMetric. */
3573
3613
  values?: {
@@ -3628,16 +3668,23 @@ interface components {
3628
3668
  * @enum {string}
3629
3669
  */
3630
3670
  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;
3639
3671
  /** @description Include only values with these labels in the CostReport. */
3640
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
+ };
3641
3688
  }[];
3642
3689
  /** @description The dates, amounts, and (optional) labels for the BusinessMetric. */
3643
3690
  values?: {
@@ -4039,6 +4086,19 @@ interface components {
4039
4086
  label?: string | null;
4040
4087
  /** @description The labels that the BusinessMetric is filtered by within a particular CostReport. */
4041
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;
4042
4102
  };
4043
4103
  ChartSettings: {
4044
4104
  /** @description The metric or measure displayed on the chart’s y-axis. Possible values: 'cost', 'usage', 'count'. Defaults to 'cost'. */
@@ -4086,7 +4146,7 @@ interface components {
4086
4146
  title: string;
4087
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. */
4088
4148
  workspace_token?: string;
4089
- /** @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 */
4090
4150
  groupings?: string;
4091
4151
  /** @description The filter query language to apply to the CostReport. Additional documentation available at https://docs.vantage.sh/vql. */
4092
4152
  filter?: string;
@@ -4102,16 +4162,23 @@ interface components {
4102
4162
  * @enum {string}
4103
4163
  */
4104
4164
  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;
4113
4165
  /** @description Include only values with these labels in the CostReport. */
4114
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
+ };
4115
4182
  }[];
4116
4183
  /** @description The token of the Folder to add the CostReport to. Determines the Workspace the report is assigned to. */
4117
4184
  folder_token?: string;
@@ -4200,7 +4267,7 @@ interface components {
4200
4267
  updateCostReport: {
4201
4268
  /** @description The title of the CostReport. */
4202
4269
  title?: string;
4203
- /** @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 */
4204
4271
  groupings?: string;
4205
4272
  /** @description The filter query language to apply to the CostReport. Additional documentation available at https://docs.vantage.sh/vql. */
4206
4273
  filter?: string;
@@ -4216,16 +4283,23 @@ interface components {
4216
4283
  * @enum {string}
4217
4284
  */
4218
4285
  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;
4227
4286
  /** @description Include only values with these labels in the CostReport. */
4228
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
+ };
4229
4303
  }[];
4230
4304
  /** @description The token of the Folder to add the CostReport to. Determines the Workspace the report is assigned to. */
4231
4305
  folder_token?: string;
@@ -4303,7 +4377,7 @@ interface components {
4303
4377
  start_date?: string;
4304
4378
  /** @description Last date you would like to filter costs to. ISO 8601 formatted. */
4305
4379
  end_date?: string;
4306
- /** @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 */
4307
4381
  groupings?: string[];
4308
4382
  /**
4309
4383
  * @description The date bin of the costs. Defaults to the report's default or day.
@@ -5452,6 +5526,35 @@ interface components {
5452
5526
  */
5453
5527
  created_at: string;
5454
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
+ };
5455
5558
  /** @description NetworkFlowReports model */
5456
5559
  NetworkFlowReports: {
5457
5560
  links?: components["schemas"]["Links"];
@@ -5519,26 +5622,26 @@ interface components {
5519
5622
  filter?: string;
5520
5623
  /**
5521
5624
  * Format: date
5522
- * @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.
5523
5626
  */
5524
5627
  start_date?: string;
5525
5628
  /**
5526
5629
  * Format: date
5527
- * @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.
5528
5631
  */
5529
5632
  end_date?: string;
5530
5633
  /**
5531
- * @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'.
5532
5635
  * @enum {string}
5533
5636
  */
5534
- 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";
5535
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. */
5536
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")[];
5537
5640
  /**
5538
5641
  * @description The flow direction of the NetworkFlowReport.
5539
5642
  * @enum {string}
5540
5643
  */
5541
- flow_direction?: "ingress" | "egress";
5644
+ flow_direction?: "all" | "ingress" | "egress";
5542
5645
  /**
5543
5646
  * @description The dimension by which the logs in the report are sorted. Defaults to costs.
5544
5647
  * @enum {string}
@@ -5553,26 +5656,26 @@ interface components {
5553
5656
  filter?: string;
5554
5657
  /**
5555
5658
  * Format: date
5556
- * @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.
5557
5660
  */
5558
5661
  start_date?: string;
5559
5662
  /**
5560
5663
  * Format: date
5561
- * @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.
5562
5665
  */
5563
5666
  end_date?: string;
5564
5667
  /**
5565
- * @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'.
5566
5669
  * @enum {string}
5567
5670
  */
5568
- 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";
5569
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. */
5570
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")[];
5571
5674
  /**
5572
5675
  * @description The flow direction of the NetworkFlowReport.
5573
5676
  * @enum {string}
5574
5677
  */
5575
- flow_direction?: "ingress" | "egress";
5678
+ flow_direction?: "all" | "ingress" | "egress";
5576
5679
  /**
5577
5680
  * @description The dimension by which the logs in the report are sorted. Defaults to costs.
5578
5681
  * @enum {string}
@@ -8640,7 +8743,7 @@ interface operations {
8640
8743
  query?: {
8641
8744
  /** @description The page of results to return. */
8642
8745
  page?: number;
8643
- /** @description The amount of results to return. The maximum is 1000. */
8746
+ /** @description The amount of results to return. The maximum is 5000. */
8644
8747
  limit?: number;
8645
8748
  };
8646
8749
  header?: never;
@@ -9012,7 +9115,7 @@ interface operations {
9012
9115
  query?: {
9013
9116
  /** @description The page of results to return. */
9014
9117
  page?: number;
9015
- /** @description The amount of results to return. The maximum is 1000. */
9118
+ /** @description The amount of results to return. The maximum is 5000. */
9016
9119
  limit?: number;
9017
9120
  /** @description Query BusinessMetrics by the first date you would like to filter from. ISO 8601 Formatted - 2021-07-15 */
9018
9121
  start_date?: string;
@@ -9131,7 +9234,7 @@ interface operations {
9131
9234
  query?: {
9132
9235
  /** @description The page of results to return. */
9133
9236
  page?: number;
9134
- /** @description The amount of results to return. The maximum is 1000. */
9237
+ /** @description The amount of results to return. The maximum is 5000. */
9135
9238
  limit?: number;
9136
9239
  /** @description Query BusinessMetrics by the first date you would like to filter from. ISO 8601 Formatted - 2021-07-15 */
9137
9240
  start_date?: string;
@@ -10398,7 +10501,7 @@ interface operations {
10398
10501
  start_date?: string;
10399
10502
  /** @description Last date you would like to filter costs to. ISO 8601 formatted. */
10400
10503
  end_date?: string;
10401
- /** @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 */
10402
10505
  groupings?: string[];
10403
10506
  /** @description Whether to order costs by date in an ascending or descending manner. */
10404
10507
  order?: "asc" | "desc";
@@ -13014,9 +13117,115 @@ interface operations {
13014
13117
  };
13015
13118
  };
13016
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
+ };
13017
13224
  getNetworkFlowReports: {
13018
13225
  parameters: {
13019
13226
  query?: {
13227
+ /** @description A search query to filter NetworkFlowReports by title. */
13228
+ q?: string;
13020
13229
  /** @description The page of results to return. */
13021
13230
  page?: number;
13022
13231
  /** @description The amount of results to return. The maximum is 1000. */
@@ -17987,6 +18196,14 @@ type UpdateMeRequest = RequestBodyForPathAndMethod<"/v2/me", "PUT">;
17987
18196
  * Response type for Update authenticated user
17988
18197
  */
17989
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">;
17990
18207
  /**
17991
18208
  * Return all NetworkFlowReports.
17992
18209
  */
@@ -18497,6 +18714,7 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
18497
18714
  private _kubernetesEfficiencyReports?;
18498
18715
  private _managedAccounts?;
18499
18716
  private _me?;
18717
+ private _networkFlowLogs?;
18500
18718
  private _networkFlowReports?;
18501
18719
  private _ping?;
18502
18720
  private _products?;
@@ -18541,6 +18759,7 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
18541
18759
  get kubernetesEfficiencyReports(): KubernetesEfficiencyReportsApi<NeverThrow>;
18542
18760
  get managedAccounts(): ManagedAccountsApi<NeverThrow>;
18543
18761
  get me(): MeApi<NeverThrow>;
18762
+ get networkFlowLogs(): NetworkFlowLogsApi<NeverThrow>;
18544
18763
  get networkFlowReports(): NetworkFlowReportsApi<NeverThrow>;
18545
18764
  get ping(): PingApi<NeverThrow>;
18546
18765
  get products(): ProductsApi<NeverThrow>;
@@ -20833,6 +21052,24 @@ declare class MeApi<NeverThrow extends boolean> {
20833
21052
  bearer_token: components["schemas"]["BearerToken"];
20834
21053
  }>;
20835
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
+ }
20836
21073
  declare class NetworkFlowReportsApi<NeverThrow extends boolean> {
20837
21074
  private client;
20838
21075
  constructor(client: BaseClient<NeverThrow>);
@@ -22158,4 +22395,4 @@ declare class BaseClient<NeverThrow extends boolean> {
22158
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>>;
22159
22396
  }
22160
22397
 
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 };
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 };