@vantage-sh/vantage-client 2.16.0 → 2.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -64,13 +64,41 @@ interface paths {
64
64
  */
65
65
  get: operations["getAnnotations"];
66
66
  put?: never;
67
- post?: never;
67
+ /**
68
+ * Create an annotation
69
+ * @description Create an Annotation.
70
+ */
71
+ post: operations["createAnnotation"];
68
72
  delete?: never;
69
73
  options?: never;
70
74
  head?: never;
71
75
  patch?: never;
72
76
  trace?: never;
73
77
  };
78
+ "/annotations/{annotation_token}": {
79
+ parameters: {
80
+ query?: never;
81
+ header?: never;
82
+ path?: never;
83
+ cookie?: never;
84
+ };
85
+ get?: never;
86
+ /**
87
+ * Update an annotation
88
+ * @description Update an Annotation.
89
+ */
90
+ put: operations["updateAnnotation"];
91
+ post?: never;
92
+ /**
93
+ * Delete an annotation
94
+ * @description Delete an Annotation.
95
+ */
96
+ delete: operations["deleteAnnotation"];
97
+ options?: never;
98
+ head?: never;
99
+ patch?: never;
100
+ trace?: never;
101
+ };
74
102
  "/anomaly_alerts": {
75
103
  parameters: {
76
104
  query?: never;
@@ -2914,9 +2942,12 @@ interface components {
2914
2942
  links?: components["schemas"]["Links"];
2915
2943
  annotations: components["schemas"]["Annotation"][];
2916
2944
  };
2945
+ /** @description Annotation model */
2917
2946
  Annotation: {
2918
2947
  /** @description The unique token identifying the Annotation. */
2919
2948
  token: string;
2949
+ /** @description The title of the Annotation. */
2950
+ title: string;
2920
2951
  /** @description The tokens of the Reports associated with the Annotation. */
2921
2952
  report_tokens: string[];
2922
2953
  /**
@@ -2927,6 +2958,34 @@ interface components {
2927
2958
  /** @description The message of the Annotation. */
2928
2959
  message: string | null;
2929
2960
  };
2961
+ /** @description Create an Annotation. */
2962
+ createAnnotation: {
2963
+ /** @description The tokens of the Reports to annotate. */
2964
+ report_tokens: string[];
2965
+ /** @description The title of the Annotation. Defaults to a title generated from the first Report and date. */
2966
+ title?: string;
2967
+ /**
2968
+ * Format: date
2969
+ * @description The date of the Annotation. ISO 8601 formatted.
2970
+ */
2971
+ date: string;
2972
+ /** @description The message of the Annotation. */
2973
+ message: string;
2974
+ };
2975
+ /** @description Update an Annotation. */
2976
+ updateAnnotation: {
2977
+ /** @description The title of the Annotation. */
2978
+ title?: string;
2979
+ /**
2980
+ * Format: date
2981
+ * @description The date of the Annotation. ISO 8601 formatted.
2982
+ */
2983
+ date?: string;
2984
+ /** @description The message of the Annotation. */
2985
+ message?: string;
2986
+ /** @description The tokens of the Reports to associate with the Annotation. */
2987
+ report_tokens?: string[];
2988
+ };
2930
2989
  /** @description AuditLogs model */
2931
2990
  AuditLogs: {
2932
2991
  links?: components["schemas"]["Links"];
@@ -6763,9 +6822,9 @@ interface components {
6763
6822
  tag_key?: string;
6764
6823
  tag_keys?: string[];
6765
6824
  /** @description Whether the Tag is hidden from the Vantage UI. */
6766
- hidden?: boolean;
6825
+ hidden?: boolean | null;
6767
6826
  /** @description Whether the Tag is marked as preferred in the Vantage UI. */
6768
- preferred?: boolean;
6827
+ preferred?: boolean | null;
6769
6828
  };
6770
6829
  /** @description Teams model */
6771
6830
  Teams: {
@@ -7746,18 +7805,20 @@ interface operations {
7746
7805
  * },
7747
7806
  * "annotations": [
7748
7807
  * {
7749
- * "token": "issue_0857d3a1b8e72eb5",
7808
+ * "token": "issue_946526bd88c296c6",
7809
+ * "title": "Down-sized",
7750
7810
  * "report_tokens": [
7751
- * "rprt_5104f09dfdd8f77c",
7752
- * "rprt_a50b98b5775aa3b1"
7811
+ * "rprt_b03547330d3808a0",
7812
+ * "rprt_c4c97225bf1fa392"
7753
7813
  * ],
7754
7814
  * "date": "2026-08-12",
7755
7815
  * "message": "Infrastructure migration"
7756
7816
  * },
7757
7817
  * {
7758
- * "token": "issue_facf24a6691013de",
7818
+ * "token": "issue_56063755b6a82997",
7819
+ * "title": "Persistent",
7759
7820
  * "report_tokens": [
7760
- * "rprt_b298e35a97aadda5"
7821
+ * "rprt_5649e387dc43ca2d"
7761
7822
  * ],
7762
7823
  * "date": "2026-08-10",
7763
7824
  * "message": "Pricing update"
@@ -7770,6 +7831,194 @@ interface operations {
7770
7831
  };
7771
7832
  };
7772
7833
  };
7834
+ createAnnotation: {
7835
+ parameters: {
7836
+ query?: never;
7837
+ header?: never;
7838
+ path?: never;
7839
+ cookie?: never;
7840
+ };
7841
+ requestBody: {
7842
+ content: {
7843
+ "application/json": components["schemas"]["createAnnotation"];
7844
+ };
7845
+ };
7846
+ responses: {
7847
+ /** @description Annotation created successfully. */
7848
+ 201: {
7849
+ headers: {
7850
+ [name: string]: unknown;
7851
+ };
7852
+ content: {
7853
+ /**
7854
+ * @example {
7855
+ * "token": "issue_4b05d8f17aea0580",
7856
+ * "title": "Infrastructure migration completed",
7857
+ * "report_tokens": [
7858
+ * "rprt_5b72ee3954cf82e9",
7859
+ * "rprt_3ec37e01a019b9a6"
7860
+ * ],
7861
+ * "date": "2026-08-12",
7862
+ * "message": "Infrastructure migration completed"
7863
+ * }
7864
+ */
7865
+ "application/json": components["schemas"]["Annotation"];
7866
+ };
7867
+ };
7868
+ /** @description BadRequest */
7869
+ 400: {
7870
+ headers: {
7871
+ [name: string]: unknown;
7872
+ };
7873
+ content: {
7874
+ "application/json": components["schemas"]["Errors"];
7875
+ };
7876
+ };
7877
+ /** @description Forbidden */
7878
+ 403: {
7879
+ headers: {
7880
+ [name: string]: unknown;
7881
+ };
7882
+ content: {
7883
+ "application/json": components["schemas"]["Errors"];
7884
+ };
7885
+ };
7886
+ /** @description NotFound */
7887
+ 404: {
7888
+ headers: {
7889
+ [name: string]: unknown;
7890
+ };
7891
+ content: {
7892
+ "application/json": components["schemas"]["Errors"];
7893
+ };
7894
+ };
7895
+ /** @description UnprocessableEntity */
7896
+ 422: {
7897
+ headers: {
7898
+ [name: string]: unknown;
7899
+ };
7900
+ content: {
7901
+ "application/json": components["schemas"]["Errors"];
7902
+ };
7903
+ };
7904
+ };
7905
+ };
7906
+ updateAnnotation: {
7907
+ parameters: {
7908
+ query?: never;
7909
+ header?: never;
7910
+ path: {
7911
+ /** @description The token of the Annotation. */
7912
+ annotation_token: string;
7913
+ };
7914
+ cookie?: never;
7915
+ };
7916
+ requestBody: {
7917
+ content: {
7918
+ "application/json": components["schemas"]["updateAnnotation"];
7919
+ };
7920
+ };
7921
+ responses: {
7922
+ /** @description Annotation updated successfully. */
7923
+ 200: {
7924
+ headers: {
7925
+ [name: string]: unknown;
7926
+ };
7927
+ content: {
7928
+ /**
7929
+ * @example {
7930
+ * "token": "issue_f05d884fed1221e5",
7931
+ * "title": "Migration rescheduled",
7932
+ * "report_tokens": [
7933
+ * "rprt_7ed0e557ae72559d",
7934
+ * "rprt_3f5eebef4caea173"
7935
+ * ],
7936
+ * "date": "2026-08-14",
7937
+ * "message": "Infrastructure migration rescheduled"
7938
+ * }
7939
+ */
7940
+ "application/json": components["schemas"]["Annotation"];
7941
+ };
7942
+ };
7943
+ /** @description BadRequest */
7944
+ 400: {
7945
+ headers: {
7946
+ [name: string]: unknown;
7947
+ };
7948
+ content: {
7949
+ "application/json": components["schemas"]["Errors"];
7950
+ };
7951
+ };
7952
+ /** @description Forbidden */
7953
+ 403: {
7954
+ headers: {
7955
+ [name: string]: unknown;
7956
+ };
7957
+ content: {
7958
+ "application/json": components["schemas"]["Errors"];
7959
+ };
7960
+ };
7961
+ /** @description NotFound */
7962
+ 404: {
7963
+ headers: {
7964
+ [name: string]: unknown;
7965
+ };
7966
+ content: {
7967
+ "application/json": components["schemas"]["Errors"];
7968
+ };
7969
+ };
7970
+ /** @description UnprocessableEntity */
7971
+ 422: {
7972
+ headers: {
7973
+ [name: string]: unknown;
7974
+ };
7975
+ content: {
7976
+ "application/json": components["schemas"]["Errors"];
7977
+ };
7978
+ };
7979
+ };
7980
+ };
7981
+ deleteAnnotation: {
7982
+ parameters: {
7983
+ query?: never;
7984
+ header?: never;
7985
+ path: {
7986
+ /** @description The token of the Annotation. */
7987
+ annotation_token: string;
7988
+ };
7989
+ cookie?: never;
7990
+ };
7991
+ requestBody?: never;
7992
+ responses: {
7993
+ /** @description Annotation deleted successfully. */
7994
+ 204: {
7995
+ headers: {
7996
+ [name: string]: unknown;
7997
+ };
7998
+ content: {
7999
+ "application/json": components["schemas"]["Annotation"];
8000
+ };
8001
+ };
8002
+ /** @description Forbidden */
8003
+ 403: {
8004
+ headers: {
8005
+ [name: string]: unknown;
8006
+ };
8007
+ content: {
8008
+ "application/json": components["schemas"]["Errors"];
8009
+ };
8010
+ };
8011
+ /** @description NotFound */
8012
+ 404: {
8013
+ headers: {
8014
+ [name: string]: unknown;
8015
+ };
8016
+ content: {
8017
+ "application/json": components["schemas"]["Errors"];
8018
+ };
8019
+ };
8020
+ };
8021
+ };
7773
8022
  getAnomalyAlerts: {
7774
8023
  parameters: {
7775
8024
  query?: {
@@ -18872,6 +19121,26 @@ type GetAnnotationsRequest = RequestBodyForPathAndMethod<"/v2/annotations", "GET
18872
19121
  * Response type for Get all annotations
18873
19122
  */
18874
19123
  type GetAnnotationsResponse = ResponseBodyForPathAndMethod<"/v2/annotations", "GET">;
19124
+ /**
19125
+ * Create an Annotation.
19126
+ */
19127
+ type CreateAnnotationRequest = RequestBodyForPathAndMethod<"/v2/annotations", "POST">;
19128
+ /**
19129
+ * Response type for Create an annotation
19130
+ */
19131
+ type CreateAnnotationResponse = ResponseBodyForPathAndMethod<"/v2/annotations", "POST">;
19132
+ /**
19133
+ * Update an Annotation.
19134
+ */
19135
+ type UpdateAnnotationRequest = RequestBodyForPathAndMethod<`/v2/annotations/${NoSlashString}`, "PUT">;
19136
+ /**
19137
+ * Response type for Update an annotation
19138
+ */
19139
+ type UpdateAnnotationResponse = ResponseBodyForPathAndMethod<`/v2/annotations/${NoSlashString}`, "PUT">;
19140
+ /**
19141
+ * Response type for Delete an annotation
19142
+ */
19143
+ type DeleteAnnotationResponse = ResponseBodyForPathAndMethod<`/v2/annotations/${NoSlashString}`, "DELETE">;
18875
19144
  /**
18876
19145
  * Return all Anomaly Alerts that the current API token has access to.
18877
19146
  */
@@ -20393,6 +20662,42 @@ declare class AnnotationsApi<NeverThrow extends boolean> {
20393
20662
  links?: components["schemas"]["Links"];
20394
20663
  annotations: components["schemas"]["Annotation"][];
20395
20664
  }>;
20665
+ /**
20666
+ * Create an Annotation.
20667
+ */
20668
+ create(body: CreateAnnotationRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20669
+ token: string;
20670
+ title: string;
20671
+ report_tokens: string[];
20672
+ date: string | null;
20673
+ message: string | null;
20674
+ }, null] : {
20675
+ token: string;
20676
+ title: string;
20677
+ report_tokens: string[];
20678
+ date: string | null;
20679
+ message: string | null;
20680
+ }>;
20681
+ /**
20682
+ * Update an Annotation.
20683
+ */
20684
+ update(annotationToken: string, body: UpdateAnnotationRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
20685
+ token: string;
20686
+ title: string;
20687
+ report_tokens: string[];
20688
+ date: string | null;
20689
+ message: string | null;
20690
+ }, null] : {
20691
+ token: string;
20692
+ title: string;
20693
+ report_tokens: string[];
20694
+ date: string | null;
20695
+ message: string | null;
20696
+ }>;
20697
+ /**
20698
+ * Delete an Annotation.
20699
+ */
20700
+ delete(annotationToken: string): Promise<NeverThrow extends true ? [null, VantageAPIError] | [void, null] : void>;
20396
20701
  }
20397
20702
  declare class AnomalyAlertsApi<NeverThrow extends boolean> {
20398
20703
  private client;
@@ -24227,4 +24532,4 @@ declare class BaseClient<NeverThrow extends boolean> {
24227
24532
  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>>;
24228
24533
  }
24229
24534
 
24230
- 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 };
24535
+ export { APIV2Client, type AddTeamMemberRequest, type AddTeamMemberResponse, type CreateAccessGrantRequest, type CreateAccessGrantResponse, type CreateAnnotationRequest, type CreateAnnotationResponse, 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 DeleteAnnotationResponse, 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 UpdateAnnotationRequest, type UpdateAnnotationResponse, 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 };