@vantage-sh/vantage-client 2.1.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -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;
@@ -1624,7 +1648,7 @@ interface paths {
1624
1648
  };
1625
1649
  /**
1626
1650
  * Get all recommendations
1627
- * @description Return all Recommendations.
1651
+ * @description Return all Recommendations. Use the `type` query parameter with a fuzzy fragment to filter recommendation type case-insensitively (for example: aws, aws:ec2, aws:ec2:rightsizing).
1628
1652
  */
1629
1653
  get: operations["getRecommendations"];
1630
1654
  put?: 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
  };
@@ -3547,7 +3593,7 @@ interface components {
3547
3593
  threshold: number;
3548
3594
  /** @description The unit type used to compare costs. Options are 'currency' or 'percentage'. */
3549
3595
  unit_type: string;
3550
- /** @description The minimum dollar amount threshold for percentage-based alerts. When set, alerts will only trigger if the dollar change meets this minimum, even if the percentage threshold is exceeded. */
3596
+ /** @description The minimum monetary amount threshold for percentage-based alerts. When set, alerts will only trigger if the cost change meets this minimum, even if the percentage threshold is exceeded. */
3551
3597
  minimum_threshold: number | null;
3552
3598
  /** @description The tokens of the reports to alert on. */
3553
3599
  report_tokens: string[];
@@ -3577,7 +3623,7 @@ interface components {
3577
3623
  teams_channels?: string[];
3578
3624
  /**
3579
3625
  * Format: float
3580
- * @description The minimum dollar amount threshold for percentage-based alerts. Only applicable when unit_type is 'percentage'.
3626
+ * @description The minimum monetary amount threshold for percentage-based alerts. Only applicable when unit_type is 'percentage'.
3581
3627
  */
3582
3628
  minimum_threshold?: number;
3583
3629
  };
@@ -3604,7 +3650,7 @@ interface components {
3604
3650
  report_tokens?: string[];
3605
3651
  /**
3606
3652
  * Format: float
3607
- * @description The minimum dollar amount threshold for percentage-based alerts. Only applicable when unit_type is 'percentage'.
3653
+ * @description The minimum monetary amount threshold for percentage-based alerts. Only applicable when unit_type is 'percentage'.
3608
3654
  */
3609
3655
  minimum_threshold?: number;
3610
3656
  };
@@ -4566,6 +4612,8 @@ interface components {
4566
4612
  * @example 2023-08-04T00:00:00Z
4567
4613
  */
4568
4614
  created_at: string;
4615
+ /** @description The tokens for any Managed Accounts that are associated with the Integration. */
4616
+ managed_account_tokens: string[];
4569
4617
  };
4570
4618
  /** @description Create a Custom Provider Integration */
4571
4619
  createCustomProviderIntegration: {
@@ -4934,6 +4982,25 @@ interface components {
4934
4982
  };
4935
4983
  };
4936
4984
  };
4985
+ /** @description Configure SSO for a Managed Account. */
4986
+ createSsoConnectionForManagedAccount: {
4987
+ /**
4988
+ * @description The type of SSO connection. Currently supported: saml.
4989
+ * @enum {string}
4990
+ */
4991
+ type: "saml";
4992
+ /** @description The SAML metadata URL for the identity provider. Required when type is saml. */
4993
+ saml_metadata_url?: string;
4994
+ /** @description Additional email domains to associate with this SSO configuration. The account's SSO domain is always included. */
4995
+ additional_domains?: string[];
4996
+ };
4997
+ /** @description Update SSO configuration for a Managed Account. */
4998
+ updateSsoConnectionForManagedAccount: {
4999
+ /** @description The SAML metadata URL for the identity provider. */
5000
+ saml_metadata_url?: string;
5001
+ /** @description Additional email domains to associate with this SSO configuration. Replaces existing additional domains. The account's SSO domain is always preserved. */
5002
+ additional_domains?: string[];
5003
+ };
4937
5004
  /** @description Me model */
4938
5005
  Me: {
4939
5006
  default_workspace_token: string | null;
@@ -5246,11 +5313,16 @@ interface components {
5246
5313
  /** @description Recommendation model */
5247
5314
  Recommendation: {
5248
5315
  token: string;
5316
+ /**
5317
+ * @description The type of the Recommendation. This is analogous to category, but with a uniform format.
5318
+ * @example aws:ec2:co-rightsizing
5319
+ */
5320
+ type: string;
5249
5321
  /**
5250
5322
  * @description The category of the Recommendation.
5251
5323
  * @example ec2_compute_optimizer_recommender
5252
5324
  */
5253
- category: string | null;
5325
+ category: string;
5254
5326
  /** @description The token for the Workspace the Recommendation is a part of. */
5255
5327
  workspace_token: string;
5256
5328
  /** @description The provider the Recommendation is for. */
@@ -6032,6 +6104,8 @@ interface components {
6032
6104
  cost_metric?: components["schemas"]["VirtualTagConfigValueCostMetric"];
6033
6105
  /** @description Labeled percentage allocations for matching costs. */
6034
6106
  percentages?: components["schemas"]["VirtualTagConfigValuePercentage"][];
6107
+ /** @description Date ranges restricting when this value applies. */
6108
+ date_ranges?: components["schemas"]["VirtualTagConfigValueDateRange"][];
6035
6109
  };
6036
6110
  VirtualTagConfigValueCostMetric: {
6037
6111
  /** @description The filter VQL for the cost metric. */
@@ -6054,6 +6128,12 @@ interface components {
6054
6128
  */
6055
6129
  pct: number;
6056
6130
  };
6131
+ VirtualTagConfigValueDateRange: {
6132
+ /** @description The start date of the range (inclusive), or null for unbounded. */
6133
+ start_date: string | null;
6134
+ /** @description The end date of the range (inclusive), or null for unbounded. */
6135
+ end_date: string | null;
6136
+ };
6057
6137
  /** @description VirtualTagConfigStatus model */
6058
6138
  VirtualTagConfigStatus: {
6059
6139
  /**
@@ -6115,6 +6195,13 @@ interface components {
6115
6195
  /** Format: float */
6116
6196
  pct: number;
6117
6197
  }[];
6198
+ /** @description Date ranges restricting when this value applies. Each range has optional start_date and end_date (inclusive, YYYY-MM-DD). */
6199
+ date_ranges?: {
6200
+ /** @description Inclusive start date (YYYY-MM-DD), or null for unbounded. */
6201
+ start_date?: string;
6202
+ /** @description Inclusive end date (YYYY-MM-DD), or null for unbounded. */
6203
+ end_date?: string;
6204
+ }[];
6118
6205
  }[];
6119
6206
  };
6120
6207
  /** @description Updates an existing VirtualTagConfig. */
@@ -6154,6 +6241,13 @@ interface components {
6154
6241
  /** Format: float */
6155
6242
  pct: number;
6156
6243
  }[];
6244
+ /** @description Date ranges restricting when this value applies. Each range has optional start_date and end_date (inclusive, YYYY-MM-DD). */
6245
+ date_ranges?: {
6246
+ /** @description Inclusive start date (YYYY-MM-DD), or null for unbounded. */
6247
+ start_date?: string;
6248
+ /** @description Inclusive end date (YYYY-MM-DD), or null for unbounded. */
6249
+ end_date?: string;
6250
+ }[];
6157
6251
  }[];
6158
6252
  };
6159
6253
  /** @description Asynchronously updates an existing VirtualTagConfig. */
@@ -6193,6 +6287,13 @@ interface components {
6193
6287
  /** Format: float */
6194
6288
  pct: number;
6195
6289
  }[];
6290
+ /** @description Date ranges restricting when this value applies. Each range has optional start_date and end_date (inclusive, YYYY-MM-DD). */
6291
+ date_ranges?: {
6292
+ /** @description Inclusive start date (YYYY-MM-DD), or null for unbounded. */
6293
+ start_date?: string;
6294
+ /** @description Inclusive end date (YYYY-MM-DD), or null for unbounded. */
6295
+ end_date?: string;
6296
+ }[];
6196
6297
  }[];
6197
6298
  };
6198
6299
  /** @description Workspaces model */
@@ -6565,6 +6666,9 @@ interface operations {
6565
6666
  * "resources": [
6566
6667
  * "production-cluster"
6567
6668
  * ],
6669
+ * "resource_tokens": [
6670
+ * "rsrc_abcd1234efgh5678"
6671
+ * ],
6568
6672
  * "cost_report_token": "rprt_3d541a4c5160711f"
6569
6673
  * }
6570
6674
  * ]
