@aws-sdk/client-ssm-incidents 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/SSMIncidents.d.ts +30 -0
- package/dist-types/SSMIncidentsClient.d.ts +24 -4
- package/dist-types/commands/CreateReplicationSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateResponsePlanCommand.d.ts +16 -0
- package/dist-types/commands/CreateTimelineEventCommand.d.ts +16 -0
- package/dist-types/commands/DeleteIncidentRecordCommand.d.ts +16 -0
- package/dist-types/commands/DeleteReplicationSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResponsePlanCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTimelineEventCommand.d.ts +16 -0
- package/dist-types/commands/GetIncidentRecordCommand.d.ts +16 -0
- package/dist-types/commands/GetReplicationSetCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +16 -0
- package/dist-types/commands/GetResponsePlanCommand.d.ts +16 -0
- package/dist-types/commands/GetTimelineEventCommand.d.ts +16 -0
- package/dist-types/commands/ListIncidentRecordsCommand.d.ts +16 -0
- package/dist-types/commands/ListRelatedItemsCommand.d.ts +16 -0
- package/dist-types/commands/ListReplicationSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListResponsePlansCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTimelineEventsCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/StartIncidentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDeletionProtectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateIncidentRecordCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRelatedItemsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateReplicationSetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateResponsePlanCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTimelineEventCommand.d.ts +16 -0
- package/dist-types/models/SSMIncidentsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +281 -0
- package/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListIncidentRecordsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRelatedItemsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReplicationSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResponsePlansPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTimelineEventsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteTimelineEventInput, DeleteTimelineEventOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteTimelineEventCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteTimelineEventCommandInput extends DeleteTimelineEventInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteTimelineEventCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteTimelineEventCommandOutput extends DeleteTimelineEventOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a timeline event from an incident.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteTimelineEventCommandOutput extends DeleteTimelineEventOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteTimelineEventCommandInput - {@link DeleteTimelineEventCommandInput}
|
|
34
|
+
* @returns {@link DeleteTimelineEventCommandOutput}
|
|
28
35
|
* @see {@link DeleteTimelineEventCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteTimelineEventCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface DeleteTimelineEventCommandOutput extends DeleteTimelineEventOut
|
|
|
48
55
|
export declare class DeleteTimelineEventCommand extends $Command<DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
49
56
|
readonly input: DeleteTimelineEventCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: DeleteTimelineEventCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTimelineEventCommandInput, DeleteTimelineEventCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetIncidentRecordInput, GetIncidentRecordOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetIncidentRecordCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetIncidentRecordCommandInput extends GetIncidentRecordInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetIncidentRecordCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetIncidentRecordCommandOutput extends GetIncidentRecordOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the details for the specified incident record.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetIncidentRecordCommandOutput extends GetIncidentRecordOutput,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetIncidentRecordCommandInput - {@link GetIncidentRecordCommandInput}
|
|
34
|
+
* @returns {@link GetIncidentRecordCommandOutput}
|
|
28
35
|
* @see {@link GetIncidentRecordCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetIncidentRecordCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetIncidentRecordCommandOutput extends GetIncidentRecordOutput,
|
|
|
51
58
|
export declare class GetIncidentRecordCommand extends $Command<GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
52
59
|
readonly input: GetIncidentRecordCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetIncidentRecordCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetIncidentRecordCommandInput, GetIncidentRecordCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetReplicationSetInput, GetReplicationSetOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetReplicationSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetReplicationSetCommandInput extends GetReplicationSetInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetReplicationSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetReplicationSetCommandOutput extends GetReplicationSetOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieve your Incident Manager replication set.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetReplicationSetCommandOutput extends GetReplicationSetOutput,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetReplicationSetCommandInput - {@link GetReplicationSetCommandInput}
|
|
34
|
+
* @returns {@link GetReplicationSetCommandOutput}
|
|
28
35
|
* @see {@link GetReplicationSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetReplicationSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetReplicationSetCommandOutput extends GetReplicationSetOutput,
|
|
|
51
58
|
export declare class GetReplicationSetCommand extends $Command<GetReplicationSetCommandInput, GetReplicationSetCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
52
59
|
readonly input: GetReplicationSetCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetReplicationSetCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetReplicationSetCommandInput, GetReplicationSetCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetResourcePoliciesInput, GetResourcePoliciesOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourcePoliciesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourcePoliciesCommandInput extends GetResourcePoliciesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourcePoliciesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the resource policies attached to the specified response plan.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetResourcePoliciesCommandInput - {@link GetResourcePoliciesCommandInput}
|
|
34
|
+
* @returns {@link GetResourcePoliciesCommandOutput}
|
|
28
35
|
* @see {@link GetResourcePoliciesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetResourcePoliciesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesOut
|
|
|
51
58
|
export declare class GetResourcePoliciesCommand extends $Command<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
52
59
|
readonly input: GetResourcePoliciesCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetResourcePoliciesCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetResponsePlanInput, GetResponsePlanOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResponsePlanCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResponsePlanCommandInput extends GetResponsePlanInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResponsePlanCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResponsePlanCommandOutput extends GetResponsePlanOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the details of the specified response plan.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetResponsePlanCommandOutput extends GetResponsePlanOutput, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetResponsePlanCommandInput - {@link GetResponsePlanCommandInput}
|
|
34
|
+
* @returns {@link GetResponsePlanCommandOutput}
|
|
28
35
|
* @see {@link GetResponsePlanCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetResponsePlanCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetResponsePlanCommandOutput extends GetResponsePlanOutput, __M
|
|
|
51
58
|
export declare class GetResponsePlanCommand extends $Command<GetResponsePlanCommandInput, GetResponsePlanCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
52
59
|
readonly input: GetResponsePlanCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetResponsePlanCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResponsePlanCommandInput, GetResponsePlanCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetTimelineEventInput, GetTimelineEventOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTimelineEventCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTimelineEventCommandInput extends GetTimelineEventInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTimelineEventCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTimelineEventCommandOutput extends GetTimelineEventOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a timeline event based on its ID and incident record.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetTimelineEventCommandOutput extends GetTimelineEventOutput, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetTimelineEventCommandInput - {@link GetTimelineEventCommandInput}
|
|
34
|
+
* @returns {@link GetTimelineEventCommandOutput}
|
|
28
35
|
* @see {@link GetTimelineEventCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetTimelineEventCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetTimelineEventCommandOutput extends GetTimelineEventOutput, _
|
|
|
51
58
|
export declare class GetTimelineEventCommand extends $Command<GetTimelineEventCommandInput, GetTimelineEventCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
52
59
|
readonly input: GetTimelineEventCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetTimelineEventCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTimelineEventCommandInput, GetTimelineEventCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListIncidentRecordsInput, ListIncidentRecordsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListIncidentRecordsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListIncidentRecordsCommandInput extends ListIncidentRecordsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListIncidentRecordsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListIncidentRecordsCommandOutput extends ListIncidentRecordsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all incident records in your account. Use this command to retrieve the Amazon
|
|
18
23
|
* Resource Name (ARN) of the incident record you want to update. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListIncidentRecordsCommandOutput extends ListIncidentRecordsOut
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListIncidentRecordsCommandInput - {@link ListIncidentRecordsCommandInput}
|
|
35
|
+
* @returns {@link ListIncidentRecordsCommandOutput}
|
|
29
36
|
* @see {@link ListIncidentRecordsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListIncidentRecordsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListIncidentRecordsCommandOutput extends ListIncidentRecordsOut
|
|
|
49
56
|
export declare class ListIncidentRecordsCommand extends $Command<ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
50
57
|
readonly input: ListIncidentRecordsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListIncidentRecordsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListRelatedItemsInput, ListRelatedItemsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListRelatedItemsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListRelatedItemsCommandInput extends ListRelatedItemsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListRelatedItemsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListRelatedItemsCommandOutput extends ListRelatedItemsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List all related items for an incident record.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListRelatedItemsCommandOutput extends ListRelatedItemsOutput, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListRelatedItemsCommandInput - {@link ListRelatedItemsCommandInput}
|
|
34
|
+
* @returns {@link ListRelatedItemsCommandOutput}
|
|
28
35
|
* @see {@link ListRelatedItemsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListRelatedItemsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListRelatedItemsCommandOutput extends ListRelatedItemsOutput, _
|
|
|
48
55
|
export declare class ListRelatedItemsCommand extends $Command<ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
49
56
|
readonly input: ListRelatedItemsCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListRelatedItemsCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListReplicationSetsInput, ListReplicationSetsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListReplicationSetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListReplicationSetsCommandInput extends ListReplicationSetsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListReplicationSetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListReplicationSetsCommandOutput extends ListReplicationSetsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists details about the replication set configured in your account. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListReplicationSetsCommandOutput extends ListReplicationSetsOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListReplicationSetsCommandInput - {@link ListReplicationSetsCommandInput}
|
|
34
|
+
* @returns {@link ListReplicationSetsCommandOutput}
|
|
28
35
|
* @see {@link ListReplicationSetsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListReplicationSetsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListReplicationSetsCommandOutput extends ListReplicationSetsOut
|
|
|
48
55
|
export declare class ListReplicationSetsCommand extends $Command<ListReplicationSetsCommandInput, ListReplicationSetsCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
49
56
|
readonly input: ListReplicationSetsCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListReplicationSetsCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReplicationSetsCommandInput, ListReplicationSetsCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListResponsePlansInput, ListResponsePlansOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListResponsePlansCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListResponsePlansCommandInput extends ListResponsePlansInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListResponsePlansCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListResponsePlansCommandOutput extends ListResponsePlansOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all response plans in your account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListResponsePlansCommandOutput extends ListResponsePlansOutput,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListResponsePlansCommandInput - {@link ListResponsePlansCommandInput}
|
|
34
|
+
* @returns {@link ListResponsePlansCommandOutput}
|
|
28
35
|
* @see {@link ListResponsePlansCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListResponsePlansCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListResponsePlansCommandOutput extends ListResponsePlansOutput,
|
|
|
48
55
|
export declare class ListResponsePlansCommand extends $Command<ListResponsePlansCommandInput, ListResponsePlansCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
49
56
|
readonly input: ListResponsePlansCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListResponsePlansCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResponsePlansCommandInput, ListResponsePlansCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the tags that are attached to the specified response plan.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
51
58
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
52
59
|
readonly input: ListTagsForResourceCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListTagsForResourceCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTimelineEventsInput, ListTimelineEventsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTimelineEventsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTimelineEventsCommandInput extends ListTimelineEventsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTimelineEventsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTimelineEventsCommandOutput extends ListTimelineEventsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists timeline events for the specified incident record.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTimelineEventsCommandOutput extends ListTimelineEventsOutpu
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTimelineEventsCommandInput - {@link ListTimelineEventsCommandInput}
|
|
34
|
+
* @returns {@link ListTimelineEventsCommandOutput}
|
|
28
35
|
* @see {@link ListTimelineEventsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTimelineEventsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListTimelineEventsCommandOutput extends ListTimelineEventsOutpu
|
|
|
48
55
|
export declare class ListTimelineEventsCommand extends $Command<ListTimelineEventsCommandInput, ListTimelineEventsCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
49
56
|
readonly input: ListTimelineEventsCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListTimelineEventsCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTimelineEventsCommandInput, ListTimelineEventsCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutResourcePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutResourcePolicyCommandInput extends PutResourcePolicyInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutResourcePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds a resource policy to the specified response plan. The resource policy is used to
|
|
18
23
|
* share the response plan using Resource Access Manager (RAM). For more
|
|
19
24
|
* information about cross-account sharing, see <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/incident-manager-cross-account-cross-region.html">Cross-Region and cross-account incident
|
|
@@ -28,6 +33,8 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput,
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param PutResourcePolicyCommandInput - {@link PutResourcePolicyCommandInput}
|
|
37
|
+
* @returns {@link PutResourcePolicyCommandOutput}
|
|
31
38
|
* @see {@link PutResourcePolicyCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link PutResourcePolicyCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput,
|
|
|
54
61
|
export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, SSMIncidentsClientResolvedConfig> {
|
|
55
62
|
readonly input: PutResourcePolicyCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: PutResourcePolicyCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|