@aws-sdk/client-drs 3.325.0 → 3.326.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +106 -0
  2. package/dist-types/commands/CreateLaunchConfigurationTemplateCommand.d.ts +19 -0
  3. package/dist-types/commands/CreateReplicationConfigurationTemplateCommand.d.ts +36 -0
  4. package/dist-types/commands/DeleteJobCommand.d.ts +4 -0
  5. package/dist-types/commands/DeleteLaunchConfigurationTemplateCommand.d.ts +4 -0
  6. package/dist-types/commands/DeleteRecoveryInstanceCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteReplicationConfigurationTemplateCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteSourceServerCommand.d.ts +4 -0
  9. package/dist-types/commands/DescribeJobLogItemsCommand.d.ts +31 -0
  10. package/dist-types/commands/DescribeJobsCommand.d.ts +27 -0
  11. package/dist-types/commands/DescribeLaunchConfigurationTemplatesCommand.d.ts +22 -0
  12. package/dist-types/commands/DescribeRecoveryInstancesCommand.d.ts +98 -0
  13. package/dist-types/commands/DescribeRecoverySnapshotsCommand.d.ts +17 -0
  14. package/dist-types/commands/DescribeReplicationConfigurationTemplatesCommand.d.ts +41 -0
  15. package/dist-types/commands/DescribeSourceServersCommand.d.ts +109 -0
  16. package/dist-types/commands/DisconnectRecoveryInstanceCommand.d.ts +4 -0
  17. package/dist-types/commands/DisconnectSourceServerCommand.d.ts +104 -0
  18. package/dist-types/commands/GetFailbackReplicationConfigurationCommand.d.ts +9 -0
  19. package/dist-types/commands/GetLaunchConfigurationCommand.d.ts +15 -0
  20. package/dist-types/commands/GetReplicationConfigurationCommand.d.ts +43 -0
  21. package/dist-types/commands/InitializeServiceCommand.d.ts +4 -0
  22. package/dist-types/commands/ListExtensibleSourceServersCommand.d.ts +15 -0
  23. package/dist-types/commands/ListStagingAccountsCommand.d.ts +11 -0
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  25. package/dist-types/commands/RetryDataReplicationCommand.d.ts +104 -0
  26. package/dist-types/commands/ReverseReplicationCommand.d.ts +6 -0
  27. package/dist-types/commands/StartFailbackLaunchCommand.d.ts +24 -0
  28. package/dist-types/commands/StartRecoveryCommand.d.ts +24 -0
  29. package/dist-types/commands/StartReplicationCommand.d.ts +106 -0
  30. package/dist-types/commands/StopFailbackCommand.d.ts +4 -0
  31. package/dist-types/commands/StopReplicationCommand.d.ts +106 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  33. package/dist-types/commands/TerminateRecoveryInstancesCommand.d.ts +24 -0
  34. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  35. package/dist-types/commands/UpdateFailbackReplicationConfigurationCommand.d.ts +4 -0
  36. package/dist-types/commands/UpdateLaunchConfigurationCommand.d.ts +15 -0
  37. package/dist-types/commands/UpdateLaunchConfigurationTemplateCommand.d.ts +19 -0
  38. package/dist-types/commands/UpdateReplicationConfigurationCommand.d.ts +43 -0
  39. package/dist-types/commands/UpdateReplicationConfigurationTemplateCommand.d.ts +36 -0
  40. package/package.json +3 -3
@@ -34,6 +34,110 @@ export interface CreateExtendedSourceServerCommandOutput extends CreateExtendedS
34
34
  * };
35
35
  * const command = new CreateExtendedSourceServerCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // CreateExtendedSourceServerResponse
