@aws-sdk/client-ssm-incidents 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 +30 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SSMIncidentsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +107 -2
- package/dist-cjs/protocols/Aws_restJson1.js +335 -1286
- package/dist-es/index.js +1 -0
- package/dist-es/models/SSMIncidentsServiceException.js +12 -0
- package/dist-es/models/models_0.js +98 -1
- package/dist-es/protocols/Aws_restJson1.js +703 -1411
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SSMIncidentsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +52 -29
- package/dist-types/ts3.4/SSMIncidents.d.ts +150 -0
- package/dist-types/ts3.4/SSMIncidentsClient.d.ts +102 -0
- package/dist-types/ts3.4/commands/CreateReplicationSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateResponsePlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateTimelineEventCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteIncidentRecordCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteReplicationSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteResponsePlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteTimelineEventCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetIncidentRecordCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetReplicationSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResponsePlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTimelineEventCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListIncidentRecordsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListRelatedItemsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListReplicationSetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListResponsePlansCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTimelineEventsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartIncidentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDeletionProtectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateIncidentRecordCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateRelatedItemsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateReplicationSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateResponsePlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateTimelineEventCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +29 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +7 -0
- package/dist-types/ts3.4/models/SSMIncidentsServiceException.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 +1305 -0
- package/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListIncidentRecordsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListRelatedItemsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListReplicationSetsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListResponsePlansPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTimelineEventsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +89 -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/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetActive.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetDeleted.d.ts +7 -0
- package/package.json +34 -34
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 SSMIncidents service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class SSMIncidentsServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SSMIncidentsServiceException as __BaseException } from "./SSMIncidentsServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You don't have sufficient access to perform this operation.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
8
|
-
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
13
|
}
|
|
10
14
|
export declare enum SsmTargetAccount {
|
|
11
15
|
IMPACTED_ACCOUNT = "IMPACTED_ACCOUNT",
|
|
@@ -273,10 +277,9 @@ export declare enum ResourceType {
|
|
|
273
277
|
/**
|
|
274
278
|
* <p>Updating or deleting a resource causes an inconsistent state.</p>
|
|
275
279
|
*/
|
|
276
|
-
export
|
|
277
|
-
name: "ConflictException";
|
|
278
|
-
$fault: "client";
|
|
279
|
-
message: string | undefined;
|
|
280
|
+
export declare class ConflictException extends __BaseException {
|
|
281
|
+
readonly name: "ConflictException";
|
|
282
|
+
readonly $fault: "client";
|
|
280
283
|
/**
|
|
281
284
|
* The identifier of the requested resource
|
|
282
285
|
*/
|
|
@@ -289,6 +292,10 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
289
292
|
* If present in the output, the operation can be retried after this time
|
|
290
293
|
*/
|
|
291
294
|
retryAfter?: Date;
|
|
295
|
+
/**
|
|
296
|
+
* @internal
|
|
297
|
+
*/
|
|
298
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
292
299
|
}
|
|
293
300
|
/**
|
|
294
301
|
* <p>The mapping between a Amazon Web Services Region and the key that's used to encrypt the
|
|
@@ -342,10 +349,13 @@ export declare namespace CreateReplicationSetOutput {
|
|
|
342
349
|
* <p>The request processing has failed because of an unknown error, exception or
|
|
343
350
|
* failure.</p>
|
|
344
351
|
*/
|
|
345
|
-
export
|
|
346
|
-
name: "InternalServerException";
|
|
347
|
-
$fault: "server";
|
|
348
|
-
|
|
352
|
+
export declare class InternalServerException extends __BaseException {
|
|
353
|
+
readonly name: "InternalServerException";
|
|
354
|
+
readonly $fault: "server";
|
|
355
|
+
/**
|
|
356
|
+
* @internal
|
|
357
|
+
*/
|
|
358
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
349
359
|
}
|
|
350
360
|
export declare enum ServiceCode {
|
|
351
361
|
SSM_INCIDENTS = "ssm-incidents"
|
|
@@ -353,10 +363,9 @@ export declare enum ServiceCode {
|
|
|
353
363
|
/**
|
|
354
364
|
* <p>Request would cause a service quota to be exceeded.</p>
|
|
355
365
|
*/
|
|
356
|
-
export
|
|
357
|
-
name: "ServiceQuotaExceededException";
|
|
358
|
-
$fault: "client";
|
|
359
|
-
message: string | undefined;
|
|
366
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
367
|
+
readonly name: "ServiceQuotaExceededException";
|
|
368
|
+
readonly $fault: "client";
|
|
360
369
|
/**
|
|
361
370
|
* The identifier for the requested resource
|
|
362
371
|
*/
|
|
@@ -373,14 +382,17 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
|
|
|
373
382
|
* Originating quota code
|
|
374
383
|
*/
|
|
375
384
|
quotaCode: string | undefined;
|
|
385
|
+
/**
|
|
386
|
+
* @internal
|
|
387
|
+
*/
|
|
388
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
376
389
|
}
|
|
377
390
|
/**
|
|
378
391
|
* <p>The request was denied due to request throttling.</p>
|
|
379
392
|
*/
|
|
380
|
-
export
|
|
381
|
-
name: "ThrottlingException";
|
|
382
|
-
$fault: "client";
|
|
383
|
-
message: string | undefined;
|
|
393
|
+
export declare class ThrottlingException extends __BaseException {
|
|
394
|
+
readonly name: "ThrottlingException";
|
|
395
|
+
readonly $fault: "client";
|
|
384
396
|
/**
|
|
385
397
|
* Originating service code
|
|
386
398
|
*/
|
|
@@ -389,15 +401,22 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
|
|
|
389
401
|
* Originating quota code
|
|
390
402
|
*/
|
|
391
403
|
quotaCode: string | undefined;
|
|
404
|
+
/**
|
|
405
|
+
* @internal
|
|
406
|
+
*/
|
|
407
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
392
408
|
}
|
|
393
409
|
/**
|
|
394
410
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
395
411
|
* service.</p>
|
|
396
412
|
*/
|
|
397
|
-
export
|
|
398
|
-
name: "ValidationException";
|
|
399
|
-
$fault: "client";
|
|
400
|
-
|
|
413
|
+
export declare class ValidationException extends __BaseException {
|
|
414
|
+
readonly name: "ValidationException";
|
|
415
|
+
readonly $fault: "client";
|
|
416
|
+
/**
|
|
417
|
+
* @internal
|
|
418
|
+
*/
|
|
419
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
401
420
|
}
|
|
402
421
|
/**
|
|
403
422
|
* <p>The SNS targets that are notified when updates are made to an incident.</p>
|
|
@@ -518,10 +537,9 @@ export declare namespace CreateResponsePlanOutput {
|
|
|
518
537
|
/**
|
|
519
538
|
* <p>Request references a resource which doesn't exist. </p>
|
|
520
539
|
*/
|
|
521
|
-
export
|
|
522
|
-
name: "ResourceNotFoundException";
|
|
523
|
-
$fault: "client";
|
|
524
|
-
message: string | undefined;
|
|
540
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
541
|
+
readonly name: "ResourceNotFoundException";
|
|
542
|
+
readonly $fault: "client";
|
|
525
543
|
/**
|
|
526
544
|
* The identifier for the requested resource
|
|
527
545
|
*/
|
|
@@ -530,6 +548,10 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
530
548
|
* The resource type
|
|
531
549
|
*/
|
|
532
550
|
resourceType?: ResourceType | string;
|
|
551
|
+
/**
|
|
552
|
+
* @internal
|
|
553
|
+
*/
|
|
554
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
533
555
|
}
|
|
534
556
|
export interface CreateTimelineEventInput {
|
|
535
557
|
/**
|
|
@@ -1240,6 +1262,7 @@ export declare namespace IncidentRecordSummary {
|
|
|
1240
1262
|
export declare enum ItemType {
|
|
1241
1263
|
ANALYSIS = "ANALYSIS",
|
|
1242
1264
|
ATTACHMENT = "ATTACHMENT",
|
|
1265
|
+
AUTOMATION = "AUTOMATION",
|
|
1243
1266
|
INCIDENT = "INCIDENT",
|
|
1244
1267
|
METRIC = "METRIC",
|
|
1245
1268
|
OTHER = "OTHER",
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CreateReplicationSetCommandInput, CreateReplicationSetCommandOutput } from "./commands/CreateReplicationSetCommand";
|
|
3
|
+
import { CreateResponsePlanCommandInput, CreateResponsePlanCommandOutput } from "./commands/CreateResponsePlanCommand";
|
|
4
|
+
import { CreateTimelineEventCommandInput, CreateTimelineEventCommandOutput } from "./commands/CreateTimelineEventCommand";
|
|
5
|
+
import { DeleteIncidentRecordCommandInput, DeleteIncidentRecordCommandOutput } from "./commands/DeleteIncidentRecordCommand";
|
|
6
|
+
import { DeleteReplicationSetCommandInput, DeleteReplicationSetCommandOutput } from "./commands/DeleteReplicationSetCommand";
|
|
7
|
+
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
8
|
+
import { DeleteResponsePlanCommandInput, DeleteResponsePlanCommandOutput } from "./commands/DeleteResponsePlanCommand";
|
|
9
|
+
import { DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput } from "./commands/DeleteTimelineEventCommand";
|
|
10
|
+
import { GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput } from "./commands/GetIncidentRecordCommand";
|
|
11
|
+
import { GetReplicationSetCommandInput, GetReplicationSetCommandOutput } from "./commands/GetReplicationSetCommand";
|
|
12
|
+
import { GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput } from "./commands/GetResourcePoliciesCommand";
|
|
13
|
+
import { GetResponsePlanCommandInput, GetResponsePlanCommandOutput } from "./commands/GetResponsePlanCommand";
|
|
14
|
+
import { GetTimelineEventCommandInput, GetTimelineEventCommandOutput } from "./commands/GetTimelineEventCommand";
|
|
15
|
+
import { ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput } from "./commands/ListIncidentRecordsCommand";
|
|
16
|
+
import { ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput } from "./commands/ListRelatedItemsCommand";
|
|
17
|
+
import { ListReplicationSetsCommandInput, ListReplicationSetsCommandOutput } from "./commands/ListReplicationSetsCommand";
|
|
18
|
+
import { ListResponsePlansCommandInput, ListResponsePlansCommandOutput } from "./commands/ListResponsePlansCommand";
|
|
19
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
20
|
+
import { ListTimelineEventsCommandInput, ListTimelineEventsCommandOutput } from "./commands/ListTimelineEventsCommand";
|
|
21
|
+
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
22
|
+
import { StartIncidentCommandInput, StartIncidentCommandOutput } from "./commands/StartIncidentCommand";
|
|
23
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
|
+
import { UpdateDeletionProtectionCommandInput, UpdateDeletionProtectionCommandOutput } from "./commands/UpdateDeletionProtectionCommand";
|
|
26
|
+
import { UpdateIncidentRecordCommandInput, UpdateIncidentRecordCommandOutput } from "./commands/UpdateIncidentRecordCommand";
|
|
27
|
+
import { UpdateRelatedItemsCommandInput, UpdateRelatedItemsCommandOutput } from "./commands/UpdateRelatedItemsCommand";
|
|
28
|
+
import { UpdateReplicationSetCommandInput, UpdateReplicationSetCommandOutput } from "./commands/UpdateReplicationSetCommand";
|
|
29
|
+
import { UpdateResponsePlanCommandInput, UpdateResponsePlanCommandOutput } from "./commands/UpdateResponsePlanCommand";
|
|
30
|
+
import { UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput } from "./commands/UpdateTimelineEventCommand";
|
|
31
|
+
import { SSMIncidentsClient } from "./SSMIncidentsClient";
|
|
32
|
+
|
|
33
|
+
export declare class SSMIncidents extends SSMIncidentsClient {
|
|
34
|
+
|
|
35
|
+
createReplicationSet(args: CreateReplicationSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateReplicationSetCommandOutput>;
|
|
36
|
+
createReplicationSet(args: CreateReplicationSetCommandInput, cb: (err: any, data?: CreateReplicationSetCommandOutput) => void): void;
|
|
37
|
+
createReplicationSet(args: CreateReplicationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReplicationSetCommandOutput) => void): void;
|
|
38
|
+
|
|
39
|
+
createResponsePlan(args: CreateResponsePlanCommandInput, options?: __HttpHandlerOptions): Promise<CreateResponsePlanCommandOutput>;
|
|
40
|
+
createResponsePlan(args: CreateResponsePlanCommandInput, cb: (err: any, data?: CreateResponsePlanCommandOutput) => void): void;
|
|
41
|
+
createResponsePlan(args: CreateResponsePlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResponsePlanCommandOutput) => void): void;
|
|
42
|
+
|
|
43
|
+
createTimelineEvent(args: CreateTimelineEventCommandInput, options?: __HttpHandlerOptions): Promise<CreateTimelineEventCommandOutput>;
|
|
44
|
+
createTimelineEvent(args: CreateTimelineEventCommandInput, cb: (err: any, data?: CreateTimelineEventCommandOutput) => void): void;
|
|
45
|
+
createTimelineEvent(args: CreateTimelineEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTimelineEventCommandOutput) => void): void;
|
|
46
|
+
|
|
47
|
+
deleteIncidentRecord(args: DeleteIncidentRecordCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIncidentRecordCommandOutput>;
|
|
48
|
+
deleteIncidentRecord(args: DeleteIncidentRecordCommandInput, cb: (err: any, data?: DeleteIncidentRecordCommandOutput) => void): void;
|
|
49
|
+
deleteIncidentRecord(args: DeleteIncidentRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIncidentRecordCommandOutput) => void): void;
|
|
50
|
+
|
|
51
|
+
deleteReplicationSet(args: DeleteReplicationSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReplicationSetCommandOutput>;
|
|
52
|
+
deleteReplicationSet(args: DeleteReplicationSetCommandInput, cb: (err: any, data?: DeleteReplicationSetCommandOutput) => void): void;
|
|
53
|
+
deleteReplicationSet(args: DeleteReplicationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReplicationSetCommandOutput) => void): void;
|
|
54
|
+
|
|
55
|
+
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
|
|
56
|
+
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
57
|
+
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
58
|
+
|
|
59
|
+
deleteResponsePlan(args: DeleteResponsePlanCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResponsePlanCommandOutput>;
|
|
60
|
+
deleteResponsePlan(args: DeleteResponsePlanCommandInput, cb: (err: any, data?: DeleteResponsePlanCommandOutput) => void): void;
|
|
61
|
+
deleteResponsePlan(args: DeleteResponsePlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResponsePlanCommandOutput) => void): void;
|
|
62
|
+
|
|
63
|
+
deleteTimelineEvent(args: DeleteTimelineEventCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTimelineEventCommandOutput>;
|
|
64
|
+
deleteTimelineEvent(args: DeleteTimelineEventCommandInput, cb: (err: any, data?: DeleteTimelineEventCommandOutput) => void): void;
|
|
65
|
+
deleteTimelineEvent(args: DeleteTimelineEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTimelineEventCommandOutput) => void): void;
|
|
66
|
+
|
|
67
|
+
getIncidentRecord(args: GetIncidentRecordCommandInput, options?: __HttpHandlerOptions): Promise<GetIncidentRecordCommandOutput>;
|
|
68
|
+
getIncidentRecord(args: GetIncidentRecordCommandInput, cb: (err: any, data?: GetIncidentRecordCommandOutput) => void): void;
|
|
69
|
+
getIncidentRecord(args: GetIncidentRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIncidentRecordCommandOutput) => void): void;
|
|
70
|
+
|
|
71
|
+
getReplicationSet(args: GetReplicationSetCommandInput, options?: __HttpHandlerOptions): Promise<GetReplicationSetCommandOutput>;
|
|
72
|
+
getReplicationSet(args: GetReplicationSetCommandInput, cb: (err: any, data?: GetReplicationSetCommandOutput) => void): void;
|
|
73
|
+
getReplicationSet(args: GetReplicationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReplicationSetCommandOutput) => void): void;
|
|
74
|
+
|
|
75
|
+
getResourcePolicies(args: GetResourcePoliciesCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePoliciesCommandOutput>;
|
|
76
|
+
getResourcePolicies(args: GetResourcePoliciesCommandInput, cb: (err: any, data?: GetResourcePoliciesCommandOutput) => void): void;
|
|
77
|
+
getResourcePolicies(args: GetResourcePoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePoliciesCommandOutput) => void): void;
|
|
78
|
+
|
|
79
|
+
getResponsePlan(args: GetResponsePlanCommandInput, options?: __HttpHandlerOptions): Promise<GetResponsePlanCommandOutput>;
|
|
80
|
+
getResponsePlan(args: GetResponsePlanCommandInput, cb: (err: any, data?: GetResponsePlanCommandOutput) => void): void;
|
|
81
|
+
getResponsePlan(args: GetResponsePlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResponsePlanCommandOutput) => void): void;
|
|
82
|
+
|
|
83
|
+
getTimelineEvent(args: GetTimelineEventCommandInput, options?: __HttpHandlerOptions): Promise<GetTimelineEventCommandOutput>;
|
|
84
|
+
getTimelineEvent(args: GetTimelineEventCommandInput, cb: (err: any, data?: GetTimelineEventCommandOutput) => void): void;
|
|
85
|
+
getTimelineEvent(args: GetTimelineEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTimelineEventCommandOutput) => void): void;
|
|
86
|
+
|
|
87
|
+
listIncidentRecords(args: ListIncidentRecordsCommandInput, options?: __HttpHandlerOptions): Promise<ListIncidentRecordsCommandOutput>;
|
|
88
|
+
listIncidentRecords(args: ListIncidentRecordsCommandInput, cb: (err: any, data?: ListIncidentRecordsCommandOutput) => void): void;
|
|
89
|
+
listIncidentRecords(args: ListIncidentRecordsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIncidentRecordsCommandOutput) => void): void;
|
|
90
|
+
|
|
91
|
+
listRelatedItems(args: ListRelatedItemsCommandInput, options?: __HttpHandlerOptions): Promise<ListRelatedItemsCommandOutput>;
|
|
92
|
+
listRelatedItems(args: ListRelatedItemsCommandInput, cb: (err: any, data?: ListRelatedItemsCommandOutput) => void): void;
|
|
93
|
+
listRelatedItems(args: ListRelatedItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRelatedItemsCommandOutput) => void): void;
|
|
94
|
+
|
|
95
|
+
listReplicationSets(args: ListReplicationSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListReplicationSetsCommandOutput>;
|
|
96
|
+
listReplicationSets(args: ListReplicationSetsCommandInput, cb: (err: any, data?: ListReplicationSetsCommandOutput) => void): void;
|
|
97
|
+
listReplicationSets(args: ListReplicationSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReplicationSetsCommandOutput) => void): void;
|
|
98
|
+
|
|
99
|
+
listResponsePlans(args: ListResponsePlansCommandInput, options?: __HttpHandlerOptions): Promise<ListResponsePlansCommandOutput>;
|
|
100
|
+
listResponsePlans(args: ListResponsePlansCommandInput, cb: (err: any, data?: ListResponsePlansCommandOutput) => void): void;
|
|
101
|
+
listResponsePlans(args: ListResponsePlansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResponsePlansCommandOutput) => void): void;
|
|
102
|
+
|
|
103
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
104
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
105
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
106
|
+
|
|
107
|
+
listTimelineEvents(args: ListTimelineEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListTimelineEventsCommandOutput>;
|
|
108
|
+
listTimelineEvents(args: ListTimelineEventsCommandInput, cb: (err: any, data?: ListTimelineEventsCommandOutput) => void): void;
|
|
109
|
+
listTimelineEvents(args: ListTimelineEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTimelineEventsCommandOutput) => void): void;
|
|
110
|
+
|
|
111
|
+
putResourcePolicy(args: PutResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePolicyCommandOutput>;
|
|
112
|
+
putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
113
|
+
putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
114
|
+
|
|
115
|
+
startIncident(args: StartIncidentCommandInput, options?: __HttpHandlerOptions): Promise<StartIncidentCommandOutput>;
|
|
116
|
+
startIncident(args: StartIncidentCommandInput, cb: (err: any, data?: StartIncidentCommandOutput) => void): void;
|
|
117
|
+
startIncident(args: StartIncidentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartIncidentCommandOutput) => void): void;
|
|
118
|
+
|
|
119
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
120
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
121
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
122
|
+
|
|
123
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
124
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
125
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
126
|
+
|
|
127
|
+
updateDeletionProtection(args: UpdateDeletionProtectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDeletionProtectionCommandOutput>;
|
|
128
|
+
updateDeletionProtection(args: UpdateDeletionProtectionCommandInput, cb: (err: any, data?: UpdateDeletionProtectionCommandOutput) => void): void;
|
|
129
|
+
updateDeletionProtection(args: UpdateDeletionProtectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDeletionProtectionCommandOutput) => void): void;
|
|
130
|
+
|
|
131
|
+
updateIncidentRecord(args: UpdateIncidentRecordCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIncidentRecordCommandOutput>;
|
|
132
|
+
updateIncidentRecord(args: UpdateIncidentRecordCommandInput, cb: (err: any, data?: UpdateIncidentRecordCommandOutput) => void): void;
|
|
133
|
+
updateIncidentRecord(args: UpdateIncidentRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIncidentRecordCommandOutput) => void): void;
|
|
134
|
+
|
|
135
|
+
updateRelatedItems(args: UpdateRelatedItemsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRelatedItemsCommandOutput>;
|
|
136
|
+
updateRelatedItems(args: UpdateRelatedItemsCommandInput, cb: (err: any, data?: UpdateRelatedItemsCommandOutput) => void): void;
|
|
137
|
+
updateRelatedItems(args: UpdateRelatedItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRelatedItemsCommandOutput) => void): void;
|
|
138
|
+
|
|
139
|
+
updateReplicationSet(args: UpdateReplicationSetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReplicationSetCommandOutput>;
|
|
140
|
+
updateReplicationSet(args: UpdateReplicationSetCommandInput, cb: (err: any, data?: UpdateReplicationSetCommandOutput) => void): void;
|
|
141
|
+
updateReplicationSet(args: UpdateReplicationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReplicationSetCommandOutput) => void): void;
|
|
142
|
+
|
|
143
|
+
updateResponsePlan(args: UpdateResponsePlanCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResponsePlanCommandOutput>;
|
|
144
|
+
updateResponsePlan(args: UpdateResponsePlanCommandInput, cb: (err: any, data?: UpdateResponsePlanCommandOutput) => void): void;
|
|
145
|
+
updateResponsePlan(args: UpdateResponsePlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResponsePlanCommandOutput) => void): void;
|
|
146
|
+
|
|
147
|
+
updateTimelineEvent(args: UpdateTimelineEventCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTimelineEventCommandOutput>;
|
|
148
|
+
updateTimelineEvent(args: UpdateTimelineEventCommandInput, cb: (err: any, data?: UpdateTimelineEventCommandOutput) => void): void;
|
|
149
|
+
updateTimelineEvent(args: UpdateTimelineEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTimelineEventCommandOutput) => void): void;
|
|
150
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
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 { CreateReplicationSetCommandInput, CreateReplicationSetCommandOutput } from "./commands/CreateReplicationSetCommand";
|
|
10
|
+
import { CreateResponsePlanCommandInput, CreateResponsePlanCommandOutput } from "./commands/CreateResponsePlanCommand";
|
|
11
|
+
import { CreateTimelineEventCommandInput, CreateTimelineEventCommandOutput } from "./commands/CreateTimelineEventCommand";
|
|
12
|
+
import { DeleteIncidentRecordCommandInput, DeleteIncidentRecordCommandOutput } from "./commands/DeleteIncidentRecordCommand";
|
|
13
|
+
import { DeleteReplicationSetCommandInput, DeleteReplicationSetCommandOutput } from "./commands/DeleteReplicationSetCommand";
|
|
14
|
+
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
15
|
+
import { DeleteResponsePlanCommandInput, DeleteResponsePlanCommandOutput } from "./commands/DeleteResponsePlanCommand";
|
|
16
|
+
import { DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput } from "./commands/DeleteTimelineEventCommand";
|
|
17
|
+
import { GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput } from "./commands/GetIncidentRecordCommand";
|
|
18
|
+
import { GetReplicationSetCommandInput, GetReplicationSetCommandOutput } from "./commands/GetReplicationSetCommand";
|
|
19
|
+
import { GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput } from "./commands/GetResourcePoliciesCommand";
|
|
20
|
+
import { GetResponsePlanCommandInput, GetResponsePlanCommandOutput } from "./commands/GetResponsePlanCommand";
|
|
21
|
+
import { GetTimelineEventCommandInput, GetTimelineEventCommandOutput } from "./commands/GetTimelineEventCommand";
|
|
22
|
+
import { ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput } from "./commands/ListIncidentRecordsCommand";
|
|
23
|
+
import { ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput } from "./commands/ListRelatedItemsCommand";
|
|
24
|
+
import { ListReplicationSetsCommandInput, ListReplicationSetsCommandOutput } from "./commands/ListReplicationSetsCommand";
|
|
25
|
+
import { ListResponsePlansCommandInput, ListResponsePlansCommandOutput } from "./commands/ListResponsePlansCommand";
|
|
26
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
27
|
+
import { ListTimelineEventsCommandInput, ListTimelineEventsCommandOutput } from "./commands/ListTimelineEventsCommand";
|
|
28
|
+
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
29
|
+
import { StartIncidentCommandInput, StartIncidentCommandOutput } from "./commands/StartIncidentCommand";
|
|
30
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
31
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
32
|
+
import { UpdateDeletionProtectionCommandInput, UpdateDeletionProtectionCommandOutput } from "./commands/UpdateDeletionProtectionCommand";
|
|
33
|
+
import { UpdateIncidentRecordCommandInput, UpdateIncidentRecordCommandOutput } from "./commands/UpdateIncidentRecordCommand";
|
|
34
|
+
import { UpdateRelatedItemsCommandInput, UpdateRelatedItemsCommandOutput } from "./commands/UpdateRelatedItemsCommand";
|
|
35
|
+
import { UpdateReplicationSetCommandInput, UpdateReplicationSetCommandOutput } from "./commands/UpdateReplicationSetCommand";
|
|
36
|
+
import { UpdateResponsePlanCommandInput, UpdateResponsePlanCommandOutput } from "./commands/UpdateResponsePlanCommand";
|
|
37
|
+
import { UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput } from "./commands/UpdateTimelineEventCommand";
|
|
38
|
+
export declare type ServiceInputTypes = CreateReplicationSetCommandInput | CreateResponsePlanCommandInput | CreateTimelineEventCommandInput | DeleteIncidentRecordCommandInput | DeleteReplicationSetCommandInput | DeleteResourcePolicyCommandInput | DeleteResponsePlanCommandInput | DeleteTimelineEventCommandInput | GetIncidentRecordCommandInput | GetReplicationSetCommandInput | GetResourcePoliciesCommandInput | GetResponsePlanCommandInput | GetTimelineEventCommandInput | ListIncidentRecordsCommandInput | ListRelatedItemsCommandInput | ListReplicationSetsCommandInput | ListResponsePlansCommandInput | ListTagsForResourceCommandInput | ListTimelineEventsCommandInput | PutResourcePolicyCommandInput | StartIncidentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDeletionProtectionCommandInput | UpdateIncidentRecordCommandInput | UpdateRelatedItemsCommandInput | UpdateReplicationSetCommandInput | UpdateResponsePlanCommandInput | UpdateTimelineEventCommandInput;
|
|
39
|
+
export declare type ServiceOutputTypes = CreateReplicationSetCommandOutput | CreateResponsePlanCommandOutput | CreateTimelineEventCommandOutput | DeleteIncidentRecordCommandOutput | DeleteReplicationSetCommandOutput | DeleteResourcePolicyCommandOutput | DeleteResponsePlanCommandOutput | DeleteTimelineEventCommandOutput | GetIncidentRecordCommandOutput | GetReplicationSetCommandOutput | GetResourcePoliciesCommandOutput | GetResponsePlanCommandOutput | GetTimelineEventCommandOutput | ListIncidentRecordsCommandOutput | ListRelatedItemsCommandOutput | ListReplicationSetsCommandOutput | ListResponsePlansCommandOutput | ListTagsForResourceCommandOutput | ListTimelineEventsCommandOutput | PutResourcePolicyCommandOutput | StartIncidentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDeletionProtectionCommandOutput | UpdateIncidentRecordCommandOutput | UpdateRelatedItemsCommandOutput | UpdateReplicationSetCommandOutput | UpdateResponsePlanCommandOutput | UpdateTimelineEventCommandOutput;
|
|
40
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
41
|
+
|
|
42
|
+
requestHandler?: __HttpHandler;
|
|
43
|
+
|
|
44
|
+
sha256?: __HashConstructor;
|
|
45
|
+
|
|
46
|
+
urlParser?: __UrlParser;
|
|
47
|
+
|
|
48
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
49
|
+
|
|
50
|
+
streamCollector?: __StreamCollector;
|
|
51
|
+
|
|
52
|
+
base64Decoder?: __Decoder;
|
|
53
|
+
|
|
54
|
+
base64Encoder?: __Encoder;
|
|
55
|
+
|
|
56
|
+
utf8Decoder?: __Decoder;
|
|
57
|
+
|
|
58
|
+
utf8Encoder?: __Encoder;
|
|
59
|
+
|
|
60
|
+
runtime?: string;
|
|
61
|
+
|
|
62
|
+
disableHostPrefix?: boolean;
|
|
63
|
+
|
|
64
|
+
maxAttempts?: number | __Provider<number>;
|
|
65
|
+
|
|
66
|
+
retryMode?: string | __Provider<string>;
|
|
67
|
+
|
|
68
|
+
logger?: __Logger;
|
|
69
|
+
|
|
70
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
71
|
+
|
|
72
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
73
|
+
|
|
74
|
+
serviceId?: string;
|
|
75
|
+
|
|
76
|
+
region?: string | __Provider<string>;
|
|
77
|
+
|
|
78
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
79
|
+
|
|
80
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
81
|
+
|
|
82
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
83
|
+
|
|
84
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
85
|
+
}
|
|
86
|
+
declare type SSMIncidentsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
87
|
+
|
|
88
|
+
export interface SSMIncidentsClientConfig extends SSMIncidentsClientConfigType {
|
|
89
|
+
}
|
|
90
|
+
declare type SSMIncidentsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
91
|
+
|
|
92
|
+
export interface SSMIncidentsClientResolvedConfig extends SSMIncidentsClientResolvedConfigType {
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export declare class SSMIncidentsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig> {
|
|
96
|
+
|
|
97
|
+
readonly config: SSMIncidentsClientResolvedConfig;
|
|
98
|
+
constructor(configuration: SSMIncidentsClientConfig);
|
|
99
|
+
|
|
100
|
+
destroy(): void;
|
|
101
|
+
}
|
|
102
|
+
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 { CreateReplicationSetInput, CreateReplicationSetOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface CreateReplicationSetCommandInput extends CreateReplicationSetInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateReplicationSetCommandOutput extends CreateReplicationSetOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateReplicationSetCommand extends $Command<CreateReplicationSetCommandInput, CreateReplicationSetCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateReplicationSetCommandInput;
|
|
12
|
+
constructor(input: CreateReplicationSetCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateReplicationSetCommandInput, CreateReplicationSetCommandOutput>;
|
|
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 { CreateResponsePlanInput, CreateResponsePlanOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface CreateResponsePlanCommandInput extends CreateResponsePlanInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateResponsePlanCommandOutput extends CreateResponsePlanOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateResponsePlanCommand extends $Command<CreateResponsePlanCommandInput, CreateResponsePlanCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateResponsePlanCommandInput;
|
|
12
|
+
constructor(input: CreateResponsePlanCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateResponsePlanCommandInput, CreateResponsePlanCommandOutput>;
|
|
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 { CreateTimelineEventInput, CreateTimelineEventOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface CreateTimelineEventCommandInput extends CreateTimelineEventInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateTimelineEventCommandOutput extends CreateTimelineEventOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateTimelineEventCommand extends $Command<CreateTimelineEventCommandInput, CreateTimelineEventCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateTimelineEventCommandInput;
|
|
12
|
+
constructor(input: CreateTimelineEventCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTimelineEventCommandInput, CreateTimelineEventCommandOutput>;
|
|
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 { DeleteIncidentRecordInput, DeleteIncidentRecordOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface DeleteIncidentRecordCommandInput extends DeleteIncidentRecordInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteIncidentRecordCommandOutput extends DeleteIncidentRecordOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteIncidentRecordCommand extends $Command<DeleteIncidentRecordCommandInput, DeleteIncidentRecordCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteIncidentRecordCommandInput;
|
|
12
|
+
constructor(input: DeleteIncidentRecordCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteIncidentRecordCommandInput, DeleteIncidentRecordCommandOutput>;
|
|
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 { DeleteReplicationSetInput, DeleteReplicationSetOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface DeleteReplicationSetCommandInput extends DeleteReplicationSetInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteReplicationSetCommandOutput extends DeleteReplicationSetOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteReplicationSetCommand extends $Command<DeleteReplicationSetCommandInput, DeleteReplicationSetCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteReplicationSetCommandInput;
|
|
12
|
+
constructor(input: DeleteReplicationSetCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteReplicationSetCommandInput, DeleteReplicationSetCommandOutput>;
|
|
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 { DeleteResourcePolicyInput, DeleteResourcePolicyOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteResourcePolicyCommandInput;
|
|
12
|
+
constructor(input: DeleteResourcePolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput>;
|
|
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 { DeleteResponsePlanInput, DeleteResponsePlanOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface DeleteResponsePlanCommandInput extends DeleteResponsePlanInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteResponsePlanCommandOutput extends DeleteResponsePlanOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteResponsePlanCommand extends $Command<DeleteResponsePlanCommandInput, DeleteResponsePlanCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteResponsePlanCommandInput;
|
|
12
|
+
constructor(input: DeleteResponsePlanCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResponsePlanCommandInput, DeleteResponsePlanCommandOutput>;
|
|
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 { DeleteTimelineEventInput, DeleteTimelineEventOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface DeleteTimelineEventCommandInput extends DeleteTimelineEventInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteTimelineEventCommandOutput extends DeleteTimelineEventOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteTimelineEventCommand extends $Command<DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteTimelineEventCommandInput;
|
|
12
|
+
constructor(input: DeleteTimelineEventCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput>;
|
|
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 { GetIncidentRecordInput, GetIncidentRecordOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface GetIncidentRecordCommandInput extends GetIncidentRecordInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetIncidentRecordCommandOutput extends GetIncidentRecordOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetIncidentRecordCommand extends $Command<GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: GetIncidentRecordCommandInput;
|
|
12
|
+
constructor(input: GetIncidentRecordCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput>;
|
|
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 { GetReplicationSetInput, GetReplicationSetOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
5
|
+
export interface GetReplicationSetCommandInput extends GetReplicationSetInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetReplicationSetCommandOutput extends GetReplicationSetOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetReplicationSetCommand extends $Command<GetReplicationSetCommandInput, GetReplicationSetCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
11
|
+
readonly input: GetReplicationSetCommandInput;
|
|
12
|
+
constructor(input: GetReplicationSetCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetReplicationSetCommandInput, GetReplicationSetCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|