@vantage-sh/vantage-client 2.13.0 → 2.14.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 +100 -7
- package/dist/index.d.ts +100 -7
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -483,7 +483,7 @@ interface paths {
|
|
|
483
483
|
post?: never;
|
|
484
484
|
/**
|
|
485
485
|
* Delete business metric values
|
|
486
|
-
* @description Deletes Business Metric values (historical or forecasted unit metrics).
|
|
486
|
+
* @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
487
|
*/
|
|
488
488
|
delete: operations["deleteBusinessMetricValues"];
|
|
489
489
|
options?: never;
|
|
@@ -7879,6 +7879,10 @@ interface operations {
|
|
|
7879
7879
|
page?: number;
|
|
7880
7880
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
7881
7881
|
limit?: number;
|
|
7882
|
+
/** @description Filter by workspace token. */
|
|
7883
|
+
workspace_token?: string;
|
|
7884
|
+
/** @description Filter by Cost Report token. */
|
|
7885
|
+
cost_report_token?: string;
|
|
7882
7886
|
};
|
|
7883
7887
|
header?: never;
|
|
7884
7888
|
path?: never;
|
|
@@ -8685,6 +8689,10 @@ interface operations {
|
|
|
8685
8689
|
page?: number;
|
|
8686
8690
|
/** @description The number of results to return. The maximum is 1000. */
|
|
8687
8691
|
limit?: number;
|
|
8692
|
+
/** @description Filter by workspace token. */
|
|
8693
|
+
workspace_token?: string;
|
|
8694
|
+
/** @description Filter by budget token. */
|
|
8695
|
+
budget_token?: string;
|
|
8688
8696
|
};
|
|
8689
8697
|
header?: never;
|
|
8690
8698
|
path?: never;
|
|
@@ -8835,6 +8843,10 @@ interface operations {
|
|
|
8835
8843
|
page?: number;
|
|
8836
8844
|
/** @description The number of results to return. The maximum is 1000. */
|
|
8837
8845
|
limit?: number;
|
|
8846
|
+
/** @description Search budgets by name. */
|
|
8847
|
+
q?: string;
|
|
8848
|
+
/** @description The workspace token of the budgets to return. */
|
|
8849
|
+
workspace_token?: string;
|
|
8838
8850
|
};
|
|
8839
8851
|
header?: never;
|
|
8840
8852
|
path?: never;
|
|
@@ -9182,6 +9194,8 @@ interface operations {
|
|
|
9182
9194
|
page?: number;
|
|
9183
9195
|
/** @description The amount of results to return. The maximum is 5000. */
|
|
9184
9196
|
limit?: number;
|
|
9197
|
+
/** @description Search business metrics by title. */
|
|
9198
|
+
q?: string;
|
|
9185
9199
|
};
|
|
9186
9200
|
header?: never;
|
|
9187
9201
|
path?: never;
|
|
@@ -9833,6 +9847,10 @@ interface operations {
|
|
|
9833
9847
|
page?: number;
|
|
9834
9848
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
9835
9849
|
limit?: number;
|
|
9850
|
+
/** @description Filter by workspace token. */
|
|
9851
|
+
workspace_token?: string;
|
|
9852
|
+
/** @description Search canvases by title. */
|
|
9853
|
+
q?: string;
|
|
9836
9854
|
};
|
|
9837
9855
|
header?: never;
|
|
9838
9856
|
path?: never;
|
|
@@ -10101,7 +10119,12 @@ interface operations {
|
|
|
10101
10119
|
};
|
|
10102
10120
|
getCostAlerts: {
|
|
10103
10121
|
parameters: {
|
|
10104
|
-
query?:
|
|
10122
|
+
query?: {
|
|
10123
|
+
/** @description Search cost alerts by title. */
|
|
10124
|
+
q?: string;
|
|
10125
|
+
/** @description The workspace token of the cost alerts to return. */
|
|
10126
|
+
workspace_token?: string;
|
|
10127
|
+
};
|
|
10105
10128
|
header?: never;
|
|
10106
10129
|
path?: never;
|
|
10107
10130
|
cookie?: never;
|
|
@@ -10419,6 +10442,10 @@ interface operations {
|
|
|
10419
10442
|
limit?: number;
|
|
10420
10443
|
/** @description The token for the Folder you would like to fetch Reports from. */
|
|
10421
10444
|
folder_token?: string;
|
|
10445
|
+
/** @description Search cost reports by title. */
|
|
10446
|
+
q?: string;
|
|
10447
|
+
/** @description The workspace token of the cost reports to return. */
|
|
10448
|
+
workspace_token?: string;
|
|
10422
10449
|
};
|
|
10423
10450
|
header?: never;
|
|
10424
10451
|
path?: never;
|
|
@@ -11106,6 +11133,10 @@ interface operations {
|
|
|
11106
11133
|
page?: number;
|
|
11107
11134
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
11108
11135
|
limit?: number;
|
|
11136
|
+
/** @description Search dashboards by title. */
|
|
11137
|
+
q?: string;
|
|
11138
|
+
/** @description The workspace token of the dashboards to return. */
|
|
11139
|
+
workspace_token?: string;
|
|
11109
11140
|
};
|
|
11110
11141
|
header?: never;
|
|
11111
11142
|
path?: never;
|
|
@@ -11601,6 +11632,10 @@ interface operations {
|
|
|
11601
11632
|
page?: number;
|
|
11602
11633
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
11603
11634
|
limit?: number;
|
|
11635
|
+
/** @description Search financial commitment reports by title. */
|
|
11636
|
+
q?: string;
|
|
11637
|
+
/** @description The workspace token of the financial commitment reports to return. */
|
|
11638
|
+
workspace_token?: string;
|
|
11604
11639
|
};
|
|
11605
11640
|
header?: never;
|
|
11606
11641
|
path?: never;
|
|
@@ -11903,6 +11938,10 @@ interface operations {
|
|
|
11903
11938
|
limit?: number;
|
|
11904
11939
|
/** @description Filter by folder type. */
|
|
11905
11940
|
type?: "CostFolder" | "ProviderResourceFolder";
|
|
11941
|
+
/** @description Search folders by title. */
|
|
11942
|
+
q?: string;
|
|
11943
|
+
/** @description The workspace token of the folders to return. */
|
|
11944
|
+
workspace_token?: string;
|
|
11906
11945
|
};
|
|
11907
11946
|
header?: never;
|
|
11908
11947
|
path?: never;
|
|
@@ -12888,6 +12927,10 @@ interface operations {
|
|
|
12888
12927
|
page?: number;
|
|
12889
12928
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
12890
12929
|
limit?: number;
|
|
12930
|
+
/** @description Filter by workspace token. */
|
|
12931
|
+
workspace_token?: string;
|
|
12932
|
+
/** @description Search Kubernetes efficiency reports by title. */
|
|
12933
|
+
q?: string;
|
|
12891
12934
|
};
|
|
12892
12935
|
header?: never;
|
|
12893
12936
|
path?: never;
|
|
@@ -13674,6 +13717,8 @@ interface operations {
|
|
|
13674
13717
|
query?: {
|
|
13675
13718
|
/** @description A search query to filter NetworkFlowReports by title. */
|
|
13676
13719
|
q?: string;
|
|
13720
|
+
/** @description Filter by workspace token. */
|
|
13721
|
+
workspace_token?: string;
|
|
13677
13722
|
/** @description The page of results to return. */
|
|
13678
13723
|
page?: number;
|
|
13679
13724
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
@@ -14494,6 +14539,10 @@ interface operations {
|
|
|
14494
14539
|
page?: number;
|
|
14495
14540
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
14496
14541
|
limit?: number;
|
|
14542
|
+
/** @description Filter by workspace token. */
|
|
14543
|
+
workspace_token?: string;
|
|
14544
|
+
/** @description Search recommendation views by title. */
|
|
14545
|
+
q?: string;
|
|
14497
14546
|
};
|
|
14498
14547
|
header?: never;
|
|
14499
14548
|
path?: never;
|
|
@@ -15058,6 +15107,10 @@ interface operations {
|
|
|
15058
15107
|
page?: number;
|
|
15059
15108
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
15060
15109
|
limit?: number;
|
|
15110
|
+
/** @description Filter by workspace token. */
|
|
15111
|
+
workspace_token?: string;
|
|
15112
|
+
/** @description Search report notifications by title. */
|
|
15113
|
+
q?: string;
|
|
15061
15114
|
};
|
|
15062
15115
|
header?: never;
|
|
15063
15116
|
path?: never;
|
|
@@ -15372,6 +15425,10 @@ interface operations {
|
|
|
15372
15425
|
page?: number;
|
|
15373
15426
|
/** @description The number of results to return. The maximum is 1000. */
|
|
15374
15427
|
limit?: number;
|
|
15428
|
+
/** @description Filter by workspace token. */
|
|
15429
|
+
workspace_token?: string;
|
|
15430
|
+
/** @description A search query to filter ResourceReports by title. */
|
|
15431
|
+
q?: string;
|
|
15375
15432
|
};
|
|
15376
15433
|
header?: never;
|
|
15377
15434
|
path?: never;
|
|
@@ -15859,6 +15916,10 @@ interface operations {
|
|
|
15859
15916
|
page?: number;
|
|
15860
15917
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
15861
15918
|
limit?: number;
|
|
15919
|
+
/** @description Search saved filters by title. */
|
|
15920
|
+
q?: string;
|
|
15921
|
+
/** @description The workspace token of the saved filters to return. */
|
|
15922
|
+
workspace_token?: string;
|
|
15862
15923
|
};
|
|
15863
15924
|
header?: never;
|
|
15864
15925
|
path?: never;
|
|
@@ -16379,6 +16440,10 @@ interface operations {
|
|
|
16379
16440
|
page?: number;
|
|
16380
16441
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
16381
16442
|
limit?: number;
|
|
16443
|
+
/** @description Search segments by title. */
|
|
16444
|
+
q?: string;
|
|
16445
|
+
/** @description The workspace token of the segments to return. */
|
|
16446
|
+
workspace_token?: string;
|
|
16382
16447
|
};
|
|
16383
16448
|
header?: never;
|
|
16384
16449
|
path?: never;
|
|
@@ -16837,6 +16902,10 @@ interface operations {
|
|
|
16837
16902
|
page?: number;
|
|
16838
16903
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
16839
16904
|
limit?: number;
|
|
16905
|
+
/** @description Search teams by name. */
|
|
16906
|
+
q?: string;
|
|
16907
|
+
/** @description Filter by workspace token. */
|
|
16908
|
+
workspace_token?: string;
|
|
16840
16909
|
};
|
|
16841
16910
|
header?: never;
|
|
16842
16911
|
path?: never;
|
|
@@ -18440,6 +18509,8 @@ interface operations {
|
|
|
18440
18509
|
page?: number;
|
|
18441
18510
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
18442
18511
|
limit?: number;
|
|
18512
|
+
/** @description Search workspaces by name. */
|
|
18513
|
+
q?: string;
|
|
18443
18514
|
};
|
|
18444
18515
|
header?: never;
|
|
18445
18516
|
path?: never;
|
|
@@ -18938,7 +19009,7 @@ type GetBusinessMetricValuesRequest = RequestBodyForPathAndMethod<`/v2/business_
|
|
|
18938
19009
|
*/
|
|
18939
19010
|
type GetBusinessMetricValuesResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/values`, "GET">;
|
|
18940
19011
|
/**
|
|
18941
|
-
* Deletes Business Metric values (historical or forecasted unit metrics).
|
|
19012
|
+
* 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
19013
|
*/
|
|
18943
19014
|
type DeleteBusinessMetricValuesRequest = RequestBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/values`, "DELETE">;
|
|
18944
19015
|
/**
|
|
@@ -19005,6 +19076,10 @@ type GetCostAlertEventsResponse = ResponseBodyForPathAndMethod<`/v2/cost_alerts/
|
|
|
19005
19076
|
* Response type for Get cost alert event by token
|
|
19006
19077
|
*/
|
|
19007
19078
|
type GetCostAlertEventResponse = ResponseBodyForPathAndMethod<`/v2/cost_alerts/${NoSlashString}/events/${NoSlashString}`, "GET">;
|
|
19079
|
+
/**
|
|
19080
|
+
* List all Cost Alerts
|
|
19081
|
+
*/
|
|
19082
|
+
type GetCostAlertsRequest = RequestBodyForPathAndMethod<"/v2/cost_alerts", "GET">;
|
|
19008
19083
|
/**
|
|
19009
19084
|
* Response type for Get all cost alerts
|
|
19010
19085
|
*/
|
|
@@ -20363,10 +20438,18 @@ declare class AuditLogsApi<NeverThrow extends boolean> {
|
|
|
20363
20438
|
*/
|
|
20364
20439
|
list(body?: GetAuditLogsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
20365
20440
|
links?: components["schemas"]["Links"];
|
|
20366
|
-
audit_logs:
|
|
20441
|
+
audit_logs:
|
|
20442
|
+
/**
|
|
20443
|
+
* Create a Canvas.
|
|
20444
|
+
*/
|
|
20445
|
+
components["schemas"]["AuditLog"][];
|
|
20367
20446
|
}, null] : {
|
|
20368
20447
|
links?: components["schemas"]["Links"];
|
|
20369
|
-
audit_logs:
|
|
20448
|
+
audit_logs:
|
|
20449
|
+
/**
|
|
20450
|
+
* Create a Canvas.
|
|
20451
|
+
*/
|
|
20452
|
+
components["schemas"]["AuditLog"][];
|
|
20370
20453
|
}>;
|
|
20371
20454
|
/**
|
|
20372
20455
|
* Return a specific AuditLog.
|
|
@@ -20903,7 +20986,7 @@ declare class BusinessMetricsApi<NeverThrow extends boolean> {
|
|
|
20903
20986
|
values: components["schemas"]["BusinessMetricValue"][];
|
|
20904
20987
|
}>;
|
|
20905
20988
|
/**
|
|
20906
|
-
* Deletes Business Metric values (historical or forecasted unit metrics).
|
|
20989
|
+
* 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
20990
|
*/
|
|
20908
20991
|
deleteValues(businessMetricToken: string, body?: DeleteBusinessMetricValuesRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
20909
20992
|
deleted_count: number;
|
|
@@ -21024,6 +21107,16 @@ declare class CanvasesApi<NeverThrow extends boolean> {
|
|
|
21024
21107
|
declare class CostAlertsApi<NeverThrow extends boolean> {
|
|
21025
21108
|
private client;
|
|
21026
21109
|
constructor(client: BaseClient<NeverThrow>);
|
|
21110
|
+
/**
|
|
21111
|
+
* List all Cost Alerts
|
|
21112
|
+
*/
|
|
21113
|
+
list(body?: GetCostAlertsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
21114
|
+
links?: components["schemas"]["Links"];
|
|
21115
|
+
cost_alerts: components["schemas"]["CostAlert"][];
|
|
21116
|
+
}, null] : {
|
|
21117
|
+
links?: components["schemas"]["Links"];
|
|
21118
|
+
cost_alerts: components["schemas"]["CostAlert"][];
|
|
21119
|
+
}>;
|
|
21027
21120
|
/**
|
|
21028
21121
|
* Create a new Cost Alert
|
|
21029
21122
|
*/
|
|
@@ -24018,4 +24111,4 @@ declare class BaseClient<NeverThrow extends boolean> {
|
|
|
24018
24111
|
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
24112
|
}
|
|
24020
24113
|
|
|
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 };
|
|
24114
|
+
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 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.d.ts
CHANGED
|
@@ -483,7 +483,7 @@ interface paths {
|
|
|
483
483
|
post?: never;
|
|
484
484
|
/**
|
|
485
485
|
* Delete business metric values
|
|
486
|
-
* @description Deletes Business Metric values (historical or forecasted unit metrics).
|
|
486
|
+
* @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
487
|
*/
|
|
488
488
|
delete: operations["deleteBusinessMetricValues"];
|
|
489
489
|
options?: never;
|
|
@@ -7879,6 +7879,10 @@ interface operations {
|
|
|
7879
7879
|
page?: number;
|
|
7880
7880
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
7881
7881
|
limit?: number;
|
|
7882
|
+
/** @description Filter by workspace token. */
|
|
7883
|
+
workspace_token?: string;
|
|
7884
|
+
/** @description Filter by Cost Report token. */
|
|
7885
|
+
cost_report_token?: string;
|
|
7882
7886
|
};
|
|
7883
7887
|
header?: never;
|
|
7884
7888
|
path?: never;
|
|
@@ -8685,6 +8689,10 @@ interface operations {
|
|
|
8685
8689
|
page?: number;
|
|
8686
8690
|
/** @description The number of results to return. The maximum is 1000. */
|
|
8687
8691
|
limit?: number;
|
|
8692
|
+
/** @description Filter by workspace token. */
|
|
8693
|
+
workspace_token?: string;
|
|
8694
|
+
/** @description Filter by budget token. */
|
|
8695
|
+
budget_token?: string;
|
|
8688
8696
|
};
|
|
8689
8697
|
header?: never;
|
|
8690
8698
|
path?: never;
|
|
@@ -8835,6 +8843,10 @@ interface operations {
|
|
|
8835
8843
|
page?: number;
|
|
8836
8844
|
/** @description The number of results to return. The maximum is 1000. */
|
|
8837
8845
|
limit?: number;
|
|
8846
|
+
/** @description Search budgets by name. */
|
|
8847
|
+
q?: string;
|
|
8848
|
+
/** @description The workspace token of the budgets to return. */
|
|
8849
|
+
workspace_token?: string;
|
|
8838
8850
|
};
|
|
8839
8851
|
header?: never;
|
|
8840
8852
|
path?: never;
|
|
@@ -9182,6 +9194,8 @@ interface operations {
|
|
|
9182
9194
|
page?: number;
|
|
9183
9195
|
/** @description The amount of results to return. The maximum is 5000. */
|
|
9184
9196
|
limit?: number;
|
|
9197
|
+
/** @description Search business metrics by title. */
|
|
9198
|
+
q?: string;
|
|
9185
9199
|
};
|
|
9186
9200
|
header?: never;
|
|
9187
9201
|
path?: never;
|
|
@@ -9833,6 +9847,10 @@ interface operations {
|
|
|
9833
9847
|
page?: number;
|
|
9834
9848
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
9835
9849
|
limit?: number;
|
|
9850
|
+
/** @description Filter by workspace token. */
|
|
9851
|
+
workspace_token?: string;
|
|
9852
|
+
/** @description Search canvases by title. */
|
|
9853
|
+
q?: string;
|
|
9836
9854
|
};
|
|
9837
9855
|
header?: never;
|
|
9838
9856
|
path?: never;
|
|
@@ -10101,7 +10119,12 @@ interface operations {
|
|
|
10101
10119
|
};
|
|
10102
10120
|
getCostAlerts: {
|
|
10103
10121
|
parameters: {
|
|
10104
|
-
query?:
|
|
10122
|
+
query?: {
|
|
10123
|
+
/** @description Search cost alerts by title. */
|
|
10124
|
+
q?: string;
|
|
10125
|
+
/** @description The workspace token of the cost alerts to return. */
|
|
10126
|
+
workspace_token?: string;
|
|
10127
|
+
};
|
|
10105
10128
|
header?: never;
|
|
10106
10129
|
path?: never;
|
|
10107
10130
|
cookie?: never;
|
|
@@ -10419,6 +10442,10 @@ interface operations {
|
|
|
10419
10442
|
limit?: number;
|
|
10420
10443
|
/** @description The token for the Folder you would like to fetch Reports from. */
|
|
10421
10444
|
folder_token?: string;
|
|
10445
|
+
/** @description Search cost reports by title. */
|
|
10446
|
+
q?: string;
|
|
10447
|
+
/** @description The workspace token of the cost reports to return. */
|
|
10448
|
+
workspace_token?: string;
|
|
10422
10449
|
};
|
|
10423
10450
|
header?: never;
|
|
10424
10451
|
path?: never;
|
|
@@ -11106,6 +11133,10 @@ interface operations {
|
|
|
11106
11133
|
page?: number;
|
|
11107
11134
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
11108
11135
|
limit?: number;
|
|
11136
|
+
/** @description Search dashboards by title. */
|
|
11137
|
+
q?: string;
|
|
11138
|
+
/** @description The workspace token of the dashboards to return. */
|
|
11139
|
+
workspace_token?: string;
|
|
11109
11140
|
};
|
|
11110
11141
|
header?: never;
|
|
11111
11142
|
path?: never;
|
|
@@ -11601,6 +11632,10 @@ interface operations {
|
|
|
11601
11632
|
page?: number;
|
|
11602
11633
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
11603
11634
|
limit?: number;
|
|
11635
|
+
/** @description Search financial commitment reports by title. */
|
|
11636
|
+
q?: string;
|
|
11637
|
+
/** @description The workspace token of the financial commitment reports to return. */
|
|
11638
|
+
workspace_token?: string;
|
|
11604
11639
|
};
|
|
11605
11640
|
header?: never;
|
|
11606
11641
|
path?: never;
|
|
@@ -11903,6 +11938,10 @@ interface operations {
|
|
|
11903
11938
|
limit?: number;
|
|
11904
11939
|
/** @description Filter by folder type. */
|
|
11905
11940
|
type?: "CostFolder" | "ProviderResourceFolder";
|
|
11941
|
+
/** @description Search folders by title. */
|
|
11942
|
+
q?: string;
|
|
11943
|
+
/** @description The workspace token of the folders to return. */
|
|
11944
|
+
workspace_token?: string;
|
|
11906
11945
|
};
|
|
11907
11946
|
header?: never;
|
|
11908
11947
|
path?: never;
|
|
@@ -12888,6 +12927,10 @@ interface operations {
|
|
|
12888
12927
|
page?: number;
|
|
12889
12928
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
12890
12929
|
limit?: number;
|
|
12930
|
+
/** @description Filter by workspace token. */
|
|
12931
|
+
workspace_token?: string;
|
|
12932
|
+
/** @description Search Kubernetes efficiency reports by title. */
|
|
12933
|
+
q?: string;
|
|
12891
12934
|
};
|
|
12892
12935
|
header?: never;
|
|
12893
12936
|
path?: never;
|
|
@@ -13674,6 +13717,8 @@ interface operations {
|
|
|
13674
13717
|
query?: {
|
|
13675
13718
|
/** @description A search query to filter NetworkFlowReports by title. */
|
|
13676
13719
|
q?: string;
|
|
13720
|
+
/** @description Filter by workspace token. */
|
|
13721
|
+
workspace_token?: string;
|
|
13677
13722
|
/** @description The page of results to return. */
|
|
13678
13723
|
page?: number;
|
|
13679
13724
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
@@ -14494,6 +14539,10 @@ interface operations {
|
|
|
14494
14539
|
page?: number;
|
|
14495
14540
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
14496
14541
|
limit?: number;
|
|
14542
|
+
/** @description Filter by workspace token. */
|
|
14543
|
+
workspace_token?: string;
|
|
14544
|
+
/** @description Search recommendation views by title. */
|
|
14545
|
+
q?: string;
|
|
14497
14546
|
};
|
|
14498
14547
|
header?: never;
|
|
14499
14548
|
path?: never;
|
|
@@ -15058,6 +15107,10 @@ interface operations {
|
|
|
15058
15107
|
page?: number;
|
|
15059
15108
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
15060
15109
|
limit?: number;
|
|
15110
|
+
/** @description Filter by workspace token. */
|
|
15111
|
+
workspace_token?: string;
|
|
15112
|
+
/** @description Search report notifications by title. */
|
|
15113
|
+
q?: string;
|
|
15061
15114
|
};
|
|
15062
15115
|
header?: never;
|
|
15063
15116
|
path?: never;
|
|
@@ -15372,6 +15425,10 @@ interface operations {
|
|
|
15372
15425
|
page?: number;
|
|
15373
15426
|
/** @description The number of results to return. The maximum is 1000. */
|
|
15374
15427
|
limit?: number;
|
|
15428
|
+
/** @description Filter by workspace token. */
|
|
15429
|
+
workspace_token?: string;
|
|
15430
|
+
/** @description A search query to filter ResourceReports by title. */
|
|
15431
|
+
q?: string;
|
|
15375
15432
|
};
|
|
15376
15433
|
header?: never;
|
|
15377
15434
|
path?: never;
|
|
@@ -15859,6 +15916,10 @@ interface operations {
|
|
|
15859
15916
|
page?: number;
|
|
15860
15917
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
15861
15918
|
limit?: number;
|
|
15919
|
+
/** @description Search saved filters by title. */
|
|
15920
|
+
q?: string;
|
|
15921
|
+
/** @description The workspace token of the saved filters to return. */
|
|
15922
|
+
workspace_token?: string;
|
|
15862
15923
|
};
|
|
15863
15924
|
header?: never;
|
|
15864
15925
|
path?: never;
|
|
@@ -16379,6 +16440,10 @@ interface operations {
|
|
|
16379
16440
|
page?: number;
|
|
16380
16441
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
16381
16442
|
limit?: number;
|
|
16443
|
+
/** @description Search segments by title. */
|
|
16444
|
+
q?: string;
|
|
16445
|
+
/** @description The workspace token of the segments to return. */
|
|
16446
|
+
workspace_token?: string;
|
|
16382
16447
|
};
|
|
16383
16448
|
header?: never;
|
|
16384
16449
|
path?: never;
|
|
@@ -16837,6 +16902,10 @@ interface operations {
|
|
|
16837
16902
|
page?: number;
|
|
16838
16903
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
16839
16904
|
limit?: number;
|
|
16905
|
+
/** @description Search teams by name. */
|
|
16906
|
+
q?: string;
|
|
16907
|
+
/** @description Filter by workspace token. */
|
|
16908
|
+
workspace_token?: string;
|
|
16840
16909
|
};
|
|
16841
16910
|
header?: never;
|
|
16842
16911
|
path?: never;
|
|
@@ -18440,6 +18509,8 @@ interface operations {
|
|
|
18440
18509
|
page?: number;
|
|
18441
18510
|
/** @description The amount of results to return. The maximum is 1000. */
|
|
18442
18511
|
limit?: number;
|
|
18512
|
+
/** @description Search workspaces by name. */
|
|
18513
|
+
q?: string;
|
|
18443
18514
|
};
|
|
18444
18515
|
header?: never;
|
|
18445
18516
|
path?: never;
|
|
@@ -18938,7 +19009,7 @@ type GetBusinessMetricValuesRequest = RequestBodyForPathAndMethod<`/v2/business_
|
|
|
18938
19009
|
*/
|
|
18939
19010
|
type GetBusinessMetricValuesResponse = ResponseBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/values`, "GET">;
|
|
18940
19011
|
/**
|
|
18941
|
-
* Deletes Business Metric values (historical or forecasted unit metrics).
|
|
19012
|
+
* 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
19013
|
*/
|
|
18943
19014
|
type DeleteBusinessMetricValuesRequest = RequestBodyForPathAndMethod<`/v2/business_metrics/${NoSlashString}/values`, "DELETE">;
|
|
18944
19015
|
/**
|
|
@@ -19005,6 +19076,10 @@ type GetCostAlertEventsResponse = ResponseBodyForPathAndMethod<`/v2/cost_alerts/
|
|
|
19005
19076
|
* Response type for Get cost alert event by token
|
|
19006
19077
|
*/
|
|
19007
19078
|
type GetCostAlertEventResponse = ResponseBodyForPathAndMethod<`/v2/cost_alerts/${NoSlashString}/events/${NoSlashString}`, "GET">;
|
|
19079
|
+
/**
|
|
19080
|
+
* List all Cost Alerts
|
|
19081
|
+
*/
|
|
19082
|
+
type GetCostAlertsRequest = RequestBodyForPathAndMethod<"/v2/cost_alerts", "GET">;
|
|
19008
19083
|
/**
|
|
19009
19084
|
* Response type for Get all cost alerts
|
|
19010
19085
|
*/
|
|
@@ -20363,10 +20438,18 @@ declare class AuditLogsApi<NeverThrow extends boolean> {
|
|
|
20363
20438
|
*/
|
|
20364
20439
|
list(body?: GetAuditLogsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
20365
20440
|
links?: components["schemas"]["Links"];
|
|
20366
|
-
audit_logs:
|
|
20441
|
+
audit_logs:
|
|
20442
|
+
/**
|
|
20443
|
+
* Create a Canvas.
|
|
20444
|
+
*/
|
|
20445
|
+
components["schemas"]["AuditLog"][];
|
|
20367
20446
|
}, null] : {
|
|
20368
20447
|
links?: components["schemas"]["Links"];
|
|
20369
|
-
audit_logs:
|
|
20448
|
+
audit_logs:
|
|
20449
|
+
/**
|
|
20450
|
+
* Create a Canvas.
|
|
20451
|
+
*/
|
|
20452
|
+
components["schemas"]["AuditLog"][];
|
|
20370
20453
|
}>;
|
|
20371
20454
|
/**
|
|
20372
20455
|
* Return a specific AuditLog.
|
|
@@ -20903,7 +20986,7 @@ declare class BusinessMetricsApi<NeverThrow extends boolean> {
|
|
|
20903
20986
|
values: components["schemas"]["BusinessMetricValue"][];
|
|
20904
20987
|
}>;
|
|
20905
20988
|
/**
|
|
20906
|
-
* Deletes Business Metric values (historical or forecasted unit metrics).
|
|
20989
|
+
* 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
20990
|
*/
|
|
20908
20991
|
deleteValues(businessMetricToken: string, body?: DeleteBusinessMetricValuesRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
20909
20992
|
deleted_count: number;
|
|
@@ -21024,6 +21107,16 @@ declare class CanvasesApi<NeverThrow extends boolean> {
|
|
|
21024
21107
|
declare class CostAlertsApi<NeverThrow extends boolean> {
|
|
21025
21108
|
private client;
|
|
21026
21109
|
constructor(client: BaseClient<NeverThrow>);
|
|
21110
|
+
/**
|
|
21111
|
+
* List all Cost Alerts
|
|
21112
|
+
*/
|
|
21113
|
+
list(body?: GetCostAlertsRequest): Promise<NeverThrow extends true ? [null, VantageAPIError] | [{
|
|
21114
|
+
links?: components["schemas"]["Links"];
|
|
21115
|
+
cost_alerts: components["schemas"]["CostAlert"][];
|
|
21116
|
+
}, null] : {
|
|
21117
|
+
links?: components["schemas"]["Links"];
|
|
21118
|
+
cost_alerts: components["schemas"]["CostAlert"][];
|
|
21119
|
+
}>;
|
|
21027
21120
|
/**
|
|
21028
21121
|
* Create a new Cost Alert
|
|
21029
21122
|
*/
|
|
@@ -24018,4 +24111,4 @@ declare class BaseClient<NeverThrow extends boolean> {
|
|
|
24018
24111
|
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
24112
|
}
|
|
24020
24113
|
|
|
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 };
|
|
24114
|
+
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 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 };
|