38
+ * // sourceServer: { // SourceServer
39
+ * // sourceServerID: "STRING_VALUE",
40
+ * // arn: "STRING_VALUE",
41
+ * // tags: { // TagsMap
42
+ * // "<keys>": "STRING_VALUE",
43
+ * // },
44
+ * // recoveryInstanceId: "STRING_VALUE",
45
+ * // lastLaunchResult: "STRING_VALUE",
46
+ * // dataReplicationInfo: { // DataReplicationInfo
47
+ * // lagDuration: "STRING_VALUE",
48
+ * // etaDateTime: "STRING_VALUE",
49
+ * // replicatedDisks: [ // DataReplicationInfoReplicatedDisks
50
+ * // { // DataReplicationInfoReplicatedDisk
51
+ * // deviceName: "STRING_VALUE",
52
+ * // totalStorageBytes: Number("long"),
53
+ * // replicatedStorageBytes: Number("long"),
54
+ * // rescannedStorageBytes: Number("long"),
55
+ * // backloggedStorageBytes: Number("long"),
56
+ * // },
57
+ * // ],
58
+ * // dataReplicationState: "STRING_VALUE",
59
+ * // dataReplicationInitiation: { // DataReplicationInitiation
60
+ * // startDateTime: "STRING_VALUE",
61
+ * // nextAttemptDateTime: "STRING_VALUE",
62
+ * // steps: [ // DataReplicationInitiationSteps
63
+ * // { // DataReplicationInitiationStep
64
+ * // name: "STRING_VALUE",
65
+ * // status: "STRING_VALUE",
66
+ * // },
67
+ * // ],
68
+ * // },
69
+ * // dataReplicationError: { // DataReplicationError
70
+ * // error: "STRING_VALUE",
71
+ * // rawError: "STRING_VALUE",
72
+ * // },
73
+ * // stagingAvailabilityZone: "STRING_VALUE",
74
+ * // },
75
+ * // lifeCycle: { // LifeCycle
76
+ * // addedToServiceDateTime: "STRING_VALUE",
77
+ * // firstByteDateTime: "STRING_VALUE",
78
+ * // elapsedReplicationDuration: "STRING_VALUE",
79
+ * // lastSeenByServiceDateTime: "STRING_VALUE",
80
+ * // lastLaunch: { // LifeCycleLastLaunch
81
+ * // initiated: { // LifeCycleLastLaunchInitiated
82
+ * // apiCallDateTime: "STRING_VALUE",
83
+ * // jobID: "STRING_VALUE",
84
+ * // type: "STRING_VALUE",
85
+ * // },
86
+ * // status: "STRING_VALUE",
87
+ * // },
88
+ * // },
89
+ * // sourceProperties: { // SourceProperties
90
+ * // lastUpdatedDateTime: "STRING_VALUE",
91
+ * // recommendedInstanceType: "STRING_VALUE",
92
+ * // identificationHints: { // IdentificationHints
93
+ * // fqdn: "STRING_VALUE",
94
+ * // hostname: "STRING_VALUE",
95
+ * // vmWareUuid: "STRING_VALUE",
96
+ * // awsInstanceID: "STRING_VALUE",
97
+ * // },
98
+ * // networkInterfaces: [ // NetworkInterfaces
99
+ * // { // NetworkInterface
100
+ * // macAddress: "STRING_VALUE",
101
+ * // ips: [ // IPsList
102
+ * // "STRING_VALUE",
103
+ * // ],
104
+ * // isPrimary: true || false,
105
+ * // },
106
+ * // ],
107
+ * // disks: [ // Disks
108
+ * // { // Disk
109
+ * // deviceName: "STRING_VALUE",
110
+ * // bytes: Number("long"),
111
+ * // },
112
+ * // ],
113
+ * // cpus: [ // Cpus
114
+ * // { // CPU
115
+ * // cores: Number("long"),
116
+ * // modelName: "STRING_VALUE",
117
+ * // },
118
+ * // ],
119
+ * // ramBytes: Number("long"),
120
+ * // os: { // OS
121
+ * // fullString: "STRING_VALUE",
122
+ * // },
123
+ * // supportsNitroInstances: true || false,
124
+ * // },
125
+ * // stagingArea: { // StagingArea
126
+ * // status: "STRING_VALUE",
127
+ * // stagingAccountID: "STRING_VALUE",
128
+ * // stagingSourceServerArn: "STRING_VALUE",
129
+ * // errorMessage: "STRING_VALUE",
130
+ * // },
131
+ * // sourceCloudProperties: { // SourceCloudProperties
132
+ * // originAccountID: "STRING_VALUE",
133
+ * // originRegion: "STRING_VALUE",
134
+ * // originAvailabilityZone: "STRING_VALUE",
135
+ * // },
136
+ * // replicationDirection: "STRING_VALUE",
137
+ * // reversedDirectionSourceServerArn: "STRING_VALUE",
138
+ * // },
139
+ * // };
140
+ *
37
141
  * ```
38
142
  *
39
143
  * @param CreateExtendedSourceServerCommandInput - {@link CreateExtendedSourceServerCommandInput}
@@ -63,6 +167,8 @@ export interface CreateExtendedSourceServerCommandOutput extends CreateExtendedS
63
167
  * @throws {@link ValidationException} (client fault)
64
168
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
65
169
  *
170
+ * @throws {@link DrsServiceException}
171
+ * <p>Base exception class for all service exceptions from Drs service.</p>
66
172
  *
67
173
  */
68
174
  export declare class CreateExtendedSourceServerCommand extends $Command<CreateExtendedSourceServerCommandInput, CreateExtendedSourceServerCommandOutput, DrsClientResolvedConfig> {
@@ -40,6 +40,23 @@ export interface CreateLaunchConfigurationTemplateCommandOutput extends CreateLa
40
40
  * };
41
41
  * const command = new CreateLaunchConfigurationTemplateCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // CreateLaunchConfigurationTemplateResponse
44
+ * // launchConfigurationTemplate: { // LaunchConfigurationTemplate
45
+ * // launchConfigurationTemplateID: "STRING_VALUE",
46
+ * // arn: "STRING_VALUE",
47
+ * // tags: { // TagsMap
48
+ * // "<keys>": "STRING_VALUE",
49
+ * // },
50
+ * // launchDisposition: "STRING_VALUE",
51
+ * // targetInstanceTypeRightSizingMethod: "STRING_VALUE",
52
+ * // copyPrivateIp: true || false,
53
+ * // copyTags: true || false,
54
+ * // licensing: { // Licensing
55
+ * // osByol: true || false,
56
+ * // },
57
+ * // },
58
+ * // };
59
+ *
43
60
  * ```
