aws-sdk-mgn 1.13.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -101,6 +101,10 @@ module Aws::Mgn
101
101
  # @!attribute [rw] code
102
102
  # @return [String]
103
103
  #
104
+ # @!attribute [rw] errors
105
+ # Conflict Exception specific errors.
106
+ # @return [Array<Types::ErrorDetails>]
107
+ #
104
108
  # @!attribute [rw] message
105
109
  # @return [String]
106
110
  #
@@ -116,6 +120,7 @@ module Aws::Mgn
116
120
  #
117
121
  class ConflictException < Struct.new(
118
122
  :code,
123
+ :errors,
119
124
  :message,
120
125
  :resource_id,
121
126
  :resource_type)
@@ -123,6 +128,56 @@ module Aws::Mgn
123
128
  include Aws::Structure
124
129
  end
125
130
 
131
+ # @note When making an API call, you may pass CreateLaunchConfigurationTemplateRequest
132
+ # data as a hash:
133
+ #
134
+ # {
135
+ # post_launch_actions: {
136
+ # cloud_watch_log_group_name: "CloudWatchLogGroupName",
137
+ # deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
138
+ # s3_log_bucket: "S3LogBucketName",
139
+ # s3_output_key_prefix: "BoundedString",
140
+ # ssm_documents: [
141
+ # {
142
+ # action_name: "BoundedString", # required
143
+ # must_succeed_for_cutover: false,
144
+ # parameters: {
145
+ # "SsmDocumentParameterName" => [
146
+ # {
147
+ # parameter_name: "SsmParameterStoreParameterName", # required
148
+ # parameter_type: "STRING", # required, accepts STRING
149
+ # },
150
+ # ],
151
+ # },
152
+ # ssm_document_name: "SsmDocumentName", # required
153
+ # timeout_seconds: 1,
154
+ # },
155
+ # ],
156
+ # },
157
+ # tags: {
158
+ # "TagKey" => "TagValue",
159
+ # },
160
+ # }
161
+ #
162
+ # @!attribute [rw] post_launch_actions
163
+ # Request to associate the default Application Migration Service
164
+ # Security group with the Replication Settings template.
165
+ # @return [Types::PostLaunchActions]
166
+ #
167
+ # @!attribute [rw] tags
168
+ # Request to associate the default Application Migration Service
169
+ # Security group with the Replication Settings template.
170
+ # @return [Hash<String,String>]
171
+ #
172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateLaunchConfigurationTemplateRequest AWS API Documentation
173
+ #
174
+ class CreateLaunchConfigurationTemplateRequest < Struct.new(
175
+ :post_launch_actions,
176
+ :tags)
177
+ SENSITIVE = [:tags]
178
+ include Aws::Structure
179
+ end
180
+
126
181
  # @note When making an API call, you may pass CreateReplicationConfigurationTemplateRequest
127
182
  # data as a hash:
128
183
  #
@@ -394,6 +449,29 @@ module Aws::Mgn
394
449
  #
395
450
  class DeleteJobResponse < Aws::EmptyStructure; end
396
451
 
452
+ # @note When making an API call, you may pass DeleteLaunchConfigurationTemplateRequest
453
+ # data as a hash:
454
+ #
455
+ # {
456
+ # launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
457
+ # }
458
+ #
459
+ # @!attribute [rw] launch_configuration_template_id
460
+ # ID of resource to be deleted.
461
+ # @return [String]
462
+ #
463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteLaunchConfigurationTemplateRequest AWS API Documentation
464
+ #
465
+ class DeleteLaunchConfigurationTemplateRequest < Struct.new(
466
+ :launch_configuration_template_id)
467
+ SENSITIVE = []
468
+ include Aws::Structure
469
+ end
470
+
471
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteLaunchConfigurationTemplateResponse AWS API Documentation
472
+ #
473
+ class DeleteLaunchConfigurationTemplateResponse < Aws::EmptyStructure; end
474
+
397
475
  # @note When making an API call, you may pass DeleteReplicationConfigurationTemplateRequest
398
476
  # data as a hash:
399
477
  #
