@aws-sdk/client-devops-guru 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DevOpsGuruServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +113 -3
- package/dist-cjs/protocols/Aws_restJson1.js +349 -1096
- package/dist-es/index.js +1 -0
- package/dist-es/models/DevOpsGuruServiceException.js +12 -0
- package/dist-es/models/models_0.js +103 -1
- package/dist-es/protocols/Aws_restJson1.js +667 -1208
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DevOpsGuruServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/ts3.4/DevOpsGuru.d.ts +135 -0
- package/dist-types/ts3.4/DevOpsGuruClient.d.ts +99 -0
- package/dist-types/ts3.4/commands/AddNotificationChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAccountHealthCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAccountOverviewCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAnomalyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeFeedbackCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeInsightCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeOrganizationHealthCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeOrganizationOverviewCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeResourceCollectionHealthCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeServiceIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCostEstimationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceCollectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAnomaliesForInsightCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEventsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListInsightsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListNotificationChannelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListOrganizationInsightsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutFeedbackCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchInsightsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchOrganizationInsightsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartCostEstimationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateResourceCollectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/DevOpsGuruServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1831 -0
- package/dist-types/ts3.4/pagination/DescribeOrganizationResourceCollectionHealthPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeResourceCollectionHealthPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/GetCostEstimationPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/GetResourceCollectionPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAnomaliesForInsightPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEventsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListInsightsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListNotificationChannelsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListOrganizationInsightsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchInsightsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchOrganizationInsightsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +13 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +80 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from DevOpsGuru service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DevOpsGuruServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,14 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DevOpsGuruServiceException as __BaseException } from "./DevOpsGuruServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p> You don't have permissions to perform the requested operation. The user or role that
|
|
4
5
|
* is making the request must have at least one IAM permissions policy attached that grants
|
|
5
6
|
* the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access Management</a> in the
|
|
6
7
|
* <i>IAM User Guide</i>. </p>
|
|
7
8
|
*/
|
|
8
|
-
export
|
|
9
|
-
name: "AccessDeniedException";
|
|
10
|
-
$fault: "client";
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
11
12
|
Message: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
12
17
|
}
|
|
13
18
|
/**
|
|
14
19
|
* <p> Information about the number of open reactive and proactive insights that can be used
|
|
@@ -131,9 +136,9 @@ export declare namespace AddNotificationChannelResponse {
|
|
|
131
136
|
/**
|
|
132
137
|
* <p> An exception that is thrown when a conflict occurs. </p>
|
|
133
138
|
*/
|
|
134
|
-
export
|
|
135
|
-
name: "ConflictException";
|
|
136
|
-
$fault: "client";
|
|
139
|
+
export declare class ConflictException extends __BaseException {
|
|
140
|
+
readonly name: "ConflictException";
|
|
141
|
+
readonly $fault: "client";
|
|
137
142
|
Message: string | undefined;
|
|
138
143
|
/**
|
|
139
144
|
* <p> The ID of the Amazon Web Services resource in which a conflict occurred. </p>
|
|
@@ -143,26 +148,34 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
143
148
|
* <p> The type of the Amazon Web Services resource in which a conflict occurred. </p>
|
|
144
149
|
*/
|
|
145
150
|
ResourceType: string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
146
155
|
}
|
|
147
156
|
/**
|
|
148
157
|
* <p>An internal failure in an Amazon service occurred.</p>
|
|
149
158
|
*/
|
|
150
|
-
export
|
|
151
|
-
name: "InternalServerException";
|
|
152
|
-
$fault: "server";
|
|
159
|
+
export declare class InternalServerException extends __BaseException {
|
|
160
|
+
readonly name: "InternalServerException";
|
|
161
|
+
readonly $fault: "server";
|
|
153
162
|
Message: string | undefined;
|
|
154
163
|
/**
|
|
155
164
|
* <p> The number of seconds after which the action that caused the internal server
|
|
156
165
|
* exception can be retried. </p>
|
|
157
166
|
*/
|
|
158
167
|
RetryAfterSeconds?: number;
|
|
168
|
+
/**
|
|
169
|
+
* @internal
|
|
170
|
+
*/
|
|
171
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
159
172
|
}
|
|
160
173
|
/**
|
|
161
174
|
* <p>A requested resource could not be found</p>
|
|
162
175
|
*/
|
|
163
|
-
export
|
|
164
|
-
name: "ResourceNotFoundException";
|
|
165
|
-
$fault: "client";
|
|
176
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
177
|
+
readonly name: "ResourceNotFoundException";
|
|
178
|
+
readonly $fault: "client";
|
|
166
179
|
Message: string | undefined;
|
|
167
180
|
/**
|
|
168
181
|
* <p> The ID of the Amazon Web Services resource that could not be found. </p>
|
|
@@ -172,21 +185,29 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
172
185
|
* <p> The type of the Amazon Web Services resource that could not be found. </p>
|
|
173
186
|
*/
|
|
174
187
|
ResourceType: string | undefined;
|
|
188
|
+
/**
|
|
189
|
+
* @internal
|
|
190
|
+
*/
|
|
191
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
175
192
|
}
|
|
176
193
|
/**
|
|
177
194
|
* <p>The request contains a value that exceeds a maximum quota.</p>
|
|
178
195
|
*/
|
|
179
|
-
export
|
|
180
|
-
name: "ServiceQuotaExceededException";
|
|
181
|
-
$fault: "client";
|
|
196
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
197
|
+
readonly name: "ServiceQuotaExceededException";
|
|
198
|
+
readonly $fault: "client";
|
|
182
199
|
Message?: string;
|
|
200
|
+
/**
|
|
201
|
+
* @internal
|
|
202
|
+
*/
|
|
203
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
183
204
|
}
|
|
184
205
|
/**
|
|
185
206
|
* <p>The request was denied due to a request throttling.</p>
|
|
186
207
|
*/
|
|
187
|
-
export
|
|
188
|
-
name: "ThrottlingException";
|
|
189
|
-
$fault: "client";
|
|
208
|
+
export declare class ThrottlingException extends __BaseException {
|
|
209
|
+
readonly name: "ThrottlingException";
|
|
210
|
+
readonly $fault: "client";
|
|
190
211
|
Message: string | undefined;
|
|
191
212
|
/**
|
|
192
213
|
* <p> The code of the quota that was exceeded, causing the throttling exception. </p>
|
|
@@ -201,6 +222,10 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
|
|
|
201
222
|
* be retried. </p>
|
|
202
223
|
*/
|
|
203
224
|
RetryAfterSeconds?: number;
|
|
225
|
+
/**
|
|
226
|
+
* @internal
|
|
227
|
+
*/
|
|
228
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
204
229
|
}
|
|
205
230
|
/**
|
|
206
231
|
* <p> The field associated with the validation exception. </p>
|
|
@@ -234,9 +259,9 @@ export declare enum ValidationExceptionReason {
|
|
|
234
259
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
235
260
|
* valid. </p>
|
|
236
261
|
*/
|
|
237
|
-
export
|
|
238
|
-
name: "ValidationException";
|
|
239
|
-
$fault: "client";
|
|
262
|
+
export declare class ValidationException extends __BaseException {
|
|
263
|
+
readonly name: "ValidationException";
|
|
264
|
+
readonly $fault: "client";
|
|
240
265
|
/**
|
|
241
266
|
* <p> A message that describes the validation exception. </p>
|
|
242
267
|
*/
|
|
@@ -249,6 +274,10 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
|
|
|
249
274
|
* <p> An array of fields that are associated with the validation exception. </p>
|
|
250
275
|
*/
|
|
251
276
|
Fields?: ValidationExceptionField[];
|
|
277
|
+
/**
|
|
278
|
+
* @internal
|
|
279
|
+
*/
|
|
280
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
252
281
|
}
|
|
253
282
|
/**
|
|
254
283
|
* <p> A time range that specifies when DevOps Guru opens and then closes an anomaly. This
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput } from "./commands/AddNotificationChannelCommand";
|
|
3
|
+
import { DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput } from "./commands/DescribeAccountHealthCommand";
|
|
4
|
+
import { DescribeAccountOverviewCommandInput, DescribeAccountOverviewCommandOutput } from "./commands/DescribeAccountOverviewCommand";
|
|
5
|
+
import { DescribeAnomalyCommandInput, DescribeAnomalyCommandOutput } from "./commands/DescribeAnomalyCommand";
|
|
6
|
+
import { DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput } from "./commands/DescribeFeedbackCommand";
|
|
7
|
+
import { DescribeInsightCommandInput, DescribeInsightCommandOutput } from "./commands/DescribeInsightCommand";
|
|
8
|
+
import { DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput } from "./commands/DescribeOrganizationHealthCommand";
|
|
9
|
+
import { DescribeOrganizationOverviewCommandInput, DescribeOrganizationOverviewCommandOutput } from "./commands/DescribeOrganizationOverviewCommand";
|
|
10
|
+
import { DescribeOrganizationResourceCollectionHealthCommandInput, DescribeOrganizationResourceCollectionHealthCommandOutput } from "./commands/DescribeOrganizationResourceCollectionHealthCommand";
|
|
11
|
+
import { DescribeResourceCollectionHealthCommandInput, DescribeResourceCollectionHealthCommandOutput } from "./commands/DescribeResourceCollectionHealthCommand";
|
|
12
|
+
import { DescribeServiceIntegrationCommandInput, DescribeServiceIntegrationCommandOutput } from "./commands/DescribeServiceIntegrationCommand";
|
|
13
|
+
import { GetCostEstimationCommandInput, GetCostEstimationCommandOutput } from "./commands/GetCostEstimationCommand";
|
|
14
|
+
import { GetResourceCollectionCommandInput, GetResourceCollectionCommandOutput } from "./commands/GetResourceCollectionCommand";
|
|
15
|
+
import { ListAnomaliesForInsightCommandInput, ListAnomaliesForInsightCommandOutput } from "./commands/ListAnomaliesForInsightCommand";
|
|
16
|
+
import { ListEventsCommandInput, ListEventsCommandOutput } from "./commands/ListEventsCommand";
|
|
17
|
+
import { ListInsightsCommandInput, ListInsightsCommandOutput } from "./commands/ListInsightsCommand";
|
|
18
|
+
import { ListNotificationChannelsCommandInput, ListNotificationChannelsCommandOutput } from "./commands/ListNotificationChannelsCommand";
|
|
19
|
+
import { ListOrganizationInsightsCommandInput, ListOrganizationInsightsCommandOutput } from "./commands/ListOrganizationInsightsCommand";
|
|
20
|
+
import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "./commands/ListRecommendationsCommand";
|
|
21
|
+
import { PutFeedbackCommandInput, PutFeedbackCommandOutput } from "./commands/PutFeedbackCommand";
|
|
22
|
+
import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput } from "./commands/RemoveNotificationChannelCommand";
|
|
23
|
+
import { SearchInsightsCommandInput, SearchInsightsCommandOutput } from "./commands/SearchInsightsCommand";
|
|
24
|
+
import { SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput } from "./commands/SearchOrganizationInsightsCommand";
|
|
25
|
+
import { StartCostEstimationCommandInput, StartCostEstimationCommandOutput } from "./commands/StartCostEstimationCommand";
|
|
26
|
+
import { UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput } from "./commands/UpdateResourceCollectionCommand";
|
|
27
|
+
import { UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput } from "./commands/UpdateServiceIntegrationCommand";
|
|
28
|
+
import { DevOpsGuruClient } from "./DevOpsGuruClient";
|
|
29
|
+
|
|
30
|
+
export declare class DevOpsGuru extends DevOpsGuruClient {
|
|
31
|
+
|
|
32
|
+
addNotificationChannel(args: AddNotificationChannelCommandInput, options?: __HttpHandlerOptions): Promise<AddNotificationChannelCommandOutput>;
|
|
33
|
+
addNotificationChannel(args: AddNotificationChannelCommandInput, cb: (err: any, data?: AddNotificationChannelCommandOutput) => void): void;
|
|
34
|
+
addNotificationChannel(args: AddNotificationChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddNotificationChannelCommandOutput) => void): void;
|
|
35
|
+
|
|
36
|
+
describeAccountHealth(args: DescribeAccountHealthCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccountHealthCommandOutput>;
|
|
37
|
+
describeAccountHealth(args: DescribeAccountHealthCommandInput, cb: (err: any, data?: DescribeAccountHealthCommandOutput) => void): void;
|
|
38
|
+
describeAccountHealth(args: DescribeAccountHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountHealthCommandOutput) => void): void;
|
|
39
|
+
|
|
40
|
+
describeAccountOverview(args: DescribeAccountOverviewCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccountOverviewCommandOutput>;
|
|
41
|
+
describeAccountOverview(args: DescribeAccountOverviewCommandInput, cb: (err: any, data?: DescribeAccountOverviewCommandOutput) => void): void;
|
|
42
|
+
describeAccountOverview(args: DescribeAccountOverviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountOverviewCommandOutput) => void): void;
|
|
43
|
+
|
|
44
|
+
describeAnomaly(args: DescribeAnomalyCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAnomalyCommandOutput>;
|
|
45
|
+
describeAnomaly(args: DescribeAnomalyCommandInput, cb: (err: any, data?: DescribeAnomalyCommandOutput) => void): void;
|
|
46
|
+
describeAnomaly(args: DescribeAnomalyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAnomalyCommandOutput) => void): void;
|
|
47
|
+
|
|
48
|
+
describeFeedback(args: DescribeFeedbackCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFeedbackCommandOutput>;
|
|
49
|
+
describeFeedback(args: DescribeFeedbackCommandInput, cb: (err: any, data?: DescribeFeedbackCommandOutput) => void): void;
|
|
50
|
+
describeFeedback(args: DescribeFeedbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFeedbackCommandOutput) => void): void;
|
|
51
|
+
|
|
52
|
+
describeInsight(args: DescribeInsightCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInsightCommandOutput>;
|
|
53
|
+
describeInsight(args: DescribeInsightCommandInput, cb: (err: any, data?: DescribeInsightCommandOutput) => void): void;
|
|
54
|
+
describeInsight(args: DescribeInsightCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInsightCommandOutput) => void): void;
|
|
55
|
+
|
|
56
|
+
describeOrganizationHealth(args: DescribeOrganizationHealthCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOrganizationHealthCommandOutput>;
|
|
57
|
+
describeOrganizationHealth(args: DescribeOrganizationHealthCommandInput, cb: (err: any, data?: DescribeOrganizationHealthCommandOutput) => void): void;
|
|
58
|
+
describeOrganizationHealth(args: DescribeOrganizationHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOrganizationHealthCommandOutput) => void): void;
|
|
59
|
+
|
|
60
|
+
describeOrganizationOverview(args: DescribeOrganizationOverviewCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOrganizationOverviewCommandOutput>;
|
|
61
|
+
describeOrganizationOverview(args: DescribeOrganizationOverviewCommandInput, cb: (err: any, data?: DescribeOrganizationOverviewCommandOutput) => void): void;
|
|
62
|
+
describeOrganizationOverview(args: DescribeOrganizationOverviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOrganizationOverviewCommandOutput) => void): void;
|
|
63
|
+
|
|
64
|
+
describeOrganizationResourceCollectionHealth(args: DescribeOrganizationResourceCollectionHealthCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOrganizationResourceCollectionHealthCommandOutput>;
|
|
65
|
+
describeOrganizationResourceCollectionHealth(args: DescribeOrganizationResourceCollectionHealthCommandInput, cb: (err: any, data?: DescribeOrganizationResourceCollectionHealthCommandOutput) => void): void;
|
|
66
|
+
describeOrganizationResourceCollectionHealth(args: DescribeOrganizationResourceCollectionHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOrganizationResourceCollectionHealthCommandOutput) => void): void;
|
|
67
|
+
|
|
68
|
+
describeResourceCollectionHealth(args: DescribeResourceCollectionHealthCommandInput, options?: __HttpHandlerOptions): Promise<DescribeResourceCollectionHealthCommandOutput>;
|
|
69
|
+
describeResourceCollectionHealth(args: DescribeResourceCollectionHealthCommandInput, cb: (err: any, data?: DescribeResourceCollectionHealthCommandOutput) => void): void;
|
|
70
|
+
describeResourceCollectionHealth(args: DescribeResourceCollectionHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeResourceCollectionHealthCommandOutput) => void): void;
|
|
71
|
+
|
|
72
|
+
describeServiceIntegration(args: DescribeServiceIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServiceIntegrationCommandOutput>;
|
|
73
|
+
describeServiceIntegration(args: DescribeServiceIntegrationCommandInput, cb: (err: any, data?: DescribeServiceIntegrationCommandOutput) => void): void;
|
|
74
|
+
describeServiceIntegration(args: DescribeServiceIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceIntegrationCommandOutput) => void): void;
|
|
75
|
+
|
|
76
|
+
getCostEstimation(args: GetCostEstimationCommandInput, options?: __HttpHandlerOptions): Promise<GetCostEstimationCommandOutput>;
|
|
77
|
+
getCostEstimation(args: GetCostEstimationCommandInput, cb: (err: any, data?: GetCostEstimationCommandOutput) => void): void;
|
|
78
|
+
getCostEstimation(args: GetCostEstimationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCostEstimationCommandOutput) => void): void;
|
|
79
|
+
|
|
80
|
+
getResourceCollection(args: GetResourceCollectionCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceCollectionCommandOutput>;
|
|
81
|
+
getResourceCollection(args: GetResourceCollectionCommandInput, cb: (err: any, data?: GetResourceCollectionCommandOutput) => void): void;
|
|
82
|
+
getResourceCollection(args: GetResourceCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceCollectionCommandOutput) => void): void;
|
|
83
|
+
|
|
84
|
+
listAnomaliesForInsight(args: ListAnomaliesForInsightCommandInput, options?: __HttpHandlerOptions): Promise<ListAnomaliesForInsightCommandOutput>;
|
|
85
|
+
listAnomaliesForInsight(args: ListAnomaliesForInsightCommandInput, cb: (err: any, data?: ListAnomaliesForInsightCommandOutput) => void): void;
|
|
86
|
+
listAnomaliesForInsight(args: ListAnomaliesForInsightCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAnomaliesForInsightCommandOutput) => void): void;
|
|
87
|
+
|
|
88
|
+
listEvents(args: ListEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventsCommandOutput>;
|
|
89
|
+
listEvents(args: ListEventsCommandInput, cb: (err: any, data?: ListEventsCommandOutput) => void): void;
|
|
90
|
+
listEvents(args: ListEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventsCommandOutput) => void): void;
|
|
91
|
+
|
|
92
|
+
listInsights(args: ListInsightsCommandInput, options?: __HttpHandlerOptions): Promise<ListInsightsCommandOutput>;
|
|
93
|
+
listInsights(args: ListInsightsCommandInput, cb: (err: any, data?: ListInsightsCommandOutput) => void): void;
|
|
94
|
+
listInsights(args: ListInsightsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInsightsCommandOutput) => void): void;
|
|
95
|
+
|
|
96
|
+
listNotificationChannels(args: ListNotificationChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListNotificationChannelsCommandOutput>;
|
|
97
|
+
listNotificationChannels(args: ListNotificationChannelsCommandInput, cb: (err: any, data?: ListNotificationChannelsCommandOutput) => void): void;
|
|
98
|
+
listNotificationChannels(args: ListNotificationChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotificationChannelsCommandOutput) => void): void;
|
|
99
|
+
|
|
100
|
+
listOrganizationInsights(args: ListOrganizationInsightsCommandInput, options?: __HttpHandlerOptions): Promise<ListOrganizationInsightsCommandOutput>;
|
|
101
|
+
listOrganizationInsights(args: ListOrganizationInsightsCommandInput, cb: (err: any, data?: ListOrganizationInsightsCommandOutput) => void): void;
|
|
102
|
+
listOrganizationInsights(args: ListOrganizationInsightsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrganizationInsightsCommandOutput) => void): void;
|
|
103
|
+
|
|
104
|
+
listRecommendations(args: ListRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecommendationsCommandOutput>;
|
|
105
|
+
listRecommendations(args: ListRecommendationsCommandInput, cb: (err: any, data?: ListRecommendationsCommandOutput) => void): void;
|
|
106
|
+
listRecommendations(args: ListRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecommendationsCommandOutput) => void): void;
|
|
107
|
+
|
|
108
|
+
putFeedback(args: PutFeedbackCommandInput, options?: __HttpHandlerOptions): Promise<PutFeedbackCommandOutput>;
|
|
109
|
+
putFeedback(args: PutFeedbackCommandInput, cb: (err: any, data?: PutFeedbackCommandOutput) => void): void;
|
|
110
|
+
putFeedback(args: PutFeedbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutFeedbackCommandOutput) => void): void;
|
|
111
|
+
|
|
112
|
+
removeNotificationChannel(args: RemoveNotificationChannelCommandInput, options?: __HttpHandlerOptions): Promise<RemoveNotificationChannelCommandOutput>;
|
|
113
|
+
removeNotificationChannel(args: RemoveNotificationChannelCommandInput, cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void): void;
|
|
114
|
+
removeNotificationChannel(args: RemoveNotificationChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void): void;
|
|
115
|
+
|
|
116
|
+
searchInsights(args: SearchInsightsCommandInput, options?: __HttpHandlerOptions): Promise<SearchInsightsCommandOutput>;
|
|
117
|
+
searchInsights(args: SearchInsightsCommandInput, cb: (err: any, data?: SearchInsightsCommandOutput) => void): void;
|
|
118
|
+
searchInsights(args: SearchInsightsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchInsightsCommandOutput) => void): void;
|
|
119
|
+
|
|
120
|
+
searchOrganizationInsights(args: SearchOrganizationInsightsCommandInput, options?: __HttpHandlerOptions): Promise<SearchOrganizationInsightsCommandOutput>;
|
|
121
|
+
searchOrganizationInsights(args: SearchOrganizationInsightsCommandInput, cb: (err: any, data?: SearchOrganizationInsightsCommandOutput) => void): void;
|
|
122
|
+
searchOrganizationInsights(args: SearchOrganizationInsightsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchOrganizationInsightsCommandOutput) => void): void;
|
|
123
|
+
|
|
124
|
+
startCostEstimation(args: StartCostEstimationCommandInput, options?: __HttpHandlerOptions): Promise<StartCostEstimationCommandOutput>;
|
|
125
|
+
startCostEstimation(args: StartCostEstimationCommandInput, cb: (err: any, data?: StartCostEstimationCommandOutput) => void): void;
|
|
126
|
+
startCostEstimation(args: StartCostEstimationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartCostEstimationCommandOutput) => void): void;
|
|
127
|
+
|
|
128
|
+
updateResourceCollection(args: UpdateResourceCollectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceCollectionCommandOutput>;
|
|
129
|
+
updateResourceCollection(args: UpdateResourceCollectionCommandInput, cb: (err: any, data?: UpdateResourceCollectionCommandOutput) => void): void;
|
|
130
|
+
updateResourceCollection(args: UpdateResourceCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceCollectionCommandOutput) => void): void;
|
|
131
|
+
|
|
132
|
+
updateServiceIntegration(args: UpdateServiceIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceIntegrationCommandOutput>;
|
|
133
|
+
updateServiceIntegration(args: UpdateServiceIntegrationCommandInput, cb: (err: any, data?: UpdateServiceIntegrationCommandOutput) => void): void;
|
|
134
|
+
updateServiceIntegration(args: UpdateServiceIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceIntegrationCommandOutput) => void): void;
|
|
135
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput } from "./commands/AddNotificationChannelCommand";
|
|
10
|
+
import { DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput } from "./commands/DescribeAccountHealthCommand";
|
|
11
|
+
import { DescribeAccountOverviewCommandInput, DescribeAccountOverviewCommandOutput } from "./commands/DescribeAccountOverviewCommand";
|
|
12
|
+
import { DescribeAnomalyCommandInput, DescribeAnomalyCommandOutput } from "./commands/DescribeAnomalyCommand";
|
|
13
|
+
import { DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput } from "./commands/DescribeFeedbackCommand";
|
|
14
|
+
import { DescribeInsightCommandInput, DescribeInsightCommandOutput } from "./commands/DescribeInsightCommand";
|
|
15
|
+
import { DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput } from "./commands/DescribeOrganizationHealthCommand";
|
|
16
|
+
import { DescribeOrganizationOverviewCommandInput, DescribeOrganizationOverviewCommandOutput } from "./commands/DescribeOrganizationOverviewCommand";
|
|
17
|
+
import { DescribeOrganizationResourceCollectionHealthCommandInput, DescribeOrganizationResourceCollectionHealthCommandOutput } from "./commands/DescribeOrganizationResourceCollectionHealthCommand";
|
|
18
|
+
import { DescribeResourceCollectionHealthCommandInput, DescribeResourceCollectionHealthCommandOutput } from "./commands/DescribeResourceCollectionHealthCommand";
|
|
19
|
+
import { DescribeServiceIntegrationCommandInput, DescribeServiceIntegrationCommandOutput } from "./commands/DescribeServiceIntegrationCommand";
|
|
20
|
+
import { GetCostEstimationCommandInput, GetCostEstimationCommandOutput } from "./commands/GetCostEstimationCommand";
|
|
21
|
+
import { GetResourceCollectionCommandInput, GetResourceCollectionCommandOutput } from "./commands/GetResourceCollectionCommand";
|
|
22
|
+
import { ListAnomaliesForInsightCommandInput, ListAnomaliesForInsightCommandOutput } from "./commands/ListAnomaliesForInsightCommand";
|
|
23
|
+
import { ListEventsCommandInput, ListEventsCommandOutput } from "./commands/ListEventsCommand";
|
|
24
|
+
import { ListInsightsCommandInput, ListInsightsCommandOutput } from "./commands/ListInsightsCommand";
|
|
25
|
+
import { ListNotificationChannelsCommandInput, ListNotificationChannelsCommandOutput } from "./commands/ListNotificationChannelsCommand";
|
|
26
|
+
import { ListOrganizationInsightsCommandInput, ListOrganizationInsightsCommandOutput } from "./commands/ListOrganizationInsightsCommand";
|
|
27
|
+
import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "./commands/ListRecommendationsCommand";
|
|
28
|
+
import { PutFeedbackCommandInput, PutFeedbackCommandOutput } from "./commands/PutFeedbackCommand";
|
|
29
|
+
import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput } from "./commands/RemoveNotificationChannelCommand";
|
|
30
|
+
import { SearchInsightsCommandInput, SearchInsightsCommandOutput } from "./commands/SearchInsightsCommand";
|
|
31
|
+
import { SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput } from "./commands/SearchOrganizationInsightsCommand";
|
|
32
|
+
import { StartCostEstimationCommandInput, StartCostEstimationCommandOutput } from "./commands/StartCostEstimationCommand";
|
|
33
|
+
import { UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput } from "./commands/UpdateResourceCollectionCommand";
|
|
34
|
+
import { UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput } from "./commands/UpdateServiceIntegrationCommand";
|
|
35
|
+
export declare type ServiceInputTypes = AddNotificationChannelCommandInput | DescribeAccountHealthCommandInput | DescribeAccountOverviewCommandInput | DescribeAnomalyCommandInput | DescribeFeedbackCommandInput | DescribeInsightCommandInput | DescribeOrganizationHealthCommandInput | DescribeOrganizationOverviewCommandInput | DescribeOrganizationResourceCollectionHealthCommandInput | DescribeResourceCollectionHealthCommandInput | DescribeServiceIntegrationCommandInput | GetCostEstimationCommandInput | GetResourceCollectionCommandInput | ListAnomaliesForInsightCommandInput | ListEventsCommandInput | ListInsightsCommandInput | ListNotificationChannelsCommandInput | ListOrganizationInsightsCommandInput | ListRecommendationsCommandInput | PutFeedbackCommandInput | RemoveNotificationChannelCommandInput | SearchInsightsCommandInput | SearchOrganizationInsightsCommandInput | StartCostEstimationCommandInput | UpdateResourceCollectionCommandInput | UpdateServiceIntegrationCommandInput;
|
|
36
|
+
export declare type ServiceOutputTypes = AddNotificationChannelCommandOutput | DescribeAccountHealthCommandOutput | DescribeAccountOverviewCommandOutput | DescribeAnomalyCommandOutput | DescribeFeedbackCommandOutput | DescribeInsightCommandOutput | DescribeOrganizationHealthCommandOutput | DescribeOrganizationOverviewCommandOutput | DescribeOrganizationResourceCollectionHealthCommandOutput | DescribeResourceCollectionHealthCommandOutput | DescribeServiceIntegrationCommandOutput | GetCostEstimationCommandOutput | GetResourceCollectionCommandOutput | ListAnomaliesForInsightCommandOutput | ListEventsCommandOutput | ListInsightsCommandOutput | ListNotificationChannelsCommandOutput | ListOrganizationInsightsCommandOutput | ListRecommendationsCommandOutput | PutFeedbackCommandOutput | RemoveNotificationChannelCommandOutput | SearchInsightsCommandOutput | SearchOrganizationInsightsCommandOutput | StartCostEstimationCommandOutput | UpdateResourceCollectionCommandOutput | UpdateServiceIntegrationCommandOutput;
|
|
37
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
38
|
+
|
|
39
|
+
requestHandler?: __HttpHandler;
|
|
40
|
+
|
|
41
|
+
sha256?: __HashConstructor;
|
|
42
|
+
|
|
43
|
+
urlParser?: __UrlParser;
|
|
44
|
+
|
|
45
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
46
|
+
|
|
47
|
+
streamCollector?: __StreamCollector;
|
|
48
|
+
|
|
49
|
+
base64Decoder?: __Decoder;
|
|
50
|
+
|
|
51
|
+
base64Encoder?: __Encoder;
|
|
52
|
+
|
|
53
|
+
utf8Decoder?: __Decoder;
|
|
54
|
+
|
|
55
|
+
utf8Encoder?: __Encoder;
|
|
56
|
+
|
|
57
|
+
runtime?: string;
|
|
58
|
+
|
|
59
|
+
disableHostPrefix?: boolean;
|
|
60
|
+
|
|
61
|
+
maxAttempts?: number | __Provider<number>;
|
|
62
|
+
|
|
63
|
+
retryMode?: string | __Provider<string>;
|
|
64
|
+
|
|
65
|
+
logger?: __Logger;
|
|
66
|
+
|
|
67
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
68
|
+
|
|
69
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
70
|
+
|
|
71
|
+
serviceId?: string;
|
|
72
|
+
|
|
73
|
+
region?: string | __Provider<string>;
|
|
74
|
+
|
|
75
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
76
|
+
|
|
77
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
78
|
+
|
|
79
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
80
|
+
|
|
81
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
82
|
+
}
|
|
83
|
+
declare type DevOpsGuruClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
84
|
+
|
|
85
|
+
export interface DevOpsGuruClientConfig extends DevOpsGuruClientConfigType {
|
|
86
|
+
}
|
|
87
|
+
declare type DevOpsGuruClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
88
|
+
|
|
89
|
+
export interface DevOpsGuruClientResolvedConfig extends DevOpsGuruClientResolvedConfigType {
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export declare class DevOpsGuruClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DevOpsGuruClientResolvedConfig> {
|
|
93
|
+
|
|
94
|
+
readonly config: DevOpsGuruClientResolvedConfig;
|
|
95
|
+
constructor(configuration: DevOpsGuruClientConfig);
|
|
96
|
+
|
|
97
|
+
destroy(): void;
|
|
98
|
+
}
|
|
99
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { AddNotificationChannelRequest, AddNotificationChannelResponse } from "../models/models_0";
|
|
5
|
+
export interface AddNotificationChannelCommandInput extends AddNotificationChannelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AddNotificationChannelCommandOutput extends AddNotificationChannelResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddNotificationChannelCommand extends $Command<AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: AddNotificationChannelCommandInput;
|
|
12
|
+
constructor(input: AddNotificationChannelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeAccountHealthRequest, DescribeAccountHealthResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeAccountHealthCommandInput extends DescribeAccountHealthRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeAccountHealthCommandOutput extends DescribeAccountHealthResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeAccountHealthCommand extends $Command<DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeAccountHealthCommandInput;
|
|
12
|
+
constructor(input: DescribeAccountHealthCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeAccountOverviewRequest, DescribeAccountOverviewResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeAccountOverviewCommandInput extends DescribeAccountOverviewRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeAccountOverviewCommandOutput extends DescribeAccountOverviewResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeAccountOverviewCommand extends $Command<DescribeAccountOverviewCommandInput, DescribeAccountOverviewCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeAccountOverviewCommandInput;
|
|
12
|
+
constructor(input: DescribeAccountOverviewCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAccountOverviewCommandInput, DescribeAccountOverviewCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeAnomalyRequest, DescribeAnomalyResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeAnomalyCommandInput extends DescribeAnomalyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeAnomalyCommandOutput extends DescribeAnomalyResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeAnomalyCommand extends $Command<DescribeAnomalyCommandInput, DescribeAnomalyCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeAnomalyCommandInput;
|
|
12
|
+
constructor(input: DescribeAnomalyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAnomalyCommandInput, DescribeAnomalyCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeFeedbackRequest, DescribeFeedbackResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeFeedbackCommandInput extends DescribeFeedbackRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeFeedbackCommandOutput extends DescribeFeedbackResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeFeedbackCommand extends $Command<DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeFeedbackCommandInput;
|
|
12
|
+
constructor(input: DescribeFeedbackCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeInsightRequest, DescribeInsightResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeInsightCommandInput extends DescribeInsightRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeInsightCommandOutput extends DescribeInsightResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeInsightCommand extends $Command<DescribeInsightCommandInput, DescribeInsightCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeInsightCommandInput;
|
|
12
|
+
constructor(input: DescribeInsightCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeInsightCommandInput, DescribeInsightCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeOrganizationHealthRequest, DescribeOrganizationHealthResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeOrganizationHealthCommandInput extends DescribeOrganizationHealthRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeOrganizationHealthCommandOutput extends DescribeOrganizationHealthResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeOrganizationHealthCommand extends $Command<DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeOrganizationHealthCommandInput;
|
|
12
|
+
constructor(input: DescribeOrganizationHealthCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeOrganizationOverviewRequest, DescribeOrganizationOverviewResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeOrganizationOverviewCommandInput extends DescribeOrganizationOverviewRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeOrganizationOverviewCommandOutput extends DescribeOrganizationOverviewResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeOrganizationOverviewCommand extends $Command<DescribeOrganizationOverviewCommandInput, DescribeOrganizationOverviewCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeOrganizationOverviewCommandInput;
|
|
12
|
+
constructor(input: DescribeOrganizationOverviewCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationOverviewCommandInput, DescribeOrganizationOverviewCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeOrganizationResourceCollectionHealthRequest, DescribeOrganizationResourceCollectionHealthResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeOrganizationResourceCollectionHealthCommandInput extends DescribeOrganizationResourceCollectionHealthRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeOrganizationResourceCollectionHealthCommandOutput extends DescribeOrganizationResourceCollectionHealthResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeOrganizationResourceCollectionHealthCommand extends $Command<DescribeOrganizationResourceCollectionHealthCommandInput, DescribeOrganizationResourceCollectionHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeOrganizationResourceCollectionHealthCommandInput;
|
|
12
|
+
constructor(input: DescribeOrganizationResourceCollectionHealthCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationResourceCollectionHealthCommandInput, DescribeOrganizationResourceCollectionHealthCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeResourceCollectionHealthRequest, DescribeResourceCollectionHealthResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeResourceCollectionHealthCommandInput extends DescribeResourceCollectionHealthRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeResourceCollectionHealthCommandOutput extends DescribeResourceCollectionHealthResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeResourceCollectionHealthCommand extends $Command<DescribeResourceCollectionHealthCommandInput, DescribeResourceCollectionHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeResourceCollectionHealthCommandInput;
|
|
12
|
+
constructor(input: DescribeResourceCollectionHealthCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeResourceCollectionHealthCommandInput, DescribeResourceCollectionHealthCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeServiceIntegrationRequest, DescribeServiceIntegrationResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeServiceIntegrationCommandInput extends DescribeServiceIntegrationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeServiceIntegrationCommandOutput extends DescribeServiceIntegrationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeServiceIntegrationCommand extends $Command<DescribeServiceIntegrationCommandInput, DescribeServiceIntegrationCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeServiceIntegrationCommandInput;
|
|
12
|
+
constructor(input: DescribeServiceIntegrationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeServiceIntegrationCommandInput, DescribeServiceIntegrationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|