44
61
  *
45
62
  * @param CreateLaunchConfigurationTemplateCommandInput - {@link CreateLaunchConfigurationTemplateCommandInput}
@@ -66,6 +83,8 @@ export interface CreateLaunchConfigurationTemplateCommandOutput extends CreateLa
66
83
  * @throws {@link ValidationException} (client fault)
67
84
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
68
85
  *
86
+ * @throws {@link DrsServiceException}
87
+ * <p>Base exception class for all service exceptions from Drs service.</p>
69
88
  *
70
89
  */
71
90
  export declare class CreateLaunchConfigurationTemplateCommand extends $Command<CreateLaunchConfigurationTemplateCommandInput, CreateLaunchConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
@@ -59,6 +59,40 @@ export interface CreateReplicationConfigurationTemplateCommandOutput extends Rep
59
59
  * };
60
60
  * const command = new CreateReplicationConfigurationTemplateCommand(input);
61
61
  * const response = await client.send(command);
62
+ * // { // ReplicationConfigurationTemplate
63
+ * // replicationConfigurationTemplateID: "STRING_VALUE", // required
64
+ * // arn: "STRING_VALUE",
65
+ * // stagingAreaSubnetId: "STRING_VALUE",
66
+ * // associateDefaultSecurityGroup: true || false,
67
+ * // replicationServersSecurityGroupsIDs: [ // ReplicationServersSecurityGroupsIDs
68
+ * // "STRING_VALUE",
69
+ * // ],
70
+ * // replicationServerInstanceType: "STRING_VALUE",
71
+ * // useDedicatedReplicationServer: true || false,
72
+ * // defaultLargeStagingDiskType: "STRING_VALUE",
73
+ * // ebsEncryption: "STRING_VALUE",
74
+ * // ebsEncryptionKeyArn: "STRING_VALUE",
75
+ * // bandwidthThrottling: Number("long"),
76
+ * // dataPlaneRouting: "STRING_VALUE",
77
+ * // createPublicIP: true || false,
78
+ * // stagingAreaTags: { // TagsMap
79
+ * // "<keys>": "STRING_VALUE",
80
+ * // },
81
+ * // tags: {
82
+ * // "<keys>": "STRING_VALUE",
83
+ * // },
84
+ * // pitPolicy: [ // PITPolicy
85
+ * // { // PITPolicyRule
86
+ * // ruleID: Number("long"),
87
+ * // units: "STRING_VALUE", // required
88
+ * // interval: Number("int"), // required
89
+ * // retentionDuration: Number("int"), // required
90
+ * // enabled: true || false,
91
+ * // },
92
+ * // ],
93
+ * // autoReplicateNewDisks: true || false,
94
+ * // };
95
+ *
62
96
  * ```
63
97
  *
64
98
  * @param CreateReplicationConfigurationTemplateCommandInput - {@link CreateReplicationConfigurationTemplateCommandInput}
@@ -85,6 +119,8 @@ export interface CreateReplicationConfigurationTemplateCommandOutput extends Rep
85
119
  * @throws {@link ValidationException} (client fault)
86
120
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
87
121
  *
122
+ * @throws {@link DrsServiceException}
123
+ * <p>Base exception class for all service exceptions from Drs service.</p>
88
124
  *
89
125
  */
90
126
  export declare class CreateReplicationConfigurationTemplateCommand extends $Command<CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea
31
31
  * };
32
32
  * const command = new DeleteJobCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteJobCommandInput - {@link DeleteJobCommandInput}
@@ -54,6 +56,8 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea
54
56
  * @throws {@link UninitializedAccountException} (client fault)
55
57
  * <p>The account performing the request has not been initialized.</p>
56
58
  *
59
+ * @throws {@link DrsServiceException}
60
+ * <p>Base exception class for all service exceptions from Drs service.</p>
57
61
  *
58
62
  */
59
63
  export declare class DeleteJobCommand extends $Command<DeleteJobCommandInput, DeleteJobCommandOutput, DrsClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteLaunchConfigurationTemplateCommandOutput extends DeleteLa
31
31
  * };
32
32
  * const command = new DeleteLaunchConfigurationTemplateCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteLaunchConfigurationTemplateCommandInput - {@link DeleteLaunchConfigurationTemplateCommandInput}
@@ -54,6 +56,8 @@ export interface DeleteLaunchConfigurationTemplateCommandOutput extends DeleteLa
54
56
  * @throws {@link UninitializedAccountException} (client fault)
55
57
  * <p>The account performing the request has not been initialized.</p>
56
58
  *
59
+ * @throws {@link DrsServiceException}
60
+ * <p>Base exception class for all service exceptions from Drs service.</p>
57
61
  *
58
62
  */
59
63
  export declare class DeleteLaunchConfigurationTemplateCommand extends $Command<DeleteLaunchConfigurationTemplateCommandInput, DeleteLaunchConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteRecoveryInstanceCommandOutput extends __MetadataBearer {
31
31
  * };
32
32
  * const command = new DeleteRecoveryInstanceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteRecoveryInstanceCommandInput - {@link DeleteRecoveryInstanceCommandInput}
@@ -54,6 +56,8 @@ export interface DeleteRecoveryInstanceCommandOutput extends __MetadataBearer {
54
56
  * @throws {@link UninitializedAccountException} (client fault)
55
57
  * <p>The account performing the request has not been initialized.</p>
56
58
  *
59
+ * @throws {@link DrsServiceException}
60
+ * <p>Base exception class for all service exceptions from Drs service.</p>
57
61
  *
58
62
  */
59
63
  export declare class DeleteRecoveryInstanceCommand extends $Command<DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput, DrsClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteReplicationConfigurationTemplateCommandOutput extends Del
31
31
  * };
32
32
  * const command = new DeleteReplicationConfigurationTemplateCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteReplicationConfigurationTemplateCommandInput - {@link DeleteReplicationConfigurationTemplateCommandInput}
@@ -54,6 +56,8 @@ export interface DeleteReplicationConfigurationTemplateCommandOutput extends Del
54
56
  * @throws {@link UninitializedAccountException} (client fault)
55
57
  * <p>The account performing the request has not been initialized.</p>
56
58
  *
59
+ * @throws {@link DrsServiceException}
60
+ * <p>Base exception class for all service exceptions from Drs service.</p>
57
61
  *
58
62
  */
59
63
  export declare class DeleteReplicationConfigurationTemplateCommand extends $Command<DeleteReplicationConfigurationTemplateCommandInput, DeleteReplicationConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteSourceServerCommandOutput extends DeleteSourceServerRespo
31
31
  * };
32
32
  * const command = new DeleteSourceServerCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteSourceServerCommandInput - {@link DeleteSourceServerCommandInput}
@@ -54,6 +56,8 @@ export interface DeleteSourceServerCommandOutput extends DeleteSourceServerRespo
54
56
  * @throws {@link UninitializedAccountException} (client fault)
55
57
  * <p>The account performing the request has not been initialized.</p>
56
58
  *
59
+ * @throws {@link DrsServiceException}
60
+ * <p>Base exception class for all service exceptions from Drs service.</p>
57
61
  *
58
62
  */
59
63
  export declare class DeleteSourceServerCommand extends $Command<DeleteSourceServerCommandInput, DeleteSourceServerCommandOutput, DrsClientResolvedConfig> {
@@ -33,6 +33,35 @@ export interface DescribeJobLogItemsCommandOutput extends DescribeJobLogItemsRes
33
33
  * };
34
34
  * const command = new DescribeJobLogItemsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeJobLogItemsResponse
37
+ * // items: [ // JobLogs
38
+ * // { // JobLog
39
+ * // logDateTime: "STRING_VALUE",
40
+ * // event: "STRING_VALUE",
41
+ * // eventData: { // JobLogEventData
42
+ * // sourceServerID: "STRING_VALUE",
43
+ * // conversionServerID: "STRING_VALUE",
44
+ * // targetInstanceID: "STRING_VALUE",
45
+ * // rawError: "STRING_VALUE",
46
+ * // conversionProperties: { // ConversionProperties
47
+ * // volumeToConversionMap: { // VolumeToConversionMap
48
+ * // "<keys>": { // ConversionMap
49
+ * // "<keys>": "STRING_VALUE",
50
+ * // },
51
+ * // },
52
+ * // rootVolumeName: "STRING_VALUE",
53
+ * // forceUefi: true || false,
54
+ * // dataTimestamp: "STRING_VALUE",
55
+ * // volumeToVolumeSize: { // VolumeToSizeMap
56
+ * // "<keys>": Number("long"),
57
+ * // },
58
+ * // },
59
+ * // },
60
+ * // },
61
+ * // ],
62
+ * // nextToken: "STRING_VALUE",
63
+ * // };
64
+ *
36
65
  * ```
