@vantage-sh/vantage-client 2.1.0 → 2.2.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
@@ -1403,6 +1403,30 @@ interface paths {
1403
1403
  patch?: never;
1404
1404
  trace?: never;
1405
1405
  };
1406
+ "/managed_accounts/{managed_account_token}/sso_connection": {
1407
+ parameters: {
1408
+ query?: never;
1409
+ header?: never;
1410
+ path?: never;
1411
+ cookie?: never;
1412
+ };
1413
+ get?: never;
1414
+ /**
1415
+ * Update SSO configuration for managed account
1416
+ * @description Update SSO configuration for a Managed Account.
1417
+ */
1418
+ put: operations["updateSsoConnectionForManagedAccount"];
1419
+ /**
1420
+ * Configure SSO for managed account
1421
+ * @description Configure SSO for a Managed Account.
1422
+ */
1423
+ post: operations["createSsoConnectionForManagedAccount"];
1424
+ delete?: never;
1425
+ options?: never;
1426
+ head?: never;
1427
+ patch?: never;
1428
+ trace?: never;
1429
+ };
1406
1430
  "/me": {
1407
1431
  parameters: {
1408
1432
  query?: never;
@@ -1695,6 +1719,26 @@ interface paths {
1695
1719
  patch?: never;
1696
1720
  trace?: never;
1697
1721
  };
1722
+ "/recommendations/by_type/{type}/resources": {
1723
+ parameters: {
1724
+ query?: never;
1725
+ header?: never;
1726
+ path?: never;
1727
+ cookie?: never;
1728
+ };
1729
+ /**
1730
+ * Get all resources for a recommendation type
1731
+ * @description Return all Active Resources associated with recommendations of the specified type.
1732
+ */
1733
+ get: operations["getRecommendationTypeResources"];
1734
+ put?: never;
1735
+ post?: never;
1736
+ delete?: never;
1737
+ options?: never;
1738
+ head?: never;
1739
+ patch?: never;
1740
+ trace?: never;
1741
+ };
1698
1742
  "/recommendation_views": {
1699
1743
  parameters: {
1700
1744
  query?: never;
@@ -2513,6 +2557,8 @@ interface components {
2513
2557
  feedback?: string | null;
2514
2558
  /** @description The names of the resources the AnomalyAlert was attributed to. */
2515
2559
  resources: string[];
2560
+ /** @description The tokens of the Resources the AnomalyAlert was attributed to. */
2561
+ resource_tokens: string[];
2516
2562
  /** @description The token of the Report associated with the AnomalyAlert. */
2517
2563
  cost_report_token: string;
2518
2564
  };
@@ -4934,6 +4980,25 @@ interface components {
4934
4980
  };
4935
4981
  };
4936
4982
  };
4983
+ /** @description Configure SSO for a Managed Account. */
4984
+ createSsoConnectionForManagedAccount: {
4985
+ /**
4986
+ * @description The type of SSO connection. Currently supported: saml.
4987
+ * @enum {string}
4988
+ */
4989
+ type: "saml";
4990
+ /** @description The SAML metadata URL for the identity provider. Required when type is saml. */
4991
+ saml_metadata_url?: string;
4992
+ /** @description Additional email domains to associate with this SSO configuration. The account's SSO domain is always included. */
4993
+ additional_domains?: string[];
4994
+ };
4995
+ /** @description Update SSO configuration for a Managed Account. */
4996
+ updateSsoConnectionForManagedAccount: {
4997
+ /** @description The SAML metadata URL for the identity provider. */
4998
+ saml_metadata_url?: string;
4999
+ /** @description Additional email domains to associate with this SSO configuration. Replaces existing additional domains. The account's SSO domain is always preserved. */
5000
+ additional_domains?: string[];
5001
+ };
4937
5002
  /** @description Me model */
4938
5003
  Me: {
4939
5004
  default_workspace_token: string | null;
@@ -5246,11 +5311,16 @@ interface components {
5246
5311
  /** @description Recommendation model */
5247
5312
  Recommendation: {
5248
5313
  token: string;
5314
+ /**
5315
+ * @description The type of the Recommendation. This is analogous to category, but with a uniform format.
5316
+ * @example aws:ec2:co-rightsizing
5317
+ */
5318
+ type: string;
5249
5319
  /**
5250
5320
  * @description The category of the Recommendation.
5251
5321
  * @example ec2_compute_optimizer_recommender
5252
5322
  */
5253
- category: string | null;
5323
+ category: string;
5254
5324
  /** @description The token for the Workspace the Recommendation is a part of. */
5255
5325
  workspace_token: string;
5256
5326
  /** @description The provider the Recommendation is for. */
@@ -6032,6 +6102,8 @@ interface components {
6032
6102
  cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
6033
6103
  /** @description Labeled percentage allocations for matching costs. */
6034
6104
  percentages?: components["schemas"]["VirtualTagConfigValuePercentage"][];
6105
+ /** @description Date ranges restricting when this value applies. */
6106
+ date_ranges?: components["schemas"]["VirtualTagConfigValueDateRange"][];
6035
6107
  };
6036
6108
  VirtualTagConfigValueCostMetric: {
6037
6109
  /** @description The filter VQL for the cost metric. */
@@ -6054,6 +6126,12 @@ interface components {
6054
6126
  */
6055
6127
  pct: number;
6056
6128
  };
6129
+ VirtualTagConfigValueDateRange: {
6130
+ /** @description The start date of the range (inclusive), or null for unbounded. */
6131
+ start_date: string | null;
6132
+ /** @description The end date of the range (inclusive), or null for unbounded. */
6133
+ end_date: string | null;
6134
+ };
6057
6135
  /** @description VirtualTagConfigStatus model */
6058
6136
  VirtualTagConfigStatus: {
6059
6137
  /**
@@ -6115,6 +6193,13 @@ interface components {
6115
6193
  /** Format: float */
6116
6194
  pct: number;
6117
6195
  }[];
6196
+ /** @description Date ranges restricting when this value applies. Each range has optional start_date and end_date (inclusive, YYYY-MM-DD). */
6197
+ date_ranges?: {
6198
+ /** @description Inclusive start date (YYYY-MM-DD), or null for unbounded. */
6199
+ start_date?: string;
6200
+ /** @description Inclusive end date (YYYY-MM-DD), or null for unbounded. */
6201
+ end_date?: string;
6202
+ }[];
6118
6203
  }[];
6119
6204
  };
6120
6205
  /** @description Updates an existing VirtualTagConfig. */
@@ -6154,6 +6239,13 @@ interface components {
6154
6239
  /** Format: float */
6155
6240
  pct: number;
6156
6241
  }[];
6242
+ /** @description Date ranges restricting when this value applies. Each range has optional start_date and end_date (inclusive, YYYY-MM-DD). */
6243
+ date_ranges?: {
6244
+ /** @description Inclusive start date (YYYY-MM-DD), or null for unbounded. */
6245
+ start_date?: string;
6246
+ /** @description Inclusive end date (YYYY-MM-DD), or null for unbounded. */
6247
+ end_date?: string;
6248
+ }[];
6157
6249
  }[];
6158
6250
  };
6159
6251
  /** @description Asynchronously updates an existing VirtualTagConfig. */
@@ -6193,6 +6285,13 @@ interface components {
6193
6285
  /** Format: float */
6194
6286
  pct: number;
6195
6287
  }[];
6288
+ /** @description Date ranges restricting when this value applies. Each range has optional start_date and end_date (inclusive, YYYY-MM-DD). */
6289
+ date_ranges?: {
6290
+ /** @description Inclusive start date (YYYY-MM-DD), or null for unbounded. */
6291
+ start_date?: string;
6292
+ /** @description Inclusive end date (YYYY-MM-DD), or null for unbounded. */
6293
+ end_date?: string;
6294
+ }[];
6196
6295
  }[];
6197
6296
  };
