aws-sdk-drs 1.22.0 → 1.23.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 +28 -3
- data/lib/aws-sdk-drs/client_api.rb +10 -1
- data/lib/aws-sdk-drs/types.rb +47 -0
- data/lib/aws-sdk-drs.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f32de871588f772f51152f2602e3484d51748b1bc29b036daee7c402c2687e3b
|
|
4
|
+
data.tar.gz: 21f86346c02c213476b23e153c9063748ad2613a7e4feff55c678f292ad471a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eabe85a2de752fa4b1f6b3955ee0f2a3e26845f4f3fe1af521a5027e987b7e1422331f3ca8b6a9ee9eb2bb76003c9977bf17f565459547509afad91809c8dd1a
|
|
7
|
+
data.tar.gz: f91b9145d0085a945fe95b02b1c477b5653512b1a2bbfc99968bee337e6ad1b498d3abd249374cc4be99931a82e8566c95c2a8914ae48538f4e885cfa1dca95c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.23.0 (2023-10-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updated exsiting API to allow AWS Elastic Disaster Recovery support of launching recovery into existing EC2 instances.
|
|
8
|
+
|
|
4
9
|
1.22.0 (2023-09-27)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.23.0
|
data/lib/aws-sdk-drs/client.rb
CHANGED
|
@@ -565,6 +565,11 @@ module Aws::Drs
|
|
|
565
565
|
# @option params [String] :launch_disposition
|
|
566
566
|
# Launch disposition.
|
|
567
567
|
#
|
|
568
|
+
# @option params [Boolean] :launch_into_source_instance
|
|
569
|
+
# DRS will set the 'launch into instance ID' of any source server when
|
|
570
|
+
# performing a drill, recovery or failback to the previous region or
|
|
571
|
+
# availability zone, using the instance ID of the source instance.
|
|
572
|
+
#
|
|
568
573
|
# @option params [Types::Licensing] :licensing
|
|
569
574
|
# Licensing.
|
|
570
575
|
#
|
|
@@ -589,6 +594,7 @@ module Aws::Drs
|
|
|
589
594
|
# copy_tags: false,
|
|
590
595
|
# export_bucket_arn: "ARN",
|
|
591
596
|
# launch_disposition: "STOPPED", # accepts STOPPED, STARTED
|
|
597
|
+
# launch_into_source_instance: false,
|
|
592
598
|
# licensing: {
|
|
593
599
|
# os_byol: false,
|
|
594
600
|
# },
|
|
@@ -607,6 +613,7 @@ module Aws::Drs
|
|
|
607
613
|
# resp.launch_configuration_template.export_bucket_arn #=> String
|
|
608
614
|
# resp.launch_configuration_template.launch_configuration_template_id #=> String
|
|
609
615
|
# resp.launch_configuration_template.launch_disposition #=> String, one of "STOPPED", "STARTED"
|
|
616
|
+
# resp.launch_configuration_template.launch_into_source_instance #=> Boolean
|
|
610
617
|
# resp.launch_configuration_template.licensing.os_byol #=> Boolean
|
|
611
618
|
# resp.launch_configuration_template.post_launch_enabled #=> Boolean
|
|
612
619
|
# resp.launch_configuration_template.tags #=> Hash
|
|
@@ -1149,6 +1156,7 @@ module Aws::Drs
|
|
|
1149
1156
|
# resp.items[0].export_bucket_arn #=> String
|
|
1150
1157
|
# resp.items[0].launch_configuration_template_id #=> String
|
|
1151
1158
|
# resp.items[0].launch_disposition #=> String, one of "STOPPED", "STARTED"
|
|
1159
|
+
# resp.items[0].launch_into_source_instance #=> Boolean
|
|
1152
1160
|
# resp.items[0].licensing.os_byol #=> Boolean
|
|
1153
1161
|
# resp.items[0].post_launch_enabled #=> Boolean
|
|
1154
1162
|
# resp.items[0].tags #=> Hash
|
|
@@ -1776,6 +1784,7 @@ module Aws::Drs
|
|
|
1776
1784
|
# * {Types::LaunchConfiguration#copy_tags #copy_tags} => Boolean
|
|
1777
1785
|
# * {Types::LaunchConfiguration#ec2_launch_template_id #ec2_launch_template_id} => String
|
|
1778
1786
|
# * {Types::LaunchConfiguration#launch_disposition #launch_disposition} => String
|
|
1787
|
+
# * {Types::LaunchConfiguration#launch_into_instance_properties #launch_into_instance_properties} => Types::LaunchIntoInstanceProperties
|
|
1779
1788
|
# * {Types::LaunchConfiguration#licensing #licensing} => Types::Licensing
|
|
1780
1789
|
# * {Types::LaunchConfiguration#name #name} => String
|
|
1781
1790
|
# * {Types::LaunchConfiguration#post_launch_enabled #post_launch_enabled} => Boolean
|
|
@@ -1794,6 +1803,7 @@ module Aws::Drs
|
|
|
1794
1803
|
# resp.copy_tags #=> Boolean
|
|
1795
1804
|
# resp.ec2_launch_template_id #=> String
|
|
1796
1805
|
# resp.launch_disposition #=> String, one of "STOPPED", "STARTED"
|
|
1806
|
+
# resp.launch_into_instance_properties.launch_into_ec2_instance_id #=> String
|
|
1797
1807
|
# resp.licensing.os_byol #=> Boolean
|
|
1798
1808
|
# resp.name #=> String
|
|
1799
1809
|
# resp.post_launch_enabled #=> Boolean
|
|
@@ -2087,7 +2097,7 @@ module Aws::Drs
|
|
|
2087
2097
|
# @option params [required, String] :category
|
|
2088
2098
|
# Launch action category.
|
|
2089
2099
|
#
|
|
2090
|
-
# @option params [String] :description
|
|
2100
|
+
# @option params [required, String] :description
|
|
2091
2101
|
# Launch action description.
|
|
2092
2102
|
#
|
|
2093
2103
|
# @option params [required, String] :name
|
|
@@ -2128,7 +2138,7 @@ module Aws::Drs
|
|
|
2128
2138
|
# action_version: "LaunchActionVersion", # required
|
|
2129
2139
|
# active: false, # required
|
|
2130
2140
|
# category: "MONITORING", # required, accepts MONITORING, VALIDATION, CONFIGURATION, SECURITY, OTHER
|
|
2131
|
-
# description: "LaunchActionDescription",
|
|
2141
|
+
# description: "LaunchActionDescription", # required
|
|
2132
2142
|
# name: "LaunchActionName", # required
|
|
2133
2143
|
# optional: false, # required
|
|
2134
2144
|
# order: 1, # required
|
|
@@ -2992,6 +3002,9 @@ module Aws::Drs
|
|
|
2992
3002
|
# The state of the Recovery Instance in EC2 after the recovery
|
|
2993
3003
|
# operation.
|
|
2994
3004
|
#
|
|
3005
|
+
# @option params [Types::LaunchIntoInstanceProperties] :launch_into_instance_properties
|
|
3006
|
+
# Launch into existing instance properties.
|
|
3007
|
+
#
|
|
2995
3008
|
# @option params [Types::Licensing] :licensing
|
|
2996
3009
|
# The licensing configuration to be used for this launch configuration.
|
|
2997
3010
|
#
|
|
@@ -3016,6 +3029,7 @@ module Aws::Drs
|
|
|
3016
3029
|
# * {Types::LaunchConfiguration#copy_tags #copy_tags} => Boolean
|
|
3017
3030
|
# * {Types::LaunchConfiguration#ec2_launch_template_id #ec2_launch_template_id} => String
|
|
3018
3031
|
# * {Types::LaunchConfiguration#launch_disposition #launch_disposition} => String
|
|
3032
|
+
# * {Types::LaunchConfiguration#launch_into_instance_properties #launch_into_instance_properties} => Types::LaunchIntoInstanceProperties
|
|
3019
3033
|
# * {Types::LaunchConfiguration#licensing #licensing} => Types::Licensing
|
|
3020
3034
|
# * {Types::LaunchConfiguration#name #name} => String
|
|
3021
3035
|
# * {Types::LaunchConfiguration#post_launch_enabled #post_launch_enabled} => Boolean
|
|
@@ -3028,6 +3042,9 @@ module Aws::Drs
|
|
|
3028
3042
|
# copy_private_ip: false,
|
|
3029
3043
|
# copy_tags: false,
|
|
3030
3044
|
# launch_disposition: "STOPPED", # accepts STOPPED, STARTED
|
|
3045
|
+
# launch_into_instance_properties: {
|
|
3046
|
+
# launch_into_ec2_instance_id: "EC2InstanceID",
|
|
3047
|
+
# },
|
|
3031
3048
|
# licensing: {
|
|
3032
3049
|
# os_byol: false,
|
|
3033
3050
|
# },
|
|
@@ -3043,6 +3060,7 @@ module Aws::Drs
|
|
|
3043
3060
|
# resp.copy_tags #=> Boolean
|
|
3044
3061
|
# resp.ec2_launch_template_id #=> String
|
|
3045
3062
|
# resp.launch_disposition #=> String, one of "STOPPED", "STARTED"
|
|
3063
|
+
# resp.launch_into_instance_properties.launch_into_ec2_instance_id #=> String
|
|
3046
3064
|
# resp.licensing.os_byol #=> Boolean
|
|
3047
3065
|
# resp.name #=> String
|
|
3048
3066
|
# resp.post_launch_enabled #=> Boolean
|
|
@@ -3075,6 +3093,11 @@ module Aws::Drs
|
|
|
3075
3093
|
# @option params [String] :launch_disposition
|
|
3076
3094
|
# Launch disposition.
|
|
3077
3095
|
#
|
|
3096
|
+
# @option params [Boolean] :launch_into_source_instance
|
|
3097
|
+
# DRS will set the 'launch into instance ID' of any source server when
|
|
3098
|
+
# performing a drill, recovery or failback to the previous region or
|
|
3099
|
+
# availability zone, using the instance ID of the source instance.
|
|
3100
|
+
#
|
|
3078
3101
|
# @option params [Types::Licensing] :licensing
|
|
3079
3102
|
# Licensing.
|
|
3080
3103
|
#
|
|
@@ -3096,6 +3119,7 @@ module Aws::Drs
|
|
|
3096
3119
|
# export_bucket_arn: "ARN",
|
|
3097
3120
|
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
|
3098
3121
|
# launch_disposition: "STOPPED", # accepts STOPPED, STARTED
|
|
3122
|
+
# launch_into_source_instance: false,
|
|
3099
3123
|
# licensing: {
|
|
3100
3124
|
# os_byol: false,
|
|
3101
3125
|
# },
|
|
@@ -3111,6 +3135,7 @@ module Aws::Drs
|
|
|
3111
3135
|
# resp.launch_configuration_template.export_bucket_arn #=> String
|
|
3112
3136
|
# resp.launch_configuration_template.launch_configuration_template_id #=> String
|
|
3113
3137
|
# resp.launch_configuration_template.launch_disposition #=> String, one of "STOPPED", "STARTED"
|
|
3138
|
+
# resp.launch_configuration_template.launch_into_source_instance #=> Boolean
|
|
3114
3139
|
# resp.launch_configuration_template.licensing.os_byol #=> Boolean
|
|
3115
3140
|
# resp.launch_configuration_template.post_launch_enabled #=> Boolean
|
|
3116
3141
|
# resp.launch_configuration_template.tags #=> Hash
|
|
@@ -3447,7 +3472,7 @@ module Aws::Drs
|
|
|
3447
3472
|
params: params,
|
|
3448
3473
|
config: config)
|
|
3449
3474
|
context[:gem_name] = 'aws-sdk-drs'
|
|
3450
|
-
context[:gem_version] = '1.
|
|
3475
|
+
context[:gem_version] = '1.23.0'
|
|
3451
3476
|
Seahorse::Client::Request.new(handlers, context)
|
|
3452
3477
|
end
|
|
3453
3478
|
|
|
@@ -157,6 +157,7 @@ module Aws::Drs
|
|
|
157
157
|
LaunchConfigurationTemplateIDs = Shapes::ListShape.new(name: 'LaunchConfigurationTemplateIDs')
|
|
158
158
|
LaunchConfigurationTemplates = Shapes::ListShape.new(name: 'LaunchConfigurationTemplates')
|
|
159
159
|
LaunchDisposition = Shapes::StringShape.new(name: 'LaunchDisposition')
|
|
160
|
+
LaunchIntoInstanceProperties = Shapes::StructureShape.new(name: 'LaunchIntoInstanceProperties')
|
|
160
161
|
LaunchStatus = Shapes::StringShape.new(name: 'LaunchStatus')
|
|
161
162
|
Licensing = Shapes::StructureShape.new(name: 'Licensing')
|
|
162
163
|
LifeCycle = Shapes::StructureShape.new(name: 'LifeCycle')
|
|
@@ -349,6 +350,7 @@ module Aws::Drs
|
|
|
349
350
|
CreateLaunchConfigurationTemplateRequest.add_member(:copy_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "copyTags"))
|
|
350
351
|
CreateLaunchConfigurationTemplateRequest.add_member(:export_bucket_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "exportBucketArn"))
|
|
351
352
|
CreateLaunchConfigurationTemplateRequest.add_member(:launch_disposition, Shapes::ShapeRef.new(shape: LaunchDisposition, location_name: "launchDisposition"))
|
|
353
|
+
CreateLaunchConfigurationTemplateRequest.add_member(:launch_into_source_instance, Shapes::ShapeRef.new(shape: Boolean, location_name: "launchIntoSourceInstance"))
|
|
352
354
|
CreateLaunchConfigurationTemplateRequest.add_member(:licensing, Shapes::ShapeRef.new(shape: Licensing, location_name: "licensing"))
|
|
353
355
|
CreateLaunchConfigurationTemplateRequest.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
354
356
|
CreateLaunchConfigurationTemplateRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
@@ -685,6 +687,7 @@ module Aws::Drs
|
|
|
685
687
|
LaunchConfiguration.add_member(:copy_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "copyTags"))
|
|
686
688
|
LaunchConfiguration.add_member(:ec2_launch_template_id, Shapes::ShapeRef.new(shape: BoundedString, location_name: "ec2LaunchTemplateID"))
|
|
687
689
|
LaunchConfiguration.add_member(:launch_disposition, Shapes::ShapeRef.new(shape: LaunchDisposition, location_name: "launchDisposition"))
|
|
690
|
+
LaunchConfiguration.add_member(:launch_into_instance_properties, Shapes::ShapeRef.new(shape: LaunchIntoInstanceProperties, location_name: "launchIntoInstanceProperties"))
|
|
688
691
|
LaunchConfiguration.add_member(:licensing, Shapes::ShapeRef.new(shape: Licensing, location_name: "licensing"))
|
|
689
692
|
LaunchConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: SmallBoundedString, location_name: "name"))
|
|
690
693
|
LaunchConfiguration.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
@@ -698,6 +701,7 @@ module Aws::Drs
|
|
|
698
701
|
LaunchConfigurationTemplate.add_member(:export_bucket_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "exportBucketArn"))
|
|
699
702
|
LaunchConfigurationTemplate.add_member(:launch_configuration_template_id, Shapes::ShapeRef.new(shape: LaunchConfigurationTemplateID, location_name: "launchConfigurationTemplateID"))
|
|
700
703
|
LaunchConfigurationTemplate.add_member(:launch_disposition, Shapes::ShapeRef.new(shape: LaunchDisposition, location_name: "launchDisposition"))
|
|
704
|
+
LaunchConfigurationTemplate.add_member(:launch_into_source_instance, Shapes::ShapeRef.new(shape: Boolean, location_name: "launchIntoSourceInstance"))
|
|
701
705
|
LaunchConfigurationTemplate.add_member(:licensing, Shapes::ShapeRef.new(shape: Licensing, location_name: "licensing"))
|
|
702
706
|
LaunchConfigurationTemplate.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
703
707
|
LaunchConfigurationTemplate.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
@@ -708,6 +712,9 @@ module Aws::Drs
|
|
|
708
712
|
|
|
709
713
|
LaunchConfigurationTemplates.member = Shapes::ShapeRef.new(shape: LaunchConfigurationTemplate)
|
|
710
714
|
|
|
715
|
+
LaunchIntoInstanceProperties.add_member(:launch_into_ec2_instance_id, Shapes::ShapeRef.new(shape: EC2InstanceID, location_name: "launchIntoEC2InstanceID"))
|
|
716
|
+
LaunchIntoInstanceProperties.struct_class = Types::LaunchIntoInstanceProperties
|
|
717
|
+
|
|
711
718
|
Licensing.add_member(:os_byol, Shapes::ShapeRef.new(shape: Boolean, location_name: "osByol"))
|
|
712
719
|
Licensing.struct_class = Types::Licensing
|
|
713
720
|
|
|
@@ -804,7 +811,7 @@ module Aws::Drs
|
|
|
804
811
|
PutLaunchActionRequest.add_member(:action_version, Shapes::ShapeRef.new(shape: LaunchActionVersion, required: true, location_name: "actionVersion"))
|
|
805
812
|
PutLaunchActionRequest.add_member(:active, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "active"))
|
|
806
813
|
PutLaunchActionRequest.add_member(:category, Shapes::ShapeRef.new(shape: LaunchActionCategory, required: true, location_name: "category"))
|
|
807
|
-
PutLaunchActionRequest.add_member(:description, Shapes::ShapeRef.new(shape: LaunchActionDescription, location_name: "description"))
|
|
814
|
+
PutLaunchActionRequest.add_member(:description, Shapes::ShapeRef.new(shape: LaunchActionDescription, required: true, location_name: "description"))
|
|
808
815
|
PutLaunchActionRequest.add_member(:name, Shapes::ShapeRef.new(shape: LaunchActionName, required: true, location_name: "name"))
|
|
809
816
|
PutLaunchActionRequest.add_member(:optional, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "optional"))
|
|
810
817
|
PutLaunchActionRequest.add_member(:order, Shapes::ShapeRef.new(shape: LaunchActionOrder, required: true, location_name: "order"))
|
|
@@ -1168,6 +1175,7 @@ module Aws::Drs
|
|
|
1168
1175
|
UpdateLaunchConfigurationRequest.add_member(:copy_private_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "copyPrivateIp"))
|
|
1169
1176
|
UpdateLaunchConfigurationRequest.add_member(:copy_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "copyTags"))
|
|
1170
1177
|
UpdateLaunchConfigurationRequest.add_member(:launch_disposition, Shapes::ShapeRef.new(shape: LaunchDisposition, location_name: "launchDisposition"))
|
|
1178
|
+
UpdateLaunchConfigurationRequest.add_member(:launch_into_instance_properties, Shapes::ShapeRef.new(shape: LaunchIntoInstanceProperties, location_name: "launchIntoInstanceProperties"))
|
|
1171
1179
|
UpdateLaunchConfigurationRequest.add_member(:licensing, Shapes::ShapeRef.new(shape: Licensing, location_name: "licensing"))
|
|
1172
1180
|
UpdateLaunchConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: SmallBoundedString, location_name: "name"))
|
|
1173
1181
|
UpdateLaunchConfigurationRequest.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
@@ -1180,6 +1188,7 @@ module Aws::Drs
|
|
|
1180
1188
|
UpdateLaunchConfigurationTemplateRequest.add_member(:export_bucket_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "exportBucketArn"))
|
|
1181
1189
|
UpdateLaunchConfigurationTemplateRequest.add_member(:launch_configuration_template_id, Shapes::ShapeRef.new(shape: LaunchConfigurationTemplateID, required: true, location_name: "launchConfigurationTemplateID"))
|
|
1182
1190
|
UpdateLaunchConfigurationTemplateRequest.add_member(:launch_disposition, Shapes::ShapeRef.new(shape: LaunchDisposition, location_name: "launchDisposition"))
|
|
1191
|
+
UpdateLaunchConfigurationTemplateRequest.add_member(:launch_into_source_instance, Shapes::ShapeRef.new(shape: Boolean, location_name: "launchIntoSourceInstance"))
|
|
1183
1192
|
UpdateLaunchConfigurationTemplateRequest.add_member(:licensing, Shapes::ShapeRef.new(shape: Licensing, location_name: "licensing"))
|
|
1184
1193
|
UpdateLaunchConfigurationTemplateRequest.add_member(:post_launch_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "postLaunchEnabled"))
|
|
1185
1194
|
UpdateLaunchConfigurationTemplateRequest.add_member(:target_instance_type_right_sizing_method, Shapes::ShapeRef.new(shape: TargetInstanceTypeRightSizingMethod, location_name: "targetInstanceTypeRightSizingMethod"))
|
data/lib/aws-sdk-drs/types.rb
CHANGED
|
@@ -198,6 +198,12 @@ module Aws::Drs
|
|
|
198
198
|
# Launch disposition.
|
|
199
199
|
# @return [String]
|
|
200
200
|
#
|
|
201
|
+
# @!attribute [rw] launch_into_source_instance
|
|
202
|
+
# DRS will set the 'launch into instance ID' of any source server
|
|
203
|
+
# when performing a drill, recovery or failback to the previous region
|
|
204
|
+
# or availability zone, using the instance ID of the source instance.
|
|
205
|
+
# @return [Boolean]
|
|
206
|
+
#
|
|
201
207
|
# @!attribute [rw] licensing
|
|
202
208
|
# Licensing.
|
|
203
209
|
# @return [Types::Licensing]
|
|
@@ -222,6 +228,7 @@ module Aws::Drs
|
|
|
222
228
|
:copy_tags,
|
|
223
229
|
:export_bucket_arn,
|
|
224
230
|
:launch_disposition,
|
|
231
|
+
:launch_into_source_instance,
|
|
225
232
|
:licensing,
|
|
226
233
|
:post_launch_enabled,
|
|
227
234
|
:tags,
|
|
@@ -1573,6 +1580,10 @@ module Aws::Drs
|
|
|
1573
1580
|
# operation.
|
|
1574
1581
|
# @return [String]
|
|
1575
1582
|
#
|
|
1583
|
+
# @!attribute [rw] launch_into_instance_properties
|
|
1584
|
+
# Launch into existing instance properties.
|
|
1585
|
+
# @return [Types::LaunchIntoInstanceProperties]
|
|
1586
|
+
#
|
|
1576
1587
|
# @!attribute [rw] licensing
|
|
1577
1588
|
# The licensing configuration to be used for this launch
|
|
1578
1589
|
# configuration.
|
|
@@ -1604,6 +1615,7 @@ module Aws::Drs
|
|
|
1604
1615
|
:copy_tags,
|
|
1605
1616
|
:ec2_launch_template_id,
|
|
1606
1617
|
:launch_disposition,
|
|
1618
|
+
:launch_into_instance_properties,
|
|
1607
1619
|
:licensing,
|
|
1608
1620
|
:name,
|
|
1609
1621
|
:post_launch_enabled,
|
|
@@ -1639,6 +1651,12 @@ module Aws::Drs
|
|
|
1639
1651
|
# Launch disposition.
|
|
1640
1652
|
# @return [String]
|
|
1641
1653
|
#
|
|
1654
|
+
# @!attribute [rw] launch_into_source_instance
|
|
1655
|
+
# DRS will set the 'launch into instance ID' of any source server
|
|
1656
|
+
# when performing a drill, recovery or failback to the previous region
|
|
1657
|
+
# or availability zone, using the instance ID of the source instance.
|
|
1658
|
+
# @return [Boolean]
|
|
1659
|
+
#
|
|
1642
1660
|
# @!attribute [rw] licensing
|
|
1643
1661
|
# Licensing.
|
|
1644
1662
|
# @return [Types::Licensing]
|
|
@@ -1664,6 +1682,7 @@ module Aws::Drs
|
|
|
1664
1682
|
:export_bucket_arn,
|
|
1665
1683
|
:launch_configuration_template_id,
|
|
1666
1684
|
:launch_disposition,
|
|
1685
|
+
:launch_into_source_instance,
|
|
1667
1686
|
:licensing,
|
|
1668
1687
|
:post_launch_enabled,
|
|
1669
1688
|
:tags,
|
|
@@ -1672,6 +1691,22 @@ module Aws::Drs
|
|
|
1672
1691
|
include Aws::Structure
|
|
1673
1692
|
end
|
|
1674
1693
|
|
|
1694
|
+
# Launch into existing instance.
|
|
1695
|
+
#
|
|
1696
|
+
# @!attribute [rw] launch_into_ec2_instance_id
|
|
1697
|
+
# Optionally holds EC2 instance ID of an instance to launch into,
|
|
1698
|
+
# instead of launching a new instance during drill, recovery or
|
|
1699
|
+
# failback.
|
|
1700
|
+
# @return [String]
|
|
1701
|
+
#
|
|
1702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/LaunchIntoInstanceProperties AWS API Documentation
|
|
1703
|
+
#
|
|
1704
|
+
class LaunchIntoInstanceProperties < Struct.new(
|
|
1705
|
+
:launch_into_ec2_instance_id)
|
|
1706
|
+
SENSITIVE = []
|
|
1707
|
+
include Aws::Structure
|
|
1708
|
+
end
|
|
1709
|
+
|
|
1675
1710
|
# Configuration of a machine's license.
|
|
1676
1711
|
#
|
|
1677
1712
|
# @!attribute [rw] os_byol
|
|
@@ -3660,6 +3695,10 @@ module Aws::Drs
|
|
|
3660
3695
|
# operation.
|
|
3661
3696
|
# @return [String]
|
|
3662
3697
|
#
|
|
3698
|
+
# @!attribute [rw] launch_into_instance_properties
|
|
3699
|
+
# Launch into existing instance properties.
|
|
3700
|
+
# @return [Types::LaunchIntoInstanceProperties]
|
|
3701
|
+
#
|
|
3663
3702
|
# @!attribute [rw] licensing
|
|
3664
3703
|
# The licensing configuration to be used for this launch
|
|
3665
3704
|
# configuration.
|
|
@@ -3690,6 +3729,7 @@ module Aws::Drs
|
|
|
3690
3729
|
:copy_private_ip,
|
|
3691
3730
|
:copy_tags,
|
|
3692
3731
|
:launch_disposition,
|
|
3732
|
+
:launch_into_instance_properties,
|
|
3693
3733
|
:licensing,
|
|
3694
3734
|
:name,
|
|
3695
3735
|
:post_launch_enabled,
|
|
@@ -3719,6 +3759,12 @@ module Aws::Drs
|
|
|
3719
3759
|
# Launch disposition.
|
|
3720
3760
|
# @return [String]
|
|
3721
3761
|
#
|
|
3762
|
+
# @!attribute [rw] launch_into_source_instance
|
|
3763
|
+
# DRS will set the 'launch into instance ID' of any source server
|
|
3764
|
+
# when performing a drill, recovery or failback to the previous region
|
|
3765
|
+
# or availability zone, using the instance ID of the source instance.
|
|
3766
|
+
# @return [Boolean]
|
|
3767
|
+
#
|
|
3722
3768
|
# @!attribute [rw] licensing
|
|
3723
3769
|
# Licensing.
|
|
3724
3770
|
# @return [Types::Licensing]
|
|
@@ -3739,6 +3785,7 @@ module Aws::Drs
|
|
|
3739
3785
|
:export_bucket_arn,
|
|
3740
3786
|
:launch_configuration_template_id,
|
|
3741
3787
|
:launch_disposition,
|
|
3788
|
+
:launch_into_source_instance,
|
|
3742
3789
|
:licensing,
|
|
3743
3790
|
:post_launch_enabled,
|
|
3744
3791
|
:target_instance_type_right_sizing_method)
|
data/lib/aws-sdk-drs.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-drs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.23.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-10-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|