37
66
  *
38
67
  * @param DescribeJobLogItemsCommandInput - {@link DescribeJobLogItemsCommandInput}
@@ -53,6 +82,8 @@ export interface DescribeJobLogItemsCommandOutput extends DescribeJobLogItemsRes
53
82
  * @throws {@link ValidationException} (client fault)
54
83
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
55
84
  *
85
+ * @throws {@link DrsServiceException}
86
+ * <p>Base exception class for all service exceptions from Drs service.</p>
56
87
  *
57
88
  */
58
89
  export declare class DescribeJobLogItemsCommand extends $Command<DescribeJobLogItemsCommandInput, DescribeJobLogItemsCommandOutput, DrsClientResolvedConfig> {
@@ -39,6 +39,31 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad
39
39
  * };
40
40
  * const command = new DescribeJobsCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // DescribeJobsResponse
43
+ * // items: [ // JobsList
44
+ * // { // Job
45
+ * // jobID: "STRING_VALUE", // required
46
+ * // arn: "STRING_VALUE",
47
+ * // type: "STRING_VALUE",
48
+ * // initiatedBy: "STRING_VALUE",
49
+ * // creationDateTime: "STRING_VALUE",
50
+ * // endDateTime: "STRING_VALUE",
51
+ * // status: "STRING_VALUE",
52
+ * // participatingServers: [ // ParticipatingServers
53
+ * // { // ParticipatingServer
54
+ * // sourceServerID: "STRING_VALUE",
55
+ * // recoveryInstanceID: "STRING_VALUE",
56
+ * // launchStatus: "STRING_VALUE",
57
+ * // },
58
+ * // ],
59
+ * // tags: { // TagsMap
60
+ * // "<keys>": "STRING_VALUE",
61
+ * // },
62
+ * // },
63
+ * // ],
64
+ * // nextToken: "STRING_VALUE",
65
+ * // };
66
+ *
42
67
  * ```
43
68
  *
44
69
  * @param DescribeJobsCommandInput - {@link DescribeJobsCommandInput}
@@ -59,6 +84,8 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad
59
84
  * @throws {@link ValidationException} (client fault)
60
85
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
61
86
  *
87
+ * @throws {@link DrsServiceException}
88
+ * <p>Base exception class for all service exceptions from Drs service.</p>
62
89
  *
63
90
  */
64
91
  export declare class DescribeJobsCommand extends $Command<DescribeJobsCommandInput, DescribeJobsCommandOutput, DrsClientResolvedConfig> {
@@ -35,6 +35,26 @@ export interface DescribeLaunchConfigurationTemplatesCommandOutput extends Descr
35
35
  * };
36
36
  * const command = new DescribeLaunchConfigurationTemplatesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeLaunchConfigurationTemplatesResponse
39
+ * // items: [ // LaunchConfigurationTemplates
40
+ * // { // LaunchConfigurationTemplate
41
+ * // launchConfigurationTemplateID: "STRING_VALUE",
42
+ * // arn: "STRING_VALUE",
43
+ * // tags: { // TagsMap
44
+ * // "<keys>": "STRING_VALUE",
45
+ * // },
46
+ * // launchDisposition: "STRING_VALUE",
47
+ * // targetInstanceTypeRightSizingMethod: "STRING_VALUE",
48
+ * // copyPrivateIp: true || false,
49
+ * // copyTags: true || false,
50
+ * // licensing: { // Licensing
51
+ * // osByol: true || false,
52
+ * // },
53
+ * // },
54
+ * // ],
55
+ * // nextToken: "STRING_VALUE",
56
+ * // };
57
+ *
38
58
  * ```