6198
6297
  /** @description Workspaces model */
@@ -6565,6 +6664,9 @@ interface operations {
6565
6664
  * "resources": [
6566
6665
  * "production-cluster"
6567
6666
  * ],
6667
+ * "resource_tokens": [
6668
+ * "rsrc_abcd1234efgh5678"
6669
+ * ],
6568
6670
  * "cost_report_token": "rprt_3d541a4c5160711f"
6569
6671
  * }
6570
6672
  * ]
@@ -6604,6 +6706,12 @@ interface operations {
6604
6706
  * "seven_day_average": "10.0",
6605
6707
  * "status": "active",
6606
6708
  * "feedback": null,
6709
+ * "resources": [
6710
+ * "production-cluster"
6711
+ * ],
6712
+ * "resource_tokens": [
6713
+ * "rsrc_abcd1234efgh5678"
6714
+ * ],
6607
6715
  * "cost_report_token": "rprt_bf0a30084fbf52c2"
6608
6716
  * }
6609
6717
  */
@@ -11856,6 +11964,92 @@ interface operations {
11856
11964
  };
11857
11965
  };
11858
11966
  };
11967
+ updateSsoConnectionForManagedAccount: {
11968
+ parameters: {
11969
+ query?: never;
11970
+ header?: never;
11971
+ path: {
11972
+ managed_account_token: string;
11973
+ };
11974
+ cookie?: never;
11975
+ };
11976
+ requestBody: {
11977
+ content: {
11978
+ "application/json": components["schemas"]["updateSsoConnectionForManagedAccount"];
11979
+ };
11980
+ };
11981
+ responses: {
11982
+ 200: {
11983
+ headers: {
11984
+ [name: string]: unknown;
11985
+ };
11986
+ content: {
11987
+ "application/json": components["schemas"]["ManagedAccount"];
11988
+ };
11989
+ };
11990
+ /** @description BadRequest */
11991
+ 400: {
11992
+ headers: {
11993
+ [name: string]: unknown;
11994
+ };
11995
+ content: {
11996
+ "application/json": components["schemas"]["Errors"];
11997
+ };
11998
+ };
11999
+ /** @description NotFound */
12000
+ 404: {
12001
+ headers: {
12002
+ [name: string]: unknown;
12003
+ };
12004
+ content: {
12005
+ "application/json": components["schemas"]["Errors"];
12006
+ };
12007
+ };
12008
+ };
12009
+ };
12010
+ createSsoConnectionForManagedAccount: {
12011
+ parameters: {
12012
+ query?: never;
12013
+ header?: never;
12014
+ path: {
12015
+ managed_account_token: string;
12016
+ };
12017
+ cookie?: never;
12018
+ };
12019
+ requestBody: {
12020
+ content: {
12021
+ "application/json": components["schemas"]["createSsoConnectionForManagedAccount"];
12022
+ };
12023
+ };
12024
+ responses: {
12025
+ 201: {
12026
+ headers: {
12027
+ [name: string]: unknown;
12028
+ };
12029
+ content: {
12030
+ "application/json": components["schemas"]["ManagedAccount"];
12031
+ };
12032
+ };
12033
+ /** @description BadRequest */
12034
+ 400: {
12035
+ headers: {
12036
+ [name: string]: unknown;
12037
+ };
12038
+ content: {
12039
+ "application/json": components["schemas"]["Errors"];
12040
+ };
12041
+ };
12042
+ /** @description NotFound */
12043
+ 404: {
12044
+ headers: {
12045
+ [name: string]: unknown;
12046
+ };
12047
+ content: {
12048
+ "application/json": components["schemas"]["Errors"];
12049
+ };
12050
+ };
12051
+ };
12052
+ };
11859
12053
  getMe: {
11860
12054
  parameters: {
11861
12055
  query?: never;
@@ -12457,14 +12651,6 @@ interface operations {
12457
12651
  getRecommendations: {
12458
12652
  parameters: {
12459
12653
  query?: {
12460
- /** @description Filter by workspace. */
12461
- workspace_token?: string;
12462
- /** @description Filter by provider account id (AWS account, Azure subscription id, etc). */
12463
- provider_account_id?: string;
12464
- /** @description Filter by category. */
12465
- category?: "ebs_gp2_to_gp3" | "ebs_unattached_volume" | "elasticache_reserved_instances" | "elastic_search_reserved_instances" | "rds_reserved_instances" | "redshift_reserved_instances" | "ec2_generational_upgrades" | "rds_generational_upgrades" | "es_generational_upgrades" | "cw_log_retention_policy" | "workspace_unused" | "workspace_stranded" | "cloudfront_cloudflare" | "s3_cloudflare" | "ip_unattached" | "s3_bucket_intelligent_tiering" | "s3_bucket_glacier_instant_retrieval" | "savings_plan" | "database_savings_plan" | "unused_financial_commitments" | "datadog_financial_commitments" | "az_compute_reserved_instances" | "az_compute_reserved_instances_cosmos" | "az_compute_reserved_instances_sql" | "az_compute_reserved_instances_app_service" | "az_disks_unattached" | "dynamodb_reserved_capacity_recommender" | "kubernetes_recommender" | "gcp_compute_rightsizing_recommender" | "gcp_compute_commitment_recommender" | "ec2_snapshot_recommender" | "ec2_rightsizing_recommender" | "ebs_compute_optimizer_recommender" | "lambda_compute_optimizer_recommender" | "ecs_compute_optimizer_recommender" | "idle_compute_optimizer_recommender" | "rds_compute_optimizer_recommender" | "ec2_compute_optimizer_recommender" | "azure_rightsizing_recommender" | "azure_compute_savings_recommender" | "azure_blob_storage_reserved_instances_recommender" | "azure_sql_paas_db_reserved_instances_recommender" | "azure_files_reserved_instances_recommender" | "eks_in_extended_support_window" | "eks_approaching_extended_support_window" | "rds_in_extended_support_window" | "rds_approaching_extended_support_window" | "datadog_metrics_unqueried";
12466
- /** @description Filter by provider. */
12467
- provider?: "aws" | "gcp" | "azure" | "kubernetes" | "datadog";
12468
12654
  /** @description Filter by one or more providers. Requires workspace_token. */
12469
12655
  provider_ids?: ("aws" | "gcp" | "azure" | "kubernetes" | "datadog")[];
12470
12656
  /** @description Filter by billing account identifiers. Requires workspace_token. */
@@ -12487,6 +12673,14 @@ interface operations {
12487
12673
  page?: number;
12488
12674
  /** @description The number of results to return. The maximum is 1000. */
12489
12675
  limit?: number;
12676
+ /** @description Filter by workspace. */
12677
+ workspace_token?: string;
12678
+ /** @description Filter by provider account id (AWS account, Azure subscription id, etc). */
12679
+ provider_account_id?: string;
12680
+ /** @description Filter by category. */
12681
+ category?: "ebs_gp2_to_gp3" | "ebs_unattached_volume" | "elasticache_reserved_instances" | "elastic_search_reserved_instances" | "rds_reserved_instances" | "redshift_reserved_instances" | "ec2_generational_upgrades" | "rds_generational_upgrades" | "es_generational_upgrades" | "cw_log_retention_policy" | "workspace_unused" | "workspace_stranded" | "cloudfront_cloudflare" | "s3_cloudflare" | "ip_unattached" | "s3_bucket_intelligent_tiering" | "s3_bucket_glacier_instant_retrieval" | "savings_plan" | "database_savings_plan" | "unused_financial_commitments" | "datadog_financial_commitments" | "az_compute_reserved_instances" | "az_compute_reserved_instances_cosmos" | "az_compute_reserved_instances_sql" | "az_compute_reserved_instances_app_service" | "az_disks_unattached" | "dynamodb_reserved_capacity_recommender" | "kubernetes_recommender" | "gcp_compute_rightsizing_recommender" | "gcp_compute_commitment_recommender" | "ec2_snapshot_recommender" | "ec2_rightsizing_recommender" | "ebs_compute_optimizer_recommender" | "lambda_compute_optimizer_recommender" | "ecs_compute_optimizer_recommender" | "idle_compute_optimizer_recommender" | "rds_compute_optimizer_recommender" | "ec2_compute_optimizer_recommender" | "azure_rightsizing_recommender" | "azure_compute_savings_recommender" | "azure_blob_storage_reserved_instances_recommender" | "azure_sql_paas_db_reserved_instances_recommender" | "azure_files_reserved_instances_recommender" | "eks_in_extended_support_window" | "eks_approaching_extended_support_window" | "rds_in_extended_support_window" | "rds_approaching_extended_support_window" | "datadog_metrics_unqueried";
12682
+ /** @description Filter by provider. */
12683
+ provider?: "aws" | "gcp" | "azure" | "kubernetes" | "datadog";
12490
12684
  };
12491
12685
  header?: never;
12492
12686
  path?: never;
@@ -12510,15 +12704,16 @@ interface operations {
12510
12704
  * },
12511
12705
  * "recommendations": [
12512
12706
  * {
12513
- * "token": "rcmmndtn_5cbc9cf9692619a9",
12707
+ * "token": "rcmmndtn_9bb8fa992d5b876b",
12708
+ * "type": null,
12514
12709
  * "category": "ip_unattached",
12515
- * "workspace_token": "wrkspc_ab4f7a41afd5f542",
12710
+ * "workspace_token": "wrkspc_e0e58b3c1ddef29c",
12516
12711
  * "provider": "aws",
12517
12712
  * "provider_account_id": "123456789012",
12518
12713
  * "description": "IP address is not attached to an instance.",
12519
12714
  * "potential_savings": "100.0",
12520
12715
  * "service": "AWS IP",
12521
- * "created_at": "2026-01-23T21:26:59Z",
12716
+ * "created_at": "2026-01-28T16:53:32Z",
12522
12717
  * "resources_affected_count": 0,
12523
12718
  * "currency_code": "USD",
12524
12719
  * "currency_symbol": "$"
@@ -12549,15 +12744,16 @@ interface operations {
12549
12744
  content: {
12550
12745
  /**
12551
12746
  * @example {
12552
- * "token": "rcmmndtn_8a46f3b2590e2e79",
12747
+ * "token": "rcmmndtn_0eea161ff1a4d183",
12748
+ * "type": null,
12553
12749
  * "category": "ip_unattached",
12554
- * "workspace_token": "wrkspc_409c070f69640c8c",
12750
+ * "workspace_token": "wrkspc_634a8ca67ed39555",
12555
12751
  * "provider": "aws",
12556
12752
  * "provider_account_id": "123456789012",
12557
12753
  * "description": "IP address is not attached to an instance.",
12558
12754
  * "potential_savings": "100.0",
12559
12755
  * "service": "AWS IP",
12560
- * "created_at": "2026-01-23T21:26:58Z",
12756
+ * "created_at": "2026-01-28T16:53:23Z",
12561
12757
  * "resources_affected_count": 0,
12562
12758
  * "currency_code": "USD",
12563
12759
  * "currency_symbol": "$"
@@ -12601,15 +12797,15 @@ interface operations {
12601
12797
  /**
12602
12798
  * @example {
12603
12799
  * "links": {
12604
- * "self": "https://api.vantage.sh/v2/recommendations/rcmmndtn_8807df39fe292cd5/resources",
12605
- * "first": "https://api.vantage.sh/v2/recommendations/rcmmndtn_8807df39fe292cd5/resources?page=1",
12800
+ * "self": "https://api.vantage.sh/v2/recommendations/rcmmndtn_073dad68f8be41a2/resources",
12801
+ * "first": "https://api.vantage.sh/v2/recommendations/rcmmndtn_073dad68f8be41a2/resources?page=1",
12606
12802
  * "next": null,
12607
- * "last": "https://api.vantage.sh/v2/recommendations/rcmmndtn_8807df39fe292cd5/resources?page=1",
12803
+ * "last": "https://api.vantage.sh/v2/recommendations/rcmmndtn_073dad68f8be41a2/resources?page=1",
12608
12804
  * "prev": null
12609
12805
  * },
12610
12806
  * "resources": [
12611
12807
  * {
12612
- * "token": "prvdr_rsrc_999172bd989f02a1",
12808
+ * "token": "prvdr_rsrc_8ec00e4b4c410538",
12613
12809
  * "resource_id": "i-12345",
12614
12810
  * "recommendation_actions": [
12615
12811
  * {
@@ -12648,7 +12844,7 @@ interface operations {
12648
12844
  content: {
12649
12845
  /**
12650
12846
  * @example {
12651
- * "token": "prvdr_rsrc_a55a2fde1299df2f",
12847
+ * "token": "prvdr_rsrc_3065ac9b0999c363",
12652
12848
  * "resource_id": "i-12345",
12653
12849
  * "recommendation_actions": [
12654
12850
  * {
@@ -12675,6 +12871,83 @@ interface operations {
12675
12871
  };
12676
12872
  };
12677
12873
  };
12874
+ getRecommendationTypeResources: {
12875
+ parameters: {
12876
+ query: {
12877
+ /** @description Filter by one or more providers. Requires workspace_token. */
12878
+ provider_ids?: ("aws" | "gcp" | "azure" | "kubernetes" | "datadog")[];
12879
+ /** @description Filter by billing account identifiers. Requires workspace_token. */
12880
+ billing_account_ids?: string[];
12881
+ /** @description Filter by account identifiers. Requires workspace_token. */
12882
+ account_ids?: string[];
12883
+ /** @description Filter by region slugs (e.g. us-east-1, eastus, asia-east1). Requires workspace_token. */
12884
+ regions?: string[];
12885
+ /** @description Filter by tag key (must be used with tag_value). Requires workspace_token. */
12886
+ tag_key?: string;
12887
+ /** @description Filter by tag value (requires tag_key). Requires workspace_token. */
12888
+ tag_value?: string;
12889
+ /** @description Filter recommendations created on/after this YYYY-MM-DD date. Requires workspace_token. */
12890
+ start_date?: string;
12891
+ /** @description Filter recommendations created on/before this YYYY-MM-DD date. Requires workspace_token. */
12892
+ end_date?: string;
12893
+ /** @description Filter by status. */
12894
+ status?: "active" | "archived";
12895
+ /** @description The page of results to return. */
12896
+ page?: number;
12897
+ /** @description The number of results to return. The maximum is 1000. */
12898
+ limit?: number;
12899
+ /** @description The workspace token to filter recommendations by. Required. */
12900
+ workspace_token: string;
12901
+ };
12902
+ header?: never;
12903
+ path: {
12904
+ type: string;
12905
+ };
12906
+ cookie?: never;
12907
+ };
12908
+ requestBody?: never;
12909
+ responses: {
12910
+ 200: {
12911
+ headers: {
12912
+ [name: string]: unknown;
12913
+ };
12914
+ content: {
12915
+ /**
12916
+ * @example {
12917
+ * "resources": [
12918
+ * {
12919
+ * "token": "pvdr_rsrc_abc123",
12920
+ * "resource_id": "i-1234567890abcdef0",
12921
+ * "recommendation_actions": [
12922
+ * {
12923
+ * "action": "modify",
12924
+ * "instance_type": "c5a.xlarge",
12925
+ * "description": "Migrate to c5a.xlarge for cost savings.",
12926
+ * "potential_savings": "100.00"
12927
+ * }
12928
+ * ]
12929
+ * }
12930
+ * ],
12931
+ * "links": {
12932
+ * "first": "/v2/recommendations/by_type/aws:ec2:co-rightsizing/resources?workspace_token=wrkspc_abc123&page=1",
12933
+ * "last": "/v2/recommendations/by_type/aws:ec2:co-rightsizing/resources?workspace_token=wrkspc_abc123&page=1"
12934
+ * }
12935
+ * }
12936
+ */
12937
+ "application/json": components["schemas"]["RecommendationProviderResources"];
12938
+ };
12939
+ };
12940
+ /** @description NotFound */
12941
+ 404: {
12942
+ headers: {
12943
+ [name: string]: unknown;
12944
+ };
12945
+ content: {
12946
+ "application/json": components["schemas"]["Errors"];
12947
+ };
12948
+ };
12949
+ };
12950
+ };
12678
12951
  getRecommendationViews: {
12679
12952
  parameters: {
12680
12953
  query?: {
@@ -15273,7 +15546,13 @@ interface operations {
15273
15546
  * "values": [
15274
15547
  * {
15275
15548
  * "filter": "costs.provider = 'aws' AND\ncosts.service = 'Amazon Elastic Compute Cloud' AND\ncosts.account_id IN ('1234', '5678')\n",
15276
- * "name": "EXPC-1234"
15549
+ * "name": "EXPC-1234",
15550
+ * "date_ranges": [
15551
+ * {
15552
+ * "start_date": "2024-01-01",
15553
+ * "end_date": "2024-12-31"
15554
+ * }
15555
+ * ]
15277
15556
  * },
15278
15557
  * {
15279
15558
  * "filter": "(\n (costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR\n (costs.provider = 'gcp' AND costs.service = 'Google Compute Engine')\n)\n",
@@ -15349,7 +15628,13 @@ interface operations {
15349
15628
  * "values": [
15350
15629
  * {
15351
15630
  * "filter": "(costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud') AND (costs.provider = 'aws' AND costs.account_id IN ('1234', '5678'))",
15352
- * "name": "Growth"
15631
+ * "name": "Growth",
15632
+ * "date_ranges": [
15633
+ * {
15634
+ * "start_date": "2024-01-01",
15635
+ * "end_date": "2024-12-31"
15636
+ * }
15637
+ * ]
15353
15638
  * },
15354
15639
  * {
15355
15640
  * "filter": "(costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR (costs.provider = 'gcp' AND costs.service = 'Google Compute Engine')",
@@ -15402,7 +15687,13 @@ interface operations {
15402
15687
  * "values": [
15403
15688
  * {
15404
15689
  * "filter": "costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud' AND\ncosts.account_id IN ('1234', '5678')\n",
15405
- * "name": "marketing"
15690
+ * "name": "marketing",
15691
+ * "date_ranges": [
15692
+ * {
15693
+ * "start_date": "2024-01-01",
15694
+ * "end_date": "2024-12-31"
15695
+ * }
15696
+ * ]
15406
15697
  * },
15407
15698
  * {
15408
15699
  * "filter": "((costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR\n(costs.provider = 'gcp' AND costs.service = 'Google Compute Engine'))\n",
@@ -16642,6 +16933,22 @@ type UpdateManagedAccountResponse = ResponseBodyForPathAndMethod<`/v2/managed_ac
16642
16933
  * Response type for Delete managed account
16643
16934
  */
16644
16935
  type DeleteManagedAccountResponse = ResponseBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}`, "DELETE">;
16936
+ /**
16937
+ * Update SSO configuration for a Managed Account.
16938
+ */
16939
+ type UpdateSsoConnectionForManagedAccountRequest = RequestBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}/sso_connection`, "PUT">;
16940
+ /**
16941
+ * Response type for Update SSO configuration for managed account
16942
+ */
16943
+ type UpdateSsoConnectionForManagedAccountResponse = ResponseBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}/sso_connection`, "PUT">;
16944
+ /**
16945
+ * Configure SSO for a Managed Account.
16946
+ */
16947
+ type CreateSsoConnectionForManagedAccountRequest = RequestBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}/sso_connection`, "POST">;
16948
+ /**
16949
+ * Response type for Configure SSO for managed account
16950
+ */
16951
+ type CreateSsoConnectionForManagedAccountResponse = ResponseBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}/sso_connection`, "POST">;
16645
16952
  /**
16646
16953
  * Response type for Get authenticated user info
16647
16954
  */
@@ -16750,6 +17057,14 @@ type GetRecommendationResourcesResponse = ResponseBodyForPathAndMethod<`/v2/reco
16750
17057
  * Response type for Get specific resource for a recommendation
16751
17058
  */
16752
17059
  type GetRecommendationResourceResponse = ResponseBodyForPathAndMethod<`/v2/recommendations/${NoSlashString}/resources/${NoSlashString}`, "GET">;
17060
+ /**
17061
+ * Return all Active Resources associated with recommendations of the specified type.
17062
+ */
17063
+ type GetRecommendationTypeResourcesRequest = RequestBodyForPathAndMethod<`/v2/recommendations/by_type/${NoSlashString}/resources`, "GET">;
17064
+ /**
17065
+ * Response type for Get all resources for a recommendation type
17066
+ */
17067
+ type GetRecommendationTypeResourcesResponse = ResponseBodyForPathAndMethod<`/v2/recommendations/by_type/${NoSlashString}/resources`, "GET">;
16753
17068
  /**
16754
17069
  * Return all RecommendationViews.
16755
17070
  */
@@ -17322,6 +17637,7 @@ declare class AnomalyAlertsApi<NeverThrow extends boolean> {
17322
17637
  status: string;
17323
17638
  feedback?: string | null;
17324
17639
  resources: string[];
17640
+ resource_tokens: string[];
17325
17641
  cost_report_token: string;
17326
17642
  }, null] : {
17327
17643
  token: string;
@@ -17336,6 +17652,7 @@ declare class AnomalyAlertsApi<NeverThrow extends boolean> {
17336
17652
  status: string;
17337
17653
  feedback?: string | null;
17338
17654
  resources: string[];
17655
+ resource_tokens: string[];
17339
17656
  cost_report_token: string;
17340
17657
  }>;
17341
17658
  /**
@@ -17354,6 +17671,7 @@ declare class AnomalyAlertsApi<NeverThrow extends boolean> {
17354
17671
  status: string;
17355
17672
  feedback?: string | null;
17356
17673
  resources: string[];
17674
+ resource_tokens: string[];
17357
17675
  cost_report_token: string;
17358
17676
  }, null] : {
17359
17677
  token: string;
@@ -17368,6 +17686,7 @@ declare class AnomalyAlertsApi<NeverThrow extends boolean> {
17368
17686
  status: string;
17369
17687
  feedback?: string | null;
17370
17688
  resources: string[];
17689
+ resource_tokens: string[];
17371
17690
  cost_report_token: string;
17372
17691
  }>;
17373
17692
  }
@@ -17472,14 +17791,10 @@ declare class AuditLogsApi<NeverThrow extends boolean> {
17472
17791
  * Return all AuditLogs.
17473
17792
  */
17474
17793
  list(body?: GetAuditLogsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
17475
- links?: components["schemas"] /**
17476
- * Create a CostReport.
17477
- */["Links"];
17794
+ links?: components["schemas"]["Links"];
17478
17795
  audit_logs: components["schemas"]["AuditLog"][];
17479
17796
  }, null] : {
17480
- links?: components["schemas"] /**
17481
- * Create a CostReport.
17482
- */["Links"];
17797
+ links?: components["schemas"]["Links"];
17483
17798
  audit_logs: components["schemas"]["AuditLog"][];
17484
17799
  }>;
17485
17800
  /**
@@ -19638,6 +19953,58 @@ declare class ManagedAccountsApi<NeverThrow extends boolean> {
19638
19953
  billing_information_attributes?: components["schemas"]["BillingInformation"];
19639
19954
  business_information_attributes?: components["schemas"]["BusinessInformation"];
19640
19955
  }>;
19956
+ /**
19957
+ * Update SSO configuration for a Managed Account.
19958
+ */
19959
+ updateSsoConnectionForManagedAccount(managedAccountToken: string, body: UpdateSsoConnectionForManagedAccountRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19960
+ token: string;
19961
+ name: string;
19962
+ contact_email: string;
19963
+ parent_account_token: string;
19964
+ access_credential_tokens: string[];
19965
+ billing_rule_tokens: string[];
19966
+ email_domain?: string | null;
19967
+ msp_billing_profile_token?: string | null;
19968
+ billing_information_attributes?: components["schemas"]["BillingInformation"];
19969
+ business_information_attributes?: components["schemas"]["BusinessInformation"];
19970
+ }, null] : {
19971
+ token: string;
19972
+ name: string;
19973
+ contact_email: string;
19974
+ parent_account_token: string;
19975
+ access_credential_tokens: string[];
19976
+ billing_rule_tokens: string[];
19977
+ email_domain?: string | null;
19978
+ msp_billing_profile_token?: string | null;
19979
+ billing_information_attributes?: components["schemas"]["BillingInformation"];
19980
+ business_information_attributes?: components["schemas"]["BusinessInformation"];
19981
+ }>;
19982
+ /**
19983
+ * Configure SSO for a Managed Account.
19984
+ */
19985
+ createSsoConnectionForManagedAccount(managedAccountToken: string, body: CreateSsoConnectionForManagedAccountRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19986
+ token: string;
19987
+ name: string;
19988
+ contact_email: string;
19989
+ parent_account_token: string;
19990
+ access_credential_tokens: string[];
19991
+ billing_rule_tokens: string[];
19992
+ email_domain?: string | null;
19993
+ msp_billing_profile_token?: string | null;
19994
+ billing_information_attributes?: components["schemas"]["BillingInformation"];
19995
+ business_information_attributes?: components["schemas"]["BusinessInformation"];
19996
+ }, null] : {
19997
+ token: string;
19998
+ name: string;
19999
+ contact_email: string;
20000
+ parent_account_token: string;
20001
+ access_credential_tokens: string[];
20002
+ billing_rule_tokens: string[];
20003
+ email_domain?: string | null;
20004
+ msp_billing_profile_token?: string | null;
20005
+ billing_information_attributes?: components["schemas"]["BillingInformation"];
20006
+ business_information_attributes?: components["schemas"]["BusinessInformation"];
20007
+ }>;
19641
20008
  }
19642
20009
  declare class MeApi<NeverThrow extends boolean> {
19643
20010
  private client;
@@ -19925,7 +20292,8 @@ declare class RecommendationsApi<NeverThrow extends boolean> {
19925
20292
  */
19926
20293
  get(recommendationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19927
20294
  token: string;
19928
- category: string | null;
20295
+ type: string;
20296
+ category: string;
19929
20297
  workspace_token: string;
19930
20298
  provider: string;
19931
20299
  provider_account_id: string | null;
@@ -19938,7 +20306,8 @@ declare class RecommendationsApi<NeverThrow extends boolean> {
19938
20306
  currency_symbol?: string | null;
19939
20307
  }, null] : {
19940
20308
  token: string;
19941
- category: string | null;
20309
+ type: string;
20310
+ category: string;
19942
20311
  workspace_token: string;
19943
20312
  provider: string;
19944
20313
  provider_account_id: string | null;
@@ -19972,6 +20341,16 @@ declare class RecommendationsApi<NeverThrow extends boolean> {
19972
20341
  resource_id: string;
19973
20342
  recommendation_actions?: components["schemas"]["RecommendationAction"][];
19974
20343
  }>;
20344
+ /**
20345
+ * Return all Active Resources associated with recommendations of the specified type.
20346
+ */
20347
+ getTypeResources(type: string, body?: GetRecommendationTypeResourcesRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20348
+ links?: components["schemas"]["Links"];
20349
+ resources: components["schemas"]["ProviderResource"][];
20350
+ }, null] : {
20351
+ links?: components["schemas"]["Links"];
20352
+ resources: components["schemas"]["ProviderResource"][];
20353
+ }>;
19975
20354
  }
19976
20355
  declare class RecommendationViewsApi<NeverThrow extends boolean> {
19977
20356
  private client;
@@ -20970,4 +21349,4 @@ declare class PingApi<NeverThrow extends boolean> {
20970
21349
  get(): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20971
21350
  }
20972
21351
 
20973
- export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateSegmentRequest, type CreateSegmentResponse, type 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 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 DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type 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 PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
21352
+ export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateSegmentRequest, type CreateSegmentResponse, type CreateSsoConnectionForManagedAccountRequest, type CreateSsoConnectionForManagedAccountResponse, type CreateTeamRequest, type CreateTeamResponse, type CreateUnitCostsExportRequest, type CreateUnitCostsExportResponse, type CreateUserCostsUploadViaCsvRequest, type CreateUserCostsUploadViaCsvResponse, type CreateUserFeedbackRequest, type CreateUserFeedbackResponse, type CreateVirtualTagConfigRequest, type CreateVirtualTagConfigResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type 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 DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportNotificationResponse, type GetReportNotificationsRequest, type GetReportNotificationsResponse, type GetReportResourcesRequest, type GetReportResourcesResponse, type GetResourceReportColumnsRequest, type GetResourceReportColumnsResponse, type GetResourceReportResponse, type GetResourceReportsRequest, type GetResourceReportsResponse, type GetResourceRequest, type GetResourceResponse, type GetSavedFilterResponse, type GetSavedFiltersRequest, type GetSavedFiltersResponse, type GetSegmentResponse, type GetSegmentsRequest, type GetSegmentsResponse, type GetTagValuesRequest, type GetTagValuesResponse, type GetTagsRequest, type GetTagsResponse, type GetTeamMembersRequest, type GetTeamMembersResponse, type GetTeamResponse, type GetTeamsRequest, type GetTeamsResponse, type GetUnitCostsRequest, type GetUnitCostsResponse, type GetUserCostsUploadsResponse, type GetUserResponse, type GetUsersRequest, type GetUsersResponse, type GetVirtualTagConfigResponse, type GetVirtualTagConfigStatusResponse, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type 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 UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };