@aws-sdk/client-devops-guru 3.325.0 → 3.327.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.
- package/dist-types/commands/AddNotificationChannelCommand.d.ts +6 -0
- package/dist-types/commands/DeleteInsightCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAccountHealthCommand.d.ts +10 -0
- package/dist-types/commands/DescribeAccountOverviewCommand.d.ts +8 -0
- package/dist-types/commands/DescribeAnomalyCommand.d.ts +255 -0
- package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +10 -0
- package/dist-types/commands/DescribeFeedbackCommand.d.ts +9 -0
- package/dist-types/commands/DescribeInsightCommand.d.ts +63 -0
- package/dist-types/commands/DescribeOrganizationHealthCommand.d.ts +9 -0
- package/dist-types/commands/DescribeOrganizationOverviewCommand.d.ts +7 -0
- package/dist-types/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +48 -0
- package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +39 -0
- package/dist-types/commands/DescribeServiceIntegrationCommand.d.ts +13 -0
- package/dist-types/commands/GetCostEstimationCommand.d.ts +36 -0
- package/dist-types/commands/GetResourceCollectionCommand.d.ts +21 -0
- package/dist-types/commands/ListAnomaliesForInsightCommand.d.ts +260 -0
- package/dist-types/commands/ListAnomalousLogGroupsCommand.d.ts +30 -0
- package/dist-types/commands/ListEventsCommand.d.ts +38 -0
- package/dist-types/commands/ListInsightsCommand.d.ts +80 -0
- package/dist-types/commands/ListMonitoredResourcesCommand.d.ts +29 -0
- package/dist-types/commands/ListNotificationChannelsCommand.d.ts +24 -0
- package/dist-types/commands/ListOrganizationInsightsCommand.d.ts +78 -0
- package/dist-types/commands/ListRecommendationsCommand.d.ts +47 -0
- package/dist-types/commands/PutFeedbackCommand.d.ts +4 -0
- package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +4 -0
- package/dist-types/commands/SearchInsightsCommand.d.ts +80 -0
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +80 -0
- package/dist-types/commands/StartCostEstimationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +4 -0
- package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +4 -0
- package/dist-types/commands/UpdateServiceIntegrationCommand.d.ts +4 -0
- package/package.json +7 -7
|
@@ -57,6 +57,82 @@ export interface ListOrganizationInsightsCommandOutput extends ListOrganizationI
|
|
|
57
57
|
* };
|
|
58
58
|
* const command = new ListOrganizationInsightsCommand(input);
|
|
59
59
|
* const response = await client.send(command);
|
|
60
|
+
* // { // ListOrganizationInsightsResponse
|
|
61
|
+
* // ProactiveInsights: [ // ProactiveOrganizationInsights
|
|
62
|
+
* // { // ProactiveOrganizationInsightSummary
|
|
63
|
+
* // Id: "STRING_VALUE",
|
|
64
|
+
* // AccountId: "STRING_VALUE",
|
|
65
|
+
* // OrganizationalUnitId: "STRING_VALUE",
|
|
66
|
+
* // Name: "STRING_VALUE",
|
|
67
|
+
* // Severity: "LOW" || "MEDIUM" || "HIGH",
|
|
68
|
+
* // Status: "ONGOING" || "CLOSED",
|
|
69
|
+
* // InsightTimeRange: { // InsightTimeRange
|
|
70
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
71
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
72
|
+
* // },
|
|
73
|
+
* // PredictionTimeRange: { // PredictionTimeRange
|
|
74
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
75
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
76
|
+
* // },
|
|
77
|
+
* // ResourceCollection: { // ResourceCollection
|
|
78
|
+
* // CloudFormation: { // CloudFormationCollection
|
|
79
|
+
* // StackNames: [ // StackNames
|
|
80
|
+
* // "STRING_VALUE",
|
|
81
|
+
* // ],
|
|
82
|
+
* // },
|
|
83
|
+
* // Tags: [ // TagCollections
|
|
84
|
+
* // { // TagCollection
|
|
85
|
+
* // AppBoundaryKey: "STRING_VALUE", // required
|
|
86
|
+
* // TagValues: [ // TagValues // required
|
|
87
|
+
* // "STRING_VALUE",
|
|
88
|
+
* // ],
|
|
89
|
+
* // },
|
|
90
|
+
* // ],
|
|
91
|
+
* // },
|
|
92
|
+
* // ServiceCollection: { // ServiceCollection
|
|
93
|
+
* // ServiceNames: [ // ServiceNames
|
|
94
|
+
* // "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",
|
|
95
|
+
* // ],
|
|
96
|
+
* // },
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // ReactiveInsights: [ // ReactiveOrganizationInsights
|
|
100
|
+
* // { // ReactiveOrganizationInsightSummary
|
|
101
|
+
* // Id: "STRING_VALUE",
|
|
102
|
+
* // AccountId: "STRING_VALUE",
|
|
103
|
+
* // OrganizationalUnitId: "STRING_VALUE",
|
|
104
|
+
* // Name: "STRING_VALUE",
|
|
105
|
+
* // Severity: "LOW" || "MEDIUM" || "HIGH",
|
|
106
|
+
* // Status: "ONGOING" || "CLOSED",
|
|
107
|
+
* // InsightTimeRange: {
|
|
108
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
109
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
110
|
+
* // },
|
|
111
|
+
* // ResourceCollection: {
|
|
112
|
+
* // CloudFormation: {
|
|
113
|
+
* // StackNames: [
|
|
114
|
+
* // "STRING_VALUE",
|
|
115
|
+
* // ],
|
|
116
|
+
* // },
|
|
117
|
+
* // Tags: [
|
|
118
|
+
* // {
|
|
119
|
+
* // AppBoundaryKey: "STRING_VALUE", // required
|
|
120
|
+
* // TagValues: [ // required
|
|
121
|
+
* // "STRING_VALUE",
|
|
122
|
+
* // ],
|
|
123
|
+
* // },
|
|
124
|
+
* // ],
|
|
125
|
+
* // },
|
|
126
|
+
* // ServiceCollection: {
|
|
127
|
+
* // ServiceNames: [
|
|
128
|
+
* // "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",
|
|
129
|
+
* // ],
|
|
130
|
+
* // },
|
|
131
|
+
* // },
|
|
132
|
+
* // ],
|
|
133
|
+
* // NextToken: "STRING_VALUE",
|
|
134
|
+
* // };
|
|
135
|
+
*
|
|
60
136
|
* ```
|
|
61
137
|
*
|
|
62
138
|
* @param ListOrganizationInsightsCommandInput - {@link ListOrganizationInsightsCommandInput}
|
|
@@ -81,6 +157,8 @@ export interface ListOrganizationInsightsCommandOutput extends ListOrganizationI
|
|
|
81
157
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
82
158
|
* valid. </p>
|
|
83
159
|
*
|
|
160
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
161
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
84
162
|
*
|
|
85
163
|
*/
|
|
86
164
|
export declare class ListOrganizationInsightsCommand extends $Command<ListOrganizationInsightsCommandInput, ListOrganizationInsightsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
@@ -35,6 +35,51 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListRecommendationsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListRecommendationsResponse
|
|
39
|
+
* // Recommendations: [ // Recommendations
|
|
40
|
+
* // { // Recommendation
|
|
41
|
+
* // Description: "STRING_VALUE",
|
|
42
|
+
* // Link: "STRING_VALUE",
|
|
43
|
+
* // Name: "STRING_VALUE",
|
|
44
|
+
* // Reason: "STRING_VALUE",
|
|
45
|
+
* // RelatedEvents: [ // RecommendationRelatedEvents
|
|
46
|
+
* // { // RecommendationRelatedEvent
|
|
47
|
+
* // Name: "STRING_VALUE",
|
|
48
|
+
* // Resources: [ // RecommendationRelatedEventResources
|
|
49
|
+
* // { // RecommendationRelatedEventResource
|
|
50
|
+
* // Name: "STRING_VALUE",
|
|
51
|
+
* // Type: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // RelatedAnomalies: [ // RecommendationRelatedAnomalies
|
|
57
|
+
* // { // RecommendationRelatedAnomaly
|
|
58
|
+
* // Resources: [ // RecommendationRelatedAnomalyResources
|
|
59
|
+
* // { // RecommendationRelatedAnomalyResource
|
|
60
|
+
* // Name: "STRING_VALUE",
|
|
61
|
+
* // Type: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // SourceDetails: [ // RelatedAnomalySourceDetails
|
|
65
|
+
* // { // RecommendationRelatedAnomalySourceDetail
|
|
66
|
+
* // CloudWatchMetrics: [ // RecommendationRelatedCloudWatchMetricsSourceDetails
|
|
67
|
+
* // { // RecommendationRelatedCloudWatchMetricsSourceDetail
|
|
68
|
+
* // MetricName: "STRING_VALUE",
|
|
69
|
+
* // Namespace: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // AnomalyId: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // Category: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // NextToken: "STRING_VALUE",
|
|
81
|
+
* // };
|
|
82
|
+
*
|
|
38
83
|
* ```
|
|
39
84
|
*
|
|
40
85
|
* @param ListRecommendationsCommandInput - {@link ListRecommendationsCommandInput}
|
|
@@ -62,6 +107,8 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
|
|
|
62
107
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
63
108
|
* valid. </p>
|
|
64
109
|
*
|
|
110
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
111
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
65
112
|
*
|
|
66
113
|
*/
|
|
67
114
|
export declare class ListRecommendationsCommand extends $Command<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new PutFeedbackCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param PutFeedbackCommandInput - {@link PutFeedbackCommandInput}
|
|
@@ -64,6 +66,8 @@ export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __Metadat
|
|
|
64
66
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
65
67
|
* valid. </p>
|
|
66
68
|
*
|
|
69
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
67
71
|
*
|
|
68
72
|
*/
|
|
69
73
|
export declare class PutFeedbackCommand extends $Command<PutFeedbackCommandInput, PutFeedbackCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new RemoveNotificationChannelCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param RemoveNotificationChannelCommandInput - {@link RemoveNotificationChannelCommandInput}
|
|
@@ -63,6 +65,8 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
|
|
|
63
65
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
64
66
|
* valid. </p>
|
|
65
67
|
*
|
|
68
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
66
70
|
*
|
|
67
71
|
*/
|
|
68
72
|
export declare class RemoveNotificationChannelCommand extends $Command<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
@@ -71,6 +71,84 @@ export interface SearchInsightsCommandOutput extends SearchInsightsResponse, __M
|
|
|
71
71
|
* };
|
|
72
72
|
* const command = new SearchInsightsCommand(input);
|
|
73
73
|
* const response = await client.send(command);
|
|
74
|
+
* // { // SearchInsightsResponse
|
|
75
|
+
* // ProactiveInsights: [ // ProactiveInsights
|
|
76
|
+
* // { // ProactiveInsightSummary
|
|
77
|
+
* // Id: "STRING_VALUE",
|
|
78
|
+
* // Name: "STRING_VALUE",
|
|
79
|
+
* // Severity: "LOW" || "MEDIUM" || "HIGH",
|
|
80
|
+
* // Status: "ONGOING" || "CLOSED",
|
|
81
|
+
* // InsightTimeRange: { // InsightTimeRange
|
|
82
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
83
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
84
|
+
* // },
|
|
85
|
+
* // PredictionTimeRange: { // PredictionTimeRange
|
|
86
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
87
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
88
|
+
* // },
|
|
89
|
+
* // ResourceCollection: { // ResourceCollection
|
|
90
|
+
* // CloudFormation: { // CloudFormationCollection
|
|
91
|
+
* // StackNames: [ // StackNames
|
|
92
|
+
* // "STRING_VALUE",
|
|
93
|
+
* // ],
|
|
94
|
+
* // },
|
|
95
|
+
* // Tags: [ // TagCollections
|
|
96
|
+
* // { // TagCollection
|
|
97
|
+
* // AppBoundaryKey: "STRING_VALUE", // required
|
|
98
|
+
* // TagValues: [ // TagValues // required
|
|
99
|
+
* // "STRING_VALUE",
|
|
100
|
+
* // ],
|
|
101
|
+
* // },
|
|
102
|
+
* // ],
|
|
103
|
+
* // },
|
|
104
|
+
* // ServiceCollection: { // ServiceCollection
|
|
105
|
+
* // ServiceNames: [ // ServiceNames
|
|
106
|
+
* // "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",
|
|
107
|
+
* // ],
|
|
108
|
+
* // },
|
|
109
|
+
* // AssociatedResourceArns: [ // AssociatedResourceArns
|
|
110
|
+
* // "STRING_VALUE",
|
|
111
|
+
* // ],
|
|
112
|
+
* // },
|
|
113
|
+
* // ],
|
|
114
|
+
* // ReactiveInsights: [ // ReactiveInsights
|
|
115
|
+
* // { // ReactiveInsightSummary
|
|
116
|
+
* // Id: "STRING_VALUE",
|
|
117
|
+
* // Name: "STRING_VALUE",
|
|
118
|
+
* // Severity: "LOW" || "MEDIUM" || "HIGH",
|
|
119
|
+
* // Status: "ONGOING" || "CLOSED",
|
|
120
|
+
* // InsightTimeRange: {
|
|
121
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
122
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
123
|
+
* // },
|
|
124
|
+
* // ResourceCollection: {
|
|
125
|
+
* // CloudFormation: {
|
|
126
|
+
* // StackNames: [
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // },
|
|
130
|
+
* // Tags: [
|
|
131
|
+
* // {
|
|
132
|
+
* // AppBoundaryKey: "STRING_VALUE", // required
|
|
133
|
+
* // TagValues: [ // required
|
|
134
|
+
* // "STRING_VALUE",
|
|
135
|
+
* // ],
|
|
136
|
+
* // },
|
|
137
|
+
* // ],
|
|
138
|
+
* // },
|
|
139
|
+
* // ServiceCollection: {
|
|
140
|
+
* // ServiceNames: [
|
|
141
|
+
* // "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",
|
|
142
|
+
* // ],
|
|
143
|
+
* // },
|
|
144
|
+
* // AssociatedResourceArns: [
|
|
145
|
+
* // "STRING_VALUE",
|
|
146
|
+
* // ],
|
|
147
|
+
* // },
|
|
148
|
+
* // ],
|
|
149
|
+
* // NextToken: "STRING_VALUE",
|
|
150
|
+
* // };
|
|
151
|
+
*
|
|
74
152
|
* ```
|
|
75
153
|
*
|
|
76
154
|
* @param SearchInsightsCommandInput - {@link SearchInsightsCommandInput}
|
|
@@ -95,6 +173,8 @@ export interface SearchInsightsCommandOutput extends SearchInsightsResponse, __M
|
|
|
95
173
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
96
174
|
* valid. </p>
|
|
97
175
|
*
|
|
176
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
177
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
98
178
|
*
|
|
99
179
|
*/
|
|
100
180
|
export declare class SearchInsightsCommand extends $Command<SearchInsightsCommandInput, SearchInsightsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
@@ -75,6 +75,84 @@ export interface SearchOrganizationInsightsCommandOutput extends SearchOrganizat
|
|
|
75
75
|
* };
|
|
76
76
|
* const command = new SearchOrganizationInsightsCommand(input);
|
|
77
77
|
* const response = await client.send(command);
|
|
78
|
+
* // { // SearchOrganizationInsightsResponse
|
|
79
|
+
* // ProactiveInsights: [ // ProactiveInsights
|
|
80
|
+
* // { // ProactiveInsightSummary
|
|
81
|
+
* // Id: "STRING_VALUE",
|
|
82
|
+
* // Name: "STRING_VALUE",
|
|
83
|
+
* // Severity: "LOW" || "MEDIUM" || "HIGH",
|
|
84
|
+
* // Status: "ONGOING" || "CLOSED",
|
|
85
|
+
* // InsightTimeRange: { // InsightTimeRange
|
|
86
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
87
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
88
|
+
* // },
|
|
89
|
+
* // PredictionTimeRange: { // PredictionTimeRange
|
|
90
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
91
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
92
|
+
* // },
|
|
93
|
+
* // ResourceCollection: { // ResourceCollection
|
|
94
|
+
* // CloudFormation: { // CloudFormationCollection
|
|
95
|
+
* // StackNames: [ // StackNames
|
|
96
|
+
* // "STRING_VALUE",
|
|
97
|
+
* // ],
|
|
98
|
+
* // },
|
|
99
|
+
* // Tags: [ // TagCollections
|
|
100
|
+
* // { // TagCollection
|
|
101
|
+
* // AppBoundaryKey: "STRING_VALUE", // required
|
|
102
|
+
* // TagValues: [ // TagValues // required
|
|
103
|
+
* // "STRING_VALUE",
|
|
104
|
+
* // ],
|
|
105
|
+
* // },
|
|
106
|
+
* // ],
|
|
107
|
+
* // },
|
|
108
|
+
* // ServiceCollection: { // ServiceCollection
|
|
109
|
+
* // ServiceNames: [ // ServiceNames
|
|
110
|
+
* // "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",
|
|
111
|
+
* // ],
|
|
112
|
+
* // },
|
|
113
|
+
* // AssociatedResourceArns: [ // AssociatedResourceArns
|
|
114
|
+
* // "STRING_VALUE",
|
|
115
|
+
* // ],
|
|
116
|
+
* // },
|
|
117
|
+
* // ],
|
|
118
|
+
* // ReactiveInsights: [ // ReactiveInsights
|
|
119
|
+
* // { // ReactiveInsightSummary
|
|
120
|
+
* // Id: "STRING_VALUE",
|
|
121
|
+
* // Name: "STRING_VALUE",
|
|
122
|
+
* // Severity: "LOW" || "MEDIUM" || "HIGH",
|
|
123
|
+
* // Status: "ONGOING" || "CLOSED",
|
|
124
|
+
* // InsightTimeRange: {
|
|
125
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
126
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
127
|
+
* // },
|
|
128
|
+
* // ResourceCollection: {
|
|
129
|
+
* // CloudFormation: {
|
|
130
|
+
* // StackNames: [
|
|
131
|
+
* // "STRING_VALUE",
|
|
132
|
+
* // ],
|
|
133
|
+
* // },
|
|
134
|
+
* // Tags: [
|
|
135
|
+
* // {
|
|
136
|
+
* // AppBoundaryKey: "STRING_VALUE", // required
|
|
137
|
+
* // TagValues: [ // required
|
|
138
|
+
* // "STRING_VALUE",
|
|
139
|
+
* // ],
|
|
140
|
+
* // },
|
|
141
|
+
* // ],
|
|
142
|
+
* // },
|
|
143
|
+
* // ServiceCollection: {
|
|
144
|
+
* // ServiceNames: [
|
|
145
|
+
* // "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",
|
|
146
|
+
* // ],
|
|
147
|
+
* // },
|
|
148
|
+
* // AssociatedResourceArns: [
|
|
149
|
+
* // "STRING_VALUE",
|
|
150
|
+
* // ],
|
|
151
|
+
* // },
|
|
152
|
+
* // ],
|
|
153
|
+
* // NextToken: "STRING_VALUE",
|
|
154
|
+
* // };
|
|
155
|
+
*
|
|
78
156
|
* ```
|
|
79
157
|
*
|
|
80
158
|
* @param SearchOrganizationInsightsCommandInput - {@link SearchOrganizationInsightsCommandInput}
|
|
@@ -99,6 +177,8 @@ export interface SearchOrganizationInsightsCommandOutput extends SearchOrganizat
|
|
|
99
177
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
100
178
|
* valid. </p>
|
|
101
179
|
*
|
|
180
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
181
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
102
182
|
*
|
|
103
183
|
*/
|
|
104
184
|
export declare class SearchOrganizationInsightsCommand extends $Command<SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
@@ -47,6 +47,8 @@ export interface StartCostEstimationCommandOutput extends StartCostEstimationRes
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new StartCostEstimationCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // {};
|
|
51
|
+
*
|
|
50
52
|
* ```
|
|
51
53
|
*
|
|
52
54
|
* @param StartCostEstimationCommandInput - {@link StartCostEstimationCommandInput}
|
|
@@ -77,6 +79,8 @@ export interface StartCostEstimationCommandOutput extends StartCostEstimationRes
|
|
|
77
79
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
78
80
|
* valid. </p>
|
|
79
81
|
*
|
|
82
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
80
84
|
*
|
|
81
85
|
*/
|
|
82
86
|
export declare class StartCostEstimationCommand extends $Command<StartCostEstimationCommandInput, StartCostEstimationCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface UpdateEventSourcesConfigCommandOutput extends UpdateEventSource
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new UpdateEventSourcesConfigCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param UpdateEventSourcesConfigCommandInput - {@link UpdateEventSourcesConfigCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface UpdateEventSourcesConfigCommandOutput extends UpdateEventSource
|
|
|
61
63
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
62
64
|
* valid. </p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class UpdateEventSourcesConfigCommand extends $Command<UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
@@ -50,6 +50,8 @@ export interface UpdateResourceCollectionCommandOutput extends UpdateResourceCol
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new UpdateResourceCollectionCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // {};
|
|
54
|
+
*
|
|
53
55
|
* ```
|
|
54
56
|
*
|
|
55
57
|
* @param UpdateResourceCollectionCommandInput - {@link UpdateResourceCollectionCommandInput}
|
|
@@ -77,6 +79,8 @@ export interface UpdateResourceCollectionCommandOutput extends UpdateResourceCol
|
|
|
77
79
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
78
80
|
* valid. </p>
|
|
79
81
|
*
|
|
82
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
80
84
|
*
|
|
81
85
|
*/
|
|
82
86
|
export declare class UpdateResourceCollectionCommand extends $Command<UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
@@ -40,6 +40,8 @@ export interface UpdateServiceIntegrationCommandOutput extends UpdateServiceInte
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new UpdateServiceIntegrationCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
43
45
|
* ```
|
|
44
46
|
*
|
|
45
47
|
* @param UpdateServiceIntegrationCommandInput - {@link UpdateServiceIntegrationCommandInput}
|
|
@@ -67,6 +69,8 @@ export interface UpdateServiceIntegrationCommandOutput extends UpdateServiceInte
|
|
|
67
69
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
68
70
|
* valid. </p>
|
|
69
71
|
*
|
|
72
|
+
* @throws {@link DevOpsGuruServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
|
|
70
74
|
*
|
|
71
75
|
*/
|
|
72
76
|
export declare class UpdateServiceIntegrationCommand extends $Command<UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput, DevOpsGuruClientResolvedConfig> {
|
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.
|
|
4
|
+
"version": "3.327.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|