39
59
  *
40
60
  * @param DescribeLaunchConfigurationTemplatesCommandInput - {@link DescribeLaunchConfigurationTemplatesCommandInput}
@@ -58,6 +78,8 @@ export interface DescribeLaunchConfigurationTemplatesCommandOutput extends Descr
58
78
  * @throws {@link ValidationException} (client fault)
59
79
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
60
80
  *
81
+ * @throws {@link DrsServiceException}
82
+ * <p>Base exception class for all service exceptions from Drs service.</p>
61
83
  *
62
84
  */
63
85
  export declare class DescribeLaunchConfigurationTemplatesCommand extends $Command<DescribeLaunchConfigurationTemplatesCommandInput, DescribeLaunchConfigurationTemplatesCommandOutput, DrsClientResolvedConfig> {
@@ -40,6 +40,102 @@ export interface DescribeRecoveryInstancesCommandOutput extends DescribeRecovery
40
40
  * };
41
41
  * const command = new DescribeRecoveryInstancesCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // DescribeRecoveryInstancesResponse
44
+ * // nextToken: "STRING_VALUE",
45
+ * // items: [ // DescribeRecoveryInstancesItems
46
+ * // { // RecoveryInstance
47
+ * // ec2InstanceID: "STRING_VALUE",
48
+ * // ec2InstanceState: "STRING_VALUE",
49
+ * // jobID: "STRING_VALUE",
50
+ * // recoveryInstanceID: "STRING_VALUE",
51
+ * // sourceServerID: "STRING_VALUE",
52
+ * // arn: "STRING_VALUE",
53
+ * // tags: { // TagsMap
54
+ * // "<keys>": "STRING_VALUE",
55
+ * // },
56
+ * // failback: { // RecoveryInstanceFailback
57
+ * // failbackClientID: "STRING_VALUE",
58
+ * // failbackJobID: "STRING_VALUE",
59
+ * // failbackInitiationTime: "STRING_VALUE",
60
+ * // state: "STRING_VALUE",
61
+ * // agentLastSeenByServiceDateTime: "STRING_VALUE",
62
+ * // failbackClientLastSeenByServiceDateTime: "STRING_VALUE",
63
+ * // failbackToOriginalServer: true || false,
64
+ * // firstByteDateTime: "STRING_VALUE",
65
+ * // elapsedReplicationDuration: "STRING_VALUE",
66
+ * // failbackLaunchType: "STRING_VALUE",
67
+ * // },
68
+ * // dataReplicationInfo: { // RecoveryInstanceDataReplicationInfo
69
+ * // lagDuration: "STRING_VALUE",
70
+ * // etaDateTime: "STRING_VALUE",
71
+ * // replicatedDisks: [ // RecoveryInstanceDataReplicationInfoReplicatedDisks
72
+ * // { // RecoveryInstanceDataReplicationInfoReplicatedDisk
73
+ * // deviceName: "STRING_VALUE",
74
+ * // totalStorageBytes: Number("long"),
75
+ * // replicatedStorageBytes: Number("long"),
76
+ * // rescannedStorageBytes: Number("long"),
77
+ * // backloggedStorageBytes: Number("long"),
78
+ * // },
79
+ * // ],
80
+ * // dataReplicationState: "STRING_VALUE",
81
+ * // dataReplicationInitiation: { // RecoveryInstanceDataReplicationInitiation
82
+ * // startDateTime: "STRING_VALUE",
83
+ * // steps: [ // RecoveryInstanceDataReplicationInitiationSteps
84
+ * // { // RecoveryInstanceDataReplicationInitiationStep
85
+ * // name: "STRING_VALUE",
86
+ * // status: "STRING_VALUE",
87
+ * // },
88
+ * // ],
89
+ * // },
90
+ * // dataReplicationError: { // RecoveryInstanceDataReplicationError
91
+ * // error: "STRING_VALUE",
92
+ * // rawError: "STRING_VALUE",
93
+ * // },
94
+ * // stagingAvailabilityZone: "STRING_VALUE",
95
+ * // },
96
+ * // recoveryInstanceProperties: { // RecoveryInstanceProperties
97
+ * // lastUpdatedDateTime: "STRING_VALUE",
98
+ * // identificationHints: { // IdentificationHints
99
+ * // fqdn: "STRING_VALUE",
100
+ * // hostname: "STRING_VALUE",
101
+ * // vmWareUuid: "STRING_VALUE",
102
+ * // awsInstanceID: "STRING_VALUE",
103
+ * // },
104
+ * // networkInterfaces: [ // NetworkInterfaces
105
+ * // { // NetworkInterface
106
+ * // macAddress: "STRING_VALUE",
107
+ * // ips: [ // IPsList
108
+ * // "STRING_VALUE",
109
+ * // ],
110
+ * // isPrimary: true || false,
111
+ * // },
112
+ * // ],
113
+ * // disks: [ // RecoveryInstanceDisks
114
+ * // { // RecoveryInstanceDisk
115
+ * // internalDeviceName: "STRING_VALUE",
116
+ * // bytes: Number("long"),
117
+ * // ebsVolumeID: "STRING_VALUE",
118
+ * // },
119
+ * // ],
120
+ * // cpus: [ // Cpus
121
+ * // { // CPU
122
+ * // cores: Number("long"),
123
+ * // modelName: "STRING_VALUE",
124
+ * // },
125
+ * // ],
126
+ * // ramBytes: Number("long"),
127
+ * // os: { // OS
128
+ * // fullString: "STRING_VALUE",
129
+ * // },
130
+ * // },
131
+ * // pointInTimeSnapshotDateTime: "STRING_VALUE",
132
+ * // isDrill: true || false,
133
+ * // originEnvironment: "STRING_VALUE",
134
+ * // originAvailabilityZone: "STRING_VALUE",
135
+ * // },
136
+ * // ],
137
+ * // };
138
+ *
43
139
  * ```
44
140
  *
45
141
  * @param DescribeRecoveryInstancesCommandInput - {@link DescribeRecoveryInstancesCommandInput}
@@ -60,6 +156,8 @@ export interface DescribeRecoveryInstancesCommandOutput extends DescribeRecovery
60
156
  * @throws {@link UninitializedAccountException} (client fault)
61
157
  * <p>The account performing the request has not been initialized.</p>
62
158
  *
159
+ * @throws {@link DrsServiceException}
160
+ * <p>Base exception class for all service exceptions from Drs service.</p>
63
161
  *
64
162
  */
65
163
  export declare class DescribeRecoveryInstancesCommand extends $Command<DescribeRecoveryInstancesCommandInput, DescribeRecoveryInstancesCommandOutput, DrsClientResolvedConfig> {
@@ -38,6 +38,21 @@ export interface DescribeRecoverySnapshotsCommandOutput extends DescribeRecovery
38
38
  * };
39
39
  * const command = new DescribeRecoverySnapshotsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // DescribeRecoverySnapshotsResponse
42
+ * // items: [ // RecoverySnapshotsList
43
+ * // { // RecoverySnapshot
44
+ * // snapshotID: "STRING_VALUE", // required
45
+ * // sourceServerID: "STRING_VALUE", // required
46
+ * // expectedTimestamp: "STRING_VALUE", // required
47
+ * // timestamp: "STRING_VALUE",
48
+ * // ebsSnapshots: [ // EbsSnapshotsList
49
+ * // "STRING_VALUE",
50
+ * // ],
51
+ * // },
52
+ * // ],
53
+ * // nextToken: "STRING_VALUE",
54
+ * // };
55
+ *
41
56
  * ```