@@ -593,6 +671,54 @@ module Aws::Mgn
593
671
  include Aws::Structure
594
672
  end
595
673
 
674
+ # @note When making an API call, you may pass DescribeLaunchConfigurationTemplatesRequest
675
+ # data as a hash:
676
+ #
677
+ # {
678
+ # launch_configuration_template_i_ds: ["LaunchConfigurationTemplateID"],
679
+ # max_results: 1,
680
+ # next_token: "PaginationToken",
681
+ # }
682
+ #
683
+ # @!attribute [rw] launch_configuration_template_i_ds
684
+ # Request to disconnect Source Server from service by Server ID.
685
+ # @return [Array<String>]
686
+ #
687
+ # @!attribute [rw] max_results
688
+ # Request to disconnect Source Server from service by Server ID.
689
+ # @return [Integer]
690
+ #
691
+ # @!attribute [rw] next_token
692
+ # Request to disconnect Source Server from service by Server ID.
693
+ # @return [String]
694
+ #
695
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeLaunchConfigurationTemplatesRequest AWS API Documentation
696
+ #
697
+ class DescribeLaunchConfigurationTemplatesRequest < Struct.new(
698
+ :launch_configuration_template_i_ds,
699
+ :max_results,
700
+ :next_token)
701
+ SENSITIVE = []
702
+ include Aws::Structure
703
+ end
704
+
705
+ # @!attribute [rw] items
706
+ # Request to disconnect Source Server from service by Server ID.
707
+ # @return [Array<Types::LaunchConfigurationTemplate>]
708
+ #
709
+ # @!attribute [rw] next_token
710
+ # Request to disconnect Source Server from service by Server ID.
711
+ # @return [String]
712
+ #
713
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeLaunchConfigurationTemplatesResponse AWS API Documentation
714
+ #
715
+ class DescribeLaunchConfigurationTemplatesResponse < Struct.new(
716
+ :items,
717
+ :next_token)
718
+ SENSITIVE = []
719
+ include Aws::Structure
720
+ end
721
+
596
722
  # @note When making an API call, you may pass DescribeReplicationConfigurationTemplatesRequest
597
723
  # data as a hash:
598
724
  #
@@ -817,6 +943,35 @@ module Aws::Mgn
817
943
  include Aws::Structure
818
944
  end
819
945
 
946
+ # Error details.
947
+ #
948
+ # @!attribute [rw] code
949
+ # Error details code.
950
+ # @return [String]
951
+ #
952
+ # @!attribute [rw] message
953
+ # Error details message.
954
+ # @return [String]
955
+ #
956
+ # @!attribute [rw] resource_id
957
+ # Error details resourceId.
958
+ # @return [String]
959
+ #
960
+ # @!attribute [rw] resource_type
961
+ # Error details resourceType.
962
+ # @return [String]
963
+ #
964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ErrorDetails AWS API Documentation
965
+ #
966
+ class ErrorDetails < Struct.new(
967
+ :code,
968
+ :message,
969
+ :resource_id,
970
+ :resource_type)
971
+ SENSITIVE = []
972
+ include Aws::Structure
973
+ end
974
+
820
975
  # @note When making an API call, you may pass FinalizeCutoverRequest
821
976
  # data as a hash:
822
977
  #
@@ -1046,6 +1201,40 @@ module Aws::Mgn
1046
1201
  include Aws::Structure
1047
1202
  end
1048
1203
 
1204
+ # Job type.
1205
+ #
1206
+ # @!attribute [rw] execution_id
1207
+ # Job type.
1208
+ # @return [String]
1209
+ #
1210
+ # @!attribute [rw] execution_status
1211
+ # Job type.
1212
+ # @return [String]
1213
+ #
1214
+ # @!attribute [rw] failure_reason
1215
+ # Job type.
1216
+ # @return [String]
1217
+ #
1218
+ # @!attribute [rw] ssm_document
1219
+ # Job type.
1220
+ # @return [Types::SsmDocument]
1221
+ #
1222
+ # @!attribute [rw] ssm_document_type
1223
+ # Job type.
1224
+ # @return [String]
1225
+ #
1226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/JobPostLaunchActionsLaunchStatus AWS API Documentation
1227
+ #
1228
+ class JobPostLaunchActionsLaunchStatus < Struct.new(
1229
+ :execution_id,
1230
+ :execution_status,
1231
+ :failure_reason,
1232
+ :ssm_document,
1233
+ :ssm_document_type)
1234
+ SENSITIVE = []
1235
+ include Aws::Structure
1236
+ end
1237
+
1049
1238
  # @!attribute [rw] boot_mode
