@aws-sdk/client-devops-guru 3.299.0 → 3.301.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 (32) hide show
  1. package/dist-types/commands/AddNotificationChannelCommand.d.ts +15 -0
  2. package/dist-types/commands/DeleteInsightCommand.d.ts +3 -0
  3. package/dist-types/commands/DescribeAccountHealthCommand.d.ts +1 -0
  4. package/dist-types/commands/DescribeAccountOverviewCommand.d.ts +4 -0
  5. package/dist-types/commands/DescribeAnomalyCommand.d.ts +4 -0
  6. package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +1 -0
  7. package/dist-types/commands/DescribeFeedbackCommand.d.ts +3 -0
  8. package/dist-types/commands/DescribeInsightCommand.d.ts +4 -0
  9. package/dist-types/commands/DescribeOrganizationHealthCommand.d.ts +8 -0
  10. package/dist-types/commands/DescribeOrganizationOverviewCommand.d.ts +10 -0
  11. package/dist-types/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +11 -0
  12. package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +4 -0
  13. package/dist-types/commands/DescribeServiceIntegrationCommand.d.ts +1 -0
  14. package/dist-types/commands/GetCostEstimationCommand.d.ts +3 -0
  15. package/dist-types/commands/GetResourceCollectionCommand.d.ts +4 -0
  16. package/dist-types/commands/ListAnomaliesForInsightCommand.d.ts +17 -0
  17. package/dist-types/commands/ListAnomalousLogGroupsCommand.d.ts +5 -0
  18. package/dist-types/commands/ListEventsCommand.d.ts +30 -0
  19. package/dist-types/commands/ListInsightsCommand.d.ts +23 -0
  20. package/dist-types/commands/ListMonitoredResourcesCommand.d.ts +10 -0
  21. package/dist-types/commands/ListNotificationChannelsCommand.d.ts +3 -0
  22. package/dist-types/commands/ListOrganizationInsightsCommand.d.ts +29 -0
  23. package/dist-types/commands/ListRecommendationsCommand.d.ts +6 -0
  24. package/dist-types/commands/PutFeedbackCommand.d.ts +6 -0
  25. package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +3 -0
  26. package/dist-types/commands/SearchInsightsCommand.d.ts +37 -0
  27. package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +40 -0
  28. package/dist-types/commands/StartCostEstimationCommand.d.ts +18 -0
  29. package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +7 -0
  30. package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +18 -0
  31. package/dist-types/commands/UpdateServiceIntegrationCommand.d.ts +10 -0
  32. package/package.json +8 -8
