@aws-sdk/client-devops-guru 3.300.0 → 3.303.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 (33) hide show
  1. package/dist-cjs/models/models_0.js +188 -213
  2. package/dist-es/models/models_0.js +188 -213
  3. package/dist-types/commands/AddNotificationChannelCommand.d.ts +6 -6
  4. package/dist-types/commands/DeleteInsightCommand.d.ts +1 -1
  5. package/dist-types/commands/DescribeAccountOverviewCommand.d.ts +1 -1
  6. package/dist-types/commands/DescribeAnomalyCommand.d.ts +1 -1
  7. package/dist-types/commands/DescribeFeedbackCommand.d.ts +1 -1
  8. package/dist-types/commands/DescribeInsightCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeOrganizationHealthCommand.d.ts +3 -3
  10. package/dist-types/commands/DescribeOrganizationOverviewCommand.d.ts +3 -3
  11. package/dist-types/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +3 -3
  12. package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +1 -1
  13. package/dist-types/commands/GetCostEstimationCommand.d.ts +1 -1
  14. package/dist-types/commands/GetResourceCollectionCommand.d.ts +1 -1
  15. package/dist-types/commands/ListAnomaliesForInsightCommand.d.ts +5 -5
  16. package/dist-types/commands/ListAnomalousLogGroupsCommand.d.ts +1 -1
  17. package/dist-types/commands/ListEventsCommand.d.ts +9 -9
  18. package/dist-types/commands/ListInsightsCommand.d.ts +7 -7
  19. package/dist-types/commands/ListMonitoredResourcesCommand.d.ts +3 -3
  20. package/dist-types/commands/ListNotificationChannelsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListOrganizationInsightsCommand.d.ts +9 -9
  22. package/dist-types/commands/ListRecommendationsCommand.d.ts +1 -1
  23. package/dist-types/commands/PutFeedbackCommand.d.ts +2 -2
  24. package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +1 -1
  25. package/dist-types/commands/SearchInsightsCommand.d.ts +13 -13
  26. package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +14 -14
  27. package/dist-types/commands/StartCostEstimationCommand.d.ts +7 -7
  28. package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +3 -3
  29. package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +7 -7
  30. package/dist-types/commands/UpdateServiceIntegrationCommand.d.ts +4 -4
  31. package/dist-types/models/models_0.d.ts +313 -188
  32. package/dist-types/ts3.4/models/models_0.d.ts +230 -188
  33. package/package.json +34 -34
@@ -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
  * },