1050
1239
  # Launch configuration boot mode.
1051
1240
  # @return [String]
@@ -1074,6 +1263,10 @@ module Aws::Mgn
1074
1263
  # Launch configuration name.
1075
1264
  # @return [String]
1076
1265
  #
1266
+ # @!attribute [rw] post_launch_actions
1267
+ # Server participating in Job.
1268
+ # @return [Types::PostLaunchActions]
1269
+ #
1077
1270
  # @!attribute [rw] source_server_id
1078
1271
  # Launch configuration Source Server ID.
1079
1272
  # @return [String]
@@ -1092,12 +1285,40 @@ module Aws::Mgn
1092
1285
  :launch_disposition,
1093
1286
  :licensing,
1094
1287
  :name,
1288
+ :post_launch_actions,
1095
1289
  :source_server_id,
1096
1290
  :target_instance_type_right_sizing_method)
1097
1291
  SENSITIVE = []
1098
1292
  include Aws::Structure
1099
1293
  end
1100
1294
 
1295
+ # @!attribute [rw] arn
1296
+ # Copy Private IP during Launch Configuration.
1297
+ # @return [String]
1298
+ #
1299
+ # @!attribute [rw] launch_configuration_template_id
1300
+ # Copy Private IP during Launch Configuration.
1301
+ # @return [String]
1302
+ #
1303
+ # @!attribute [rw] post_launch_actions
1304
+ # Copy Private IP during Launch Configuration.
1305
+ # @return [Types::PostLaunchActions]
1306
+ #
1307
+ # @!attribute [rw] tags
1308
+ # Copy Private IP during Launch Configuration.
1309
+ # @return [Hash<String,String>]
1310
+ #
1311
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchConfigurationTemplate AWS API Documentation
1312
+ #
1313
+ class LaunchConfigurationTemplate < Struct.new(
1314
+ :arn,
1315
+ :launch_configuration_template_id,
1316
+ :post_launch_actions,
1317
+ :tags)
1318
+ SENSITIVE = [:tags]
1319
+ include Aws::Structure
1320
+ end
1321
+
1101
1322
  # Launched instance.
1102
1323
  #
1103
1324
  # @!attribute [rw] ec2_instance_id
@@ -1422,6 +1643,14 @@ module Aws::Mgn
1422
1643
  # Participating server launch status.
1423
1644
  # @return [String]
1424
1645
  #
1646
+ # @!attribute [rw] launched_ec2_instance_id
1647
+ # Participating server Source Server ID.
1648
+ # @return [String]
1649
+ #
1650
+ # @!attribute [rw] post_launch_actions_status
1651
+ # Participating server Source Server ID.
1652
+ # @return [Types::PostLaunchActionsStatus]
1653
+ #
1425
1654
  # @!attribute [rw] source_server_id
1426
1655
  # Participating server Source Server ID.
1427
1656
  # @return [String]
@@ -1430,11 +1659,92 @@ module Aws::Mgn
1430
1659
  #
1431
1660
  class ParticipatingServer < Struct.new(
1432
1661
  :launch_status,
1662
+ :launched_ec2_instance_id,
1663
+ :post_launch_actions_status,
1433
1664
  :source_server_id)
1434
1665
  SENSITIVE = []
1435
1666
  include Aws::Structure
1436
1667
  end
1437
1668
 
