@vantage-sh/vantage-client 2.13.0 → 2.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -51,6 +51,26 @@ interface paths {
51
51
  patch?: never;
52
52
  trace?: never;
53
53
  };
54
+ "/annotations": {
55
+ parameters: {
56
+ query?: never;
57
+ header?: never;
58
+ path?: never;
59
+ cookie?: never;
60
+ };
61
+ /**
62
+ * Get all annotations
63
+ * @description Return all Annotations.
64
+ */
65
+ get: operations["getAnnotations"];
66
+ put?: never;
67
+ post?: never;
68
+ delete?: never;
69
+ options?: never;
70
+ head?: never;
71
+ patch?: never;
72
+ trace?: never;
73
+ };
54
74
  "/anomaly_alerts": {
55
75
  parameters: {
56
76
  query?: never;
@@ -483,7 +503,7 @@ interface paths {
483
503
  post?: never;
484
504
  /**
485
505
  * Delete business metric values
486
- * @description Deletes Business Metric values (historical or forecasted unit metrics).
506
+ * @description Deletes Business Metric values (historical or forecasted unit metrics). BusinessMetrics whose values are stored in ClickHouse only support deleting every historical value or every forecasted value, so supplying start_date, end_date, or label returns 422.
487
507
  */
488
508
  delete: operations["deleteBusinessMetricValues"];
489
509
  options?: never;
@@ -2889,6 +2909,24 @@ interface components {
2889
2909
  /** @description The Slack/MS Teams channels that receive the notification. */
2890
2910
  recipient_channels?: string[];
2891
2911
  };
2912
+ /** @description Annotations model */
2913
+ Annotations: {
2914
+ links?: components["schemas"]["Links"];
2915
+ annotations: components["schemas"]["Annotation"][];
2916
+ };
2917
+ Annotation: {
2918
+ /** @description The unique token identifying the Annotation. */
2919
+ token: string;
2920
+ /** @description The tokens of the Reports associated with the Annotation. */
2921
+ report_tokens: string[];
2922
+ /**
2923
+ * @description The date of the Annotation. ISO 8601 formatted.
2924
+ * @example 2026-08-12
2925
+ */
2926
+ date: string | null;
2927
+ /** @description The message of the Annotation. */
2928
+ message: string | null;
2929
+ };
2892
2930
  /** @description AuditLogs model */
2893
2931
  AuditLogs: {
2894
2932
  links?: components["schemas"]["Links"];
@@ -7674,6 +7712,62 @@ interface operations {
7674
7712
  };
7675
7713
  };
7676
7714
  };
7715
+ getAnnotations: {
7716
+ parameters: {
7717
+ query?: {
7718
+ /** @description The page of results to return. */
7719
+ page?: number;
7720
+ /** @description The number of results to return. The maximum is 5000. */
7721
+ limit?: number;
7722
+ /** @description Filter by Report token. */
7723
+ report_token?: string;
7724
+ };
7725
+ header?: never;
7726
+ path?: never;
7727
+ cookie?: never;
7728
+ };
7729
+ requestBody?: never;
7730
+ responses: {
7731
+ 200: {
7732
+ headers: {
7733
+ [name: string]: unknown;
7734
+ };
7735
+ content: {
7736
+ /**
7737
+ * @example {
7738
+ * "links": {
7739
+ * "self": "https://api.vantage.sh/v2/annotations",
7740
+ * "first": "https://api.vantage.sh/v2/annotations?page=1",
7741
+ * "next": null,
7742
+ * "last": "https://api.vantage.sh/v2/annotations?page=1",
7743
+ * "prev": null
7744
+ * },
7745
+ * "annotations": [
7746
+ * {
7747
+ * "token": "issue_0857d3a1b8e72eb5",
7748
+ * "report_tokens": [
7749
+ * "rprt_5104f09dfdd8f77c",
7750
+ * "rprt_a50b98b5775aa3b1"
7751
+ * ],
7752
+ * "date": "2026-08-12",
7753
+ * "message": "Infrastructure migration"
7754
+ * },
7755
+ * {
7756
+ * "token": "issue_facf24a6691013de",
7757
+ * "report_tokens": [
7758
+ * "rprt_b298e35a97aadda5"
7759
+ * ],
7760
+ * "date": "2026-08-10",
7761
+ * "message": "Pricing update"
7762
+ * }
7763
+ * ]
7764
+ * }
7765
+ */
7766
+ "application/json": components["schemas"]["Annotations"];
7767
+ };
7768
+ };
7769
+ };
7770
+ };
7677
7771
  getAnomalyAlerts: {
7678
7772
  parameters: {
7679
7773
  query?: {
@@ -7879,6 +7973,10 @@ interface operations {
7879
7973
  page?: number;
7880
7974
  /** @description The amount of results to return. The maximum is 1000. */
7881
7975
  limit?: number;
7976
+ /** @description Filter by workspace token. */
7977
+ workspace_token?: string;
7978
+ /** @description Filter by Cost Report token. */
7979
+ cost_report_token?: string;
7882
7980
  };
7883
7981
  header?: never;
7884
7982
  path?: never;
@@ -8685,6 +8783,10 @@ interface operations {
8685
8783
  page?: number;
8686
8784
  /** @description The number of results to return. The maximum is 1000. */
8687
8785
  limit?: number;
8786
+ /** @description Filter by workspace token. */
8787
+ workspace_token?: string;
8788
+ /** @description Filter by budget token. */
8789
+ budget_token?: string;
8688
8790
  };
8689
8791
  header?: never;
8690
8792
  path?: never;
@@ -8835,6 +8937,10 @@ interface operations {
8835
8937
  page?: number;
8836
8938
  /** @description The number of results to return. The maximum is 1000. */
8837
8939
  limit?: number;
8940
+ /** @description Search budgets by name. */
8941
+ q?: string;
8942
+ /** @description The workspace token of the budgets to return. */
8943
+ workspace_token?: string;
8838
8944
  };
8839
8945
  header?: never;
8840
8946
  path?: never;
@@ -9182,6 +9288,8 @@ interface operations {
9182
9288
  page?: number;
9183
9289
  /** @description The amount of results to return. The maximum is 5000. */
9184
9290
  limit?: number;
9291
+ /** @description Search business metrics by title. */
9292
+ q?: string;
9185
9293
  };
9186
9294
  header?: never;
9187
9295
  path?: never;
@@ -9833,6 +9941,10 @@ interface operations {
9833
9941
  page?: number;
9834
9942
  /** @description The amount of results to return. The maximum is 1000. */
9835
9943
  limit?: number;
9944
+ /** @description Filter by workspace token. */
9945
+ workspace_token?: string;
9946
+ /** @description Search canvases by title. */
9947
+ q?: string;
9836
9948
  };
9837
9949
  header?: never;
9838
9950
  path?: never;
@@ -10101,7 +10213,12 @@ interface operations {
10101
10213
  };
10102
10214
  getCostAlerts: {
10103
10215
  parameters: {
10104
- query?: never;
10216
+ query?: {
10217
+ /** @description Search cost alerts by title. */
10218
+ q?: string;
10219
+ /** @description The workspace token of the cost alerts to return. */
10220
+ workspace_token?: string;
10221
+ };
10105
10222
  header?: never;
10106
10223
  path?: never;
10107
10224
  cookie?: never;
@@ -10419,6 +10536,10 @@ interface operations {
10419
10536
  limit?: number;
10420
10537
  /** @description The token for the Folder you would like to fetch Reports from. */
10421
10538
  folder_token?: string;
10539
+ /** @description Search cost reports by title. */
10540
+ q?: string;
10541
+ /** @description The workspace token of the cost reports to return. */
10542
+ workspace_token?: string;
10422
10543
  };
10423
10544
  header?: never;
10424
10545
  path?: never;
@@ -11106,6 +11227,10 @@ interface operations {
11106
11227
  page?: number;
11107
11228
  /** @description The amount of results to return. The maximum is 1000. */
11108
11229
  limit?: number;
11230
+ /** @description Search dashboards by title. */
11231
+ q?: string;
11232
+ /** @description The workspace token of the dashboards to return. */
11233
+ workspace_token?: string;
11109
11234
  };
11110
11235
  header?: never;
11111
11236
  path?: never;
@@ -11601,6 +11726,10 @@ interface operations {
11601
11726
  page?: number;
11602
11727
  /** @description The amount of results to return. The maximum is 1000. */
11603
11728
  limit?: number;
11729
+ /** @description Search financial commitment reports by title. */
11730
+ q?: string;
11731
+ /** @description The workspace token of the financial commitment reports to return. */
11732
+ workspace_token?: string;
11604
11733
  };
11605
11734
  header?: never;
11606
11735
  path?: never;
@@ -11903,6 +12032,10 @@ interface operations {
11903
12032
  limit?: number;
11904
12033
  /** @description Filter by folder type. */
11905
12034
  type?: "CostFolder" | "ProviderResourceFolder";
12035
+ /** @description Search folders by title. */
12036
+ q?: string;
12037
+ /** @description The workspace token of the folders to return. */
12038
+ workspace_token?: string;
11906
12039
  };
11907
12040
  header?: never;
11908
12041
  path?: never;
@@ -12888,6 +13021,10 @@ interface operations {
12888
13021
  page?: number;
12889
13022
  /** @description The amount of results to return. The maximum is 1000. */
12890
13023
  limit?: number;
13024
+ /** @description Filter by workspace token. */
13025
+ workspace_token?: string;
13026
+ /** @description Search Kubernetes efficiency reports by title. */
13027
+ q?: string;
12891
13028
  };
12892
13029
  header?: never;
12893
13030
  path?: never;
@@ -13674,6 +13811,8 @@ interface operations {
13674
13811
  query?: {
13675
13812
  /** @description A search query to filter NetworkFlowReports by title. */
13676
13813
  q?: string;
13814
+ /** @description Filter by workspace token. */
13815
+ workspace_token?: string;
13677
13816
  /** @description The page of results to return. */
13678
13817
  page?: number;
13679
13818
  /** @description The amount of results to return. The maximum is 1000. */
@@ -14494,6 +14633,10 @@ interface operations {
14494
14633
  page?: number;
14495
14634
  /** @description The amount of results to return. The maximum is 1000. */
14496
14635
  limit?: number;
14636
+ /** @description Filter by workspace token. */
14637
+ workspace_token?: string;
14638
+ /** @description Search recommendation views by title. */
14639
+ q?: string;
14497
14640
  };
14498
14641
  header?: never;
14499
14642
  path?: never;
@@ -15058,6 +15201,10 @@ interface operations {
15058
15201
  page?: number;
15059
15202
  /** @description The amount of results to return. The maximum is 1000. */
15060
15203
  limit?: number;
15204
+ /** @description Filter by workspace token. */
15205
+ workspace_token?: string;
15206
+ /** @description Search report notifications by title. */
15207
+ q?: string;
15061
15208
  };
15062
15209
  header?: never;
15063
15210
  path?: never;
@@ -15372,6 +15519,10 @@ interface operations {
15372
15519
  page?: number;
15373
15520
  /** @description The number of results to return. The maximum is 1000. */
15374
15521
  limit?: number;
15522
+ /** @description Filter by workspace token. */
15523
+ workspace_token?: string;
15524
+ /** @description A search query to filter ResourceReports by title. */
15525
+ q?: string;
15375
15526
  };
15376
15527
  header?: never;
15377
15528
  path?: never;
@@ -15859,6 +16010,10 @@ interface operations {
15859
16010
  page?: number;
15860
16011
  /** @description The amount of results to return. The maximum is 1000. */
15861
16012
  limit?: number;
16013
+ /** @description Search saved filters by title. */
16014
+ q?: string;
16015
+ /** @description The workspace token of the saved filters to return. */
16016
+ workspace_token?: string;
15862
16017
  };
15863
16018
  header?: never;
15864
16019
  path?: never;
@@ -16379,6 +16534,10 @@ interface operations {
16379
16534
  page?: number;
16380
16535
  /** @description The amount of results to return. The maximum is 1000. */
16381
16536
  limit?: number;
16537
+ /** @description Search segments by title. */
16538
+ q?: string;
16539
+ /** @description The workspace token of the segments to return. */
16540
+ workspace_token?: string;
16382
16541
  };
16383
16542
  header?: never;
16384
16543
  path?: never;
@@ -16837,6 +16996,10 @@ interface operations {
16837
16996
  page?: number;
16838
16997
  /** @description The amount of results to return. The maximum is 1000. */
16839
16998
  limit?: number;
16999
+ /** @description Search teams by name. */
17000
+ q?: string;
17001
+ /** @description Filter by workspace token. */
17002
+ workspace_token?: string;
16840
17003
  };
16841
17004
  header?: never;
16842
17005
  path?: never;
@@ -18440,6 +18603,8 @@ interface operations {
18440
18603
  page?: number;
18441
18604
  /** @description The amount of results to return. The maximum is 1000. */
18442
18605
  limit?: number;
18606
+ /** @description Search workspaces by name. */
18607
+ q?: string;
18443
18608
  };
18444
18609
  header?: never;
18445
18610
  path?: never;
@@ -18693,6 +18858,14 @@ type UpdateAccessGrantResponse = ResponseBodyForPathAndMethod<`/v2/access_grants
18693
18858
  * Response type for Delete access grant
18694
18859
  */
18695
18860
  type DeleteAccessGrantResponse = ResponseBodyForPathAndMethod<`/v2/access_grants/${NoSlashString}`, "DELETE">;
18861
+ /**
18862
+ * Return all Annotations.
18863
+ */
18864
+ type GetAnnotationsRequest = RequestBodyForPathAndMethod<"/v2/annotations", "GET">;
18865
+ /**
18866
+ * Response type for Get all annotations
18867
+ */
18868
+ type GetAnnotationsResponse = ResponseBodyForPathAndMethod<"/v2/annotations", "GET">;
18696
18869
  /**
18697
18870
  * Return all Anomaly Alerts that the current API token has access to.
18698
18871
  */
@@ -18938,7 +19111,7 @@ type GetBusinessMetricValuesRequest = RequestBodyForPathAndMethod<`/v2/business_
18938
19111
  */
18939
19112
  type GetBusinessMetricValuesResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/values`, "GET">;
18940
19113
  /**
18941
- * Deletes Business Metric values (historical or forecasted unit metrics).
19114
+ * Deletes Business Metric values (historical or forecasted unit metrics). BusinessMetrics whose values are stored in ClickHouse only support deleting every historical value or every forecasted value, so supplying start_date, end_date, or label returns 422.
18942
19115
  */
18943
19116
  type DeleteBusinessMetricValuesRequest = RequestBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/values`, "DELETE">;
18944
19117
  /**
@@ -19005,6 +19178,10 @@ type GetCostAlertEventsResponse = ResponseBodyForPathAndMethod<`/v2/cost_alerts/
19005
19178
  * Response type for Get cost alert event by token
19006
19179
  */
19007
19180
  type GetCostAlertEventResponse = ResponseBodyForPathAndMethod<`/v2/cost_alerts/${NoSlashString}/events/${NoSlashString}`, "GET">;
19181
+ /**
19182
+ * List all Cost Alerts
19183
+ */
19184
+ type GetCostAlertsRequest = RequestBodyForPathAndMethod<"/v2/cost_alerts", "GET">;
19008
19185
  /**
19009
19186
  * Response type for Get all cost alerts
19010
19187
  */
@@ -20029,6 +20206,7 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
20029
20206
  constructor(bearerToken: string, neverThrow?: NeverThrow, baseUrl?: string);
20030
20207
  protected routeEdgecases: ReadonlyMap<string, string>;
20031
20208
  private _accessGrants?;
20209
+ private _annotations?;
20032
20210
  private _anomalyAlerts?;
20033
20211
  private _anomalyNotifications?;
20034
20212
  private _auditLogs?;
@@ -20076,6 +20254,7 @@ declare class APIV2Client<NeverThrow extends boolean = false> extends BaseClient
20076
20254
  private _virtualTagConfigs?;
20077
20255
  private _workspaces?;
20078
20256
  get accessGrants(): AccessGrantsApi<NeverThrow>;
20257
+ get annotations(): AnnotationsApi<NeverThrow>;
20079
20258
  get anomalyAlerts(): AnomalyAlertsApi<NeverThrow>;
20080
20259
  get anomalyNotifications(): AnomalyNotificationsApi<NeverThrow>;
20081
20260
  get auditLogs(): AuditLogsApi<NeverThrow>;
@@ -20195,6 +20374,20 @@ declare class AccessGrantsApi<NeverThrow extends boolean> {
20195
20374
  */
20196
20375
  delete(accessGrantToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20197
20376
  }
20377
+ declare class AnnotationsApi<NeverThrow extends boolean> {
20378
+ private client;
20379
+ constructor(client: BaseClient<NeverThrow>);
20380
+ /**
20381
+ * Return all Annotations.
20382
+ */
20383
+ list(body?: GetAnnotationsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20384
+ links?: components["schemas"]["Links"];
20385
+ annotations: components["schemas"]["Annotation"][];
20386
+ }, null] : {
20387
+ links?: components["schemas"]["Links"];
20388
+ annotations: components["schemas"]["Annotation"][];
20389
+ }>;
20390
+ }
20198
20391
  declare class AnomalyAlertsApi<NeverThrow extends boolean> {
20199
20392
  private client;
20200
20393
  constructor(client: BaseClient<NeverThrow>);
@@ -20903,7 +21096,7 @@ declare class BusinessMetricsApi<NeverThrow extends boolean> {
20903
21096
  values: components["schemas"]["BusinessMetricValue"][];
20904
21097
  }>;
20905
21098
  /**
20906
- * Deletes Business Metric values (historical or forecasted unit metrics).
21099
+ * Deletes Business Metric values (historical or forecasted unit metrics). BusinessMetrics whose values are stored in ClickHouse only support deleting every historical value or every forecasted value, so supplying start_date, end_date, or label returns 422.
20907
21100
  */
20908
21101
  deleteValues(businessMetricToken: string, body?: DeleteBusinessMetricValuesRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20909
21102
  deleted_count: number;
@@ -21024,6 +21217,16 @@ declare class CanvasesApi<NeverThrow extends boolean> {
21024
21217
  declare class CostAlertsApi<NeverThrow extends boolean> {
21025
21218
  private client;
21026
21219
  constructor(client: BaseClient<NeverThrow>);
21220
+ /**
21221
+ * List all Cost Alerts
21222
+ */
21223
+ list(body?: GetCostAlertsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
21224
+ links?: components["schemas"]["Links"];
21225
+ cost_alerts: components["schemas"]["CostAlert"][];
21226
+ }, null] : {
21227
+ links?: components["schemas"]["Links"];
21228
+ cost_alerts: components["schemas"]["CostAlert"][];
21229
+ }>;
21027
21230
  /**
21028
21231
  * Create a new Cost Alert
21029
21232
  */
@@ -24018,4 +24221,4 @@ declare class BaseClient<NeverThrow extends boolean> {
24018
24221
  request<RequestPath extends Path, RequestMethod extends SupportedMethods<RequestPath>>(path: RequestPath, method: RequestMethod, body: RequestBodyForPathAndMethod<RequestPath, RequestMethod>): Promise<NeverThrow extends true ? NeverThrowResult<ResponseBodyForPathAndMethod<RequestPath, RequestMethod>> : ResponseBodyForPathAndMethod<RequestPath, RequestMethod>>;
24019
24222
  }
24020
24223
 
24021
- export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportForecastRequest, type CreateReportForecastResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateScenarioModelRequest, type CreateScenarioModelResponse, 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 CreateVirtualTagConfigValueRequest, type CreateVirtualTagConfigValueResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportForecastResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteScenarioModelResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteVirtualTagConfigValueResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricLabelsRequest, type GetBusinessMetricLabelsResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowLogsRequest, type GetNetworkFlowLogsResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportForecastResponse, type GetReportForecastsRequest, type GetReportForecastsResponse, 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 GetScenarioModelResponse, type GetScenarioModelsRequest, type GetScenarioModelsResponse, 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 GetVirtualTagConfigValueResponse, type GetVirtualTagConfigsRequest, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCanvasRequest, type UpdateCanvasResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportForecastRequest, type UpdateReportForecastResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateScenarioModelRequest, type UpdateScenarioModelResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateVirtualTagConfigValueRequest, type UpdateVirtualTagConfigValueResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
24224
+ export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnomalyNotificationRequest, type CreateAnomalyNotificationResponse, type CreateAzureIntegrationRequest, type CreateAzureIntegrationResponse, type CreateBillingProfileRequest, type CreateBillingProfileResponse, type CreateBillingRuleRequest, type CreateBillingRuleResponse, type CreateBudgetAlertRequest, type CreateBudgetAlertResponse, type CreateBudgetRequest, type CreateBudgetResponse, type CreateBusinessMetricRequest, type CreateBusinessMetricResponse, type CreateCanvasRequest, type CreateCanvasResponse, type CreateCostAlertRequest, type CreateCostAlertResponse, type CreateCostExportRequest, type CreateCostExportResponse, type CreateCostReportRequest, type CreateCostReportResponse, type CreateCustomProviderIntegrationRequest, type CreateCustomProviderIntegrationResponse, type CreateDashboardRequest, type CreateDashboardResponse, type CreateExchangeRatesViaCsvRequest, type CreateExchangeRatesViaCsvResponse, type CreateFinancialCommitmentReportRequest, type CreateFinancialCommitmentReportResponse, type CreateFolderRequest, type CreateFolderResponse, type CreateGCPIntegrationRequest, type CreateGCPIntegrationResponse, type CreateInvoiceRequest, type CreateInvoiceResponse, type CreateKubernetesEfficiencyReportExportRequest, type CreateKubernetesEfficiencyReportExportResponse, type CreateKubernetesEfficiencyReportRequest, type CreateKubernetesEfficiencyReportResponse, type CreateManagedAccountRequest, type CreateManagedAccountResponse, type CreateNetworkFlowReportRequest, type CreateNetworkFlowReportResponse, type CreateRecommendationViewRequest, type CreateRecommendationViewResponse, type CreateReportForecastRequest, type CreateReportForecastResponse, type CreateReportNotificationRequest, type CreateReportNotificationResponse, type CreateResourceReportRequest, type CreateResourceReportResponse, type CreateSavedFilterRequest, type CreateSavedFilterResponse, type CreateScenarioModelRequest, type CreateScenarioModelResponse, 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 CreateVirtualTagConfigValueRequest, type CreateVirtualTagConfigValueResponse, type CreateWorkspaceRequest, type CreateWorkspaceResponse, type DeleteAccessGrantResponse, type DeleteAnomalyNotificationResponse, type DeleteBillingProfileResponse, type DeleteBillingRuleResponse, type DeleteBudgetAlertResponse, type DeleteBudgetResponse, type DeleteBusinessMetricResponse, type DeleteBusinessMetricValuesRequest, type DeleteBusinessMetricValuesResponse, type DeleteCanvasResponse, type DeleteCostAlertResponse, type DeleteCostReportResponse, type DeleteDashboardResponse, type DeleteFinancialCommitmentReportResponse, type DeleteFolderResponse, type DeleteIntegrationResponse, type DeleteKubernetesEfficiencyReportResponse, type DeleteManagedAccountResponse, type DeleteNetworkFlowReportResponse, type DeleteRecommendationViewResponse, type DeleteReportForecastResponse, type DeleteReportNotificationResponse, type DeleteResourceReportResponse, type DeleteSavedFilterResponse, type DeleteScenarioModelResponse, type DeleteSegmentResponse, type DeleteSsoConnectionForManagedAccountResponse, type DeleteTeamResponse, type DeleteUserCostsUploadResponse, type DeleteVirtualTagConfigResponse, type DeleteVirtualTagConfigValueResponse, type DeleteWorkspaceResponse, type DownloadInvoiceRequest, type DownloadInvoiceResponse, type GetAccessGrantResponse, type GetAccessGrantsRequest, type GetAccessGrantsResponse, type GetAnnotationsRequest, type GetAnnotationsResponse, type GetAnomalyAlertResponse, type GetAnomalyAlertsRequest, type GetAnomalyAlertsResponse, type GetAnomalyNotificationResponse, type GetAnomalyNotificationsRequest, type GetAnomalyNotificationsResponse, type GetAsyncVirtualTagConfigStatusResponse, type GetAuditLogResponse, type GetAuditLogsRequest, type GetAuditLogsResponse, type GetBillingProfileResponse, type GetBillingProfilesRequest, type GetBillingProfilesResponse, type GetBillingRuleResponse, type GetBillingRulesRequest, type GetBillingRulesResponse, type GetBudgetAlertResponse, type GetBudgetAlertsRequest, type GetBudgetAlertsResponse, type GetBudgetRequest, type GetBudgetResponse, type GetBudgetsRequest, type GetBudgetsResponse, type GetBusinessMetricForecastedValuesRequest, type GetBusinessMetricForecastedValuesResponse, type GetBusinessMetricLabelsRequest, type GetBusinessMetricLabelsResponse, type GetBusinessMetricResponse, type GetBusinessMetricValuesRequest, type GetBusinessMetricValuesResponse, type GetBusinessMetricsRequest, type GetBusinessMetricsResponse, type GetCanvasResponse, type GetCanvasesRequest, type GetCanvasesResponse, type GetCostAlertEventResponse, type GetCostAlertEventsRequest, type GetCostAlertEventsResponse, type GetCostAlertResponse, type GetCostAlertsRequest, type GetCostAlertsResponse, type GetCostProviderAccountsRequest, type GetCostProviderAccountsResponse, type GetCostProvidersRequest, type GetCostProvidersResponse, type GetCostReportResponse, type GetCostReportsRequest, type GetCostReportsResponse, type GetCostServicesRequest, type GetCostServicesResponse, type GetCostsRequest, type GetCostsResponse, type GetDashboardResponse, type GetDashboardsRequest, type GetDashboardsResponse, type GetDataExportResponse, type GetExchangeRatesRequest, type GetExchangeRatesResponse, type GetFinancialCommitmentReportResponse, type GetFinancialCommitmentReportsRequest, type GetFinancialCommitmentReportsResponse, type GetFinancialCommitmentsRequest, type GetFinancialCommitmentsResponse, type GetFolderResponse, type GetFoldersRequest, type GetFoldersResponse, type GetForecastedCostsRequest, type GetForecastedCostsResponse, type GetIntegrationResponse, type GetIntegrationsRequest, type GetIntegrationsResponse, type GetInvoiceCostReportResponse, type GetInvoiceResponse, type GetInvoicesRequest, type GetInvoicesResponse, type GetKubernetesEfficiencyReportResponse, type GetKubernetesEfficiencyReportsRequest, type GetKubernetesEfficiencyReportsResponse, type GetManagedAccountResponse, type GetManagedAccountsRequest, type GetManagedAccountsResponse, type GetMeResponse, type GetNetworkFlowLogsRequest, type GetNetworkFlowLogsResponse, type GetNetworkFlowReportResponse, type GetNetworkFlowReportsRequest, type GetNetworkFlowReportsResponse, type GetPriceResponse, type GetPricesRequest, type GetPricesResponse, type GetProductResponse, type GetProductsRequest, type GetProductsResponse, type GetRecommendationResourceResponse, type GetRecommendationResourcesRequest, type GetRecommendationResourcesResponse, type GetRecommendationResponse, type GetRecommendationTypeResourcesRequest, type GetRecommendationTypeResourcesResponse, type GetRecommendationViewResponse, type GetRecommendationViewsRequest, type GetRecommendationViewsResponse, type GetRecommendationsRequest, type GetRecommendationsResponse, type GetReportForecastResponse, type GetReportForecastsRequest, type GetReportForecastsResponse, 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 GetScenarioModelResponse, type GetScenarioModelsRequest, type GetScenarioModelsResponse, 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 GetVirtualTagConfigValueResponse, type GetVirtualTagConfigsRequest, type GetVirtualTagConfigsResponse, type GetWorkspaceResponse, type GetWorkspacesRequest, type GetWorkspacesResponse, type NoSlashString, type Path, type PathResponseEdgecases, type PingResponse, type RegenerateInvoiceResponse, type RemoveTeamMemberResponse, type RequestBodyForPathAndMethod, type ResponseBodyForPathAndMethod, type SendAndApproveInvoiceResponse, type SendInvoiceResponse, type SupportedMethods, type UpdateAccessGrantRequest, type UpdateAccessGrantResponse, type UpdateAnomalyAlertRequest, type UpdateAnomalyAlertResponse, type UpdateAnomalyNotificationRequest, type UpdateAnomalyNotificationResponse, type UpdateAsyncVirtualTagConfigRequest, type UpdateAsyncVirtualTagConfigResponse, type UpdateBillingProfileRequest, type UpdateBillingProfileResponse, type UpdateBillingRuleRequest, type UpdateBillingRuleResponse, type UpdateBudgetAlertRequest, type UpdateBudgetAlertResponse, type UpdateBudgetRequest, type UpdateBudgetResponse, type UpdateBusinessMetricRequest, type UpdateBusinessMetricResponse, type UpdateBusinessMetricValuesCSVRequest, type UpdateBusinessMetricValuesCSVResponse, type UpdateCanvasRequest, type UpdateCanvasResponse, type UpdateCostAlertRequest, type UpdateCostAlertResponse, type UpdateCostReportRequest, type UpdateCostReportResponse, type UpdateDashboardRequest, type UpdateDashboardResponse, type UpdateFinancialCommitmentReportRequest, type UpdateFinancialCommitmentReportResponse, type UpdateFolderRequest, type UpdateFolderResponse, type UpdateIntegrationRequest, type UpdateIntegrationResponse, type UpdateKubernetesEfficiencyReportRequest, type UpdateKubernetesEfficiencyReportResponse, type UpdateManagedAccountRequest, type UpdateManagedAccountResponse, type UpdateMeRequest, type UpdateMeResponse, type UpdateNetworkFlowReportRequest, type UpdateNetworkFlowReportResponse, type UpdateRecommendationViewRequest, type UpdateRecommendationViewResponse, type UpdateReportForecastRequest, type UpdateReportForecastResponse, type UpdateReportNotificationRequest, type UpdateReportNotificationResponse, type UpdateResourceReportRequest, type UpdateResourceReportResponse, type UpdateSavedFilterRequest, type UpdateSavedFilterResponse, type UpdateScenarioModelRequest, type UpdateScenarioModelResponse, type UpdateSegmentRequest, type UpdateSegmentResponse, type UpdateSsoConnectionForManagedAccountRequest, type UpdateSsoConnectionForManagedAccountResponse, type UpdateTagRequest, type UpdateTagResponse, type UpdateTeamRequest, type UpdateTeamResponse, type UpdateUserRequest, type UpdateUserResponse, type UpdateVirtualTagConfigRequest, type UpdateVirtualTagConfigResponse, type UpdateVirtualTagConfigValueRequest, type UpdateVirtualTagConfigValueResponse, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, VantageAPIError, pathEncode };
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- var R=Object.defineProperty;var ce=Object.getOwnPropertyDescriptor;var le=Object.getOwnPropertyNames;var ve=Object.prototype.hasOwnProperty;var Re=(o,e)=>{for(var t in e)R(o,t,{get:e[t],enumerable:!0})},ge=(o,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of le(e))!ve.call(o,i)&&i!==t&&R(o,i,{get:()=>e[i],enumerable:!(n=ce(e,i))||n.enumerable});return o};var ye=o=>ge(R({},"__esModule",{value:!0}),o);var Se={};Re(Se,{APIV2Client:()=>y,VantageAPIError:()=>u,pathEncode:()=>s});module.exports=ye(Se);function s(o){return encodeURIComponent(o)}var Te={"/v2/exchange_rates/csv":{POST:!0},"/v2/business_metrics/{}/values.csv":{PUT:!0},"/v2/integrations/{}/costs.csv":{POST:!0}},c={};function Pe(o){return o.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}for(let[o,e]of Object.entries(Te)){let t=o.split("{}").map(Pe).join("(.+?)");for(let[n,i]of Object.entries(e))i&&(c[n]||(c[n]=[]),c[n].push(new RegExp(`^${t}$`)))}function _e(o,e){if(Object.prototype.hasOwnProperty.call(c,o))for(let t of c[o]){let n=t.test(e);if(t.lastIndex=0,n)return!0}return!1}function qe(o,e){if(e)for(let[t,n]of Object.entries(e))o.searchParams.append(t,Array.isArray(n)?n.map(String).join(","):String(n))}var u=class extends Error{constructor(t,n,i){let p=null;if(t!==null)try{let r=JSON.parse(i);Array.isArray(r.errors)&&(p=r.errors)}catch{}let a=t===null?`Vantage API Error: ${i}`:`Vantage API Error: ${t} ${n}`+(p?` - ${p.join(", ")}`:"");super(a);this.status=t;this.statusText=n;this.body=i;this.errors=p}errors};async function g(o,e,t,n,i,p){let a;try{a=await fetch(o.toString(),{method:e,headers:t,body:n})}catch(r){let h=r instanceof Error?r.message:String(r),d=new u(null,null,h);if(i)return[null,d];throw d}if(p==="boolean"){if(a.status===404)return i?[!1,null]:!1;if(!a.ok){let r=new u(a.status,a.statusText,await a.text());if(i)return[null,r];throw r}return i?[!0,null]:!0}if(!a.ok){let r=new u(a.status,a.statusText,await a.text());if(i)return[null,r];throw r}if(p==="location"){let r=a.headers.get("Location");return i?[r,null]:r}if(a.status===204)return i?[void 0,null]:void 0;try{let r=await a.text(),h;return r&&(h=JSON.parse(r)),i?[h,null]:h}catch(r){let h=r instanceof Error?r.message:String(r),d=new u(a.status,a.statusText,h);if(i)return[null,d];throw d}}var l=class{constructor(e,t,n){this.bearerToken=e;this.neverThrow=t;this.baseUrl=n}routeEdgecases=new Map;async request(e,t,n){let i=new URL(e,this.baseUrl),p={Authorization:`Bearer ${this.bearerToken}`},a=`${t} ${e}`,r;for(let[d,v]of this.routeEdgecases)if(a.startsWith(d)){r=v;break}if(t==="GET")return qe(i,n),g(i,t,p,void 0,this.neverThrow,r);if(_e(t,e)){let d=new FormData;for(let[v,ue]of Object.entries(n))d.append(v,ue);return p["Content-Type"]="multipart/form-data",g(i,t,p,d,this.neverThrow,r)}return p["Content-Type"]="application/json",g(i,t,p,JSON.stringify(n),this.neverThrow,r)}};var y=class extends l{constructor(e,t=!1,n="https://api.vantage.sh"){super(e,t,n)}routeEdgecases=new Map([["POST /v2/costs/data_exports","location"],["POST /v2/kubernetes_efficiency_reports/data_exports","location"],["POST /v2/unit_costs/data_exports","location"],["GET /v2/virtual_tag_configs/async/","boolean"]]);_accessGrants;_anomalyAlerts;_anomalyNotifications;_auditLogs;_billingProfiles;_billingRules;_budgetAlerts;_budgets;_businessMetrics;_canvases;_costAlerts;_costProviders;_costProviderAccounts;_costReports;_costs;_costServices;_dashboards;_dataExports;_exchangeRates;_financialCommitmentReports;_financialCommitments;_folders;_integrations;_invoices;_kubernetesEfficiencyReports;_managedAccounts;_me;_networkFlowLogs;_networkFlowReports;_ping;_products;_recommendations;_recommendationViews;_reportForecasts;_reportNotifications;_resourceReports;_resources;_savedFilters;_scenarioModels;_segments;_tags;_teams;_unitCosts;_userFeedback;_users;_virtualTagConfigs;_workspaces;get accessGrants(){return this._accessGrants||(this._accessGrants=new T(this)),this._accessGrants}get anomalyAlerts(){return this._anomalyAlerts||(this._anomalyAlerts=new P(this)),this._anomalyAlerts}get anomalyNotifications(){return this._anomalyNotifications||(this._anomalyNotifications=new _(this)),this._anomalyNotifications}get auditLogs(){return this._auditLogs||(this._auditLogs=new q(this)),this._auditLogs}get billingProfiles(){return this._billingProfiles||(this._billingProfiles=new S(this)),this._billingProfiles}get billingRules(){return this._billingRules||(this._billingRules=new A(this)),this._billingRules}get budgetAlerts(){return this._budgetAlerts||(this._budgetAlerts=new E(this)),this._budgetAlerts}get budgets(){return this._budgets||(this._budgets=new m(this)),this._budgets}get businessMetrics(){return this._businessMetrics||(this._businessMetrics=new x(this)),this._businessMetrics}get canvases(){return this._canvases||(this._canvases=new M(this)),this._canvases}get costAlerts(){return this._costAlerts||(this._costAlerts=new G(this)),this._costAlerts}get costProviders(){return this._costProviders||(this._costProviders=new B(this)),this._costProviders}get costProviderAccounts(){return this._costProviderAccounts||(this._costProviderAccounts=new f(this)),this._costProviderAccounts}get costReports(){return this._costReports||(this._costReports=new F(this)),this._costReports}get costs(){return this._costs||(this._costs=new N(this)),this._costs}get costServices(){return this._costServices||(this._costServices=new w(this)),this._costServices}get dashboards(){return this._dashboards||(this._dashboards=new C(this)),this._dashboards}get dataExports(){return this._dataExports||(this._dataExports=new $(this)),this._dataExports}get exchangeRates(){return this._exchangeRates||(this._exchangeRates=new b(this)),this._exchangeRates}get financialCommitmentReports(){return this._financialCommitmentReports||(this._financialCommitmentReports=new U(this)),this._financialCommitmentReports}get financialCommitments(){return this._financialCommitments||(this._financialCommitments=new O(this)),this._financialCommitments}get folders(){return this._folders||(this._folders=new k(this)),this._folders}get integrations(){return this._integrations||(this._integrations=new D(this)),this._integrations}get invoices(){return this._invoices||(this._invoices=new L(this)),this._invoices}get kubernetesEfficiencyReports(){return this._kubernetesEfficiencyReports||(this._kubernetesEfficiencyReports=new V(this)),this._kubernetesEfficiencyReports}get managedAccounts(){return this._managedAccounts||(this._managedAccounts=new I(this)),this._managedAccounts}get me(){return this._me||(this._me=new K(this)),this._me}get networkFlowLogs(){return this._networkFlowLogs||(this._networkFlowLogs=new W(this)),this._networkFlowLogs}get networkFlowReports(){return this._networkFlowReports||(this._networkFlowReports=new j(this)),this._networkFlowReports}get ping(){return this._ping||(this._ping=new z(this)),this._ping}get products(){return this._products||(this._products=new H(this)),this._products}get recommendations(){return this._recommendations||(this._recommendations=new J(this)),this._recommendations}get recommendationViews(){return this._recommendationViews||(this._recommendationViews=new Q(this)),this._recommendationViews}get reportForecasts(){return this._reportForecasts||(this._reportForecasts=new X(this)),this._reportForecasts}get reportNotifications(){return this._reportNotifications||(this._reportNotifications=new Z(this)),this._reportNotifications}get resourceReports(){return this._resourceReports||(this._resourceReports=new Y(this)),this._resourceReports}get resources(){return this._resources||(this._resources=new ee(this)),this._resources}get savedFilters(){return this._savedFilters||(this._savedFilters=new te(this)),this._savedFilters}get scenarioModels(){return this._scenarioModels||(this._scenarioModels=new se(this)),this._scenarioModels}get segments(){return this._segments||(this._segments=new oe(this)),this._segments}get tags(){return this._tags||(this._tags=new re(this)),this._tags}get teams(){return this._teams||(this._teams=new ne(this)),this._teams}get unitCosts(){return this._unitCosts||(this._unitCosts=new ie(this)),this._unitCosts}get userFeedback(){return this._userFeedback||(this._userFeedback=new ae(this)),this._userFeedback}get users(){return this._users||(this._users=new pe(this)),this._users}get virtualTagConfigs(){return this._virtualTagConfigs||(this._virtualTagConfigs=new de(this)),this._virtualTagConfigs}get workspaces(){return this._workspaces||(this._workspaces=new he(this)),this._workspaces}},T=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/access_grants","GET",e)}create(e){return this.client.request("/v2/access_grants","POST",e)}get(e){return this.client.request(`/v2/access_grants/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/access_grants/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/access_grants/${s(e)}`,"DELETE",{})}},P=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/anomaly_alerts","GET",e)}get(e){return this.client.request(`/v2/anomaly_alerts/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/anomaly_alerts/${s(e)}`,"PUT",t)}},_=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/anomaly_notifications","GET",e)}create(e){return this.client.request("/v2/anomaly_notifications","POST",e)}get(e){return this.client.request(`/v2/anomaly_notifications/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/anomaly_notifications/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/anomaly_notifications/${s(e)}`,"DELETE",{})}},q=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/audit_logs","GET",e)}get(e){return this.client.request(`/v2/audit_logs/${s(e)}`,"GET",{})}},S=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/billing_profiles","GET",e)}create(e){return this.client.request("/v2/billing_profiles","POST",e)}get(e){return this.client.request(`/v2/billing_profiles/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/billing_profiles/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/billing_profiles/${s(e)}`,"DELETE",{})}},A=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/billing_rules","GET",e)}create(e){return this.client.request("/v2/billing_rules","POST",e)}get(e){return this.client.request(`/v2/billing_rules/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/billing_rules/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/billing_rules/${s(e)}`,"DELETE",{})}},E=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/budget_alerts","GET",e)}create(e){return this.client.request("/v2/budget_alerts","POST",e)}get(e){return this.client.request(`/v2/budget_alerts/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/budget_alerts/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/budget_alerts/${s(e)}`,"DELETE",{})}},m=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/budgets","GET",e)}create(e){return this.client.request("/v2/budgets","POST",e)}update(e,t){return this.client.request(`/v2/budgets/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/budgets/${s(e)}`,"DELETE",{})}},x=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/business_metrics","GET",e)}create(e){return this.client.request("/v2/business_metrics","POST",e)}get(e){return this.client.request(`/v2/business_metrics/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/business_metrics/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/business_metrics/${s(e)}`,"DELETE",{})}getLabels(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/labels`,"GET",t)}getValues(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/values`,"GET",t)}deleteValues(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/values`,"DELETE",t)}getForecastedValues(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/forecasted_values`,"GET",t)}updateValuesCSV(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/values.csv`,"PUT",t)}},M=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/canvases","GET",e)}create(e){return this.client.request("/v2/canvases","POST",e)}get(e){return this.client.request(`/v2/canvases/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/canvases/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/canvases/${s(e)}`,"DELETE",{})}},G=class{constructor(e){this.client=e}create(e){return this.client.request("/v2/cost_alerts","POST",e)}get(e,t){return this.client.request(`/v2/cost_alerts/${s(e)}/events/${s(t)}`,"GET",{})}update(e,t){return this.client.request(`/v2/cost_alerts/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/cost_alerts/${s(e)}`,"DELETE",{})}getEvents(e,t){return this.client.request(`/v2/cost_alerts/${s(e)}/events`,"GET",t)}getEvent(e,t){return this.client.request(`/v2/cost_alerts/${s(e)}/events/${s(t)}`,"GET",{})}},B=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/cost_providers","GET",e)}},f=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/cost_provider_accounts","GET",e)}},F=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/cost_reports","GET",e)}create(e){return this.client.request("/v2/cost_reports","POST",e)}get(e){return this.client.request(`/v2/cost_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/cost_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/cost_reports/${s(e)}`,"DELETE",{})}getForecastedCosts(e,t){return this.client.request(`/v2/cost_reports/${s(e)}/forecasted_costs`,"GET",t)}},N=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/costs","GET",e)}createExport(e){return this.client.request("/v2/costs/data_exports","POST",e)}},w=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/cost_services","GET",e)}},C=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/dashboards","GET",e)}create(e){return this.client.request("/v2/dashboards","POST",e)}get(e){return this.client.request(`/v2/dashboards/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/dashboards/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/dashboards/${s(e)}`,"DELETE",{})}},$=class{constructor(e){this.client=e}get(e){return this.client.request(`/v2/data_exports/${s(e)}`,"GET",{})}},b=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/exchange_rates","GET",e)}createViaCsv(e){return this.client.request("/v2/exchange_rates/csv","POST",e)}},U=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/financial_commitment_reports","GET",e)}create(e){return this.client.request("/v2/financial_commitment_reports","POST",e)}get(e){return this.client.request(`/v2/financial_commitment_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/financial_commitment_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/financial_commitment_reports/${s(e)}`,"DELETE",{})}},O=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/financial_commitments","GET",e)}},k=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/folders","GET",e)}create(e){return this.client.request("/v2/folders","POST",e)}get(e){return this.client.request(`/v2/folders/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/folders/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/folders/${s(e)}`,"DELETE",{})}},D=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/integrations","GET",e)}get(e){return this.client.request(`/v2/integrations/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/integrations/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/integrations/${s(e)}`,"DELETE",{})}createCustomProviderIntegration(e){return this.client.request("/v2/integrations/custom_provider","POST",e)}createUserCostsUploadViaCsv(e,t){return this.client.request(`/v2/integrations/${s(e)}/costs.csv`,"POST",t)}deleteUserCostsUpload(e,t){return this.client.request(`/v2/integrations/${s(e)}/costs/${s(t)}`,"DELETE",{})}getUserCostsUploads(e){return this.client.request(`/v2/integrations/${s(e)}/costs`,"GET",{})}createGCPIntegration(e){return this.client.request("/v2/integrations/gcp","POST",e)}createAzureIntegration(e){return this.client.request("/v2/integrations/azure","POST",e)}},L=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/invoices","GET",e)}create(e){return this.client.request("/v2/invoices","POST",e)}get(e){return this.client.request(`/v2/invoices/${s(e)}`,"GET",{})}downloadInvoice(e,t){return this.client.request(`/v2/invoices/${s(e)}/download`,"POST",t)}sendInvoice(e){return this.client.request(`/v2/invoices/${s(e)}/send`,"POST",{})}sendAndApproveInvoice(e){return this.client.request(`/v2/invoices/${s(e)}/send_and_approve`,"POST",{})}getCostReport(e){return this.client.request(`/v2/invoices/${s(e)}/cost_report`,"GET",{})}regenerateInvoice(e){return this.client.request(`/v2/invoices/${s(e)}/regenerate`,"POST",{})}},V=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/kubernetes_efficiency_reports","GET",e)}create(e){return this.client.request("/v2/kubernetes_efficiency_reports","POST",e)}get(e){return this.client.request(`/v2/kubernetes_efficiency_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/kubernetes_efficiency_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/kubernetes_efficiency_reports/${s(e)}`,"DELETE",{})}createExport(e){return this.client.request("/v2/kubernetes_efficiency_reports/data_exports","POST",e)}},I=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/managed_accounts","GET",e)}create(e){return this.client.request("/v2/managed_accounts","POST",e)}get(e){return this.client.request(`/v2/managed_accounts/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/managed_accounts/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/managed_accounts/${s(e)}`,"DELETE",{})}updateSsoConnectionForManagedAccount(e,t){return this.client.request(`/v2/managed_accounts/${s(e)}/sso_connection`,"PUT",t)}createSsoConnectionForManagedAccount(e,t){return this.client.request(`/v2/managed_accounts/${s(e)}/sso_connection`,"POST",t)}deleteSsoConnectionForManagedAccount(e){return this.client.request(`/v2/managed_accounts/${s(e)}/sso_connection`,"DELETE",{})}},K=class{constructor(e){this.client=e}get(){return this.client.request("/v2/me","GET",{})}},W=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/network_flow_logs","GET",e)}},j=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/network_flow_reports","GET",e)}create(e){return this.client.request("/v2/network_flow_reports","POST",e)}get(e){return this.client.request(`/v2/network_flow_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/network_flow_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/network_flow_reports/${s(e)}`,"DELETE",{})}},z=class{constructor(e){this.client=e}get(){return this.client.request("/v2/ping","GET",{})}},H=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/products","GET",e)}get(e,t){return this.client.request(`/v2/products/${s(e)}/prices/${s(t)}`,"GET",{})}getPrices(e,t){return this.client.request(`/v2/products/${s(e)}/prices`,"GET",t)}getPrice(e,t){return this.client.request(`/v2/products/${s(e)}/prices/${s(t)}`,"GET",{})}},J=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/recommendations","GET",e)}get(e){return this.client.request(`/v2/recommendations/${s(e)}`,"GET",{})}getResources(e,t){return this.client.request(`/v2/recommendations/${s(e)}/resources`,"GET",t)}getResource(e,t){return this.client.request(`/v2/recommendations/${s(e)}/resources/${s(t)}`,"GET",{})}getTypeResources(e,t){return this.client.request(`/v2/recommendations/by_type/${s(e)}/resources`,"GET",t)}},Q=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/recommendation_views","GET",e)}create(e){return this.client.request("/v2/recommendation_views","POST",e)}get(e){return this.client.request(`/v2/recommendation_views/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/recommendation_views/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/recommendation_views/${s(e)}`,"DELETE",{})}},X=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/report_forecasts","GET",e)}create(e){return this.client.request("/v2/report_forecasts","POST",e)}get(e){return this.client.request(`/v2/report_forecasts/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/report_forecasts/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/report_forecasts/${s(e)}`,"DELETE",{})}},Z=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/report_notifications","GET",e)}create(e){return this.client.request("/v2/report_notifications","POST",e)}get(e){return this.client.request(`/v2/report_notifications/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/report_notifications/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/report_notifications/${s(e)}`,"DELETE",{})}},Y=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/resource_reports","GET",e)}create(e){return this.client.request("/v2/resource_reports","POST",e)}get(e){return this.client.request(`/v2/resource_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/resource_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/resource_reports/${s(e)}`,"DELETE",{})}getColumns(e){return this.client.request("/v2/resource_reports/columns","GET",e)}},ee=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/resources","GET",e)}},te=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/saved_filters","GET",e)}create(e){return this.client.request("/v2/saved_filters","POST",e)}get(e){return this.client.request(`/v2/saved_filters/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/saved_filters/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/saved_filters/${s(e)}`,"DELETE",{})}},se=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/scenario_models","GET",e)}create(e){return this.client.request("/v2/scenario_models","POST",e)}get(e){return this.client.request(`/v2/scenario_models/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/scenario_models/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/scenario_models/${s(e)}`,"DELETE",{})}},oe=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/segments","GET",e)}create(e){return this.client.request("/v2/segments","POST",e)}get(e){return this.client.request(`/v2/segments/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/segments/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/segments/${s(e)}`,"DELETE",{})}},re=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/tags","GET",e)}getValues(e,t){return this.client.request(`/v2/tags/${s(e)}/values`,"GET",t)}},ne=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/teams","GET",e)}create(e){return this.client.request("/v2/teams","POST",e)}get(e){return this.client.request(`/v2/teams/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/teams/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/teams/${s(e)}`,"DELETE",{})}getMembers(e,t){return this.client.request(`/v2/teams/${s(e)}/members`,"GET",t)}addTeamMember(e,t){return this.client.request(`/v2/teams/${s(e)}/members`,"POST",t)}removeTeamMember(e,t){return this.client.request(`/v2/teams/${s(e)}/members/${s(t)}`,"DELETE",{})}},ie=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/unit_costs","GET",e)}createExport(e){return this.client.request("/v2/unit_costs/data_exports","POST",e)}},ae=class{constructor(e){this.client=e}create(e){return this.client.request("/v2/user_feedback","POST",e)}},pe=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/users","GET",e)}get(e){return this.client.request(`/v2/users/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/users/${s(e)}`,"PUT",t)}},de=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/virtual_tag_configs","GET",e)}create(e){return this.client.request("/v2/virtual_tag_configs","POST",e)}get(e){return this.client.request(`/v2/virtual_tag_configs/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/virtual_tag_configs/${s(e)}`,"DELETE",{})}getStatus(e){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/status`,"GET",{})}updateAsyncVirtualTagConfig(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/async`,"PUT",t)}getAsyncVirtualTagConfigStatus(e){return this.client.request(`/v2/virtual_tag_configs/async/${s(e)}`,"GET",{})}createValue(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/values`,"POST",t)}getValue(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/values/${s(t)}`,"GET",{})}deleteValue(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/values/${s(t)}`,"DELETE",{})}updateValue(e,t,n){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/values/${s(t)}`,"PATCH",n)}},he=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/workspaces","GET",e)}create(e){return this.client.request("/v2/workspaces","POST",e)}get(e){return this.client.request(`/v2/workspaces/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/workspaces/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/workspaces/${s(e)}`,"DELETE",{})}};0&&(module.exports={APIV2Client,VantageAPIError,pathEncode});
1
+ var R=Object.defineProperty;var le=Object.getOwnPropertyDescriptor;var ve=Object.getOwnPropertyNames;var Re=Object.prototype.hasOwnProperty;var ge=(o,e)=>{for(var t in e)R(o,t,{get:e[t],enumerable:!0})},ye=(o,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of ve(e))!Re.call(o,i)&&i!==t&&R(o,i,{get:()=>e[i],enumerable:!(n=le(e,i))||n.enumerable});return o};var Te=o=>ye(R({},"__esModule",{value:!0}),o);var Ae={};ge(Ae,{APIV2Client:()=>y,VantageAPIError:()=>u,pathEncode:()=>s});module.exports=Te(Ae);function s(o){return encodeURIComponent(o)}var Pe={"/v2/exchange_rates/csv":{POST:!0},"/v2/business_metrics/{}/values.csv":{PUT:!0},"/v2/integrations/{}/costs.csv":{POST:!0}},c={};function _e(o){return o.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}for(let[o,e]of Object.entries(Pe)){let t=o.split("{}").map(_e).join("(.+?)");for(let[n,i]of Object.entries(e))i&&(c[n]||(c[n]=[]),c[n].push(new RegExp(`^${t}$`)))}function qe(o,e){if(Object.prototype.hasOwnProperty.call(c,o))for(let t of c[o]){let n=t.test(e);if(t.lastIndex=0,n)return!0}return!1}function Se(o,e){if(e)for(let[t,n]of Object.entries(e))o.searchParams.append(t,Array.isArray(n)?n.map(String).join(","):String(n))}var u=class extends Error{constructor(t,n,i){let p=null;if(t!==null)try{let r=JSON.parse(i);Array.isArray(r.errors)&&(p=r.errors)}catch{}let a=t===null?`Vantage API Error: ${i}`:`Vantage API Error: ${t} ${n}`+(p?` - ${p.join(", ")}`:"");super(a);this.status=t;this.statusText=n;this.body=i;this.errors=p}errors};async function g(o,e,t,n,i,p){let a;try{a=await fetch(o.toString(),{method:e,headers:t,body:n})}catch(r){let h=r instanceof Error?r.message:String(r),d=new u(null,null,h);if(i)return[null,d];throw d}if(p==="boolean"){if(a.status===404)return i?[!1,null]:!1;if(!a.ok){let r=new u(a.status,a.statusText,await a.text());if(i)return[null,r];throw r}return i?[!0,null]:!0}if(!a.ok){let r=new u(a.status,a.statusText,await a.text());if(i)return[null,r];throw r}if(p==="location"){let r=a.headers.get("Location");return i?[r,null]:r}if(a.status===204)return i?[void 0,null]:void 0;try{let r=await a.text(),h;return r&&(h=JSON.parse(r)),i?[h,null]:h}catch(r){let h=r instanceof Error?r.message:String(r),d=new u(a.status,a.statusText,h);if(i)return[null,d];throw d}}var l=class{constructor(e,t,n){this.bearerToken=e;this.neverThrow=t;this.baseUrl=n}routeEdgecases=new Map;async request(e,t,n){let i=new URL(e,this.baseUrl),p={Authorization:`Bearer ${this.bearerToken}`},a=`${t} ${e}`,r;for(let[d,v]of this.routeEdgecases)if(a.startsWith(d)){r=v;break}if(t==="GET")return Se(i,n),g(i,t,p,void 0,this.neverThrow,r);if(qe(t,e)){let d=new FormData;for(let[v,ce]of Object.entries(n))d.append(v,ce);return p["Content-Type"]="multipart/form-data",g(i,t,p,d,this.neverThrow,r)}return p["Content-Type"]="application/json",g(i,t,p,JSON.stringify(n),this.neverThrow,r)}};var y=class extends l{constructor(e,t=!1,n="https://api.vantage.sh"){super(e,t,n)}routeEdgecases=new Map([["POST /v2/costs/data_exports","location"],["POST /v2/kubernetes_efficiency_reports/data_exports","location"],["POST /v2/unit_costs/data_exports","location"],["GET /v2/virtual_tag_configs/async/","boolean"]]);_accessGrants;_annotations;_anomalyAlerts;_anomalyNotifications;_auditLogs;_billingProfiles;_billingRules;_budgetAlerts;_budgets;_businessMetrics;_canvases;_costAlerts;_costProviders;_costProviderAccounts;_costReports;_costs;_costServices;_dashboards;_dataExports;_exchangeRates;_financialCommitmentReports;_financialCommitments;_folders;_integrations;_invoices;_kubernetesEfficiencyReports;_managedAccounts;_me;_networkFlowLogs;_networkFlowReports;_ping;_products;_recommendations;_recommendationViews;_reportForecasts;_reportNotifications;_resourceReports;_resources;_savedFilters;_scenarioModels;_segments;_tags;_teams;_unitCosts;_userFeedback;_users;_virtualTagConfigs;_workspaces;get accessGrants(){return this._accessGrants||(this._accessGrants=new T(this)),this._accessGrants}get annotations(){return this._annotations||(this._annotations=new P(this)),this._annotations}get anomalyAlerts(){return this._anomalyAlerts||(this._anomalyAlerts=new _(this)),this._anomalyAlerts}get anomalyNotifications(){return this._anomalyNotifications||(this._anomalyNotifications=new q(this)),this._anomalyNotifications}get auditLogs(){return this._auditLogs||(this._auditLogs=new S(this)),this._auditLogs}get billingProfiles(){return this._billingProfiles||(this._billingProfiles=new A(this)),this._billingProfiles}get billingRules(){return this._billingRules||(this._billingRules=new E(this)),this._billingRules}get budgetAlerts(){return this._budgetAlerts||(this._budgetAlerts=new m(this)),this._budgetAlerts}get budgets(){return this._budgets||(this._budgets=new x(this)),this._budgets}get businessMetrics(){return this._businessMetrics||(this._businessMetrics=new M(this)),this._businessMetrics}get canvases(){return this._canvases||(this._canvases=new G(this)),this._canvases}get costAlerts(){return this._costAlerts||(this._costAlerts=new B(this)),this._costAlerts}get costProviders(){return this._costProviders||(this._costProviders=new f(this)),this._costProviders}get costProviderAccounts(){return this._costProviderAccounts||(this._costProviderAccounts=new F(this)),this._costProviderAccounts}get costReports(){return this._costReports||(this._costReports=new N(this)),this._costReports}get costs(){return this._costs||(this._costs=new w(this)),this._costs}get costServices(){return this._costServices||(this._costServices=new C(this)),this._costServices}get dashboards(){return this._dashboards||(this._dashboards=new $(this)),this._dashboards}get dataExports(){return this._dataExports||(this._dataExports=new b(this)),this._dataExports}get exchangeRates(){return this._exchangeRates||(this._exchangeRates=new U(this)),this._exchangeRates}get financialCommitmentReports(){return this._financialCommitmentReports||(this._financialCommitmentReports=new O(this)),this._financialCommitmentReports}get financialCommitments(){return this._financialCommitments||(this._financialCommitments=new k(this)),this._financialCommitments}get folders(){return this._folders||(this._folders=new D(this)),this._folders}get integrations(){return this._integrations||(this._integrations=new L(this)),this._integrations}get invoices(){return this._invoices||(this._invoices=new V(this)),this._invoices}get kubernetesEfficiencyReports(){return this._kubernetesEfficiencyReports||(this._kubernetesEfficiencyReports=new I(this)),this._kubernetesEfficiencyReports}get managedAccounts(){return this._managedAccounts||(this._managedAccounts=new K(this)),this._managedAccounts}get me(){return this._me||(this._me=new W(this)),this._me}get networkFlowLogs(){return this._networkFlowLogs||(this._networkFlowLogs=new j(this)),this._networkFlowLogs}get networkFlowReports(){return this._networkFlowReports||(this._networkFlowReports=new z(this)),this._networkFlowReports}get ping(){return this._ping||(this._ping=new H(this)),this._ping}get products(){return this._products||(this._products=new J(this)),this._products}get recommendations(){return this._recommendations||(this._recommendations=new Q(this)),this._recommendations}get recommendationViews(){return this._recommendationViews||(this._recommendationViews=new X(this)),this._recommendationViews}get reportForecasts(){return this._reportForecasts||(this._reportForecasts=new Z(this)),this._reportForecasts}get reportNotifications(){return this._reportNotifications||(this._reportNotifications=new Y(this)),this._reportNotifications}get resourceReports(){return this._resourceReports||(this._resourceReports=new ee(this)),this._resourceReports}get resources(){return this._resources||(this._resources=new te(this)),this._resources}get savedFilters(){return this._savedFilters||(this._savedFilters=new se(this)),this._savedFilters}get scenarioModels(){return this._scenarioModels||(this._scenarioModels=new oe(this)),this._scenarioModels}get segments(){return this._segments||(this._segments=new re(this)),this._segments}get tags(){return this._tags||(this._tags=new ne(this)),this._tags}get teams(){return this._teams||(this._teams=new ie(this)),this._teams}get unitCosts(){return this._unitCosts||(this._unitCosts=new ae(this)),this._unitCosts}get userFeedback(){return this._userFeedback||(this._userFeedback=new pe(this)),this._userFeedback}get users(){return this._users||(this._users=new de(this)),this._users}get virtualTagConfigs(){return this._virtualTagConfigs||(this._virtualTagConfigs=new he(this)),this._virtualTagConfigs}get workspaces(){return this._workspaces||(this._workspaces=new ue(this)),this._workspaces}},T=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/access_grants","GET",e)}create(e){return this.client.request("/v2/access_grants","POST",e)}get(e){return this.client.request(`/v2/access_grants/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/access_grants/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/access_grants/${s(e)}`,"DELETE",{})}},P=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/annotations","GET",e)}},_=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/anomaly_alerts","GET",e)}get(e){return this.client.request(`/v2/anomaly_alerts/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/anomaly_alerts/${s(e)}`,"PUT",t)}},q=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/anomaly_notifications","GET",e)}create(e){return this.client.request("/v2/anomaly_notifications","POST",e)}get(e){return this.client.request(`/v2/anomaly_notifications/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/anomaly_notifications/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/anomaly_notifications/${s(e)}`,"DELETE",{})}},S=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/audit_logs","GET",e)}get(e){return this.client.request(`/v2/audit_logs/${s(e)}`,"GET",{})}},A=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/billing_profiles","GET",e)}create(e){return this.client.request("/v2/billing_profiles","POST",e)}get(e){return this.client.request(`/v2/billing_profiles/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/billing_profiles/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/billing_profiles/${s(e)}`,"DELETE",{})}},E=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/billing_rules","GET",e)}create(e){return this.client.request("/v2/billing_rules","POST",e)}get(e){return this.client.request(`/v2/billing_rules/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/billing_rules/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/billing_rules/${s(e)}`,"DELETE",{})}},m=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/budget_alerts","GET",e)}create(e){return this.client.request("/v2/budget_alerts","POST",e)}get(e){return this.client.request(`/v2/budget_alerts/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/budget_alerts/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/budget_alerts/${s(e)}`,"DELETE",{})}},x=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/budgets","GET",e)}create(e){return this.client.request("/v2/budgets","POST",e)}update(e,t){return this.client.request(`/v2/budgets/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/budgets/${s(e)}`,"DELETE",{})}},M=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/business_metrics","GET",e)}create(e){return this.client.request("/v2/business_metrics","POST",e)}get(e){return this.client.request(`/v2/business_metrics/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/business_metrics/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/business_metrics/${s(e)}`,"DELETE",{})}getLabels(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/labels`,"GET",t)}getValues(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/values`,"GET",t)}deleteValues(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/values`,"DELETE",t)}getForecastedValues(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/forecasted_values`,"GET",t)}updateValuesCSV(e,t){return this.client.request(`/v2/business_metrics/${s(e)}/values.csv`,"PUT",t)}},G=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/canvases","GET",e)}create(e){return this.client.request("/v2/canvases","POST",e)}get(e){return this.client.request(`/v2/canvases/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/canvases/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/canvases/${s(e)}`,"DELETE",{})}},B=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/cost_alerts","GET",e)}create(e){return this.client.request("/v2/cost_alerts","POST",e)}get(e,t){return this.client.request(`/v2/cost_alerts/${s(e)}/events/${s(t)}`,"GET",{})}update(e,t){return this.client.request(`/v2/cost_alerts/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/cost_alerts/${s(e)}`,"DELETE",{})}getEvents(e,t){return this.client.request(`/v2/cost_alerts/${s(e)}/events`,"GET",t)}getEvent(e,t){return this.client.request(`/v2/cost_alerts/${s(e)}/events/${s(t)}`,"GET",{})}},f=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/cost_providers","GET",e)}},F=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/cost_provider_accounts","GET",e)}},N=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/cost_reports","GET",e)}create(e){return this.client.request("/v2/cost_reports","POST",e)}get(e){return this.client.request(`/v2/cost_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/cost_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/cost_reports/${s(e)}`,"DELETE",{})}getForecastedCosts(e,t){return this.client.request(`/v2/cost_reports/${s(e)}/forecasted_costs`,"GET",t)}},w=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/costs","GET",e)}createExport(e){return this.client.request("/v2/costs/data_exports","POST",e)}},C=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/cost_services","GET",e)}},$=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/dashboards","GET",e)}create(e){return this.client.request("/v2/dashboards","POST",e)}get(e){return this.client.request(`/v2/dashboards/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/dashboards/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/dashboards/${s(e)}`,"DELETE",{})}},b=class{constructor(e){this.client=e}get(e){return this.client.request(`/v2/data_exports/${s(e)}`,"GET",{})}},U=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/exchange_rates","GET",e)}createViaCsv(e){return this.client.request("/v2/exchange_rates/csv","POST",e)}},O=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/financial_commitment_reports","GET",e)}create(e){return this.client.request("/v2/financial_commitment_reports","POST",e)}get(e){return this.client.request(`/v2/financial_commitment_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/financial_commitment_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/financial_commitment_reports/${s(e)}`,"DELETE",{})}},k=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/financial_commitments","GET",e)}},D=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/folders","GET",e)}create(e){return this.client.request("/v2/folders","POST",e)}get(e){return this.client.request(`/v2/folders/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/folders/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/folders/${s(e)}`,"DELETE",{})}},L=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/integrations","GET",e)}get(e){return this.client.request(`/v2/integrations/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/integrations/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/integrations/${s(e)}`,"DELETE",{})}createCustomProviderIntegration(e){return this.client.request("/v2/integrations/custom_provider","POST",e)}createUserCostsUploadViaCsv(e,t){return this.client.request(`/v2/integrations/${s(e)}/costs.csv`,"POST",t)}deleteUserCostsUpload(e,t){return this.client.request(`/v2/integrations/${s(e)}/costs/${s(t)}`,"DELETE",{})}getUserCostsUploads(e){return this.client.request(`/v2/integrations/${s(e)}/costs`,"GET",{})}createGCPIntegration(e){return this.client.request("/v2/integrations/gcp","POST",e)}createAzureIntegration(e){return this.client.request("/v2/integrations/azure","POST",e)}},V=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/invoices","GET",e)}create(e){return this.client.request("/v2/invoices","POST",e)}get(e){return this.client.request(`/v2/invoices/${s(e)}`,"GET",{})}downloadInvoice(e,t){return this.client.request(`/v2/invoices/${s(e)}/download`,"POST",t)}sendInvoice(e){return this.client.request(`/v2/invoices/${s(e)}/send`,"POST",{})}sendAndApproveInvoice(e){return this.client.request(`/v2/invoices/${s(e)}/send_and_approve`,"POST",{})}getCostReport(e){return this.client.request(`/v2/invoices/${s(e)}/cost_report`,"GET",{})}regenerateInvoice(e){return this.client.request(`/v2/invoices/${s(e)}/regenerate`,"POST",{})}},I=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/kubernetes_efficiency_reports","GET",e)}create(e){return this.client.request("/v2/kubernetes_efficiency_reports","POST",e)}get(e){return this.client.request(`/v2/kubernetes_efficiency_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/kubernetes_efficiency_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/kubernetes_efficiency_reports/${s(e)}`,"DELETE",{})}createExport(e){return this.client.request("/v2/kubernetes_efficiency_reports/data_exports","POST",e)}},K=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/managed_accounts","GET",e)}create(e){return this.client.request("/v2/managed_accounts","POST",e)}get(e){return this.client.request(`/v2/managed_accounts/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/managed_accounts/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/managed_accounts/${s(e)}`,"DELETE",{})}updateSsoConnectionForManagedAccount(e,t){return this.client.request(`/v2/managed_accounts/${s(e)}/sso_connection`,"PUT",t)}createSsoConnectionForManagedAccount(e,t){return this.client.request(`/v2/managed_accounts/${s(e)}/sso_connection`,"POST",t)}deleteSsoConnectionForManagedAccount(e){return this.client.request(`/v2/managed_accounts/${s(e)}/sso_connection`,"DELETE",{})}},W=class{constructor(e){this.client=e}get(){return this.client.request("/v2/me","GET",{})}},j=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/network_flow_logs","GET",e)}},z=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/network_flow_reports","GET",e)}create(e){return this.client.request("/v2/network_flow_reports","POST",e)}get(e){return this.client.request(`/v2/network_flow_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/network_flow_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/network_flow_reports/${s(e)}`,"DELETE",{})}},H=class{constructor(e){this.client=e}get(){return this.client.request("/v2/ping","GET",{})}},J=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/products","GET",e)}get(e,t){return this.client.request(`/v2/products/${s(e)}/prices/${s(t)}`,"GET",{})}getPrices(e,t){return this.client.request(`/v2/products/${s(e)}/prices`,"GET",t)}getPrice(e,t){return this.client.request(`/v2/products/${s(e)}/prices/${s(t)}`,"GET",{})}},Q=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/recommendations","GET",e)}get(e){return this.client.request(`/v2/recommendations/${s(e)}`,"GET",{})}getResources(e,t){return this.client.request(`/v2/recommendations/${s(e)}/resources`,"GET",t)}getResource(e,t){return this.client.request(`/v2/recommendations/${s(e)}/resources/${s(t)}`,"GET",{})}getTypeResources(e,t){return this.client.request(`/v2/recommendations/by_type/${s(e)}/resources`,"GET",t)}},X=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/recommendation_views","GET",e)}create(e){return this.client.request("/v2/recommendation_views","POST",e)}get(e){return this.client.request(`/v2/recommendation_views/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/recommendation_views/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/recommendation_views/${s(e)}`,"DELETE",{})}},Z=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/report_forecasts","GET",e)}create(e){return this.client.request("/v2/report_forecasts","POST",e)}get(e){return this.client.request(`/v2/report_forecasts/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/report_forecasts/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/report_forecasts/${s(e)}`,"DELETE",{})}},Y=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/report_notifications","GET",e)}create(e){return this.client.request("/v2/report_notifications","POST",e)}get(e){return this.client.request(`/v2/report_notifications/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/report_notifications/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/report_notifications/${s(e)}`,"DELETE",{})}},ee=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/resource_reports","GET",e)}create(e){return this.client.request("/v2/resource_reports","POST",e)}get(e){return this.client.request(`/v2/resource_reports/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/resource_reports/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/resource_reports/${s(e)}`,"DELETE",{})}getColumns(e){return this.client.request("/v2/resource_reports/columns","GET",e)}},te=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/resources","GET",e)}},se=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/saved_filters","GET",e)}create(e){return this.client.request("/v2/saved_filters","POST",e)}get(e){return this.client.request(`/v2/saved_filters/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/saved_filters/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/saved_filters/${s(e)}`,"DELETE",{})}},oe=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/scenario_models","GET",e)}create(e){return this.client.request("/v2/scenario_models","POST",e)}get(e){return this.client.request(`/v2/scenario_models/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/scenario_models/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/scenario_models/${s(e)}`,"DELETE",{})}},re=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/segments","GET",e)}create(e){return this.client.request("/v2/segments","POST",e)}get(e){return this.client.request(`/v2/segments/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/segments/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/segments/${s(e)}`,"DELETE",{})}},ne=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/tags","GET",e)}getValues(e,t){return this.client.request(`/v2/tags/${s(e)}/values`,"GET",t)}},ie=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/teams","GET",e)}create(e){return this.client.request("/v2/teams","POST",e)}get(e){return this.client.request(`/v2/teams/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/teams/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/teams/${s(e)}`,"DELETE",{})}getMembers(e,t){return this.client.request(`/v2/teams/${s(e)}/members`,"GET",t)}addTeamMember(e,t){return this.client.request(`/v2/teams/${s(e)}/members`,"POST",t)}removeTeamMember(e,t){return this.client.request(`/v2/teams/${s(e)}/members/${s(t)}`,"DELETE",{})}},ae=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/unit_costs","GET",e)}createExport(e){return this.client.request("/v2/unit_costs/data_exports","POST",e)}},pe=class{constructor(e){this.client=e}create(e){return this.client.request("/v2/user_feedback","POST",e)}},de=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/users","GET",e)}get(e){return this.client.request(`/v2/users/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/users/${s(e)}`,"PUT",t)}},he=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/virtual_tag_configs","GET",e)}create(e){return this.client.request("/v2/virtual_tag_configs","POST",e)}get(e){return this.client.request(`/v2/virtual_tag_configs/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/virtual_tag_configs/${s(e)}`,"DELETE",{})}getStatus(e){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/status`,"GET",{})}updateAsyncVirtualTagConfig(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/async`,"PUT",t)}getAsyncVirtualTagConfigStatus(e){return this.client.request(`/v2/virtual_tag_configs/async/${s(e)}`,"GET",{})}createValue(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/values`,"POST",t)}getValue(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/values/${s(t)}`,"GET",{})}deleteValue(e,t){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/values/${s(t)}`,"DELETE",{})}updateValue(e,t,n){return this.client.request(`/v2/virtual_tag_configs/${s(e)}/values/${s(t)}`,"PATCH",n)}},ue=class{constructor(e){this.client=e}list(e){return this.client.request("/v2/workspaces","GET",e)}create(e){return this.client.request("/v2/workspaces","POST",e)}get(e){return this.client.request(`/v2/workspaces/${s(e)}`,"GET",{})}update(e,t){return this.client.request(`/v2/workspaces/${s(e)}`,"PUT",t)}delete(e){return this.client.request(`/v2/workspaces/${s(e)}`,"DELETE",{})}};0&&(module.exports={APIV2Client,VantageAPIError,pathEncode});
2
2
  //# sourceMappingURL=index.js.map