42
57
  *
43
58
  * @param DescribeRecoverySnapshotsCommandInput - {@link DescribeRecoverySnapshotsCommandInput}
@@ -61,6 +76,8 @@ export interface DescribeRecoverySnapshotsCommandOutput extends DescribeRecovery
61
76
  * @throws {@link ValidationException} (client fault)
62
77
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
63
78
  *
79
+ * @throws {@link DrsServiceException}
80
+ * <p>Base exception class for all service exceptions from Drs service.</p>
64
81
  *
65
82
  */
66
83
  export declare class DescribeRecoverySnapshotsCommand extends $Command<DescribeRecoverySnapshotsCommandInput, DescribeRecoverySnapshotsCommandOutput, DrsClientResolvedConfig> {
@@ -35,6 +35,45 @@ export interface DescribeReplicationConfigurationTemplatesCommandOutput extends
35
35
  * };
36
36
  * const command = new DescribeReplicationConfigurationTemplatesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeReplicationConfigurationTemplatesResponse
39
+ * // items: [ // ReplicationConfigurationTemplates
40
+ * // { // ReplicationConfigurationTemplate
41
+ * // replicationConfigurationTemplateID: "STRING_VALUE", // required
42
+ * // arn: "STRING_VALUE",
43
+ * // stagingAreaSubnetId: "STRING_VALUE",
44
+ * // associateDefaultSecurityGroup: true || false,
45
+ * // replicationServersSecurityGroupsIDs: [ // ReplicationServersSecurityGroupsIDs
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // replicationServerInstanceType: "STRING_VALUE",
49
+ * // useDedicatedReplicationServer: true || false,
50
+ * // defaultLargeStagingDiskType: "STRING_VALUE",
51
+ * // ebsEncryption: "STRING_VALUE",
52
+ * // ebsEncryptionKeyArn: "STRING_VALUE",
53
+ * // bandwidthThrottling: Number("long"),
54
+ * // dataPlaneRouting: "STRING_VALUE",
55
+ * // createPublicIP: true || false,
56
+ * // stagingAreaTags: { // TagsMap
57
+ * // "<keys>": "STRING_VALUE",
58
+ * // },
59
+ * // tags: {
60
+ * // "<keys>": "STRING_VALUE",
61
+ * // },
62
+ * // pitPolicy: [ // PITPolicy
63
+ * // { // PITPolicyRule
64
+ * // ruleID: Number("long"),
65
+ * // units: "STRING_VALUE", // required
66
+ * // interval: Number("int"), // required
67
+ * // retentionDuration: Number("int"), // required
68
+ * // enabled: true || false,
69
+ * // },
70
+ * // ],
71
+ * // autoReplicateNewDisks: true || false,
72
+ * // },
73
+ * // ],
74
+ * // nextToken: "STRING_VALUE",
75
+ * // };
76
+ *
38
77
  * ```
39
78
  *
40
79
  * @param DescribeReplicationConfigurationTemplatesCommandInput - {@link DescribeReplicationConfigurationTemplatesCommandInput}
@@ -58,6 +97,8 @@ export interface DescribeReplicationConfigurationTemplatesCommandOutput extends
58
97
  * @throws {@link ValidationException} (client fault)
59
98
  * <p>The input fails to satisfy the constraints specified by the AWS service.</p>
60
99
  *
100
+ * @throws {@link DrsServiceException}
101
+ * <p>Base exception class for all service exceptions from Drs service.</p>
61
102
  *
62
103
  */
63
104
  export declare class DescribeReplicationConfigurationTemplatesCommand extends $Command<DescribeReplicationConfigurationTemplatesCommandInput, DescribeReplicationConfigurationTemplatesCommandOutput, DrsClientResolvedConfig> {