1669
+ # Server participating in Job.
1670
+ #
1671
+ # @note When making an API call, you may pass PostLaunchActions
1672
+ # data as a hash:
1673
+ #
1674
+ # {
1675
+ # cloud_watch_log_group_name: "CloudWatchLogGroupName",
1676
+ # deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
1677
+ # s3_log_bucket: "S3LogBucketName",
1678
+ # s3_output_key_prefix: "BoundedString",
1679
+ # ssm_documents: [
1680
+ # {
1681
+ # action_name: "BoundedString", # required
1682
+ # must_succeed_for_cutover: false,
1683
+ # parameters: {
1684
+ # "SsmDocumentParameterName" => [
1685
+ # {
1686
+ # parameter_name: "SsmParameterStoreParameterName", # required
1687
+ # parameter_type: "STRING", # required, accepts STRING
1688
+ # },
1689
+ # ],
1690
+ # },
1691
+ # ssm_document_name: "SsmDocumentName", # required
1692
+ # timeout_seconds: 1,
1693
+ # },
1694
+ # ],
1695
+ # }
1696
+ #
1697
+ # @!attribute [rw] cloud_watch_log_group_name
1698
+ # Server participating in Job.
1699
+ # @return [String]
1700
+ #
1701
+ # @!attribute [rw] deployment
1702
+ # Server participating in Job.
1703
+ # @return [String]
1704
+ #
1705
+ # @!attribute [rw] s3_log_bucket
1706
+ # Server participating in Job.
1707
+ # @return [String]
1708
+ #
1709
+ # @!attribute [rw] s3_output_key_prefix
1710
+ # Server participating in Job.
1711
+ # @return [String]
1712
+ #
1713
+ # @!attribute [rw] ssm_documents
1714
+ # Server participating in Job.
1715
+ # @return [Array<Types::SsmDocument>]
1716
+ #
1717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PostLaunchActions AWS API Documentation
1718
+ #
1719
+ class PostLaunchActions < Struct.new(
1720
+ :cloud_watch_log_group_name,
1721
+ :deployment,
1722
+ :s3_log_bucket,
1723
+ :s3_output_key_prefix,
1724
+ :ssm_documents)
1725
+ SENSITIVE = []
1726
+ include Aws::Structure
1727
+ end
1728
+
1729
+ # Server participating in Job.
1730
+ #
1731
+ # @!attribute [rw] post_launch_actions_launch_status_list
1732
+ # Server participating in Job.
1733
+ # @return [Array<Types::JobPostLaunchActionsLaunchStatus>]
1734
+ #
1735
+ # @!attribute [rw] ssm_agent_discovery_datetime
1736
+ # Server participating in Job.
1737
+ # @return [String]
1738
+ #
1739
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PostLaunchActionsStatus AWS API Documentation
1740
+ #
1741
+ class PostLaunchActionsStatus < Struct.new(
1742
+ :post_launch_actions_launch_status_list,
1743
+ :ssm_agent_discovery_datetime)
1744
+ SENSITIVE = []
1745
+ include Aws::Structure
1746
+ end
1747
+
1438
1748
  # @!attribute [rw] associate_default_security_group
1439
1749
  # Replication Configuration associate default Application Migration
1440
1750
  # Service Security Group.
@@ -1842,6 +2152,85 @@ module Aws::Mgn
1842
2152
  include Aws::Structure
1843
2153
  end
1844
2154
 