@@ -35,6 +35,21 @@ export interface AddNotificationChannelCommandOutput extends AddNotificationChan
35
35
  * import { DevOpsGuruClient, AddNotificationChannelCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
36
36
  * // const { DevOpsGuruClient, AddNotificationChannelCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
37
37
  * const client = new DevOpsGuruClient(config);
38
+ * const input = { // AddNotificationChannelRequest
39
+ * Config: { // NotificationChannelConfig
40
+ * Sns: { // SnsChannelConfig
41
+ * TopicArn: "STRING_VALUE",
42
+ * },
43
+ * Filters: { // NotificationFilterConfig
44
+ * Severities: [ // InsightSeverities
45
+ * "LOW" || "MEDIUM" || "HIGH",
46
+ * ],
47
+ * MessageTypes: [ // NotificationMessageTypes
48
+ * "NEW_INSIGHT" || "CLOSED_INSIGHT" || "NEW_ASSOCIATION" || "SEVERITY_UPGRADED" || "NEW_RECOMMENDATION",
49
+ * ],
50
+ * },
51
+ * },
52
+ * };
38
53
  * const command = new AddNotificationChannelCommand(input);
39
54
  * const response = await client.send(command);
40
55
  * ```
@@ -26,6 +26,9 @@ export interface DeleteInsightCommandOutput extends DeleteInsightResponse, __Met
26
26
  * import { DevOpsGuruClient, DeleteInsightCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
27
27
  * // const { DevOpsGuruClient, DeleteInsightCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
28
28
  * const client = new DevOpsGuruClient(config);
29
+ * const input = { // DeleteInsightRequest
30
+ * Id: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteInsightCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -28,6 +28,7 @@ export interface DescribeAccountHealthCommandOutput extends DescribeAccountHealt
28
28
  * import { DevOpsGuruClient, DescribeAccountHealthCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, DescribeAccountHealthCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = {};
31
32
  * const command = new DescribeAccountHealthCommand(input);
32
33
  * const response = await client.send(command);
33
34
  * ```
@@ -28,6 +28,10 @@ export interface DescribeAccountOverviewCommandOutput extends DescribeAccountOve
28
28
  * import { DevOpsGuruClient, DescribeAccountOverviewCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, DescribeAccountOverviewCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = { // DescribeAccountOverviewRequest
32
+ * FromTime: new Date("TIMESTAMP"), // required
33
+ * ToTime: new Date("TIMESTAMP"),
34
+ * };
31
35
  * const command = new DescribeAccountOverviewCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,10 @@ export interface DescribeAnomalyCommandOutput extends DescribeAnomalyResponse, _
26
26
  * import { DevOpsGuruClient, DescribeAnomalyCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
27
27
  * // const { DevOpsGuruClient, DescribeAnomalyCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
28
28
  * const client = new DevOpsGuruClient(config);
29
+ * const input = { // DescribeAnomalyRequest
30
+ * Id: "STRING_VALUE", // required
31
+ * AccountId: "STRING_VALUE",
32
+ * };
29
33
  * const command = new DescribeAnomalyCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -29,6 +29,7 @@ export interface DescribeEventSourcesConfigCommandOutput extends DescribeEventSo
29
29
  * import { DevOpsGuruClient, DescribeEventSourcesConfigCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
30
30
  * // const { DevOpsGuruClient, DescribeEventSourcesConfigCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
31
31
  * const client = new DevOpsGuruClient(config);
32
+ * const input = {};
32
33
  * const command = new DescribeEventSourcesConfigCommand(input);
33
34
  * const response = await client.send(command);
34
35
  * ```
@@ -27,6 +27,9 @@ export interface DescribeFeedbackCommandOutput extends DescribeFeedbackResponse,
27
27
  * import { DevOpsGuruClient, DescribeFeedbackCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
28
28
  * // const { DevOpsGuruClient, DescribeFeedbackCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
29
29
  * const client = new DevOpsGuruClient(config);
30
+ * const input = { // DescribeFeedbackRequest
31
+ * InsightId: "STRING_VALUE",
32
+ * };
30
33
  * const command = new DescribeFeedbackCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,10 @@ export interface DescribeInsightCommandOutput extends DescribeInsightResponse, _
26
26
  * import { DevOpsGuruClient, DescribeInsightCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
27
27
  * // const { DevOpsGuruClient, DescribeInsightCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
28
28
  * const client = new DevOpsGuruClient(config);
29
+ * const input = { // DescribeInsightRequest
30
+ * Id: "STRING_VALUE", // required
31
+ * AccountId: "STRING_VALUE",
32
+ * };
29
33
  * const command = new DescribeInsightCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -27,6 +27,14 @@ export interface DescribeOrganizationHealthCommandOutput extends DescribeOrganiz
27
27
  * import { DevOpsGuruClient, DescribeOrganizationHealthCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
28
28
  * // const { DevOpsGuruClient, DescribeOrganizationHealthCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
29
29
  * const client = new DevOpsGuruClient(config);
30
+ * const input = { // DescribeOrganizationHealthRequest
31
+ * AccountIds: [ // AccountIdList
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * OrganizationalUnitIds: [ // OrganizationalUnitIdList
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * };
30
38
  * const command = new DescribeOrganizationHealthCommand(input);
31
39
  * const response = await client.send(command);
32
40
  * ```
@@ -27,6 +27,16 @@ export interface DescribeOrganizationOverviewCommandOutput extends DescribeOrgan
27
27
  * import { DevOpsGuruClient, DescribeOrganizationOverviewCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
28
28
  * // const { DevOpsGuruClient, DescribeOrganizationOverviewCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
29
29
  * const client = new DevOpsGuruClient(config);
30
+ * const input = { // DescribeOrganizationOverviewRequest
31
+ * FromTime: new Date("TIMESTAMP"), // required
32
+ * ToTime: new Date("TIMESTAMP"),
33
+ * AccountIds: [ // AccountIdList
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * OrganizationalUnitIds: [ // OrganizationalUnitIdList
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * };
30
40
  * const command = new DescribeOrganizationOverviewCommand(input);
31
41
  * const response = await client.send(command);
32
42
  * ```
@@ -28,6 +28,17 @@ export interface DescribeOrganizationResourceCollectionHealthCommandOutput exten
28
28
  * import { DevOpsGuruClient, DescribeOrganizationResourceCollectionHealthCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, DescribeOrganizationResourceCollectionHealthCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = { // DescribeOrganizationResourceCollectionHealthRequest
32
+ * OrganizationResourceCollectionType: "AWS_CLOUD_FORMATION" || "AWS_SERVICE" || "AWS_ACCOUNT" || "AWS_TAGS", // required
33
+ * AccountIds: [ // AccountIdList
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * OrganizationalUnitIds: [ // OrganizationalUnitIdList
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * NextToken: "STRING_VALUE",
40
+ * MaxResults: Number("int"),
41
+ * };
31
42
  * const command = new DescribeOrganizationResourceCollectionHealthCommand(input);
32
43
  * const response = await client.send(command);
33
44
  * ```
@@ -30,6 +30,10 @@ export interface DescribeResourceCollectionHealthCommandOutput extends DescribeR
30
30
  * import { DevOpsGuruClient, DescribeResourceCollectionHealthCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
31
31
  * // const { DevOpsGuruClient, DescribeResourceCollectionHealthCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
32
32
  * const client = new DevOpsGuruClient(config);
33
+ * const input = { // DescribeResourceCollectionHealthRequest
34
+ * ResourceCollectionType: "AWS_CLOUD_FORMATION" || "AWS_SERVICE" || "AWS_TAGS", // required
35
+ * NextToken: "STRING_VALUE",
36
+ * };
33
37
  * const command = new DescribeResourceCollectionHealthCommand(input);
34
38
  * const response = await client.send(command);
35
39
  * ```
@@ -28,6 +28,7 @@ export interface DescribeServiceIntegrationCommandOutput extends DescribeService
28
28
  * import { DevOpsGuruClient, DescribeServiceIntegrationCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, DescribeServiceIntegrationCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = {};
31
32
  * const command = new DescribeServiceIntegrationCommand(input);
32
33
  * const response = await client.send(command);
33
34
  * ```
@@ -30,6 +30,9 @@ export interface GetCostEstimationCommandOutput extends GetCostEstimationRespons
30
30
  * import { DevOpsGuruClient, GetCostEstimationCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
31
31
  * // const { DevOpsGuruClient, GetCostEstimationCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
32
32
  * const client = new DevOpsGuruClient(config);
33
+ * const input = { // GetCostEstimationRequest
34
+ * NextToken: "STRING_VALUE",
35
+ * };
33
36
  * const command = new GetCostEstimationCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -29,6 +29,10 @@ export interface GetResourceCollectionCommandOutput extends GetResourceCollectio
29
29
  * import { DevOpsGuruClient, GetResourceCollectionCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
30
30
  * // const { DevOpsGuruClient, GetResourceCollectionCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
31
31
  * const client = new DevOpsGuruClient(config);
32
+ * const input = { // GetResourceCollectionRequest
33
+ * ResourceCollectionType: "AWS_CLOUD_FORMATION" || "AWS_SERVICE" || "AWS_TAGS", // required
34
+ * NextToken: "STRING_VALUE",
35
+ * };
32
36
  * const command = new GetResourceCollectionCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -27,6 +27,23 @@ export interface ListAnomaliesForInsightCommandOutput extends ListAnomaliesForIn
27
27
  * import { DevOpsGuruClient, ListAnomaliesForInsightCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
28
28
  * // const { DevOpsGuruClient, ListAnomaliesForInsightCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
29
29
  * const client = new DevOpsGuruClient(config);
30
+ * const input = { // ListAnomaliesForInsightRequest
31
+ * InsightId: "STRING_VALUE", // required
32
+ * StartTimeRange: { // StartTimeRange
33
+ * FromTime: new Date("TIMESTAMP"),
34
+ * ToTime: new Date("TIMESTAMP"),
35
+ * },
36
+ * MaxResults: Number("int"),
37
+ * NextToken: "STRING_VALUE",
38
+ * AccountId: "STRING_VALUE",
39
+ * Filters: { // ListAnomaliesForInsightFilters
40
+ * ServiceCollection: { // ServiceCollection
41
+ * ServiceNames: [ // ServiceNames
42
+ * "API_GATEWAY" || "APPLICATION_ELB" || "AUTO_SCALING_GROUP" || "CLOUD_FRONT" || "DYNAMO_DB" || "EC2" || "ECS" || "EKS" || "ELASTIC_BEANSTALK" || "ELASTI_CACHE" || "ELB" || "ES" || "KINESIS" || "LAMBDA" || "NAT_GATEWAY" || "NETWORK_ELB" || "RDS" || "REDSHIFT" || "ROUTE_53" || "S3" || "SAGE_MAKER" || "SNS" || "SQS" || "STEP_FUNCTIONS" || "SWF",
43
+ * ],
44
+ * },
45
+ * },
46
+ * };
30
47
  * const command = new ListAnomaliesForInsightCommand(input);
31
48
  * const response = await client.send(command);
32
49
  * ```
@@ -28,6 +28,11 @@ export interface ListAnomalousLogGroupsCommandOutput extends ListAnomalousLogGro
28
28
  * import { DevOpsGuruClient, ListAnomalousLogGroupsCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, ListAnomalousLogGroupsCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = { // ListAnomalousLogGroupsRequest
32
+ * InsightId: "STRING_VALUE", // required
33
+ * MaxResults: Number("int"),
34
+ * NextToken: "STRING_VALUE",
35
+ * };
31
36
  * const command = new ListAnomalousLogGroupsCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -27,6 +27,36 @@ export interface ListEventsCommandOutput extends ListEventsResponse, __MetadataB
27
27
  * import { DevOpsGuruClient, ListEventsCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
28
28
  * // const { DevOpsGuruClient, ListEventsCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
29
29
  * const client = new DevOpsGuruClient(config);
30
+ * const input = { // ListEventsRequest
31
+ * Filters: { // ListEventsFilters
32
+ * InsightId: "STRING_VALUE",
33
+ * EventTimeRange: { // EventTimeRange
34
+ * FromTime: new Date("TIMESTAMP"), // required
35
+ * ToTime: new Date("TIMESTAMP"), // required
36
+ * },
37
+ * EventClass: "INFRASTRUCTURE" || "DEPLOYMENT" || "SECURITY_CHANGE" || "CONFIG_CHANGE" || "SCHEMA_CHANGE",
38
+ * EventSource: "STRING_VALUE",
39
+ * DataSource: "AWS_CLOUD_TRAIL" || "AWS_CODE_DEPLOY",
40
+ * ResourceCollection: { // ResourceCollection
41
+ * CloudFormation: { // CloudFormationCollection
42
+ * StackNames: [ // StackNames
43
+ * "STRING_VALUE",
44
+ * ],
45
+ * },
46
+ * Tags: [ // TagCollections
47
+ * { // TagCollection
48
+ * AppBoundaryKey: "STRING_VALUE", // required
49
+ * TagValues: [ // TagValues // required
50
+ * "STRING_VALUE",
51
+ * ],
52
+ * },
53
+ * ],
54
+ * },
55
+ * },
56
+ * MaxResults: Number("int"),
57
+ * NextToken: "STRING_VALUE",
58
+ * AccountId: "STRING_VALUE",
59
+ * };
30
60
  * const command = new ListEventsCommand(input);
31
61
  * const response = await client.send(command);
32
62
  * ```
@@ -28,6 +28,29 @@ export interface ListInsightsCommandOutput extends ListInsightsResponse, __Metad
28
28
  * import { DevOpsGuruClient, ListInsightsCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, ListInsightsCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = { // ListInsightsRequest
32
+ * StatusFilter: { // ListInsightsStatusFilter
33
+ * Ongoing: { // ListInsightsOngoingStatusFilter
34
+ * Type: "REACTIVE" || "PROACTIVE", // required
35
+ * },
36
+ * Closed: { // ListInsightsClosedStatusFilter
37
+ * Type: "REACTIVE" || "PROACTIVE", // required
38
+ * EndTimeRange: { // EndTimeRange
39
+ * FromTime: new Date("TIMESTAMP"),
40
+ * ToTime: new Date("TIMESTAMP"),
41
+ * },
42
+ * },
43
+ * Any: { // ListInsightsAnyStatusFilter
44
+ * Type: "REACTIVE" || "PROACTIVE", // required
45
+ * StartTimeRange: { // StartTimeRange
46
+ * FromTime: new Date("TIMESTAMP"),
47
+ * ToTime: new Date("TIMESTAMP"),
48
+ * },
49
+ * },
50
+ * },
51
+ * MaxResults: Number("int"),
52
+ * NextToken: "STRING_VALUE",
53
+ * };
31
54
  * const command = new ListInsightsCommand(input);
32
55
  * const response = await client.send(command);
33
56
  * ```
@@ -28,6 +28,16 @@ export interface ListMonitoredResourcesCommandOutput extends ListMonitoredResour
28
28
  * import { DevOpsGuruClient, ListMonitoredResourcesCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, ListMonitoredResourcesCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = { // ListMonitoredResourcesRequest
32
+ * Filters: { // ListMonitoredResourcesFilters
33
+ * ResourcePermission: "FULL_PERMISSION" || "MISSING_PERMISSION", // required
34
+ * ResourceTypeFilters: [ // ResourceTypeFilters // required
35
+ * "LOG_GROUPS" || "CLOUDFRONT_DISTRIBUTION" || "DYNAMODB_TABLE" || "EC2_NAT_GATEWAY" || "ECS_CLUSTER" || "ECS_SERVICE" || "EKS_CLUSTER" || "ELASTIC_BEANSTALK_ENVIRONMENT" || "ELASTIC_LOAD_BALANCER_LOAD_BALANCER" || "ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER" || "ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP" || "ELASTICACHE_CACHE_CLUSTER" || "ELASTICSEARCH_DOMAIN" || "KINESIS_STREAM" || "LAMBDA_FUNCTION" || "OPEN_SEARCH_SERVICE_DOMAIN" || "RDS_DB_INSTANCE" || "RDS_DB_CLUSTER" || "REDSHIFT_CLUSTER" || "ROUTE53_HOSTED_ZONE" || "ROUTE53_HEALTH_CHECK" || "S3_BUCKET" || "SAGEMAKER_ENDPOINT" || "SNS_TOPIC" || "SQS_QUEUE" || "STEP_FUNCTIONS_ACTIVITY" || "STEP_FUNCTIONS_STATE_MACHINE",
36
+ * ],
37
+ * },
38
+ * MaxResults: Number("int"),
39
+ * NextToken: "STRING_VALUE",
40
+ * };
31
41
  * const command = new ListMonitoredResourcesCommand(input);
32
42
  * const response = await client.send(command);
33
43
  * ```
@@ -29,6 +29,9 @@ export interface ListNotificationChannelsCommandOutput extends ListNotificationC
29
29
  * import { DevOpsGuruClient, ListNotificationChannelsCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
30
30
  * // const { DevOpsGuruClient, ListNotificationChannelsCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
31
31
  * const client = new DevOpsGuruClient(config);
32
+ * const input = { // ListNotificationChannelsRequest
33
+ * NextToken: "STRING_VALUE",
34
+ * };
32
35
  * const command = new ListNotificationChannelsCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -26,6 +26,35 @@ export interface ListOrganizationInsightsCommandOutput extends ListOrganizationI
26
26
  * import { DevOpsGuruClient, ListOrganizationInsightsCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
27
27
  * // const { DevOpsGuruClient, ListOrganizationInsightsCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
28
28
  * const client = new DevOpsGuruClient(config);
29
+ * const input = { // ListOrganizationInsightsRequest
30
+ * StatusFilter: { // ListInsightsStatusFilter
31
+ * Ongoing: { // ListInsightsOngoingStatusFilter
32
+ * Type: "REACTIVE" || "PROACTIVE", // required
33
+ * },
34
+ * Closed: { // ListInsightsClosedStatusFilter
35
+ * Type: "REACTIVE" || "PROACTIVE", // required
36
+ * EndTimeRange: { // EndTimeRange
37
+ * FromTime: new Date("TIMESTAMP"),
38
+ * ToTime: new Date("TIMESTAMP"),
39
+ * },
40
+ * },
41
+ * Any: { // ListInsightsAnyStatusFilter
42
+ * Type: "REACTIVE" || "PROACTIVE", // required
43
+ * StartTimeRange: { // StartTimeRange
44
+ * FromTime: new Date("TIMESTAMP"),
45
+ * ToTime: new Date("TIMESTAMP"),
46
+ * },
47
+ * },
48
+ * },
49
+ * MaxResults: Number("int"),
50
+ * AccountIds: [ // ListInsightsAccountIdList
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * OrganizationalUnitIds: [ // ListInsightsOrganizationalUnitIdList
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * NextToken: "STRING_VALUE",
57
+ * };
29
58
  * const command = new ListOrganizationInsightsCommand(input);
30
59
  * const response = await client.send(command);
31
60
  * ```
@@ -27,6 +27,12 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
27
27
  * import { DevOpsGuruClient, ListRecommendationsCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
28
28
  * // const { DevOpsGuruClient, ListRecommendationsCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
29
29
  * const client = new DevOpsGuruClient(config);
30
+ * const input = { // ListRecommendationsRequest
31
+ * InsightId: "STRING_VALUE", // required
32
+ * NextToken: "STRING_VALUE",
33
+ * Locale: "DE_DE" || "EN_US" || "EN_GB" || "ES_ES" || "FR_FR" || "IT_IT" || "JA_JP" || "KO_KR" || "PT_BR" || "ZH_CN" || "ZH_TW",
34
+ * AccountId: "STRING_VALUE",
35
+ * };
30
36
  * const command = new ListRecommendationsCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -26,6 +26,12 @@ export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __Metadat
26
26
  * import { DevOpsGuruClient, PutFeedbackCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
27
27
  * // const { DevOpsGuruClient, PutFeedbackCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
28
28
  * const client = new DevOpsGuruClient(config);
29
+ * const input = { // PutFeedbackRequest
30
+ * InsightFeedback: { // InsightFeedback
31
+ * Id: "STRING_VALUE",
32
+ * Feedback: "VALID_COLLECTION" || "RECOMMENDATION_USEFUL" || "ALERT_TOO_SENSITIVE" || "DATA_NOISY_ANOMALY" || "DATA_INCORRECT",
33
+ * },
34
+ * };
29
35
  * const command = new PutFeedbackCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -28,6 +28,9 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
28
28
  * import { DevOpsGuruClient, RemoveNotificationChannelCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, RemoveNotificationChannelCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = { // RemoveNotificationChannelRequest
32
+ * Id: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new RemoveNotificationChannelCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -32,6 +32,43 @@ export interface SearchInsightsCommandOutput extends SearchInsightsResponse, __M
32
32
  * import { DevOpsGuruClient, SearchInsightsCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
33
33
  * // const { DevOpsGuruClient, SearchInsightsCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
34
34
  * const client = new DevOpsGuruClient(config);
35
+ * const input = { // SearchInsightsRequest
36
+ * StartTimeRange: { // StartTimeRange
37
+ * FromTime: new Date("TIMESTAMP"),
38
+ * ToTime: new Date("TIMESTAMP"),
39
+ * },
40
+ * Filters: { // SearchInsightsFilters
41
+ * Severities: [ // InsightSeverities
42
+ * "LOW" || "MEDIUM" || "HIGH",
43
+ * ],
44
+ * Statuses: [ // InsightStatuses
45
+ * "ONGOING" || "CLOSED",
46
+ * ],
47
+ * ResourceCollection: { // ResourceCollection
48
+ * CloudFormation: { // CloudFormationCollection
49
+ * StackNames: [ // StackNames
50
+ * "STRING_VALUE",
51
+ * ],
52
+ * },
53
+ * Tags: [ // TagCollections
54
+ * { // TagCollection
55
+ * AppBoundaryKey: "STRING_VALUE", // required
56
+ * TagValues: [ // TagValues // required
57
+ * "STRING_VALUE",
58
+ * ],
59
+ * },
60
+ * ],
61
+ * },
62
+ * ServiceCollection: { // ServiceCollection
63
+ * ServiceNames: [ // ServiceNames
64
+ * "API_GATEWAY" || "APPLICATION_ELB" || "AUTO_SCALING_GROUP" || "CLOUD_FRONT" || "DYNAMO_DB" || "EC2" || "ECS" || "EKS" || "ELASTIC_BEANSTALK" || "ELASTI_CACHE" || "ELB" || "ES" || "KINESIS" || "LAMBDA" || "NAT_GATEWAY" || "NETWORK_ELB" || "RDS" || "REDSHIFT" || "ROUTE_53" || "S3" || "SAGE_MAKER" || "SNS" || "SQS" || "STEP_FUNCTIONS" || "SWF",
65
+ * ],
66
+ * },
67
+ * },
68
+ * MaxResults: Number("int"),
69
+ * NextToken: "STRING_VALUE",
70
+ * Type: "REACTIVE" || "PROACTIVE", // required
71
+ * };
35
72
  * const command = new SearchInsightsCommand(input);
36
73
  * const response = await client.send(command);
37
74
  * ```
@@ -33,6 +33,46 @@ export interface SearchOrganizationInsightsCommandOutput extends SearchOrganizat
33
33
  * import { DevOpsGuruClient, SearchOrganizationInsightsCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
34
34
  * // const { DevOpsGuruClient, SearchOrganizationInsightsCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
35
35
  * const client = new DevOpsGuruClient(config);
36
+ * const input = { // SearchOrganizationInsightsRequest
37
+ * AccountIds: [ // SearchInsightsAccountIdList // required
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * StartTimeRange: { // StartTimeRange
41
+ * FromTime: new Date("TIMESTAMP"),
42
+ * ToTime: new Date("TIMESTAMP"),
43
+ * },
44
+ * Filters: { // SearchOrganizationInsightsFilters
45
+ * Severities: [ // InsightSeverities
46
+ * "LOW" || "MEDIUM" || "HIGH",
47
+ * ],
48
+ * Statuses: [ // InsightStatuses
49
+ * "ONGOING" || "CLOSED",
50
+ * ],
51
+ * ResourceCollection: { // ResourceCollection
52
+ * CloudFormation: { // CloudFormationCollection
53
+ * StackNames: [ // StackNames
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * },
57
+ * Tags: [ // TagCollections
58
+ * { // TagCollection
59
+ * AppBoundaryKey: "STRING_VALUE", // required
60
+ * TagValues: [ // TagValues // required
61
+ * "STRING_VALUE",
62
+ * ],
63
+ * },
64
+ * ],
65
+ * },
66
+ * ServiceCollection: { // ServiceCollection
67
+ * ServiceNames: [ // ServiceNames
68
+ * "API_GATEWAY" || "APPLICATION_ELB" || "AUTO_SCALING_GROUP" || "CLOUD_FRONT" || "DYNAMO_DB" || "EC2" || "ECS" || "EKS" || "ELASTIC_BEANSTALK" || "ELASTI_CACHE" || "ELB" || "ES" || "KINESIS" || "LAMBDA" || "NAT_GATEWAY" || "NETWORK_ELB" || "RDS" || "REDSHIFT" || "ROUTE_53" || "S3" || "SAGE_MAKER" || "SNS" || "SQS" || "STEP_FUNCTIONS" || "SWF",
69
+ * ],
70
+ * },
71
+ * },
72
+ * MaxResults: Number("int"),
73
+ * NextToken: "STRING_VALUE",
74
+ * Type: "REACTIVE" || "PROACTIVE", // required
75
+ * };
36
76
  * const command = new SearchOrganizationInsightsCommand(input);
37
77
  * const response = await client.send(command);
38
78
  * ```
@@ -27,6 +27,24 @@ export interface StartCostEstimationCommandOutput extends StartCostEstimationRes
27
27
  * import { DevOpsGuruClient, StartCostEstimationCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
28
28
  * // const { DevOpsGuruClient, StartCostEstimationCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
29
29
  * const client = new DevOpsGuruClient(config);
30
+ * const input = { // StartCostEstimationRequest
31
+ * ResourceCollection: { // CostEstimationResourceCollectionFilter
32
+ * CloudFormation: { // CloudFormationCostEstimationResourceCollectionFilter
33
+ * StackNames: [ // CostEstimationStackNames
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * },
37
+ * Tags: [ // TagCostEstimationResourceCollectionFilters
38
+ * { // TagCostEstimationResourceCollectionFilter
39
+ * AppBoundaryKey: "STRING_VALUE", // required
40
+ * TagValues: [ // CostEstimationTagValues // required
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * },
44
+ * ],
45
+ * },
46
+ * ClientToken: "STRING_VALUE",
47
+ * };
30
48
  * const command = new StartCostEstimationCommand(input);
31
49
  * const response = await client.send(command);
32
50
  * ```
@@ -28,6 +28,13 @@ export interface UpdateEventSourcesConfigCommandOutput extends UpdateEventSource
28
28
  * import { DevOpsGuruClient, UpdateEventSourcesConfigCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, UpdateEventSourcesConfigCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = { // UpdateEventSourcesConfigRequest
32
+ * EventSources: { // EventSourcesConfig
33
+ * AmazonCodeGuruProfiler: { // AmazonCodeGuruProfilerIntegration
34
+ * Status: "ENABLED" || "DISABLED",
35
+ * },
36
+ * },
37
+ * };
31
38
  * const command = new UpdateEventSourcesConfigCommand(input);
32
39
  * const response = await client.send(command);
33
40
  * ```
@@ -30,6 +30,24 @@ export interface UpdateResourceCollectionCommandOutput extends UpdateResourceCol
30
30
  * import { DevOpsGuruClient, UpdateResourceCollectionCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
31
31
  * // const { DevOpsGuruClient, UpdateResourceCollectionCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
32
32
  * const client = new DevOpsGuruClient(config);
33
+ * const input = { // UpdateResourceCollectionRequest
34
+ * Action: "ADD" || "REMOVE", // required
35
+ * ResourceCollection: { // UpdateResourceCollectionFilter
36
+ * CloudFormation: { // UpdateCloudFormationCollectionFilter
37
+ * StackNames: [ // UpdateStackNames
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * },
41
+ * Tags: [ // UpdateTagCollectionFilters
42
+ * { // UpdateTagCollectionFilter
43
+ * AppBoundaryKey: "STRING_VALUE", // required
44
+ * TagValues: [ // UpdateTagValues // required
45
+ * "STRING_VALUE",
46
+ * ],
47
+ * },
48
+ * ],
49
+ * },
50
+ * };
33
51
  * const command = new UpdateResourceCollectionCommand(input);
34
52
  * const response = await client.send(command);
35
53
  * ```
@@ -28,6 +28,16 @@ export interface UpdateServiceIntegrationCommandOutput extends UpdateServiceInte
28
28
  * import { DevOpsGuruClient, UpdateServiceIntegrationCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
29
29
  * // const { DevOpsGuruClient, UpdateServiceIntegrationCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
30
30
  * const client = new DevOpsGuruClient(config);
31
+ * const input = { // UpdateServiceIntegrationRequest
32
+ * ServiceIntegration: { // UpdateServiceIntegrationConfig
33
+ * OpsCenter: { // OpsCenterIntegrationConfig
34
+ * OptInStatus: "ENABLED" || "DISABLED",
35
+ * },
36
+ * LogsAnomalyDetection: { // LogsAnomalyDetectionIntegrationConfig
37
+ * OptInStatus: "ENABLED" || "DISABLED",
38
+ * },
39
+ * },
40
+ * };
31
41
  * const command = new UpdateServiceIntegrationCommand(input);
32
42
  * const response = await client.send(command);
33
43
  * ```
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.299.0",
4
+ "version": "3.301.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"