@aws-sdk/client-devops-guru 3.300.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 (29) hide show
  1. package/dist-types/commands/AddNotificationChannelCommand.d.ts +6 -6
  2. package/dist-types/commands/DeleteInsightCommand.d.ts +1 -1
  3. package/dist-types/commands/DescribeAccountOverviewCommand.d.ts +1 -1
  4. package/dist-types/commands/DescribeAnomalyCommand.d.ts +1 -1
  5. package/dist-types/commands/DescribeFeedbackCommand.d.ts +1 -1
  6. package/dist-types/commands/DescribeInsightCommand.d.ts +1 -1
  7. package/dist-types/commands/DescribeOrganizationHealthCommand.d.ts +3 -3
  8. package/dist-types/commands/DescribeOrganizationOverviewCommand.d.ts +3 -3
  9. package/dist-types/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +3 -3
  10. package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +1 -1
  11. package/dist-types/commands/GetCostEstimationCommand.d.ts +1 -1
  12. package/dist-types/commands/GetResourceCollectionCommand.d.ts +1 -1
  13. package/dist-types/commands/ListAnomaliesForInsightCommand.d.ts +5 -5
  14. package/dist-types/commands/ListAnomalousLogGroupsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListEventsCommand.d.ts +9 -9
  16. package/dist-types/commands/ListInsightsCommand.d.ts +7 -7
  17. package/dist-types/commands/ListMonitoredResourcesCommand.d.ts +3 -3
  18. package/dist-types/commands/ListNotificationChannelsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListOrganizationInsightsCommand.d.ts +9 -9
  20. package/dist-types/commands/ListRecommendationsCommand.d.ts +1 -1
  21. package/dist-types/commands/PutFeedbackCommand.d.ts +2 -2
  22. package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +1 -1
  23. package/dist-types/commands/SearchInsightsCommand.d.ts +13 -13
  24. package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +14 -14
  25. package/dist-types/commands/StartCostEstimationCommand.d.ts +7 -7
  26. package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +3 -3
  27. package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +7 -7
  28. package/dist-types/commands/UpdateServiceIntegrationCommand.d.ts +4 -4
  29. package/package.json +3 -3