@@ -6604,6 +6708,12 @@ interface operations {
6604
6708
  * "seven_day_average": "10.0",
6605
6709
  * "status": "active",
6606
6710
  * "feedback": null,
6711
+ * "resources": [
6712
+ * "production-cluster"
6713
+ * ],
6714
+ * "resource_tokens": [
6715
+ * "rsrc_abcd1234efgh5678"
6716
+ * ],
6607
6717
  * "cost_report_token": "rprt_bf0a30084fbf52c2"
6608
6718
  * }
6609
6719
  */
@@ -10635,7 +10745,8 @@ interface operations {
10635
10745
  * "workspace_tokens": [
10636
10746
  * "wrkspc_838cb4508ead3f6d"
10637
10747
  * ],
10638
- * "created_at": "2024-07-29T21:41:49Z"
10748
+ * "created_at": "2024-07-29T21:41:49Z",
10749
+ * "managed_account_tokens": []
10639
10750
  * }
10640
10751
  * ]
10641
10752
  * }
@@ -10671,7 +10782,10 @@ interface operations {
10671
10782
  * "workspace_tokens": [
10672
10783
  * "wrkspc_d69f96653fb985d6"
10673
10784
  * ],
10674
- * "created_at": "2024-07-29T21:41:49Z"
10785
+ * "created_at": "2024-07-29T21:41:49Z",
10786
+ * "managed_account_tokens": [
10787
+ * "acct_1a2b3c4d5e6f7890"
10788
+ * ]
10675
10789
  * }
10676
10790
  */
10677
10791
  "application/json": components["schemas"]["Integration"];
@@ -10718,7 +10832,8 @@ interface operations {
10718
10832
  * "workspace_tokens": [
10719
10833
  * "wrkspc_6bffe31969c9f385"
10720
10834
  * ],
10721
- * "created_at": "2024-07-29T21:41:44Z"
10835
+ * "created_at": "2024-07-29T21:41:44Z",
10836
+ * "managed_account_tokens": []
10722
10837
  * }
10723
10838
  */
10724
10839
  "application/json": components["schemas"]["Integration"];
@@ -10800,7 +10915,8 @@ interface operations {
10800
10915
  * "status": "imported",
10801
10916
  * "last_updated": null,
10802
10917
  * "workspace_tokens": [],
10803
- * "created_at": "2024-08-27T22:22:24Z"
10918
+ * "created_at": "2024-08-27T22:22:24Z",
10919
+ * "managed_account_tokens": []
10804
10920
  * }
10805
10921
  */
10806
10922
  "application/json": components["schemas"]["Integration"];
@@ -11026,7 +11142,8 @@ interface operations {
11026
11142
  * "status": "imported",
11027
11143
  * "last_updated": null,
11028
11144
  * "workspace_tokens": [],
11029
- * "created_at": "2024-07-29T21:41:46Z"
11145
+ * "created_at": "2024-07-29T21:41:46Z",
11146
+ * "managed_account_tokens": []
11030
11147
  * }
11031
11148
  */
11032
11149
  "application/json": components["schemas"]["Integration"];
@@ -11069,7 +11186,8 @@ interface operations {
11069
11186
  * "status": "imported",
11070
11187
  * "last_updated": null,
11071
11188
  * "workspace_tokens": [],
11072
- * "created_at": "2024-07-29T21:41:48Z"
11189
+ * "created_at": "2024-07-29T21:41:48Z",
11190
+ * "managed_account_tokens": []
11073
11191
  * }
11074
11192
  */
11075
11193
  "application/json": components["schemas"]["Integration"];
@@ -11856,6 +11974,92 @@ interface operations {
11856
11974
  };
11857
11975
  };
11858
11976
  };
