@aws-sdk/client-devops-guru 3.50.0 → 3.51.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/DevOpsGuru.d.ts +135 -0
  3. package/dist-types/ts3.4/DevOpsGuruClient.d.ts +99 -0
  4. package/dist-types/ts3.4/commands/AddNotificationChannelCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/DescribeAccountHealthCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/DescribeAccountOverviewCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/DescribeAnomalyCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DescribeFeedbackCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DescribeInsightCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DescribeOrganizationHealthCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/DescribeOrganizationOverviewCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/DescribeResourceCollectionHealthCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/DescribeServiceIntegrationCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/GetCostEstimationCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/GetResourceCollectionCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/ListAnomaliesForInsightCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/ListEventsCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ListInsightsCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/ListNotificationChannelsCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListOrganizationInsightsCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/PutFeedbackCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/SearchInsightsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/SearchOrganizationInsightsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/StartCostEstimationCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UpdateResourceCollectionCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/UpdateServiceIntegrationCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -0
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  32. package/dist-types/ts3.4/index.d.ts +5 -0
  33. package/dist-types/ts3.4/models/index.d.ts +1 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +1816 -0
  35. package/dist-types/ts3.4/pagination/DescribeOrganizationResourceCollectionHealthPaginator.d.ts +4 -0
  36. package/dist-types/ts3.4/pagination/DescribeResourceCollectionHealthPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/GetCostEstimationPaginator.d.ts +4 -0
  38. package/dist-types/ts3.4/pagination/GetResourceCollectionPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  40. package/dist-types/ts3.4/pagination/ListAnomaliesForInsightPaginator.d.ts +4 -0
  41. package/dist-types/ts3.4/pagination/ListEventsPaginator.d.ts +4 -0
  42. package/dist-types/ts3.4/pagination/ListInsightsPaginator.d.ts +4 -0
  43. package/dist-types/ts3.4/pagination/ListNotificationChannelsPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/ListOrganizationInsightsPaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/SearchInsightsPaginator.d.ts +4 -0
  47. package/dist-types/ts3.4/pagination/SearchOrganizationInsightsPaginator.d.ts +4 -0
  48. package/dist-types/ts3.4/pagination/index.d.ts +13 -0
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +80 -0
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  54. package/package.json +8 -8
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
4
+ import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0";
5
+ export interface ListRecommendationsCommandInput extends ListRecommendationsRequest {
6
+ }
7
+ export interface ListRecommendationsCommandOutput extends ListRecommendationsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListRecommendationsCommand extends $Command<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, DevOpsGuruClientResolvedConfig> {
11
+ readonly input: ListRecommendationsCommandInput;
12
+ constructor(input: ListRecommendationsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecommendationsCommandInput, ListRecommendationsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
4
+ import { PutFeedbackRequest, PutFeedbackResponse } from "../models/models_0";
5
+ export interface PutFeedbackCommandInput extends PutFeedbackRequest {
6
+ }
7
+ export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutFeedbackCommand extends $Command<PutFeedbackCommandInput, PutFeedbackCommandOutput, DevOpsGuruClientResolvedConfig> {
11
+ readonly input: PutFeedbackCommandInput;
12
+ constructor(input: PutFeedbackCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutFeedbackCommandInput, PutFeedbackCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
4
+ import { RemoveNotificationChannelRequest, RemoveNotificationChannelResponse } from "../models/models_0";
5
+ export interface RemoveNotificationChannelCommandInput extends RemoveNotificationChannelRequest {
6
+ }
7
+ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificationChannelResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class RemoveNotificationChannelCommand extends $Command<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput, DevOpsGuruClientResolvedConfig> {
11
+ readonly input: RemoveNotificationChannelCommandInput;
12
+ constructor(input: RemoveNotificationChannelCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
4
+ import { SearchInsightsRequest, SearchInsightsResponse } from "../models/models_0";
5
+ export interface SearchInsightsCommandInput extends SearchInsightsRequest {
6
+ }
7
+ export interface SearchInsightsCommandOutput extends SearchInsightsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SearchInsightsCommand extends $Command<SearchInsightsCommandInput, SearchInsightsCommandOutput, DevOpsGuruClientResolvedConfig> {
11
+ readonly input: SearchInsightsCommandInput;
12
+ constructor(input: SearchInsightsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchInsightsCommandInput, SearchInsightsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
4
+ import { SearchOrganizationInsightsRequest, SearchOrganizationInsightsResponse } from "../models/models_0";
5
+ export interface SearchOrganizationInsightsCommandInput extends SearchOrganizationInsightsRequest {
6
+ }
7
+ export interface SearchOrganizationInsightsCommandOutput extends SearchOrganizationInsightsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SearchOrganizationInsightsCommand extends $Command<SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput, DevOpsGuruClientResolvedConfig> {
11
+ readonly input: SearchOrganizationInsightsCommandInput;
12
+ constructor(input: SearchOrganizationInsightsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
4
+ import { StartCostEstimationRequest, StartCostEstimationResponse } from "../models/models_0";
5
+ export interface StartCostEstimationCommandInput extends StartCostEstimationRequest {
6
+ }
7
+ export interface StartCostEstimationCommandOutput extends StartCostEstimationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class StartCostEstimationCommand extends $Command<StartCostEstimationCommandInput, StartCostEstimationCommandOutput, DevOpsGuruClientResolvedConfig> {
11
+ readonly input: StartCostEstimationCommandInput;
12
+ constructor(input: StartCostEstimationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartCostEstimationCommandInput, StartCostEstimationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
4
+ import { UpdateResourceCollectionRequest, UpdateResourceCollectionResponse } from "../models/models_0";
5
+ export interface UpdateResourceCollectionCommandInput extends UpdateResourceCollectionRequest {
6
+ }
7
+ export interface UpdateResourceCollectionCommandOutput extends UpdateResourceCollectionResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateResourceCollectionCommand extends $Command<UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput, DevOpsGuruClientResolvedConfig> {
11
+ readonly input: UpdateResourceCollectionCommandInput;
12
+ constructor(input: UpdateResourceCollectionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
4
+ import { UpdateServiceIntegrationRequest, UpdateServiceIntegrationResponse } from "../models/models_0";
5
+ export interface UpdateServiceIntegrationCommandInput extends UpdateServiceIntegrationRequest {
6
+ }
7
+ export interface UpdateServiceIntegrationCommandOutput extends UpdateServiceIntegrationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateServiceIntegrationCommand extends $Command<UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput, DevOpsGuruClientResolvedConfig> {
11
+ readonly input: UpdateServiceIntegrationCommandInput;
12
+ constructor(input: UpdateServiceIntegrationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,26 @@
1
+ export * from "./AddNotificationChannelCommand";
2
+ export * from "./DescribeAccountHealthCommand";
3
+ export * from "./DescribeAccountOverviewCommand";
4
+ export * from "./DescribeAnomalyCommand";
5
+ export * from "./DescribeFeedbackCommand";
6
+ export * from "./DescribeInsightCommand";
7
+ export * from "./DescribeOrganizationHealthCommand";
8
+ export * from "./DescribeOrganizationOverviewCommand";
9
+ export * from "./DescribeOrganizationResourceCollectionHealthCommand";
10
+ export * from "./DescribeResourceCollectionHealthCommand";
11
+ export * from "./DescribeServiceIntegrationCommand";
12
+ export * from "./GetCostEstimationCommand";
13
+ export * from "./GetResourceCollectionCommand";
14
+ export * from "./ListAnomaliesForInsightCommand";
15
+ export * from "./ListEventsCommand";
16
+ export * from "./ListInsightsCommand";
17
+ export * from "./ListNotificationChannelsCommand";
18
+ export * from "./ListOrganizationInsightsCommand";
19
+ export * from "./ListRecommendationsCommand";
20
+ export * from "./PutFeedbackCommand";
21
+ export * from "./RemoveNotificationChannelCommand";
22
+ export * from "./SearchInsightsCommand";
23
+ export * from "./SearchOrganizationInsightsCommand";
24
+ export * from "./StartCostEstimationCommand";
25
+ export * from "./UpdateResourceCollectionCommand";
26
+ export * from "./UpdateServiceIntegrationCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,5 @@
1
+ export * from "./DevOpsGuru";
2
+ export * from "./DevOpsGuruClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
@@ -0,0 +1 @@
1
+ export * from "./models_0";