aws-sdk-drs 1.67.0 → 1.68.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-drs/client.rb +20 -1
- data/lib/aws-sdk-drs/client_api.rb +6 -0
- data/lib/aws-sdk-drs/types.rb +30 -5
- data/lib/aws-sdk-drs.rb +1 -1
- data/sig/client.rbs +8 -3
- data/sig/types.rbs +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97b9b60be7e8c8e7daf3663f6fb29ddd879b7c17c052a5a02a49177808a4b70d
|
|
4
|
+
data.tar.gz: 917bc1f3d7814e95dc02891523483164edc35b45db7fb306d60cb30e5a3fe556
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0b79be5a221d7f28fbf33966f1c28bb39edb35024bed0d36f232baec8e55a892a4a5559951c7bba941ba44568f480f5980cf8e8f7e8e52e756d9ffcfeb25f08
|
|
7
|
+
data.tar.gz: 9dc0e29d7cc2aa73ffeaf60d8df1b39f6b48a4f19830dbb4ee383bc6e64029cc151a50c99cf2d28c5a1cefab48a2a31e0b31ebf4a534e7da38dadc916eeed9e7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.68.0
|
data/lib/aws-sdk-drs/client.rb
CHANGED
|
@@ -673,6 +673,9 @@ module Aws::Drs
|
|
|
673
673
|
# performing a drill, recovery or failback to the previous region or
|
|
674
674
|
# availability zone, using the instance ID of the source instance.
|
|
675
675
|
#
|
|
676
|
+
# @option params [String] :recovery_mode
|
|
677
|
+
# Recovery mode.
|
|
678
|
+
#
|
|
676
679
|
# @return [Types::CreateLaunchConfigurationTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
677
680
|
#
|
|
678
681
|
# * {Types::CreateLaunchConfigurationTemplateResponse#launch_configuration_template #launch_configuration_template} => Types::LaunchConfigurationTemplate
|
|
@@ -693,6 +696,7 @@ module Aws::Drs
|
|
|
693
696
|
# export_bucket_arn: "ARN",
|
|
694
697
|
# post_launch_enabled: false,
|
|
695
698
|
# launch_into_source_instance: false,
|
|
699
|
+
# recovery_mode: "FAST", # accepts FAST, OPTIMAL
|
|
696
700
|
# })
|
|
697
701
|
#
|
|
698
702
|
# @example Response structure
|
|
@@ -709,6 +713,7 @@ module Aws::Drs
|
|
|
709
713
|
# resp.launch_configuration_template.export_bucket_arn #=> String
|
|
710
714
|
# resp.launch_configuration_template.post_launch_enabled #=> Boolean
|
|
711
715
|
# resp.launch_configuration_template.launch_into_source_instance #=> Boolean
|
|
716
|
+
# resp.launch_configuration_template.recovery_mode #=> String, one of "FAST", "OPTIMAL"
|
|
712
717
|
#
|
|
713
718
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/CreateLaunchConfigurationTemplate AWS API Documentation
|
|
714
719
|
#
|
|
@@ -1265,6 +1270,7 @@ module Aws::Drs
|
|
|
1265
1270
|
# resp.items[0].export_bucket_arn #=> String
|
|
1266
1271
|
# resp.items[0].post_launch_enabled #=> Boolean
|
|
1267
1272
|
# resp.items[0].launch_into_source_instance #=> Boolean
|
|
1273
|
+
# resp.items[0].recovery_mode #=> String, one of "FAST", "OPTIMAL"
|
|
1268
1274
|
# resp.next_token #=> String
|
|
1269
1275
|
#
|
|
1270
1276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/DescribeLaunchConfigurationTemplates AWS API Documentation
|
|
@@ -1908,6 +1914,7 @@ module Aws::Drs
|
|
|
1908
1914
|
# * {Types::LaunchConfiguration#licensing #licensing} => Types::Licensing
|
|
1909
1915
|
# * {Types::LaunchConfiguration#post_launch_enabled #post_launch_enabled} => Boolean
|
|
1910
1916
|
# * {Types::LaunchConfiguration#launch_into_instance_properties #launch_into_instance_properties} => Types::LaunchIntoInstanceProperties
|
|
1917
|
+
# * {Types::LaunchConfiguration#recovery_mode #recovery_mode} => String
|
|
1911
1918
|
#
|
|
1912
1919
|
# @example Request syntax with placeholder values
|
|
1913
1920
|
#
|
|
@@ -1927,6 +1934,7 @@ module Aws::Drs
|
|
|
1927
1934
|
# resp.licensing.os_byol #=> Boolean
|
|
1928
1935
|
# resp.post_launch_enabled #=> Boolean
|
|
1929
1936
|
# resp.launch_into_instance_properties.launch_into_ec2_instance_id #=> String
|
|
1937
|
+
# resp.recovery_mode #=> String, one of "FAST", "OPTIMAL"
|
|
1930
1938
|
#
|
|
1931
1939
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/GetLaunchConfiguration AWS API Documentation
|
|
1932
1940
|
#
|
|
@@ -3161,6 +3169,9 @@ module Aws::Drs
|
|
|
3161
3169
|
# @option params [Types::LaunchIntoInstanceProperties] :launch_into_instance_properties
|
|
3162
3170
|
# Launch into existing instance properties.
|
|
3163
3171
|
#
|
|
3172
|
+
# @option params [String] :recovery_mode
|
|
3173
|
+
# Recovery mode.
|
|
3174
|
+
#
|
|
3164
3175
|
# @return [Types::LaunchConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3165
3176
|
#
|
|
3166
3177
|
# * {Types::LaunchConfiguration#source_server_id #source_server_id} => String
|
|
@@ -3173,6 +3184,7 @@ module Aws::Drs
|
|
|
3173
3184
|
# * {Types::LaunchConfiguration#licensing #licensing} => Types::Licensing
|
|
3174
3185
|
# * {Types::LaunchConfiguration#post_launch_enabled #post_launch_enabled} => Boolean
|
|
3175
3186
|
# * {Types::LaunchConfiguration#launch_into_instance_properties #launch_into_instance_properties} => Types::LaunchIntoInstanceProperties
|
|
3187
|
+
# * {Types::LaunchConfiguration#recovery_mode #recovery_mode} => String
|
|
3176
3188
|
#
|
|
3177
3189
|
# @example Request syntax with placeholder values
|
|
3178
3190
|
#
|
|
@@ -3190,6 +3202,7 @@ module Aws::Drs
|
|
|
3190
3202
|
# launch_into_instance_properties: {
|
|
3191
3203
|
# launch_into_ec2_instance_id: "EC2InstanceID",
|
|
3192
3204
|
# },
|
|
3205
|
+
# recovery_mode: "FAST", # accepts FAST, OPTIMAL
|
|
3193
3206
|
# })
|
|
3194
3207
|
#
|
|
3195
3208
|
# @example Response structure
|
|
@@ -3204,6 +3217,7 @@ module Aws::Drs
|
|
|
3204
3217
|
# resp.licensing.os_byol #=> Boolean
|
|
3205
3218
|
# resp.post_launch_enabled #=> Boolean
|
|
3206
3219
|
# resp.launch_into_instance_properties.launch_into_ec2_instance_id #=> String
|
|
3220
|
+
# resp.recovery_mode #=> String, one of "FAST", "OPTIMAL"
|
|
3207
3221
|
#
|
|
3208
3222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/UpdateLaunchConfiguration AWS API Documentation
|
|
3209
3223
|
#
|
|
@@ -3245,6 +3259,9 @@ module Aws::Drs
|
|
|
3245
3259
|
# performing a drill, recovery or failback to the previous region or
|
|
3246
3260
|
# availability zone, using the instance ID of the source instance.
|
|
3247
3261
|
#
|
|
3262
|
+
# @option params [String] :recovery_mode
|
|
3263
|
+
# Recovery mode.
|
|
3264
|
+
#
|
|
3248
3265
|
# @return [Types::UpdateLaunchConfigurationTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3249
3266
|
#
|
|
3250
3267
|
# * {Types::UpdateLaunchConfigurationTemplateResponse#launch_configuration_template #launch_configuration_template} => Types::LaunchConfigurationTemplate
|
|
@@ -3263,6 +3280,7 @@ module Aws::Drs
|
|
|
3263
3280
|
# export_bucket_arn: "ARN",
|
|
3264
3281
|
# post_launch_enabled: false,
|
|
3265
3282
|
# launch_into_source_instance: false,
|
|
3283
|
+
# recovery_mode: "FAST", # accepts FAST, OPTIMAL
|
|
3266
3284
|
# })
|
|
3267
3285
|
#
|
|
3268
3286
|
# @example Response structure
|
|
@@ -3279,6 +3297,7 @@ module Aws::Drs
|
|
|
3279
3297
|
# resp.launch_configuration_template.export_bucket_arn #=> String
|
|
3280
3298
|
# resp.launch_configuration_template.post_launch_enabled #=> Boolean
|
|
3281
3299
|
# resp.launch_configuration_template.launch_into_source_instance #=> Boolean
|
|
3300
|
+
# resp.launch_configuration_template.recovery_mode #=> String, one of "FAST", "OPTIMAL"
|
|
3282
3301
|
#
|
|
3283
3302
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/UpdateLaunchConfigurationTemplate AWS API Documentation
|
|
3284
3303
|
#
|
|
@@ -3629,7 +3648,7 @@ module Aws::Drs
|
|
|
3629
3648
|
tracer: tracer
|
|
3630
3649
|
)
|
|
3631
3650
|
context[:gem_name] = 'aws-sdk-drs'
|
|
3632
|
-
context[:gem_version] = '1.
|
|
3651
|
+
context[:gem_version] = '1.68.0'
|
|
3633
3652
|
Seahorse::Client::Request.new(handlers, context)
|
|
3634
3653
|
end
|
|
3635
3654
|
|
|
@@ -218,6 +218,7 @@ module Aws::Drs
|
|
|
218
218
|
RecoveryInstanceProperties = Shapes::StructureShape.new(name: 'RecoveryInstanceProperties')
|
|
219
219
|
RecoveryInstancesForTerminationRequest = Shapes::ListShape.new(name: 'RecoveryInstancesForTerminationRequest')
|
|
220
220
|
RecoveryLifeCycle = Shapes::StructureShape.new(name: 'RecoveryLifeCycle')
|
|
221
|
+
RecoveryMode = Shapes::StringShape.new(name: 'RecoveryMode')
|
|
221
222
|
RecoveryResult = Shapes::StringShape.new(name: 'RecoveryResult')
|
|
222
223
|
RecoverySnapshot = Shapes::StructureShape.new(name: 'RecoverySnapshot')
|
|
223
224
|
RecoverySnapshotID = Shapes::StringShape.new(name: 'RecoverySnapshotID')
|
|
@@ -367,6 +368,7 @@ module Aws::Drs
|
|
|
367
368
|
CreateLaunchConfigurationTemplateRequest.add_member(:export_bucket_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "exportBucketArn"))
|
|
368
369
|
CreateLaunchConfigurationTemplateRequest.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
369
370
|
CreateLaunchConfigurationTemplateRequest.add_member(:launch_into_source_instance, Shapes::ShapeRef.new(shape: Boolean, location_name: "launchIntoSourceInstance"))
|
|
371
|
+
CreateLaunchConfigurationTemplateRequest.add_member(:recovery_mode, Shapes::ShapeRef.new(shape: RecoveryMode, location_name: "recoveryMode"))
|
|
370
372
|
CreateLaunchConfigurationTemplateRequest.struct_class = Types::CreateLaunchConfigurationTemplateRequest
|
|
371
373
|
|
|
372
374
|
CreateLaunchConfigurationTemplateResponse.add_member(:launch_configuration_template, Shapes::ShapeRef.new(shape: LaunchConfigurationTemplate, location_name: "launchConfigurationTemplate"))
|
|
@@ -711,6 +713,7 @@ module Aws::Drs
|
|
|
711
713
|
LaunchConfiguration.add_member(:licensing, Shapes::ShapeRef.new(shape: Licensing, location_name: "licensing"))
|
|
712
714
|
LaunchConfiguration.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
713
715
|
LaunchConfiguration.add_member(:launch_into_instance_properties, Shapes::ShapeRef.new(shape: LaunchIntoInstanceProperties, location_name: "launchIntoInstanceProperties"))
|
|
716
|
+
LaunchConfiguration.add_member(:recovery_mode, Shapes::ShapeRef.new(shape: RecoveryMode, location_name: "recoveryMode"))
|
|
714
717
|
LaunchConfiguration.struct_class = Types::LaunchConfiguration
|
|
715
718
|
|
|
716
719
|
LaunchConfigurationTemplate.add_member(:launch_configuration_template_id, Shapes::ShapeRef.new(shape: LaunchConfigurationTemplateID, location_name: "launchConfigurationTemplateID"))
|
|
@@ -724,6 +727,7 @@ module Aws::Drs
|
|
|
724
727
|
LaunchConfigurationTemplate.add_member(:export_bucket_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "exportBucketArn"))
|
|
725
728
|
LaunchConfigurationTemplate.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
726
729
|
LaunchConfigurationTemplate.add_member(:launch_into_source_instance, Shapes::ShapeRef.new(shape: Boolean, location_name: "launchIntoSourceInstance"))
|
|
730
|
+
LaunchConfigurationTemplate.add_member(:recovery_mode, Shapes::ShapeRef.new(shape: RecoveryMode, location_name: "recoveryMode"))
|
|
727
731
|
LaunchConfigurationTemplate.struct_class = Types::LaunchConfigurationTemplate
|
|
728
732
|
|
|
729
733
|
LaunchConfigurationTemplateIDs.member = Shapes::ShapeRef.new(shape: LaunchConfigurationTemplateID)
|
|
@@ -1213,6 +1217,7 @@ module Aws::Drs
|
|
|
1213
1217
|
UpdateLaunchConfigurationRequest.add_member(:licensing, Shapes::ShapeRef.new(shape: Licensing, location_name: "licensing"))
|
|
1214
1218
|
UpdateLaunchConfigurationRequest.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
1215
1219
|
UpdateLaunchConfigurationRequest.add_member(:launch_into_instance_properties, Shapes::ShapeRef.new(shape: LaunchIntoInstanceProperties, location_name: "launchIntoInstanceProperties"))
|
|
1220
|
+
UpdateLaunchConfigurationRequest.add_member(:recovery_mode, Shapes::ShapeRef.new(shape: RecoveryMode, location_name: "recoveryMode"))
|
|
1216
1221
|
UpdateLaunchConfigurationRequest.struct_class = Types::UpdateLaunchConfigurationRequest
|
|
1217
1222
|
|
|
1218
1223
|
UpdateLaunchConfigurationTemplateRequest.add_member(:launch_configuration_template_id, Shapes::ShapeRef.new(shape: LaunchConfigurationTemplateID, required: true, location_name: "launchConfigurationTemplateID"))
|
|
@@ -1224,6 +1229,7 @@ module Aws::Drs
|
|
|
1224
1229
|
UpdateLaunchConfigurationTemplateRequest.add_member(:export_bucket_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "exportBucketArn"))
|
|
1225
1230
|
UpdateLaunchConfigurationTemplateRequest.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
1226
1231
|
UpdateLaunchConfigurationTemplateRequest.add_member(:launch_into_source_instance, Shapes::ShapeRef.new(shape: Boolean, location_name: "launchIntoSourceInstance"))
|
|
1232
|
+
UpdateLaunchConfigurationTemplateRequest.add_member(:recovery_mode, Shapes::ShapeRef.new(shape: RecoveryMode, location_name: "recoveryMode"))
|
|
1227
1233
|
UpdateLaunchConfigurationTemplateRequest.struct_class = Types::UpdateLaunchConfigurationTemplateRequest
|
|
1228
1234
|
|
|
1229
1235
|
UpdateLaunchConfigurationTemplateResponse.add_member(:launch_configuration_template, Shapes::ShapeRef.new(shape: LaunchConfigurationTemplate, location_name: "launchConfigurationTemplate"))
|
data/lib/aws-sdk-drs/types.rb
CHANGED
|
@@ -227,6 +227,10 @@ module Aws::Drs
|
|
|
227
227
|
# or availability zone, using the instance ID of the source instance.
|
|
228
228
|
# @return [Boolean]
|
|
229
229
|
#
|
|
230
|
+
# @!attribute [rw] recovery_mode
|
|
231
|
+
# Recovery mode.
|
|
232
|
+
# @return [String]
|
|
233
|
+
#
|
|
230
234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/CreateLaunchConfigurationTemplateRequest AWS API Documentation
|
|
231
235
|
#
|
|
232
236
|
class CreateLaunchConfigurationTemplateRequest < Struct.new(
|
|
@@ -238,7 +242,8 @@ module Aws::Drs
|
|
|
238
242
|
:licensing,
|
|
239
243
|
:export_bucket_arn,
|
|
240
244
|
:post_launch_enabled,
|
|
241
|
-
:launch_into_source_instance
|
|
245
|
+
:launch_into_source_instance,
|
|
246
|
+
:recovery_mode)
|
|
242
247
|
SENSITIVE = [:tags]
|
|
243
248
|
include Aws::Structure
|
|
244
249
|
end
|
|
@@ -1647,6 +1652,10 @@ module Aws::Drs
|
|
|
1647
1652
|
# Launch into existing instance properties.
|
|
1648
1653
|
# @return [Types::LaunchIntoInstanceProperties]
|
|
1649
1654
|
#
|
|
1655
|
+
# @!attribute [rw] recovery_mode
|
|
1656
|
+
# Recovery mode.
|
|
1657
|
+
# @return [String]
|
|
1658
|
+
#
|
|
1650
1659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/LaunchConfiguration AWS API Documentation
|
|
1651
1660
|
#
|
|
1652
1661
|
class LaunchConfiguration < Struct.new(
|
|
@@ -1659,7 +1668,8 @@ module Aws::Drs
|
|
|
1659
1668
|
:copy_tags,
|
|
1660
1669
|
:licensing,
|
|
1661
1670
|
:post_launch_enabled,
|
|
1662
|
-
:launch_into_instance_properties
|
|
1671
|
+
:launch_into_instance_properties,
|
|
1672
|
+
:recovery_mode)
|
|
1663
1673
|
SENSITIVE = []
|
|
1664
1674
|
include Aws::Structure
|
|
1665
1675
|
end
|
|
@@ -1712,6 +1722,10 @@ module Aws::Drs
|
|
|
1712
1722
|
# or availability zone, using the instance ID of the source instance.
|
|
1713
1723
|
# @return [Boolean]
|
|
1714
1724
|
#
|
|
1725
|
+
# @!attribute [rw] recovery_mode
|
|
1726
|
+
# Recovery mode.
|
|
1727
|
+
# @return [String]
|
|
1728
|
+
#
|
|
1715
1729
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/LaunchConfigurationTemplate AWS API Documentation
|
|
1716
1730
|
#
|
|
1717
1731
|
class LaunchConfigurationTemplate < Struct.new(
|
|
@@ -1725,7 +1739,8 @@ module Aws::Drs
|
|
|
1725
1739
|
:licensing,
|
|
1726
1740
|
:export_bucket_arn,
|
|
1727
1741
|
:post_launch_enabled,
|
|
1728
|
-
:launch_into_source_instance
|
|
1742
|
+
:launch_into_source_instance,
|
|
1743
|
+
:recovery_mode)
|
|
1729
1744
|
SENSITIVE = [:tags]
|
|
1730
1745
|
include Aws::Structure
|
|
1731
1746
|
end
|
|
@@ -3824,6 +3839,10 @@ module Aws::Drs
|
|
|
3824
3839
|
# Launch into existing instance properties.
|
|
3825
3840
|
# @return [Types::LaunchIntoInstanceProperties]
|
|
3826
3841
|
#
|
|
3842
|
+
# @!attribute [rw] recovery_mode
|
|
3843
|
+
# Recovery mode.
|
|
3844
|
+
# @return [String]
|
|
3845
|
+
#
|
|
3827
3846
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/UpdateLaunchConfigurationRequest AWS API Documentation
|
|
3828
3847
|
#
|
|
3829
3848
|
class UpdateLaunchConfigurationRequest < Struct.new(
|
|
@@ -3835,7 +3854,8 @@ module Aws::Drs
|
|
|
3835
3854
|
:copy_tags,
|
|
3836
3855
|
:licensing,
|
|
3837
3856
|
:post_launch_enabled,
|
|
3838
|
-
:launch_into_instance_properties
|
|
3857
|
+
:launch_into_instance_properties,
|
|
3858
|
+
:recovery_mode)
|
|
3839
3859
|
SENSITIVE = []
|
|
3840
3860
|
include Aws::Structure
|
|
3841
3861
|
end
|
|
@@ -3878,6 +3898,10 @@ module Aws::Drs
|
|
|
3878
3898
|
# or availability zone, using the instance ID of the source instance.
|
|
3879
3899
|
# @return [Boolean]
|
|
3880
3900
|
#
|
|
3901
|
+
# @!attribute [rw] recovery_mode
|
|
3902
|
+
# Recovery mode.
|
|
3903
|
+
# @return [String]
|
|
3904
|
+
#
|
|
3881
3905
|
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/UpdateLaunchConfigurationTemplateRequest AWS API Documentation
|
|
3882
3906
|
#
|
|
3883
3907
|
class UpdateLaunchConfigurationTemplateRequest < Struct.new(
|
|
@@ -3889,7 +3913,8 @@ module Aws::Drs
|
|
|
3889
3913
|
:licensing,
|
|
3890
3914
|
:export_bucket_arn,
|
|
3891
3915
|
:post_launch_enabled,
|
|
3892
|
-
:launch_into_source_instance
|
|
3916
|
+
:launch_into_source_instance,
|
|
3917
|
+
:recovery_mode)
|
|
3893
3918
|
SENSITIVE = []
|
|
3894
3919
|
include Aws::Structure
|
|
3895
3920
|
end
|
data/lib/aws-sdk-drs.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -116,7 +116,8 @@ module Aws
|
|
|
116
116
|
},
|
|
117
117
|
?export_bucket_arn: ::String,
|
|
118
118
|
?post_launch_enabled: bool,
|
|
119
|
-
?launch_into_source_instance: bool
|
|
119
|
+
?launch_into_source_instance: bool,
|
|
120
|
+
?recovery_mode: ("FAST" | "OPTIMAL")
|
|
120
121
|
) -> _CreateLaunchConfigurationTemplateResponseSuccess
|
|
121
122
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLaunchConfigurationTemplateResponseSuccess
|
|
122
123
|
|
|
@@ -433,6 +434,7 @@ module Aws
|
|
|
433
434
|
def licensing: () -> Types::Licensing
|
|
434
435
|
def post_launch_enabled: () -> bool
|
|
435
436
|
def launch_into_instance_properties: () -> Types::LaunchIntoInstanceProperties
|
|
437
|
+
def recovery_mode: () -> ("FAST" | "OPTIMAL")
|
|
436
438
|
end
|
|
437
439
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#get_launch_configuration-instance_method
|
|
438
440
|
def get_launch_configuration: (
|
|
@@ -730,6 +732,7 @@ module Aws
|
|
|
730
732
|
def licensing: () -> Types::Licensing
|
|
731
733
|
def post_launch_enabled: () -> bool
|
|
732
734
|
def launch_into_instance_properties: () -> Types::LaunchIntoInstanceProperties
|
|
735
|
+
def recovery_mode: () -> ("FAST" | "OPTIMAL")
|
|
733
736
|
end
|
|
734
737
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Drs/Client.html#update_launch_configuration-instance_method
|
|
735
738
|
def update_launch_configuration: (
|
|
@@ -745,7 +748,8 @@ module Aws
|
|
|
745
748
|
?post_launch_enabled: bool,
|
|
746
749
|
?launch_into_instance_properties: {
|
|
747
750
|
launch_into_ec2_instance_id: ::String?
|
|
748
|
-
}
|
|
751
|
+
},
|
|
752
|
+
?recovery_mode: ("FAST" | "OPTIMAL")
|
|
749
753
|
) -> _UpdateLaunchConfigurationResponseSuccess
|
|
750
754
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLaunchConfigurationResponseSuccess
|
|
751
755
|
|
|
@@ -765,7 +769,8 @@ module Aws
|
|
|
765
769
|
},
|
|
766
770
|
?export_bucket_arn: ::String,
|
|
767
771
|
?post_launch_enabled: bool,
|
|
768
|
-
?launch_into_source_instance: bool
|
|
772
|
+
?launch_into_source_instance: bool,
|
|
773
|
+
?recovery_mode: ("FAST" | "OPTIMAL")
|
|
769
774
|
) -> _UpdateLaunchConfigurationTemplateResponseSuccess
|
|
770
775
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLaunchConfigurationTemplateResponseSuccess
|
|
771
776
|
|
data/sig/types.rbs
CHANGED
|
@@ -75,6 +75,7 @@ module Aws::Drs
|
|
|
75
75
|
attr_accessor export_bucket_arn: ::String
|
|
76
76
|
attr_accessor post_launch_enabled: bool
|
|
77
77
|
attr_accessor launch_into_source_instance: bool
|
|
78
|
+
attr_accessor recovery_mode: ("FAST" | "OPTIMAL")
|
|
78
79
|
SENSITIVE: [:tags]
|
|
79
80
|
end
|
|
80
81
|
|
|
@@ -515,6 +516,7 @@ module Aws::Drs
|
|
|
515
516
|
attr_accessor licensing: Types::Licensing
|
|
516
517
|
attr_accessor post_launch_enabled: bool
|
|
517
518
|
attr_accessor launch_into_instance_properties: Types::LaunchIntoInstanceProperties
|
|
519
|
+
attr_accessor recovery_mode: ("FAST" | "OPTIMAL")
|
|
518
520
|
SENSITIVE: []
|
|
519
521
|
end
|
|
520
522
|
|
|
@@ -530,6 +532,7 @@ module Aws::Drs
|
|
|
530
532
|
attr_accessor export_bucket_arn: ::String
|
|
531
533
|
attr_accessor post_launch_enabled: bool
|
|
532
534
|
attr_accessor launch_into_source_instance: bool
|
|
535
|
+
attr_accessor recovery_mode: ("FAST" | "OPTIMAL")
|
|
533
536
|
SENSITIVE: [:tags]
|
|
534
537
|
end
|
|
535
538
|
|
|
@@ -1115,6 +1118,7 @@ module Aws::Drs
|
|
|
1115
1118
|
attr_accessor licensing: Types::Licensing
|
|
1116
1119
|
attr_accessor post_launch_enabled: bool
|
|
1117
1120
|
attr_accessor launch_into_instance_properties: Types::LaunchIntoInstanceProperties
|
|
1121
|
+
attr_accessor recovery_mode: ("FAST" | "OPTIMAL")
|
|
1118
1122
|
SENSITIVE: []
|
|
1119
1123
|
end
|
|
1120
1124
|
|
|
@@ -1128,6 +1132,7 @@ module Aws::Drs
|
|
|
1128
1132
|
attr_accessor export_bucket_arn: ::String
|
|
1129
1133
|
attr_accessor post_launch_enabled: bool
|
|
1130
1134
|
attr_accessor launch_into_source_instance: bool
|
|
1135
|
+
attr_accessor recovery_mode: ("FAST" | "OPTIMAL")
|
|
1131
1136
|
SENSITIVE: []
|
|
1132
1137
|
end
|
|
1133
1138
|
|