11977
+ updateSsoConnectionForManagedAccount: {
11978
+ parameters: {
11979
+ query?: never;
11980
+ header?: never;
11981
+ path: {
11982
+ managed_account_token: string;
11983
+ };
11984
+ cookie?: never;
11985
+ };
11986
+ requestBody: {
11987
+ content: {
11988
+ "application/json": components["schemas"]["updateSsoConnectionForManagedAccount"];
11989
+ };
11990
+ };
11991
+ responses: {
11992
+ 200: {
11993
+ headers: {
11994
+ [name: string]: unknown;
11995
+ };
11996
+ content: {
11997
+ "application/json": components["schemas"]["ManagedAccount"];
11998
+ };
11999
+ };
12000
+ /** @description BadRequest */
12001
+ 400: {
12002
+ headers: {
12003
+ [name: string]: unknown;
12004
+ };
12005
+ content: {
12006
+ "application/json": components["schemas"]["Errors"];
12007
+ };
12008
+ };
12009
+ /** @description NotFound */
12010
+ 404: {
12011
+ headers: {
12012
+ [name: string]: unknown;
12013
+ };
12014
+ content: {
12015
+ "application/json": components["schemas"]["Errors"];
12016
+ };
12017
+ };
12018
+ };
12019
+ };
12020
+ createSsoConnectionForManagedAccount: {
12021
+ parameters: {
12022
+ query?: never;
12023
+ header?: never;
12024
+ path: {
12025
+ managed_account_token: string;
12026
+ };
12027
+ cookie?: never;
12028
+ };
12029
+ requestBody: {
12030
+ content: {
12031
+ "application/json": components["schemas"]["createSsoConnectionForManagedAccount"];
12032
+ };
12033
+ };
12034
+ responses: {
12035
+ 201: {
12036
+ headers: {
12037
+ [name: string]: unknown;
12038
+ };
12039
+ content: {
12040
+ "application/json": components["schemas"]["ManagedAccount"];
12041
+ };
12042
+ };
12043
+ /** @description BadRequest */
12044
+ 400: {
12045
+ headers: {
12046
+ [name: string]: unknown;
12047
+ };
12048
+ content: {
12049
+ "application/json": components["schemas"]["Errors"];
12050
+ };
12051
+ };
12052
+ /** @description NotFound */
12053
+ 404: {
12054
+ headers: {
12055
+ [name: string]: unknown;
12056
+ };
12057
+ content: {
12058
+ "application/json": components["schemas"]["Errors"];
12059
+ };
12060
+ };
12061
+ };
12062
+ };
11859
12063
  getMe: {
11860
12064
  parameters: {
11861
12065
  query?: never;
@@ -12457,14 +12661,6 @@ interface operations {
12457
12661
  getRecommendations: {
12458
12662
  parameters: {
12459
12663
  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
12664
  /** @description Filter by one or more providers. Requires workspace_token. */
12469
12665
  provider_ids?: ("aws" | "gcp" | "azure" | "kubernetes" | "datadog")[];
12470
12666
  /** @description Filter by billing account identifiers. Requires workspace_token. */
@@ -12487,6 +12683,16 @@ interface operations {
12487
12683
  page?: number;
12488
12684
  /** @description The number of results to return. The maximum is 1000. */
12489
12685
  limit?: number;
12686
+ /** @description Filter by workspace. */
12687
+ workspace_token?: string;
12688
+ /** @description Filter by provider account id (AWS account, Azure subscription id, etc). */
12689
+ provider_account_id?: string;
12690
+ /** @description Filter by exact recommendation category. Ignored when type is provided. */
12691
+ category?: string;
12692
+ /** @description Fuzzy filter by recommendation type using a case-insensitive literal substring. Examples: aws, aws:ec2, aws:ec2:rightsizing. */
12693
+ type?: string;
12694
+ /** @description Filter by provider. */
12695
+ provider?: "aws" | "gcp" | "azure" | "kubernetes" | "datadog";
12490
12696
  };
12491
12697
  header?: never;
12492
12698
  path?: never;
@@ -12510,15 +12716,16 @@ interface operations {
12510
12716
  * },
12511
12717
  * "recommendations": [
12512
12718
  * {
12513
- * "token": "rcmmndtn_5cbc9cf9692619a9",
12719
+ * "token": "rcmmndtn_9bb8fa992d5b876b",
12720
+ * "type": null,
12514
12721
  * "category": "ip_unattached",
12515
- * "workspace_token": "wrkspc_ab4f7a41afd5f542",
12722
+ * "workspace_token": "wrkspc_e0e58b3c1ddef29c",
12516
12723
  * "provider": "aws",
12517
12724
  * "provider_account_id": "123456789012",
12518
12725
  * "description": "IP address is not attached to an instance.",
12519
12726
  * "potential_savings": "100.0",
12520
12727
  * "service": "AWS IP",
12521
- * "created_at": "2026-01-23T21:26:59Z",
12728
+ * "created_at": "2026-01-28T16:53:32Z",
12522
12729
  * "resources_affected_count": 0,
12523
12730
  * "currency_code": "USD",
12524
12731
  * "currency_symbol": "$"
@@ -12549,15 +12756,16 @@ interface operations {
12549
12756
  content: {
12550
12757
  /**
12551
12758
  * @example {
12552
- * "token": "rcmmndtn_8a46f3b2590e2e79",
12759
+ * "token": "rcmmndtn_0eea161ff1a4d183",
12760
+ * "type": null,
12553
12761
  * "category": "ip_unattached",
12554
- * "workspace_token": "wrkspc_409c070f69640c8c",
12762
+ * "workspace_token": "wrkspc_634a8ca67ed39555",
12555
12763
  * "provider": "aws",
12556
12764
  * "provider_account_id": "123456789012",
12557
12765
  * "description": "IP address is not attached to an instance.",
12558
12766
  * "potential_savings": "100.0",
12559
12767
  * "service": "AWS IP",
12560
- * "created_at": "2026-01-23T21:26:58Z",
12768
+ * "created_at": "2026-01-28T16:53:23Z",
12561
12769
  * "resources_affected_count": 0,
12562
12770
  * "currency_code": "USD",
12563
12771
  * "currency_symbol": "$"
@@ -12601,15 +12809,15 @@ interface operations {
12601
12809
  /**
12602
12810
  * @example {
12603
12811
  * "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",
12812
+ * "self": "https://api.vantage.sh/v2/recommendations/rcmmndtn_073dad68f8be41a2/resources",
12813
+ * "first": "https://api.vantage.sh/v2/recommendations/rcmmndtn_073dad68f8be41a2/resources?page=1",
12606
12814
  * "next": null,
12607
- * "last": "https://api.vantage.sh/v2/recommendations/rcmmndtn_8807df39fe292cd5/resources?page=1",
12815
+ * "last": "https://api.vantage.sh/v2/recommendations/rcmmndtn_073dad68f8be41a2/resources?page=1",
12608
12816
  * "prev": null
12609
12817
  * },
12610
12818
  * "resources": [
12611
12819
  * {
12612
- * "token": "prvdr_rsrc_999172bd989f02a1",
12820
+ * "token": "prvdr_rsrc_8ec00e4b4c410538",
12613
12821
  * "resource_id": "i-12345",
12614
12822
  * "recommendation_actions": [
12615
12823
  * {
@@ -12648,7 +12856,7 @@ interface operations {
12648
12856
  content: {
12649
12857
  /**
12650
12858
  * @example {
12651
- * "token": "prvdr_rsrc_a55a2fde1299df2f",
12859
+ * "token": "prvdr_rsrc_3065ac9b0999c363",
12652
12860
  * "resource_id": "i-12345",
12653
12861
  * "recommendation_actions": [
12654
12862
  * {
@@ -12675,6 +12883,83 @@ interface operations {
12675
12883
  };
12676
12884
  };
12677
12885
  };
12886
+ getRecommendationTypeResources: {
12887
+ parameters: {
12888
+ query: {
12889
+ /** @description Filter by one or more providers. Requires workspace_token. */
12890
+ provider_ids?: ("aws" | "gcp" | "azure" | "kubernetes" | "datadog")[];
12891
+ /** @description Filter by billing account identifiers. Requires workspace_token. */
12892
+ billing_account_ids?: string[];
12893
+ /** @description Filter by account identifiers. Requires workspace_token. */
12894
+ account_ids?: string[];
12895
+ /** @description Filter by region slugs (e.g. us-east-1, eastus, asia-east1). Requires workspace_token. */
12896
+ regions?: string[];
12897
+ /** @description Filter by tag key (must be used with tag_value). Requires workspace_token. */
12898
+ tag_key?: string;
12899
+ /** @description Filter by tag value (requires tag_key). Requires workspace_token. */
12900
+ tag_value?: string;
12901
+ /** @description Filter recommendations created on/after this YYYY-MM-DD date. Requires workspace_token. */
12902
+ start_date?: string;
12903
+ /** @description Filter recommendations created on/before this YYYY-MM-DD date. Requires workspace_token. */
12904
+ end_date?: string;
12905
+ /** @description Filter by status. */
12906
+ status?: "active" | "archived";
12907
+ /** @description The page of results to return. */
12908
+ page?: number;
12909
+ /** @description The number of results to return. The maximum is 1000. */
12910
+ limit?: number;
12911
+ /** @description The workspace token to filter recommendations by. Required. */
12912
+ workspace_token: string;
12913
+ };
12914
+ header?: never;
12915
+ path: {
12916
+ type: string;
12917
+ };
12918
+ cookie?: never;
12919
+ };
12920
+ requestBody?: never;
12921
+ responses: {
12922
+ 200: {
12923
+ headers: {
12924
+ [name: string]: unknown;
12925
+ };
12926
+ content: {
12927
+ /**
12928
+ * @example {
12929
+ * "resources": [
12930
+ * {
12931
+ * "token": "pvdr_rsrc_abc123",
12932
+ * "resource_id": "i-1234567890abcdef0",
12933
+ * "recommendation_actions": [
12934
+ * {
12935
+ * "action": "modify",
12936
+ * "instance_type": "c5a.xlarge",
12937
+ * "description": "Migrate to c5a.xlarge for cost savings.",
12938
+ * "potential_savings": "100.00"
12939
+ * }
12940
+ * ]
12941
+ * }
12942
+ * ],
12943
+ * "links": {
12944
+ * "first": "/v2/recommendations/by_type/aws:ec2:co-rightsizing/resources?workspace_token=wrkspc_abc123&page=1",
12945
+ * "last": "/v2/recommendations/by_type/aws:ec2:co-rightsizing/resources?workspace_token=wrkspc_abc123&page=1"
12946
+ * }
12947
+ * }
12948
+ */
12949
+ "application/json": components["schemas"]["RecommendationProviderResources"];
12950
+ };
12951
+ };
12952
+ /** @description NotFound */
12953
+ 404: {
12954
+ headers: {
12955
+ [name: string]: unknown;
12956
+ };
12957
+ content: {
12958
+ "application/json": components["schemas"]["Errors"];
12959
+ };
12960
+ };
12961
+ };
12962
+ };
12678
12963
  getRecommendationViews: {
12679
12964
  parameters: {
12680
12965
  query?: {
@@ -15273,7 +15558,13 @@ interface operations {
15273
15558
  * "values": [
15274
15559
  * {
15275
15560
  * "filter": "costs.provider = 'aws' AND\ncosts.service = 'Amazon Elastic Compute Cloud' AND\ncosts.account_id IN ('1234', '5678')\n",
15276
- * "name": "EXPC-1234"
15561
+ * "name": "EXPC-1234",
15562
+ * "date_ranges": [
15563
+ * {
15564
+ * "start_date": "2024-01-01",
15565
+ * "end_date": "2024-12-31"
15566
+ * }
15567
+ * ]
15277
15568
  * },
15278
15569
  * {
15279
15570
  * "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 +15640,13 @@ interface operations {
15349
15640
  * "values": [
15350
15641
  * {
15351
15642
  * "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"
15643
+ * "name": "Growth",
15644
+ * "date_ranges": [
15645
+ * {
15646
+ * "start_date": "2024-01-01",
15647
+ * "end_date": "2024-12-31"
15648
+ * }
15649
+ * ]
15353
15650
  * },
15354
15651
  * {
15355
15652
  * "filter": "(costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR (costs.provider = 'gcp' AND costs.service = 'Google Compute Engine')",
@@ -15402,7 +15699,13 @@ interface operations {
15402
15699
  * "values": [
15403
15700
  * {
15404
15701
  * "filter": "costs.provider = 'aws' AND costs.service = 'Amazon Elastic Compute Cloud' AND\ncosts.account_id IN ('1234', '5678')\n",
15405
- * "name": "marketing"
15702
+ * "name": "marketing",
15703
+ * "date_ranges": [
15704
+ * {
15705
+ * "start_date": "2024-01-01",
15706
+ * "end_date": "2024-12-31"
15707
+ * }
15708
+ * ]
15406
15709
  * },
15407
15710
  * {
15408
15711
  * "filter": "((costs.provider = 'aws' AND costs.account_id IN ('1234', '5678')) OR\n(costs.provider = 'gcp' AND costs.service = 'Google Compute Engine'))\n",
@@ -15930,7 +16233,7 @@ type LookupTableType = {
15930
16233
  type ExecutePatch<Patch, Response> = keyof Patch extends never ? Response : Omit<Response, keyof Patch> & Patch;
15931
16234
  type DoPathSpecificPatches<P extends Path, M extends SupportedMethods<P>, Response, LookupTable extends Partial<LookupTableType>> = LookupTable[P] extends never ? Response : ExecutePatch<LookupTable[P][M], Response>;
15932
16235
  /** Defines the response body type for a given path and method. */
15933
- type ResponseBodyForPathAndMethod<P extends Path, M extends SupportedMethods<P>> = PathsRedefined[P][0][MethodsInverted[M]] extends ExtendsGoodResponseCode<200 | 201 | 202 | 203 | 204, infer R> ? DoPathSpecificPatches<P, M, R, PathAndMethodSpecificPatches> : void;
16236
+ type ResponseBodyForPathAndMethod<P extends Path, M extends SupportedMethods<P>> = PathsRedefined[P][0][MethodsInverted[M]] extends ExtendsGoodResponseCode<200 | 201 | 202 | 203, infer R> ? DoPathSpecificPatches<P, M, R, PathAndMethodSpecificPatches> : void;
15934
16237
  /** Defines a vantage API failure */
15935
16238
  declare class VantageAPIError extends Error {
15936
16239
  readonly status: number | null;
@@ -16642,6 +16945,22 @@ type UpdateManagedAccountResponse = ResponseBodyForPathAndMethod<`/v2/managed_ac
16642
16945
  * Response type for Delete managed account
16643
16946
  */
16644
16947
  type DeleteManagedAccountResponse = ResponseBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}`, "DELETE">;
16948
+ /**
16949
+ * Update SSO configuration for a Managed Account.
16950
+ */
16951
+ type UpdateSsoConnectionForManagedAccountRequest = RequestBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}/sso_connection`, "PUT">;
16952
+ /**
16953
+ * Response type for Update SSO configuration for managed account
16954
+ */
16955
+ type UpdateSsoConnectionForManagedAccountResponse = ResponseBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}/sso_connection`, "PUT">;
16956
+ /**
16957
+ * Configure SSO for a Managed Account.
16958
+ */
16959
+ type CreateSsoConnectionForManagedAccountRequest = RequestBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}/sso_connection`, "POST">;
16960
+ /**
16961
+ * Response type for Configure SSO for managed account
16962
+ */
16963
+ type CreateSsoConnectionForManagedAccountResponse = ResponseBodyForPathAndMethod<`/v2/managed_accounts/${NoSlashString}/sso_connection`, "POST">;
16645
16964
  /**
16646
16965
  * Response type for Get authenticated user info
16647
16966
  */
@@ -16727,7 +17046,7 @@ type GetProductsResponse = ResponseBodyForPathAndMethod<"/v2/products", "GET">;
16727
17046
  */
16728
17047
  type GetProductResponse = ResponseBodyForPathAndMethod<`/v2/products/${NoSlashString}`, "GET">;
16729
17048
  /**
16730
- * Return all Recommendations.
17049
+ * Return all Recommendations. Use the `type` query parameter with a fuzzy fragment to filter recommendation type case-insensitively (for example: aws, aws:ec2, aws:ec2:rightsizing).
16731
17050
  */
16732
17051
  type GetRecommendationsRequest = RequestBodyForPathAndMethod<"/v2/recommendations", "GET">;
16733
17052
  /**
@@ -16750,6 +17069,14 @@ type GetRecommendationResourcesResponse = ResponseBodyForPathAndMethod<`/v2/reco
16750
17069
  * Response type for Get specific resource for a recommendation
16751
17070
  */
16752
17071
  type GetRecommendationResourceResponse = ResponseBodyForPathAndMethod<`/v2/recommendations/${NoSlashString}/resources/${NoSlashString}`, "GET">;
17072
+ /**
17073
+ * Return all Active Resources associated with recommendations of the specified type.
17074
+ */
17075
+ type GetRecommendationTypeResourcesRequest = RequestBodyForPathAndMethod<`/v2/recommendations/by_type/${NoSlashString}/resources`, "GET">;
17076
+ /**
17077
+ * Response type for Get all resources for a recommendation type
17078
+ */
17079
+ type GetRecommendationTypeResourcesResponse = ResponseBodyForPathAndMethod<`/v2/recommendations/by_type/${NoSlashString}/resources`, "GET">;
16753
17080
  /**
16754
17081
  * Return all RecommendationViews.
16755
17082
  */
@@ -17277,21 +17604,7 @@ declare class AccessGrantsApi<NeverThrow extends boolean> {
17277
17604
  /**
17278
17605
  * Delete an Access Grant.
17279
17606
  */
17280
- delete(accessGrantToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
17281
- token: string;
17282
- resource_token: string;
17283
- access: string;
17284
- team_token: string | null;
17285
- created_at: string;
17286
- created_by: string | null;
17287
- }, null] : {
17288
- token: string;
17289
- resource_token: string;
17290
- access: string;
17291
- team_token: string | null;
17292
- created_at: string;
17293
- created_by: string | null;
17294
- }>;
17607
+ delete(accessGrantToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
17295
17608
  }
17296
17609
  declare class AnomalyAlertsApi<NeverThrow extends boolean> {
17297
17610
  private client;
@@ -17322,6 +17635,7 @@ declare class AnomalyAlertsApi<NeverThrow extends boolean> {
17322
17635
  status: string;
17323
17636
  feedback?: string | null;
17324
17637
  resources: string[];
17638
+ resource_tokens: string[];
17325
17639
  cost_report_token: string;
17326
17640
  }, null] : {
17327
17641
  token: string;
@@ -17336,6 +17650,7 @@ declare class AnomalyAlertsApi<NeverThrow extends boolean> {
17336
17650
  status: string;
17337
17651
  feedback?: string | null;
17338
17652
  resources: string[];
17653
+ resource_tokens: string[];
17339
17654
  cost_report_token: string;
17340
17655
  }>;
17341
17656
  /**
@@ -17354,6 +17669,7 @@ declare class AnomalyAlertsApi<NeverThrow extends boolean> {
17354
17669
  status: string;
17355
17670
  feedback?: string | null;
17356
17671
  resources: string[];
17672
+ resource_tokens: string[];
17357
17673
  cost_report_token: string;
17358
17674
  }, null] : {
17359
17675
  token: string;
@@ -17368,6 +17684,7 @@ declare class AnomalyAlertsApi<NeverThrow extends boolean> {
17368
17684
  status: string;
17369
17685
  feedback?: string | null;
17370
17686
  resources: string[];
17687
+ resource_tokens: string[];
17371
17688
  cost_report_token: string;
17372
17689
  }>;
17373
17690
  }
@@ -17447,23 +17764,7 @@ declare class AnomalyNotificationsApi<NeverThrow extends boolean> {
17447
17764
  /**
17448
17765
  * Delete an Anomaly Notification.
17449
17766
  */
17450
- delete(anomalyNotificationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
17451
- token: string;
17452
- cost_report_token: string;
17453
- created_at: string;
17454
- updated_at: string;
17455
- threshold: number;
17456
- user_tokens: string[];
17457
- recipient_channels: string[];
17458
- }, null] : {
17459
- token: string;
17460
- cost_report_token: string;
17461
- created_at: string;
17462
- updated_at: string;
17463
- threshold: number;
17464
- user_tokens: string[];
17465
- recipient_channels: string[];
17466
- }>;
17767
+ delete(anomalyNotificationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
17467
17768
  }
17468
17769
  declare class AuditLogsApi<NeverThrow extends boolean> {
17469
17770
  private client;
@@ -17472,14 +17773,10 @@ declare class AuditLogsApi<NeverThrow extends boolean> {
17472
17773
  * Return all AuditLogs.
17473
17774
  */
17474
17775
  list(body?: GetAuditLogsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
17475
- links?: components["schemas"] /**
17476
- * Create a CostReport.
17477
- */["Links"];
17776
+ links?: components["schemas"]["Links"];
17478
17777
  audit_logs: components["schemas"]["AuditLog"][];
17479
17778
  }, null] : {
17480
- links?: components["schemas"] /**
17481
- * Create a CostReport.
17482
- */["Links"];
17779
+ links?: components["schemas"]["Links"];
17483
17780
  audit_logs: components["schemas"]["AuditLog"][];
17484
17781
  }>;
17485
17782
  /**
@@ -17601,27 +17898,7 @@ declare class BillingProfilesApi<NeverThrow extends boolean> {
17601
17898
  /**
17602
17899
  * Requires MSP invoicing to be enabled on the account.
17603
17900
  */
17604
- delete(billingProfileToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
17605
- token: string;
17606
- nickname: string;
17607
- created_at: string;
17608
- updated_at: string;
17609
- billing_information_attributes: components["schemas"]["BillingInformation"];
17610
- business_information_attributes: components["schemas"]["BusinessInformation"];
17611
- banking_information_attributes?: components["schemas"]["BankingInformation"];
17612
- invoice_adjustment_attributes: components["schemas"]["InvoiceAdjustment"];
17613
- managed_accounts_count: string;
17614
- }, null] : {
17615
- token: string;
17616
- nickname: string;
17617
- created_at: string;
17618
- updated_at: string;
17619
- billing_information_attributes: components["schemas"]["BillingInformation"];
17620
- business_information_attributes: components["schemas"]["BusinessInformation"];
17621
- banking_information_attributes?: components["schemas"]["BankingInformation"];
17622
- invoice_adjustment_attributes: components["schemas"]["InvoiceAdjustment"];
17623
- managed_accounts_count: string;
17624
- }>;
17901
+ delete(billingProfileToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
17625
17902
  }
17626
17903
  declare class BillingRulesApi<NeverThrow extends boolean> {
17627
17904
  private client;
@@ -17753,41 +18030,7 @@ declare class BillingRulesApi<NeverThrow extends boolean> {
17753
18030
  /**
17754
18031
  * Delete a BillingRule.
17755
18032
  */
17756
- delete(billingRuleToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
17757
- token: string;
17758
- title: string;
17759
- type: string;
17760
- start_date?: string | null;
17761
- end_date?: string | null;
17762
- apply_to_all: boolean | null;
17763
- created_by_token: string;
17764
- created_at: string;
17765
- service?: string | null;
17766
- category?: string | null;
17767
- percentage?: string | null;
17768
- charge_type?: string | null;
17769
- sub_category?: string | null;
17770
- start_period?: string | null;
17771
- amount?: string | null;
17772
- sql_query?: string | null;
17773
- }, null] : {
17774
- token: string;
17775
- title: string;
17776
- type: string;
17777
- start_date?: string | null;
17778
- end_date?: string | null;
17779
- apply_to_all: boolean | null;
17780
- created_by_token: string;
17781
- created_at: string;
17782
- service?: string | null;
17783
- category?: string | null;
17784
- percentage?: string | null;
17785
- charge_type?: string | null;
17786
- sub_category?: string | null;
17787
- start_period?: string | null;
17788
- amount?: string | null;
17789
- sql_query?: string | null;
17790
- }>;
18033
+ delete(billingRuleToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
17791
18034
  }
17792
18035
  declare class BudgetAlertsApi<NeverThrow extends boolean> {
17793
18036
  private client;
@@ -17889,31 +18132,7 @@ declare class BudgetAlertsApi<NeverThrow extends boolean> {
17889
18132
  /**
17890
18133
  * Delete a BudgetAlert.
17891
18134
  */
17892
- delete(budgetAlertToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
17893
- token: string;
17894
- budget_tokens: string[];
17895
- created_at: string;
17896
- workspace_token: string;
17897
- user_token?: string | null;
17898
- user_tokens: string[];
17899
- duration_in_days: number | null;
17900
- threshold: number;
17901
- period_to_track: string | null;
17902
- integration_provider?: string | null;
17903
- recipient_channels: string[] | null;
17904
- }, null] : {
17905
- token: string;
17906
- budget_tokens: string[];
17907
- created_at: string;
17908
- workspace_token: string;
17909
- user_token?: string | null;
17910
- user_tokens: string[];
17911
- duration_in_days: number | null;
17912
- threshold: number;
17913
- period_to_track: string | null;
17914
- integration_provider?: string | null;
17915
- recipient_channels: string[] | null;
17916
- }>;
18135
+ delete(budgetAlertToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
17917
18136
  }
17918
18137
  declare class BudgetsApi<NeverThrow extends boolean> {
17919
18138
  private client;
@@ -17987,31 +18206,7 @@ declare class BudgetsApi<NeverThrow extends boolean> {
17987
18206
  /**
17988
18207
  * Delete a Budget.
17989
18208
  */
17990
- delete(budgetToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
17991
- token: string;
17992
- name: string | null;
17993
- workspace_token: string;
17994
- user_token?: string | null;
17995
- created_by_token?: string | null;
17996
- cost_report_token?: string | null;
17997
- created_at: string;
17998
- budget_alert_tokens: string[];
17999
- child_budget_tokens: string[];
18000
- periods: components["schemas"]["BudgetPeriod"][];
18001
- performance?: components["schemas"]["BudgetPerformance"][];
18002
- }, null] : {
18003
- token: string;
18004
- name: string | null;
18005
- workspace_token: string;
18006
- user_token?: string | null;
18007
- created_by_token?: string | null;
18008
- cost_report_token?: string | null;
18009
- created_at: string;
18010
- budget_alert_tokens: string[];
18011
- child_budget_tokens: string[];
18012
- periods: components["schemas"]["BudgetPeriod"][];
18013
- performance?: components["schemas"]["BudgetPerformance"][];
18014
- }>;
18209
+ delete(budgetToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
18015
18210
  }
18016
18211
  declare class BusinessMetricsApi<NeverThrow extends boolean> {
18017
18212
  private client;
@@ -18093,25 +18288,7 @@ declare class BusinessMetricsApi<NeverThrow extends boolean> {
18093
18288
  /**
18094
18289
  * Deletes an existing BusinessMetric.
18095
18290
  */
18096
- delete(businessMetricToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
18097
- token: string;
18098
- title: string;
18099
- created_by_token?: string | null;
18100
- cost_report_tokens_with_metadata: components["schemas"]["AttachedCostReportForBusinessMetric"][];
18101
- import_type: "datadog_metrics" | "cloudwatch" | "csv" | null;
18102
- integration_token: string | null;
18103
- cloudwatch_fields?: components["schemas"]["CloudwatchFields"];
18104
- datadog_metric_fields?: components["schemas"]["DatadogMetricFields"];
18105
- }, null] : {
18106
- token: string;
18107
- title: string;
18108
- created_by_token?: string | null;
18109
- cost_report_tokens_with_metadata: components["schemas"]["AttachedCostReportForBusinessMetric"][];
18110
- import_type: "datadog_metrics" | "cloudwatch" | "csv" | null;
18111
- integration_token: string | null;
18112
- cloudwatch_fields?: components["schemas"]["CloudwatchFields"];
18113
- datadog_metric_fields?: components["schemas"]["DatadogMetricFields"];
18114
- }>;
18291
+ delete(businessMetricToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
18115
18292
  /**
18116
18293
  * Return values of a BusinessMetric
18117
18294
  */
@@ -18243,35 +18420,7 @@ declare class CostAlertsApi<NeverThrow extends boolean> {
18243
18420
  /**
18244
18421
  * Delete a Cost Alert
18245
18422
  */
18246
- delete(costAlertToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
18247
- token: string;
18248
- title: string;
18249
- email_recipients: string[];
18250
- slack_channels: string[];
18251
- teams_channels: string[];
18252
- created_at: string;
18253
- updated_at: string;
18254
- workspace_token: string;
18255
- interval: string;
18256
- threshold: number;
18257
- unit_type: string;
18258
- minimum_threshold: number | null;
18259
- report_tokens: string[];
18260
- }, null] : {
18261
- token: string;
18262
- title: string;
18263
- email_recipients: string[];
18264
- slack_channels: string[];
18265
- teams_channels: string[];
18266
- created_at: string;
18267
- updated_at: string;
18268
- workspace_token: string;
18269
- interval: string;
18270
- threshold: number;
18271
- unit_type: string;
18272
- minimum_threshold: number | null;
18273
- report_tokens: string[];
18274
- }>;
18423
+ delete(costAlertToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
18275
18424
  /**
18276
18425
  * Get all CostAlertEvents
18277
18426
  */
@@ -18515,63 +18664,7 @@ declare class CostReportsApi<NeverThrow extends boolean> {
18515
18664
  /**
18516
18665
  * Delete a CostReport.
18517
18666
  */
18518
- delete(costReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
18519
- token: string;
18520
- title: string;
18521
- folder_token?: string | null;
18522
- saved_filter_tokens?: string[] | null;
18523
- business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
18524
- filter: string | null;
18525
- groupings?: string | null;
18526
- settings?: {
18527
- include_credits?: boolean | null;
18528
- include_refunds?: boolean | null;
18529
- include_discounts?: boolean | null;
18530
- include_tax?: boolean | null;
18531
- amortize?: boolean | null;
18532
- unallocated?: boolean | null;
18533
- aggregate_by?: string | null;
18534
- show_previous_period?: boolean | null;
18535
- };
18536
- created_at: string;
18537
- workspace_token: string;
18538
- previous_period_start_date?: string | null;
18539
- previous_period_end_date?: string | null;
18540
- start_date?: string | null;
18541
- end_date?: string | null;
18542
- date_interval: string;
18543
- chart_type: string;
18544
- date_bin: string;
18545
- chart_settings: components["schemas"]["ChartSettings"];
18546
- }, null] : {
18547
- token: string;
18548
- title: string;
18549
- folder_token?: string | null;
18550
- saved_filter_tokens?: string[] | null;
18551
- business_metric_tokens_with_metadata: components["schemas"]["AttachedBusinessMetricForCostReport"][];
18552
- filter: string | null;
18553
- groupings?: string | null;
18554
- settings?: {
18555
- include_credits?: boolean | null;
18556
- include_refunds?: boolean | null;
18557
- include_discounts?: boolean | null;
18558
- include_tax?: boolean | null;
18559
- amortize?: boolean | null;
18560
- unallocated?: boolean | null;
18561
- aggregate_by?: string | null;
18562
- show_previous_period?: boolean | null;
18563
- };
18564
- created_at: string;
18565
- workspace_token: string;
18566
- previous_period_start_date?: string | null;
18567
- previous_period_end_date?: string | null;
18568
- start_date?: string | null;
18569
- end_date?: string | null;
18570
- date_interval: string;
18571
- chart_type: string;
18572
- date_bin: string;
18573
- chart_settings: components["schemas"]["ChartSettings"];
18574
- }>;
18667
+ delete(costReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
18575
18668
  /**
18576
18669
  * Return all ForecastedCosts.
18577
18670
  */
@@ -18715,31 +18808,7 @@ declare class DashboardsApi<NeverThrow extends boolean> {
18715
18808
  /**
18716
18809
  * Delete a Dashboard.
18717
18810
  */
18718
- delete(dashboardToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
18719
- token: string;
18720
- title: string;
18721
- widgets: components["schemas"]["DashboardWidget"][];
18722
- saved_filter_tokens: string[];
18723
- date_bin: "cumulative" | "day" | "week" | "month" | null;
18724
- date_interval: "this_month" | "last_7_days" | "last_30_days" | "last_month" | "last_3_months" | "last_6_months" | "custom" | "last_12_months" | "last_24_months" | "last_36_months" | "next_month" | "next_3_months" | "next_6_months" | "next_12_months" | "year_to_date" | "last_3_days" | "last_14_days" | null;
18725
- start_date?: string | null;
18726
- end_date?: string | null;
18727
- created_at: string;
18728
- updated_at: string;
18729
- workspace_token: string;
18730
- }, null] : {
18731
- token: string;
18732
- title: string;
18733
- widgets: components["schemas"]["DashboardWidget"][];
18734
- saved_filter_tokens: string[];
18735
- date_bin: "cumulative" | "day" | "week" | "month" | null;
18736
- date_interval: "this_month" | "last_7_days" | "last_30_days" | "last_month" | "last_3_months" | "last_6_months" | "custom" | "last_12_months" | "last_24_months" | "last_36_months" | "next_month" | "next_3_months" | "next_6_months" | "next_12_months" | "year_to_date" | "last_3_days" | "last_14_days" | null;
18737
- start_date?: string | null;
18738
- end_date?: string | null;
18739
- created_at: string;
18740
- updated_at: string;
18741
- workspace_token: string;
18742
- }>;
18811
+ delete(dashboardToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
18743
18812
  }
18744
18813
  declare class DataExportsApi<NeverThrow extends boolean> {
18745
18814
  private client;
@@ -18893,35 +18962,7 @@ declare class FinancialCommitmentReportsApi<NeverThrow extends boolean> {
18893
18962
  /**
18894
18963
  * Delete a FinancialCommitmentReport.
18895
18964
  */
18896
- delete(financialCommitmentReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
18897
- token: string;
18898
- title: string;
18899
- default: boolean;
18900
- created_at: string;
18901
- workspace_token: string;
18902
- user_token?: string | null;
18903
- start_date: string | null;
18904
- end_date: string | null;
18905
- date_interval: string | null;
18906
- date_bucket: string;
18907
- groupings: string | null;
18908
- on_demand_costs_scope: string;
18909
- filter: string | null;
18910
- }, null] : {
18911
- token: string;
18912
- title: string;
18913
- default: boolean;
18914
- created_at: string;
18915
- workspace_token: string;
18916
- user_token?: string | null;
18917
- start_date: string | null;
18918
- end_date: string | null;
18919
- date_interval: string | null;
18920
- date_bucket: string;
18921
- groupings: string | null;
18922
- on_demand_costs_scope: string;
18923
- filter: string | null;
18924
- }>;
18965
+ delete(financialCommitmentReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
18925
18966
  }
18926
18967
  declare class FinancialCommitmentsApi<NeverThrow extends boolean> {
18927
18968
  private client;
@@ -19013,23 +19054,7 @@ declare class FoldersApi<NeverThrow extends boolean> {
19013
19054
  /**
19014
19055
  * Delete a Folder for CostReports.
19015
19056
  */
19016
- delete(folderToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19017
- token: string;
19018
- title: string | null;
19019
- parent_folder_token?: string | null;
19020
- saved_filter_tokens: string[];
19021
- created_at: string;
19022
- updated_at: string;
19023
- workspace_token: string;
19024
- }, null] : {
19025
- token: string;
19026
- title: string | null;
19027
- parent_folder_token?: string | null;
19028
- saved_filter_tokens: string[];
19029
- created_at: string;
19030
- updated_at: string;
19031
- workspace_token: string;
19032
- }>;
19057
+ delete(folderToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
19033
19058
  }
19034
19059
  declare class IntegrationsApi<NeverThrow extends boolean> {
19035
19060
  private client;
@@ -19047,27 +19072,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19047
19072
  /**
19048
19073
  * Return an Integration.
19049
19074
  */
19050
- get(integrationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19051
- token: string;
19052
- provider: string;
19053
- account_identifier: string | null;
19054
- status: "connected" | "error" | "pending" | "importing" | "imported" | "disconnected";
19055
- last_updated?: string | null;
19056
- workspace_tokens: string[];
19057
- created_at: string;
19058
- }, null] : {
19059
- token: string;
19060
- provider: string;
19061
- account_identifier: string | null;
19062
- status: "connected" | "error" | "pending" | "importing" | "imported" | "disconnected";
19063
- last_updated?: string | null;
19064
- workspace_tokens: string[];
19065
- created_at: string;
19066
- }>;
19067
- /**
19068
- * Update an Integration.
19069
- */
19070
- update(integrationToken: string, body: UpdateIntegrationRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19075
+ get(integrationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19071
19076
  token: string;
19072
19077
  provider: string;
19073
19078
  account_identifier: string | null;
@@ -19075,6 +19080,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19075
19080
  last_updated?: string | null;
19076
19081
  workspace_tokens: string[];
19077
19082
  created_at: string;
19083
+ managed_account_tokens: string[];
19078
19084
  }, null] : {
19079
19085
  token: string;
19080
19086
  provider: string;
@@ -19083,11 +19089,12 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19083
19089
  last_updated?: string | null;
19084
19090
  workspace_tokens: string[];
19085
19091
  created_at: string;
19092
+ managed_account_tokens: string[];
19086
19093
  }>;
19087
19094
  /**
19088
- * Delete an Integration.
19095
+ * Update an Integration.
19089
19096
  */
19090
- delete(integrationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19097
+ update(integrationToken: string, body: UpdateIntegrationRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19091
19098
  token: string;
19092
19099
  provider: string;
19093
19100
  account_identifier: string | null;
@@ -19095,6 +19102,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19095
19102
  last_updated?: string | null;
19096
19103
  workspace_tokens: string[];
19097
19104
  created_at: string;
19105
+ managed_account_tokens: string[];
19098
19106
  }, null] : {
19099
19107
  token: string;
19100
19108
  provider: string;
@@ -19103,7 +19111,12 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19103
19111
  last_updated?: string | null;
19104
19112
  workspace_tokens: string[];
19105
19113
  created_at: string;
19114
+ managed_account_tokens: string[];
19106
19115
  }>;
19116
+ /**
19117
+ * Delete an Integration.
19118
+ */
19119
+ delete(integrationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
19107
19120
  /**
19108
19121
  * Create a Custom Provider Integration
19109
19122
  */
@@ -19115,6 +19128,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19115
19128
  last_updated?: string | null;
19116
19129
  workspace_tokens: string[];
19117
19130
  created_at: string;
19131
+ managed_account_tokens: string[];
19118
19132
  }, null] : {
19119
19133
  token: string;
19120
19134
  provider: string;
@@ -19123,6 +19137,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19123
19137
  last_updated?: string | null;
19124
19138
  workspace_tokens: string[];
19125
19139
  created_at: string;
19140
+ managed_account_tokens: string[];
19126
19141
  }>;
19127
19142
  /**
19128
19143
  * Create UserCostsUpload via CSV for a Custom Provider Integration.
@@ -19149,41 +19164,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19149
19164
  /**
19150
19165
  * Delete a UserCostsUpload.
19151
19166
  */
19152
- deleteUserCostsUpload(integrationToken: string, userCostsUploadToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19153
- links?: components["schemas"]["Links"];
19154
- accrued_at: string;
19155
- amount: string;
19156
- currency: string;
19157
- usage?: Record<string, any> | null;
19158
- provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | null;
19159
- billing_account_id?: string | null;
19160
- account_id?: string | null;
19161
- service?: string | null;
19162
- region?: string | null;
19163
- resource_id?: string | null;
19164
- tag?: string | null;
19165
- tags?: string[] | null;
19166
- cost_category?: string | null;
19167
- cost_subcategory?: string | null;
19168
- segment?: string | null;
19169
- }, null] : {
19170
- links?: components["schemas"]["Links"];
19171
- accrued_at: string;
19172
- amount: string;
19173
- currency: string;
19174
- usage?: Record<string, any> | null;
19175
- provider?: "aws" | "azure" | "gcp" | "snowflake" | "databricks" | "mongo" | "datadog" | "fastly" | "new_relic" | "opencost" | "open_ai" | "oracle" | "confluent" | "planetscale" | "coralogix" | "kubernetes" | "custom_provider" | "github" | "linode" | "grafana" | "clickhouse" | "temporal" | "twilio" | "azure_csp" | "kubernetes_agent" | "anthropic" | "anyscale" | "cursor" | "elastic" | "vercel" | null;
19176
- billing_account_id?: string | null;
19177
- account_id?: string | null;
19178
- service?: string | null;
19179
- region?: string | null;
19180
- resource_id?: string | null;
19181
- tag?: string | null;
19182
- tags?: string[] | null;
19183
- cost_category?: string | null;
19184
- cost_subcategory?: string | null;
19185
- segment?: string | null;
19186
- }>;
19167
+ deleteUserCostsUpload(integrationToken: string, userCostsUploadToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
19187
19168
  /**
19188
19169
  * List UserCostUploads.
19189
19170
  */
@@ -19205,6 +19186,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19205
19186
  last_updated?: string | null;
19206
19187
  workspace_tokens: string[];
19207
19188
  created_at: string;
19189
+ managed_account_tokens: string[];
19208
19190
  }, null] : {
19209
19191
  token: string;
19210
19192
  provider: string;
@@ -19213,6 +19195,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19213
19195
  last_updated?: string | null;
19214
19196
  workspace_tokens: string[];
19215
19197
  created_at: string;
19198
+ managed_account_tokens: string[];
19216
19199
  }>;
19217
19200
  /**
19218
19201
  * Create an Azure Integration
@@ -19225,6 +19208,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19225
19208
  last_updated?: string | null;
19226
19209
  workspace_tokens: string[];
19227
19210
  created_at: string;
19211
+ managed_account_tokens: string[];
19228
19212
  }, null] : {
19229
19213
  token: string;
19230
19214
  provider: string;
@@ -19233,6 +19217,7 @@ declare class IntegrationsApi<NeverThrow extends boolean> {
19233
19217
  last_updated?: string | null;
19234
19218
  workspace_tokens: string[];
19235
19219
  created_at: string;
19220
+ managed_account_tokens: string[];
19236
19221
  }>;
19237
19222
  }
19238
19223
  declare class InvoicesApi<NeverThrow extends boolean> {
@@ -19473,35 +19458,7 @@ declare class KubernetesEfficiencyReportsApi<NeverThrow extends boolean> {
19473
19458
  /**
19474
19459
  * Delete a KubernetesEfficiencyReport.
19475
19460
  */
19476
- delete(kubernetesEfficiencyReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19477
- token: string;
19478
- title: string;
19479
- default: boolean;
19480
- created_at: string;
19481
- workspace_token: string;
19482
- user_token?: string | null;
19483
- start_date: string | null;
19484
- end_date: string | null;
19485
- date_interval: string | null;
19486
- date_bucket: string;
19487
- aggregated_by: string;
19488
- groupings: string | null;
19489
- filter: string | null;
19490
- }, null] : {
19491
- token: string;
19492
- title: string;
19493
- default: boolean;
19494
- created_at: string;
19495
- workspace_token: string;
19496
- user_token?: string | null;
19497
- start_date: string | null;
19498
- end_date: string | null;
19499
- date_interval: string | null;
19500
- date_bucket: string;
19501
- aggregated_by: string;
19502
- groupings: string | null;
19503
- filter: string | null;
19504
- }>;
19461
+ delete(kubernetesEfficiencyReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
19505
19462
  /**
19506
19463
  * Generate a DataExport of Kubernetes efficiency data.
19507
19464
  */
@@ -19615,7 +19572,37 @@ declare class ManagedAccountsApi<NeverThrow extends boolean> {
19615
19572
  /**
19616
19573
  * Delete a Managed Account.
19617
19574
  */
19618
- delete(managedAccountToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19575
+ delete(managedAccountToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
19576
+ /**
19577
+ * Update SSO configuration for a Managed Account.
19578
+ */
19579
+ updateSsoConnectionForManagedAccount(managedAccountToken: string, body: UpdateSsoConnectionForManagedAccountRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19580
+ token: string;
19581
+ name: string;
19582
+ contact_email: string;
19583
+ parent_account_token: string;
19584
+ access_credential_tokens: string[];
19585
+ billing_rule_tokens: string[];
19586
+ email_domain?: string | null;
19587
+ msp_billing_profile_token?: string | null;
19588
+ billing_information_attributes?: components["schemas"]["BillingInformation"];
19589
+ business_information_attributes?: components["schemas"]["BusinessInformation"];
19590
+ }, null] : {
19591
+ token: string;
19592
+ name: string;
19593
+ contact_email: string;
19594
+ parent_account_token: string;
19595
+ access_credential_tokens: string[];
19596
+ billing_rule_tokens: string[];
19597
+ email_domain?: string | null;
19598
+ msp_billing_profile_token?: string | null;
19599
+ billing_information_attributes?: components["schemas"]["BillingInformation"];
19600
+ business_information_attributes?: components["schemas"]["BusinessInformation"];
19601
+ }>;
19602
+ /**
19603
+ * Configure SSO for a Managed Account.
19604
+ */
19605
+ createSsoConnectionForManagedAccount(managedAccountToken: string, body: CreateSsoConnectionForManagedAccountRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19619
19606
  token: string;
19620
19607
  name: string;
19621
19608
  contact_email: string;
@@ -19813,35 +19800,7 @@ declare class NetworkFlowReportsApi<NeverThrow extends boolean> {
19813
19800
  /**
19814
19801
  * Delete a NetworkFlowReport.
19815
19802
  */
19816
- delete(networkFlowReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19817
- token: string;
19818
- title: string;
19819
- default: boolean;
19820
- created_at: string;
19821
- workspace_token: string;
19822
- created_by_token?: string | null;
19823
- start_date: string | null;
19824
- end_date: string | null;
19825
- date_interval: string | null;
19826
- groupings: string | null;
19827
- flow_direction: string | null;
19828
- flow_weight: string;
19829
- filter: string | null;
19830
- }, null] : {
19831
- token: string;
19832
- title: string;
19833
- default: boolean;
19834
- created_at: string;
19835
- workspace_token: string;
19836
- created_by_token?: string | null;
19837
- start_date: string | null;
19838
- end_date: string | null;
19839
- date_interval: string | null;
19840
- groupings: string | null;
19841
- flow_direction: string | null;
19842
- flow_weight: string;
19843
- filter: string | null;
19844
- }>;
19803
+ delete(networkFlowReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
19845
19804
  }
19846
19805
  declare class ProductsApi<NeverThrow extends boolean> {
19847
19806
  private client;
@@ -19911,7 +19870,7 @@ declare class RecommendationsApi<NeverThrow extends boolean> {
19911
19870
  private client;
19912
19871
  constructor(client: BaseClient<NeverThrow>);
19913
19872
  /**
19914
- * Return all Recommendations.
19873
+ * Return all Recommendations. Use the `type` query parameter with a fuzzy fragment to filter recommendation type case-insensitively (for example: aws, aws:ec2, aws:ec2:rightsizing).
19915
19874
  */
19916
19875
  list(body?: GetRecommendationsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19917
19876
  links?: components["schemas"]["Links"];
@@ -19925,7 +19884,8 @@ declare class RecommendationsApi<NeverThrow extends boolean> {
19925
19884
  */
19926
19885
  get(recommendationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19927
19886
  token: string;
19928
- category: string | null;
19887
+ type: string;
19888
+ category: string;
19929
19889
  workspace_token: string;
19930
19890
  provider: string;
19931
19891
  provider_account_id: string | null;
@@ -19938,7 +19898,8 @@ declare class RecommendationsApi<NeverThrow extends boolean> {
19938
19898
  currency_symbol?: string | null;
19939
19899
  }, null] : {
19940
19900
  token: string;
19941
- category: string | null;
19901
+ type: string;
19902
+ category: string;
19942
19903
  workspace_token: string;
19943
19904
  provider: string;
19944
19905
  provider_account_id: string | null;
@@ -19972,6 +19933,16 @@ declare class RecommendationsApi<NeverThrow extends boolean> {
19972
19933
  resource_id: string;
19973
19934
  recommendation_actions?: components["schemas"]["RecommendationAction"][];
19974
19935
  }>;
19936
+ /**
19937
+ * Return all Active Resources associated with recommendations of the specified type.
19938
+ */
19939
+ getTypeResources(type: string, body?: GetRecommendationTypeResourcesRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
19940
+ links?: components["schemas"]["Links"];
19941
+ resources: components["schemas"]["ProviderResource"][];
19942
+ }, null] : {
19943
+ links?: components["schemas"]["Links"];
19944
+ resources: components["schemas"]["ProviderResource"][];
19945
+ }>;
19975
19946
  }
19976
19947
  declare class RecommendationViewsApi<NeverThrow extends boolean> {
19977
19948
  private client;
@@ -20085,35 +20056,7 @@ declare class RecommendationViewsApi<NeverThrow extends boolean> {
20085
20056
  /**
20086
20057
  * Delete a RecommendationView.
20087
20058
  */
20088
- delete(recommendationViewToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20089
- token?: string | null;
20090
- title?: string | null;
20091
- workspace_token?: string | null;
20092
- start_date?: string | null;
20093
- end_date?: string | null;
20094
- provider_ids?: string[] | null;
20095
- billing_account_ids?: string[] | null;
20096
- account_ids?: string[] | null;
20097
- regions?: string[] | null;
20098
- tag_key?: string | null;
20099
- tag_value?: string | null;
20100
- created_at?: string | null;
20101
- created_by?: string | null;
20102
- }, null] : {
20103
- token?: string | null;
20104
- title?: string | null;
20105
- workspace_token?: string | null;
20106
- start_date?: string | null;
20107
- end_date?: string | null;
20108
- provider_ids?: string[] | null;
20109
- billing_account_ids?: string[] | null;
20110
- account_ids?: string[] | null;
20111
- regions?: string[] | null;
20112
- tag_key?: string | null;
20113
- tag_value?: string | null;
20114
- created_at?: string | null;
20115
- created_by?: string | null;
20116
- }>;
20059
+ delete(recommendationViewToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20117
20060
  }
20118
20061
  declare class ReportNotificationsApi<NeverThrow extends boolean> {
20119
20062
  private client;
@@ -20191,23 +20134,7 @@ declare class ReportNotificationsApi<NeverThrow extends boolean> {
20191
20134
  /**
20192
20135
  * Delete a ReportNotification.
20193
20136
  */
20194
- delete(reportNotificationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20195
- token: string;
20196
- title: string;
20197
- cost_report_token: string;
20198
- user_tokens: string[];
20199
- recipient_channels: string[];
20200
- frequency: "daily" | "weekly" | "monthly";
20201
- change: "percentage" | "dollars";
20202
- }, null] : {
20203
- token: string;
20204
- title: string;
20205
- cost_report_token: string;
20206
- user_tokens: string[];
20207
- recipient_channels: string[];
20208
- frequency: "daily" | "weekly" | "monthly";
20209
- change: "percentage" | "dollars";
20210
- }>;
20137
+ delete(reportNotificationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20211
20138
  }
20212
20139
  declare class ResourceReportsApi<NeverThrow extends boolean> {
20213
20140
  private client;
@@ -20291,25 +20218,7 @@ declare class ResourceReportsApi<NeverThrow extends boolean> {
20291
20218
  /**
20292
20219
  * Delete a ResourceReport.
20293
20220
  */
20294
- delete(resourceReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20295
- token: string;
20296
- title: string;
20297
- filter: string | null;
20298
- created_at: string;
20299
- workspace_token: string;
20300
- user_token: string | null;
20301
- created_by_token: string | null;
20302
- columns: string[];
20303
- }, null] : {
20304
- token: string;
20305
- title: string;
20306
- filter: string | null;
20307
- created_at: string;
20308
- workspace_token: string;
20309
- user_token: string | null;
20310
- created_by_token: string | null;
20311
- columns: string[];
20312
- }>;
20221
+ delete(resourceReportToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20313
20222
  /**
20314
20223
  * List available columns for a resource type.
20315
20224
  */
@@ -20409,23 +20318,7 @@ declare class SavedFiltersApi<NeverThrow extends boolean> {
20409
20318
  /**
20410
20319
  * Delete a SavedFilter for CostReports.
20411
20320
  */
20412
- delete(savedFilterToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20413
- token: string;
20414
- title: string;
20415
- cost_report_tokens: string[];
20416
- filter: string | null;
20417
- created_at: string;
20418
- created_by: string | null;
20419
- workspace_token: string;
20420
- }, null] : {
20421
- token: string;
20422
- title: string;
20423
- cost_report_tokens: string[];
20424
- filter: string | null;
20425
- created_at: string;
20426
- created_by: string | null;
20427
- workspace_token: string;
20428
- }>;
20321
+ delete(savedFilterToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20429
20322
  }
20430
20323
  declare class SegmentsApi<NeverThrow extends boolean> {
20431
20324
  private client;
@@ -20563,43 +20456,7 @@ declare class SegmentsApi<NeverThrow extends boolean> {
20563
20456
  /**
20564
20457
  * Delete a Segment.
20565
20458
  */
20566
- delete(segmentToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20567
- token: string;
20568
- title: string;
20569
- parent_segment_token: string | null;
20570
- description: string;
20571
- track_unallocated: boolean;
20572
- report_settings?: {
20573
- include_credits?: boolean | null;
20574
- include_refunds?: boolean | null;
20575
- include_discounts?: boolean | null;
20576
- include_tax?: boolean | null;
20577
- amortize?: boolean | null;
20578
- };
20579
- priority: number;
20580
- filter: string | null;
20581
- created_at: string;
20582
- workspace_token: string;
20583
- report_token: string | null;
20584
- }, null] : {
20585
- token: string;
20586
- title: string;
20587
- parent_segment_token: string | null;
20588
- description: string;
20589
- track_unallocated: boolean;
20590
- report_settings?: {
20591
- include_credits?: boolean | null;
20592
- include_refunds?: boolean | null;
20593
- include_discounts?: boolean | null;
20594
- include_tax?: boolean | null;
20595
- amortize?: boolean | null;
20596
- };
20597
- priority: number;
20598
- filter: string | null;
20599
- created_at: string;
20600
- workspace_token: string;
20601
- report_token: string | null;
20602
- }>;
20459
+ delete(segmentToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20603
20460
  }
20604
20461
  declare class TagsApi<NeverThrow extends boolean> {
20605
20462
  private client;
@@ -20695,21 +20552,7 @@ declare class TeamsApi<NeverThrow extends boolean> {
20695
20552
  /**
20696
20553
  * Delete a Team.
20697
20554
  */
20698
- delete(teamToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20699
- token: string;
20700
- name: string;
20701
- description: string | null;
20702
- workspace_tokens: string[];
20703
- user_emails: string[];
20704
- user_tokens: string[];
20705
- }, null] : {
20706
- token: string;
20707
- name: string;
20708
- description: string | null;
20709
- workspace_tokens: string[];
20710
- user_emails: string[];
20711
- user_tokens: string[];
20712
- }>;
20555
+ delete(teamToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20713
20556
  /**
20714
20557
  * Return all members of a Team.
20715
20558
  */
@@ -20855,23 +20698,7 @@ declare class VirtualTagConfigsApi<NeverThrow extends boolean> {
20855
20698
  /**
20856
20699
  * Deletes an existing VirtualTagConfig.
20857
20700
  */
20858
- delete(token: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20859
- token: string;
20860
- created_by_token: string | null;
20861
- key: string;
20862
- overridable: boolean;
20863
- backfill_until: string;
20864
- collapsed_tag_keys?: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
20865
- values: components["schemas"]["VirtualTagConfigValue"][];
20866
- }, null] : {
20867
- token: string;
20868
- created_by_token: string | null;
20869
- key: string;
20870
- overridable: boolean;
20871
- backfill_until: string;
20872
- collapsed_tag_keys?: components["schemas"]["VirtualTagConfigCollapsedTagKey"][];
20873
- values: components["schemas"]["VirtualTagConfigValue"][];
20874
- }>;
20701
+ delete(token: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20875
20702
  /**
20876
20703
  * Return the processing status of a specific VirtualTagConfig.
20877
20704
  */
@@ -20970,4 +20797,4 @@ declare class PingApi<NeverThrow extends boolean> {
20970
20797
  get(): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20971
20798
  }
20972
20799
 
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 };
20800
+ 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 };