2155
+ # Source server replication type.
2156
+ #
2157
+ # @note When making an API call, you may pass SsmDocument
2158
+ # data as a hash:
2159
+ #
2160
+ # {
2161
+ # action_name: "BoundedString", # required
2162
+ # must_succeed_for_cutover: false,
2163
+ # parameters: {
2164
+ # "SsmDocumentParameterName" => [
2165
+ # {
2166
+ # parameter_name: "SsmParameterStoreParameterName", # required
2167
+ # parameter_type: "STRING", # required, accepts STRING
2168
+ # },
2169
+ # ],
2170
+ # },
2171
+ # ssm_document_name: "SsmDocumentName", # required
2172
+ # timeout_seconds: 1,
2173
+ # }
2174
+ #
2175
+ # @!attribute [rw] action_name
2176
+ # Source server replication type.
2177
+ # @return [String]
2178
+ #
2179
+ # @!attribute [rw] must_succeed_for_cutover
2180
+ # Source server replication type.
2181
+ # @return [Boolean]
2182
+ #
2183
+ # @!attribute [rw] parameters
2184
+ # Source server replication type.
2185
+ # @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
2186
+ #
2187
+ # @!attribute [rw] ssm_document_name
2188
+ # Source server replication type.
2189
+ # @return [String]
2190
+ #
2191
+ # @!attribute [rw] timeout_seconds
2192
+ # Source server replication type.
2193
+ # @return [Integer]
2194
+ #
2195
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmDocument AWS API Documentation
2196
+ #
2197
+ class SsmDocument < Struct.new(
2198
+ :action_name,
2199
+ :must_succeed_for_cutover,
2200
+ :parameters,
2201
+ :ssm_document_name,
2202
+ :timeout_seconds)
2203
+ SENSITIVE = []
2204
+ include Aws::Structure
2205
+ end
2206
+
2207
+ # Source server replication type.
2208
+ #
2209
+ # @note When making an API call, you may pass SsmParameterStoreParameter
2210
+ # data as a hash:
2211
+ #
2212
+ # {
2213
+ # parameter_name: "SsmParameterStoreParameterName", # required
2214
+ # parameter_type: "STRING", # required, accepts STRING
2215
+ # }
2216
+ #
2217
+ # @!attribute [rw] parameter_name
2218
+ # Source server replication type.
2219
+ # @return [String]
2220
+ #
2221
+ # @!attribute [rw] parameter_type
2222
+ # Source server replication type.
2223
+ # @return [String]
2224
+ #
2225
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmParameterStoreParameter AWS API Documentation
2226
+ #
2227
+ class SsmParameterStoreParameter < Struct.new(
2228
+ :parameter_name,
2229
+ :parameter_type)
2230
+ SENSITIVE = []
2231
+ include Aws::Structure
2232
+ end
2233
+
1845
2234
  # @note When making an API call, you may pass StartCutoverRequest
1846
2235
  # data as a hash:
1847
2236
  #
@@ -2087,6 +2476,28 @@ module Aws::Mgn
2087
2476
  # os_byol: false,
2088
2477
  # },
2089
2478
  # name: "SmallBoundedString",
2479
+ # post_launch_actions: {
2480
+ # cloud_watch_log_group_name: "CloudWatchLogGroupName",
2481
+ # deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
2482
+ # s3_log_bucket: "S3LogBucketName",
2483
+ # s3_output_key_prefix: "BoundedString",
2484
+ # ssm_documents: [
2485
+ # {
2486
+ # action_name: "BoundedString", # required
2487
+ # must_succeed_for_cutover: false,
2488
+ # parameters: {
2489
+ # "SsmDocumentParameterName" => [
2490
+ # {
2491
+ # parameter_name: "SsmParameterStoreParameterName", # required
2492
+ # parameter_type: "STRING", # required, accepts STRING
2493
+ # },
2494
+ # ],
2495
+ # },
2496
+ # ssm_document_name: "SsmDocumentName", # required
2497
+ # timeout_seconds: 1,
2498
+ # },
2499
+ # ],
2500
+ # },
2090
2501
  # source_server_id: "SourceServerID", # required
2091
2502
  # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
2092
2503
  # }
@@ -2115,6 +2526,10 @@ module Aws::Mgn
2115
2526
  # Update Launch configuration name request.
2116
2527
  # @return [String]
2117
2528
  #
2529
+ # @!attribute [rw] post_launch_actions
2530
+ # Server participating in Job.
2531
+ # @return [Types::PostLaunchActions]
2532
+ #
2118
2533
  # @!attribute [rw] source_server_id
2119
2534
  # Update Launch configuration by Source Server ID request.
2120
2535
  # @return [String]
@@ -2132,12 +2547,59 @@ module Aws::Mgn
2132
2547
  :launch_disposition,
2133
2548
  :licensing,
2134
2549
  :name,
2550
+ :post_launch_actions,
2135
2551
  :source_server_id,
2136
2552
  :target_instance_type_right_sizing_method)
2137
2553
  SENSITIVE = []
2138
2554
  include Aws::Structure
2139
2555
  end
2140
2556
 
