@aws-sdk/client-devops-guru 3.296.0 → 3.297.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 (51) hide show
  1. package/dist-types/DevOpsGuru.d.ts +32 -0
  2. package/dist-types/DevOpsGuruClient.d.ts +24 -4
  3. package/dist-types/commands/AddNotificationChannelCommand.d.ts +16 -0
  4. package/dist-types/commands/DeleteInsightCommand.d.ts +16 -0
  5. package/dist-types/commands/DescribeAccountHealthCommand.d.ts +16 -0
  6. package/dist-types/commands/DescribeAccountOverviewCommand.d.ts +16 -0
  7. package/dist-types/commands/DescribeAnomalyCommand.d.ts +16 -0
  8. package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeFeedbackCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeInsightCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeOrganizationHealthCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeOrganizationOverviewCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribeServiceIntegrationCommand.d.ts +16 -0
  16. package/dist-types/commands/GetCostEstimationCommand.d.ts +16 -0
  17. package/dist-types/commands/GetResourceCollectionCommand.d.ts +16 -0
  18. package/dist-types/commands/ListAnomaliesForInsightCommand.d.ts +16 -0
  19. package/dist-types/commands/ListAnomalousLogGroupsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListEventsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListInsightsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListMonitoredResourcesCommand.d.ts +16 -0
  23. package/dist-types/commands/ListNotificationChannelsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListOrganizationInsightsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListRecommendationsCommand.d.ts +16 -0
  26. package/dist-types/commands/PutFeedbackCommand.d.ts +16 -0
  27. package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +16 -0
  28. package/dist-types/commands/SearchInsightsCommand.d.ts +16 -0
  29. package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +16 -0
  30. package/dist-types/commands/StartCostEstimationCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateServiceIntegrationCommand.d.ts +16 -0
  34. package/dist-types/models/DevOpsGuruServiceException.d.ts +2 -0
  35. package/dist-types/models/models_0.d.ts +358 -0
  36. package/dist-types/pagination/DescribeOrganizationResourceCollectionHealthPaginator.d.ts +3 -0
  37. package/dist-types/pagination/DescribeResourceCollectionHealthPaginator.d.ts +3 -0
  38. package/dist-types/pagination/GetCostEstimationPaginator.d.ts +3 -0
  39. package/dist-types/pagination/GetResourceCollectionPaginator.d.ts +3 -0
  40. package/dist-types/pagination/Interfaces.d.ts +3 -0
  41. package/dist-types/pagination/ListAnomaliesForInsightPaginator.d.ts +3 -0
  42. package/dist-types/pagination/ListAnomalousLogGroupsPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListEventsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListInsightsPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListMonitoredResourcesPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListNotificationChannelsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListOrganizationInsightsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListRecommendationsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/SearchInsightsPaginator.d.ts +3 -0
  50. package/dist-types/pagination/SearchOrganizationInsightsPaginator.d.ts +3 -0
  51. package/package.json +3 -3
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { DescribeOrganizationResourceCollectionHealthCommandInput, DescribeOrganizationResourceCollectionHealthCommandOutput } from "../commands/DescribeOrganizationResourceCollectionHealthCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateDescribeOrganizationResourceCollectionHealth(config: DevOpsGuruPaginationConfiguration, input: DescribeOrganizationResourceCollectionHealthCommandInput, ...additionalArguments: any): Paginator<DescribeOrganizationResourceCollectionHealthCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { DescribeResourceCollectionHealthCommandInput, DescribeResourceCollectionHealthCommandOutput } from "../commands/DescribeResourceCollectionHealthCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateDescribeResourceCollectionHealth(config: DevOpsGuruPaginationConfiguration, input: DescribeResourceCollectionHealthCommandInput, ...additionalArguments: any): Paginator<DescribeResourceCollectionHealthCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetCostEstimationCommandInput, GetCostEstimationCommandOutput } from "../commands/GetCostEstimationCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetCostEstimation(config: DevOpsGuruPaginationConfiguration, input: GetCostEstimationCommandInput, ...additionalArguments: any): Paginator<GetCostEstimationCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetResourceCollectionCommandInput, GetResourceCollectionCommandOutput } from "../commands/GetResourceCollectionCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetResourceCollection(config: DevOpsGuruPaginationConfiguration, input: GetResourceCollectionCommandInput, ...additionalArguments: any): Paginator<GetResourceCollectionCommandOutput>;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { DevOpsGuruClient } from "../DevOpsGuruClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface DevOpsGuruPaginationConfiguration extends PaginationConfiguration {
4
7
  client: DevOpsGuruClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAnomaliesForInsightCommandInput, ListAnomaliesForInsightCommandOutput } from "../commands/ListAnomaliesForInsightCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAnomaliesForInsight(config: DevOpsGuruPaginationConfiguration, input: ListAnomaliesForInsightCommandInput, ...additionalArguments: any): Paginator<ListAnomaliesForInsightCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAnomalousLogGroupsCommandInput, ListAnomalousLogGroupsCommandOutput } from "../commands/ListAnomalousLogGroupsCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAnomalousLogGroups(config: DevOpsGuruPaginationConfiguration, input: ListAnomalousLogGroupsCommandInput, ...additionalArguments: any): Paginator<ListAnomalousLogGroupsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListEventsCommandInput, ListEventsCommandOutput } from "../commands/ListEventsCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListEvents(config: DevOpsGuruPaginationConfiguration, input: ListEventsCommandInput, ...additionalArguments: any): Paginator<ListEventsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListInsightsCommandInput, ListInsightsCommandOutput } from "../commands/ListInsightsCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListInsights(config: DevOpsGuruPaginationConfiguration, input: ListInsightsCommandInput, ...additionalArguments: any): Paginator<ListInsightsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListMonitoredResourcesCommandInput, ListMonitoredResourcesCommandOutput } from "../commands/ListMonitoredResourcesCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListMonitoredResources(config: DevOpsGuruPaginationConfiguration, input: ListMonitoredResourcesCommandInput, ...additionalArguments: any): Paginator<ListMonitoredResourcesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListNotificationChannelsCommandInput, ListNotificationChannelsCommandOutput } from "../commands/ListNotificationChannelsCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListNotificationChannels(config: DevOpsGuruPaginationConfiguration, input: ListNotificationChannelsCommandInput, ...additionalArguments: any): Paginator<ListNotificationChannelsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListOrganizationInsightsCommandInput, ListOrganizationInsightsCommandOutput } from "../commands/ListOrganizationInsightsCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListOrganizationInsights(config: DevOpsGuruPaginationConfiguration, input: ListOrganizationInsightsCommandInput, ...additionalArguments: any): Paginator<ListOrganizationInsightsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "../commands/ListRecommendationsCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListRecommendations(config: DevOpsGuruPaginationConfiguration, input: ListRecommendationsCommandInput, ...additionalArguments: any): Paginator<ListRecommendationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { SearchInsightsCommandInput, SearchInsightsCommandOutput } from "../commands/SearchInsightsCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateSearchInsights(config: DevOpsGuruPaginationConfiguration, input: SearchInsightsCommandInput, ...additionalArguments: any): Paginator<SearchInsightsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput } from "../commands/SearchOrganizationInsightsCommand";
3
3
  import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateSearchOrganizationInsights(config: DevOpsGuruPaginationConfiguration, input: SearchOrganizationInsightsCommandInput, ...additionalArguments: any): Paginator<SearchOrganizationInsightsCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-devops-guru",
3
3
  "description": "AWS SDK for JavaScript Devops Guru Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",