@@ -35,16 +35,16 @@ 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 = {
39
- * Config: {
40
- * Sns: {
38
+ * const input = { // AddNotificationChannelRequest
39
+ * Config: { // NotificationChannelConfig
40
+ * Sns: { // SnsChannelConfig
41
41
  * TopicArn: "STRING_VALUE",
42
42
  * },
43
- * Filters: {
44
- * Severities: [
43
+ * Filters: { // NotificationFilterConfig
44
+ * Severities: [ // InsightSeverities
45
45
  * "LOW" || "MEDIUM" || "HIGH",
46
46
  * ],
47
- * MessageTypes: [
47
+ * MessageTypes: [ // NotificationMessageTypes
48
48
  * "NEW_INSIGHT" || "CLOSED_INSIGHT" || "NEW_ASSOCIATION" || "SEVERITY_UPGRADED" || "NEW_RECOMMENDATION",
49
49
  * ],
50
50
  * },
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteInsightRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteInsightCommand(input);
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // DescribeAccountOverviewRequest
32
32
  * FromTime: new Date("TIMESTAMP"), // required
33
33
  * ToTime: new Date("TIMESTAMP"),
34
34
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DescribeAnomalyRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * AccountId: "STRING_VALUE",
32
32
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // DescribeFeedbackRequest
31
31
  * InsightId: "STRING_VALUE",
32
32
  * };
33
33
  * const command = new DescribeFeedbackCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DescribeInsightRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * AccountId: "STRING_VALUE",
32
32
  * };
@@ -27,11 +27,11 @@ 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 = {
31
- * AccountIds: [
30
+ * const input = { // DescribeOrganizationHealthRequest
31
+ * AccountIds: [ // AccountIdList
32
32
  * "STRING_VALUE",
33
33
  * ],
34
- * OrganizationalUnitIds: [
34
+ * OrganizationalUnitIds: [ // OrganizationalUnitIdList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * };
@@ -27,13 +27,13 @@ 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 = {
30
+ * const input = { // DescribeOrganizationOverviewRequest
31
31
  * FromTime: new Date("TIMESTAMP"), // required
32
32
  * ToTime: new Date("TIMESTAMP"),
33
- * AccountIds: [
33
+ * AccountIds: [ // AccountIdList
34
34
  * "STRING_VALUE",
35
35
  * ],
36
- * OrganizationalUnitIds: [
36
+ * OrganizationalUnitIds: [ // OrganizationalUnitIdList
37
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * };
@@ -28,12 +28,12 @@ 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 = {
31
+ * const input = { // DescribeOrganizationResourceCollectionHealthRequest
32
32
  * OrganizationResourceCollectionType: "AWS_CLOUD_FORMATION" || "AWS_SERVICE" || "AWS_ACCOUNT" || "AWS_TAGS", // required
33
- * AccountIds: [
33
+ * AccountIds: [ // AccountIdList
34
34
  * "STRING_VALUE",
35
35
  * ],
36
- * OrganizationalUnitIds: [
36
+ * OrganizationalUnitIds: [ // OrganizationalUnitIdList
37
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * NextToken: "STRING_VALUE",
@@ -30,7 +30,7 @@ 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 = {
33
+ * const input = { // DescribeResourceCollectionHealthRequest
34
34
  * ResourceCollectionType: "AWS_CLOUD_FORMATION" || "AWS_SERVICE" || "AWS_TAGS", // required
35
35
  * NextToken: "STRING_VALUE",
36
36
  * };
@@ -30,7 +30,7 @@ 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 = {
33
+ * const input = { // GetCostEstimationRequest
34
34
  * NextToken: "STRING_VALUE",
35
35
  * };
36
36
  * const command = new GetCostEstimationCommand(input);
@@ -29,7 +29,7 @@ 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 = {
32
+ * const input = { // GetResourceCollectionRequest
33
33
  * ResourceCollectionType: "AWS_CLOUD_FORMATION" || "AWS_SERVICE" || "AWS_TAGS", // required
34
34
  * NextToken: "STRING_VALUE",
35
35
  * };
@@ -27,18 +27,18 @@ 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 = {
30
+ * const input = { // ListAnomaliesForInsightRequest
31
31
  * InsightId: "STRING_VALUE", // required
32
- * StartTimeRange: {
32
+ * StartTimeRange: { // StartTimeRange
33
33
  * FromTime: new Date("TIMESTAMP"),
34
34
  * ToTime: new Date("TIMESTAMP"),
35
35
  * },
36
36
  * MaxResults: Number("int"),
37
37
  * NextToken: "STRING_VALUE",
38
38
  * AccountId: "STRING_VALUE",
39
- * Filters: {
40
- * ServiceCollection: {
41
- * ServiceNames: [
39
+ * Filters: { // ListAnomaliesForInsightFilters
40
+ * ServiceCollection: { // ServiceCollection
41
+ * ServiceNames: [ // ServiceNames
42
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
43
  * ],
44
44
  * },
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // ListAnomalousLogGroupsRequest
32
32
  * InsightId: "STRING_VALUE", // required
33
33
  * MaxResults: Number("int"),
34
34
  * NextToken: "STRING_VALUE",
@@ -27,26 +27,26 @@ 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 = {
31
- * Filters: {
30
+ * const input = { // ListEventsRequest
31
+ * Filters: { // ListEventsFilters
32
32
  * InsightId: "STRING_VALUE",
33
- * EventTimeRange: {
33
+ * EventTimeRange: { // EventTimeRange
34
34
  * FromTime: new Date("TIMESTAMP"), // required
35
35
  * ToTime: new Date("TIMESTAMP"), // required
36
36
  * },
37
37
  * EventClass: "INFRASTRUCTURE" || "DEPLOYMENT" || "SECURITY_CHANGE" || "CONFIG_CHANGE" || "SCHEMA_CHANGE",
38
38
  * EventSource: "STRING_VALUE",
39
39
  * DataSource: "AWS_CLOUD_TRAIL" || "AWS_CODE_DEPLOY",
40
- * ResourceCollection: {
41
- * CloudFormation: {
42
- * StackNames: [
40
+ * ResourceCollection: { // ResourceCollection
41
+ * CloudFormation: { // CloudFormationCollection
42
+ * StackNames: [ // StackNames
43
43
  * "STRING_VALUE",
44
44
  * ],
45
45
  * },
46
- * Tags: [
47
- * {
46
+ * Tags: [ // TagCollections
47
+ * { // TagCollection
48
48
  * AppBoundaryKey: "STRING_VALUE", // required
49
- * TagValues: [ // required
49
+ * TagValues: [ // TagValues // required
50
50
  * "STRING_VALUE",
51
51
  * ],
52
52
  * },
@@ -28,21 +28,21 @@ 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 = {
32
- * StatusFilter: {
33
- * Ongoing: {
31
+ * const input = { // ListInsightsRequest
32
+ * StatusFilter: { // ListInsightsStatusFilter
33
+ * Ongoing: { // ListInsightsOngoingStatusFilter
34
34
  * Type: "REACTIVE" || "PROACTIVE", // required
35
35
  * },
36
- * Closed: {
36
+ * Closed: { // ListInsightsClosedStatusFilter
37
37
  * Type: "REACTIVE" || "PROACTIVE", // required
38
- * EndTimeRange: {
38
+ * EndTimeRange: { // EndTimeRange
39
39
  * FromTime: new Date("TIMESTAMP"),
40
40
  * ToTime: new Date("TIMESTAMP"),
41
41
  * },
42
42
  * },
43
- * Any: {
43
+ * Any: { // ListInsightsAnyStatusFilter
44
44
  * Type: "REACTIVE" || "PROACTIVE", // required
45
- * StartTimeRange: {
45
+ * StartTimeRange: { // StartTimeRange
46
46
  * FromTime: new Date("TIMESTAMP"),
47
47
  * ToTime: new Date("TIMESTAMP"),
48
48
  * },
@@ -28,10 +28,10 @@ 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 = {
32
- * Filters: {
31
+ * const input = { // ListMonitoredResourcesRequest
32
+ * Filters: { // ListMonitoredResourcesFilters
33
33
  * ResourcePermission: "FULL_PERMISSION" || "MISSING_PERMISSION", // required
34
- * ResourceTypeFilters: [ // required
34
+ * ResourceTypeFilters: [ // ResourceTypeFilters // required
35
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
36
  * ],
37
37
  * },
@@ -29,7 +29,7 @@ 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 = {
32
+ * const input = { // ListNotificationChannelsRequest
33
33
  * NextToken: "STRING_VALUE",
34
34
  * };
35
35
  * const command = new ListNotificationChannelsCommand(input);
@@ -26,31 +26,31 @@ 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 = {
30
- * StatusFilter: {
31
- * Ongoing: {
29
+ * const input = { // ListOrganizationInsightsRequest
30
+ * StatusFilter: { // ListInsightsStatusFilter
31
+ * Ongoing: { // ListInsightsOngoingStatusFilter
32
32
  * Type: "REACTIVE" || "PROACTIVE", // required
33
33
  * },
34
- * Closed: {
34
+ * Closed: { // ListInsightsClosedStatusFilter
35
35
  * Type: "REACTIVE" || "PROACTIVE", // required
36
- * EndTimeRange: {
36
+ * EndTimeRange: { // EndTimeRange
37
37
  * FromTime: new Date("TIMESTAMP"),
38
38
  * ToTime: new Date("TIMESTAMP"),
39
39
  * },
40
40
  * },
41
- * Any: {
41
+ * Any: { // ListInsightsAnyStatusFilter
42
42
  * Type: "REACTIVE" || "PROACTIVE", // required
43
- * StartTimeRange: {
43
+ * StartTimeRange: { // StartTimeRange
44
44
  * FromTime: new Date("TIMESTAMP"),
45
45
  * ToTime: new Date("TIMESTAMP"),
46
46
  * },
47
47
  * },
48
48
  * },
49
49
  * MaxResults: Number("int"),
50
- * AccountIds: [
50
+ * AccountIds: [ // ListInsightsAccountIdList
51
51
  * "STRING_VALUE",
52
52
  * ],
53
- * OrganizationalUnitIds: [
53
+ * OrganizationalUnitIds: [ // ListInsightsOrganizationalUnitIdList
54
54
  * "STRING_VALUE",
55
55
  * ],
56
56
  * NextToken: "STRING_VALUE",
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // ListRecommendationsRequest
31
31
  * InsightId: "STRING_VALUE", // required
32
32
  * NextToken: "STRING_VALUE",
33
33
  * Locale: "DE_DE" || "EN_US" || "EN_GB" || "ES_ES" || "FR_FR" || "IT_IT" || "JA_JP" || "KO_KR" || "PT_BR" || "ZH_CN" || "ZH_TW",
@@ -26,8 +26,8 @@ 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 = {
30
- * InsightFeedback: {
29
+ * const input = { // PutFeedbackRequest
30
+ * InsightFeedback: { // InsightFeedback
31
31
  * Id: "STRING_VALUE",
32
32
  * Feedback: "VALID_COLLECTION" || "RECOMMENDATION_USEFUL" || "ALERT_TOO_SENSITIVE" || "DATA_NOISY_ANOMALY" || "DATA_INCORRECT",
33
33
  * },
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // RemoveNotificationChannelRequest
32
32
  * Id: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new RemoveNotificationChannelCommand(input);
@@ -32,35 +32,35 @@ 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 = {
36
- * StartTimeRange: {
35
+ * const input = { // SearchInsightsRequest
36
+ * StartTimeRange: { // StartTimeRange
37
37
  * FromTime: new Date("TIMESTAMP"),
38
38
  * ToTime: new Date("TIMESTAMP"),
39
39
  * },
40
- * Filters: {
41
- * Severities: [
40
+ * Filters: { // SearchInsightsFilters
41
+ * Severities: [ // InsightSeverities
42
42
  * "LOW" || "MEDIUM" || "HIGH",
43
43
  * ],
44
- * Statuses: [
44
+ * Statuses: [ // InsightStatuses
45
45
  * "ONGOING" || "CLOSED",
46
46
  * ],
47
- * ResourceCollection: {
48
- * CloudFormation: {
49
- * StackNames: [
47
+ * ResourceCollection: { // ResourceCollection
48
+ * CloudFormation: { // CloudFormationCollection
49
+ * StackNames: [ // StackNames
50
50
  * "STRING_VALUE",
51
51
  * ],
52
52
  * },
53
- * Tags: [
54
- * {
53
+ * Tags: [ // TagCollections
54
+ * { // TagCollection
55
55
  * AppBoundaryKey: "STRING_VALUE", // required
56
- * TagValues: [ // required
56
+ * TagValues: [ // TagValues // required
57
57
  * "STRING_VALUE",
58
58
  * ],
59
59
  * },
60
60
  * ],
61
61
  * },
62
- * ServiceCollection: {
63
- * ServiceNames: [
62
+ * ServiceCollection: { // ServiceCollection
63
+ * ServiceNames: [ // ServiceNames
64
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
65
  * ],
66
66
  * },
@@ -33,38 +33,38 @@ 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 = {
37
- * AccountIds: [ // required
36
+ * const input = { // SearchOrganizationInsightsRequest
37
+ * AccountIds: [ // SearchInsightsAccountIdList // required
38
38
  * "STRING_VALUE",
39
39
  * ],
40
- * StartTimeRange: {
40
+ * StartTimeRange: { // StartTimeRange
41
41
  * FromTime: new Date("TIMESTAMP"),
42
42
  * ToTime: new Date("TIMESTAMP"),
43
43
  * },
44
- * Filters: {
45
- * Severities: [
44
+ * Filters: { // SearchOrganizationInsightsFilters
45
+ * Severities: [ // InsightSeverities
46
46
  * "LOW" || "MEDIUM" || "HIGH",
47
47
  * ],
48
- * Statuses: [
48
+ * Statuses: [ // InsightStatuses
49
49
  * "ONGOING" || "CLOSED",
50
50
  * ],
51
- * ResourceCollection: {
52
- * CloudFormation: {
53
- * StackNames: [
51
+ * ResourceCollection: { // ResourceCollection
52
+ * CloudFormation: { // CloudFormationCollection
53
+ * StackNames: [ // StackNames
54
54
  * "STRING_VALUE",
55
55
  * ],
56
56
  * },
57
- * Tags: [
58
- * {
57
+ * Tags: [ // TagCollections
58
+ * { // TagCollection
59
59
  * AppBoundaryKey: "STRING_VALUE", // required
60
- * TagValues: [ // required
60
+ * TagValues: [ // TagValues // required
61
61
  * "STRING_VALUE",
62
62
  * ],
63
63
  * },
64
64
  * ],
65
65
  * },
66
- * ServiceCollection: {
67
- * ServiceNames: [
66
+ * ServiceCollection: { // ServiceCollection
67
+ * ServiceNames: [ // ServiceNames
68
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
69
  * ],
70
70
  * },
@@ -27,17 +27,17 @@ 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 = {
31
- * ResourceCollection: {
32
- * CloudFormation: {
33
- * StackNames: [
30
+ * const input = { // StartCostEstimationRequest
31
+ * ResourceCollection: { // CostEstimationResourceCollectionFilter
32
+ * CloudFormation: { // CloudFormationCostEstimationResourceCollectionFilter
33
+ * StackNames: [ // CostEstimationStackNames
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * },
37
- * Tags: [
38
- * {
37
+ * Tags: [ // TagCostEstimationResourceCollectionFilters
38
+ * { // TagCostEstimationResourceCollectionFilter
39
39
  * AppBoundaryKey: "STRING_VALUE", // required
40
- * TagValues: [ // required
40
+ * TagValues: [ // CostEstimationTagValues // required
41
41
  * "STRING_VALUE",
42
42
  * ],
43
43
  * },
@@ -28,9 +28,9 @@ 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 = {
32
- * EventSources: {
33
- * AmazonCodeGuruProfiler: {
31
+ * const input = { // UpdateEventSourcesConfigRequest
32
+ * EventSources: { // EventSourcesConfig
33
+ * AmazonCodeGuruProfiler: { // AmazonCodeGuruProfilerIntegration
34
34
  * Status: "ENABLED" || "DISABLED",
35
35
  * },
36
36
  * },
@@ -30,18 +30,18 @@ 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 = {
33
+ * const input = { // UpdateResourceCollectionRequest
34
34
  * Action: "ADD" || "REMOVE", // required
35
- * ResourceCollection: {
36
- * CloudFormation: {
37
- * StackNames: [
35
+ * ResourceCollection: { // UpdateResourceCollectionFilter
36
+ * CloudFormation: { // UpdateCloudFormationCollectionFilter
37
+ * StackNames: [ // UpdateStackNames
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * },
41
- * Tags: [
42
- * {
41
+ * Tags: [ // UpdateTagCollectionFilters
42
+ * { // UpdateTagCollectionFilter
43
43
  * AppBoundaryKey: "STRING_VALUE", // required
44
- * TagValues: [ // required
44
+ * TagValues: [ // UpdateTagValues // required
45
45
  * "STRING_VALUE",
46
46
  * ],
47
47
  * },
@@ -28,12 +28,12 @@ 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 = {
32
- * ServiceIntegration: {
33
- * OpsCenter: {
31
+ * const input = { // UpdateServiceIntegrationRequest
32
+ * ServiceIntegration: { // UpdateServiceIntegrationConfig
33
+ * OpsCenter: { // OpsCenterIntegrationConfig
34
34
  * OptInStatus: "ENABLED" || "DISABLED",
35
35
  * },
36
- * LogsAnomalyDetection: {
36
+ * LogsAnomalyDetection: { // LogsAnomalyDetectionIntegrationConfig
37
37
  * OptInStatus: "ENABLED" || "DISABLED",
38
38
  * },
39
39
  * },
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.300.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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "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",