2557
+ # @note When making an API call, you may pass UpdateLaunchConfigurationTemplateRequest
2558
+ # data as a hash:
2559
+ #
2560
+ # {
2561
+ # launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
2562
+ # post_launch_actions: {
2563
+ # cloud_watch_log_group_name: "CloudWatchLogGroupName",
2564
+ # deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
2565
+ # s3_log_bucket: "S3LogBucketName",
2566
+ # s3_output_key_prefix: "BoundedString",
2567
+ # ssm_documents: [
2568
+ # {
2569
+ # action_name: "BoundedString", # required
2570
+ # must_succeed_for_cutover: false,
2571
+ # parameters: {
2572
+ # "SsmDocumentParameterName" => [
2573
+ # {
2574
+ # parameter_name: "SsmParameterStoreParameterName", # required
2575
+ # parameter_type: "STRING", # required, accepts STRING
2576
+ # },
2577
+ # ],
2578
+ # },
2579
+ # ssm_document_name: "SsmDocumentName", # required
2580
+ # timeout_seconds: 1,
2581
+ # },
2582
+ # ],
2583
+ # },
2584
+ # }
2585
+ #
2586
+ # @!attribute [rw] launch_configuration_template_id
2587
+ # Update Launch configuration Target instance right sizing request.
2588
+ # @return [String]
2589
+ #
2590
+ # @!attribute [rw] post_launch_actions
2591
+ # Update Launch configuration Target instance right sizing request.
2592
+ # @return [Types::PostLaunchActions]
2593
+ #
2594
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateLaunchConfigurationTemplateRequest AWS API Documentation
2595
+ #
2596
+ class UpdateLaunchConfigurationTemplateRequest < Struct.new(
2597
+ :launch_configuration_template_id,
2598
+ :post_launch_actions)
2599
+ SENSITIVE = []
2600
+ include Aws::Structure
2601
+ end
2602
+
2141
2603
  # @note When making an API call, you may pass UpdateReplicationConfigurationRequest
2142
2604
  # data as a hash:
2143
2605
  #
data/lib/aws-sdk-mgn.rb CHANGED
@@ -13,9 +13,13 @@ require 'aws-sigv4'
13
13
 
14
14
  require_relative 'aws-sdk-mgn/types'
15
15
  require_relative 'aws-sdk-mgn/client_api'
16
+ require_relative 'aws-sdk-mgn/plugins/endpoints.rb'
16
17
  require_relative 'aws-sdk-mgn/client'
17
18
  require_relative 'aws-sdk-mgn/errors'
18
19
  require_relative 'aws-sdk-mgn/resource'
20
+ require_relative 'aws-sdk-mgn/endpoint_parameters'
21
+ require_relative 'aws-sdk-mgn/endpoint_provider'
22
+ require_relative 'aws-sdk-mgn/endpoints'
19
23
  require_relative 'aws-sdk-mgn/customizations'
20
24
 
21
25
  # This module provides support for Application Migration Service. This module is available in the
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-mgn/customizations'
48
52
  # @!group service
49
53
  module Aws::Mgn
50
54
 
51
- GEM_VERSION = '1.13.0'
55
+ GEM_VERSION = '1.15.0'
52
56
 
53
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mgn
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.15.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: 2022-04-20 00:00:00.000000000 Z
11
+ date: 2022-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.127.0
22
+ version: 3.165.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.127.0
32
+ version: 3.165.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -59,7 +59,11 @@ files:
59
59
  - lib/aws-sdk-mgn/client.rb
60
60
  - lib/aws-sdk-mgn/client_api.rb
61
61
  - lib/aws-sdk-mgn/customizations.rb
62
+ - lib/aws-sdk-mgn/endpoint_parameters.rb
63
+ - lib/aws-sdk-mgn/endpoint_provider.rb
64
+ - lib/aws-sdk-mgn/endpoints.rb
62
65
  - lib/aws-sdk-mgn/errors.rb
66
+ - lib/aws-sdk-mgn/plugins/endpoints.rb
63
67
  - lib/aws-sdk-mgn/resource.rb
64
68
  - lib/aws-sdk-mgn/types.rb
65
69
  homepage: https://github.com/aws/aws-sdk-ruby