aws-sdk-sms 1.34.0 → 1.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sms/client.rb +41 -29
- data/lib/aws-sdk-sms/types.rb +17 -17
- data/lib/aws-sdk-sms.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 942d0c5fa063b23bb55df3417bd16610a0cd4ad84d7048f75b2da9c8c037e55e
|
4
|
+
data.tar.gz: 73c12a6ee208af378b1894f0681095b3153ae8bf9dfa99841f0b91cb5e50391c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d133f9c1310eec7dd0be4fa590339b74fdb4204603ac84db4b17da00816fe15913d9193f935f8fdc001af8326f196a52da25f494d582fb379a460543d6dfa228
|
7
|
+
data.tar.gz: 258cc5c1d35448843911e24d73ca156723c56a572276612efa93a3c568b2d9e44d10ec9bca8d853a441c20e288e5391b9e6da175948d136a8626e5df171b3177
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.38.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.37.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.36.0 (2021-12-09)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds SMS discontinuation information to the API and CLI references.
|
18
|
+
|
19
|
+
1.35.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.34.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.38.0
|
data/lib/aws-sdk-sms/client.rb
CHANGED
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::SMS
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::SMS
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::SMS
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -305,7 +315,7 @@ module Aws::SMS
|
|
305
315
|
# seconds to wait when opening a HTTP session before raising a
|
306
316
|
# `Timeout::Error`.
|
307
317
|
#
|
308
|
-
# @option options [
|
318
|
+
# @option options [Float] :http_read_timeout (60) The default
|
309
319
|
# number of seconds to wait for response data. This value can
|
310
320
|
# safely be set per-request on the session.
|
311
321
|
#
|
@@ -321,6 +331,9 @@ module Aws::SMS
|
|
321
331
|
# disables this behaviour. This value can safely be set per
|
322
332
|
# request on the session.
|
323
333
|
#
|
334
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
335
|
+
# in seconds.
|
336
|
+
#
|
324
337
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
325
338
|
# HTTP debug output will be sent to the `:logger`.
|
326
339
|
#
|
@@ -357,7 +370,7 @@ module Aws::SMS
|
|
357
370
|
#
|
358
371
|
# @option params [String] :role_name
|
359
372
|
# The name of the service role in the customer's account to be used by
|
360
|
-
#
|
373
|
+
# Server Migration Service.
|
361
374
|
#
|
362
375
|
# @option params [String] :client_token
|
363
376
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -465,8 +478,8 @@ module Aws::SMS
|
|
465
478
|
end
|
466
479
|
|
467
480
|
# Creates a replication job. The replication job schedules periodic
|
468
|
-
# replication runs to replicate your server to
|
469
|
-
# creates an Amazon Machine Image (AMI).
|
481
|
+
# replication runs to replicate your server to Amazon Web Services. Each
|
482
|
+
# replication run creates an Amazon Machine Image (AMI).
|
470
483
|
#
|
471
484
|
# @option params [required, String] :server_id
|
472
485
|
# The ID of the server.
|
@@ -485,7 +498,7 @@ module Aws::SMS
|
|
485
498
|
# replication run.
|
486
499
|
#
|
487
500
|
# @option params [String] :role_name
|
488
|
-
# The name of the IAM role to be used by the
|
501
|
+
# The name of the IAM role to be used by the Server Migration Service.
|
489
502
|
#
|
490
503
|
# @option params [String] :description
|
491
504
|
# The description of the replication job.
|
@@ -545,8 +558,8 @@ module Aws::SMS
|
|
545
558
|
end
|
546
559
|
|
547
560
|
# Deletes the specified application. Optionally deletes the launched
|
548
|
-
# stack associated with the application and all
|
549
|
-
# for servers in the application.
|
561
|
+
# stack associated with the application and all Server Migration Service
|
562
|
+
# replication jobs for servers in the application.
|
550
563
|
#
|
551
564
|
# @option params [String] :app_id
|
552
565
|
# The ID of the application.
|
@@ -647,9 +660,9 @@ module Aws::SMS
|
|
647
660
|
# Deletes the specified replication job.
|
648
661
|
#
|
649
662
|
# After you delete a replication job, there are no further replication
|
650
|
-
# runs.
|
651
|
-
#
|
652
|
-
# deleted.
|
663
|
+
# runs. Amazon Web Services deletes the contents of the Amazon S3 bucket
|
664
|
+
# used to store Server Migration Service artifacts. The AMIs created by
|
665
|
+
# the replication runs are not deleted.
|
653
666
|
#
|
654
667
|
# @option params [required, String] :replication_job_id
|
655
668
|
# The ID of the replication job.
|
@@ -684,7 +697,7 @@ module Aws::SMS
|
|
684
697
|
req.send_request(options)
|
685
698
|
end
|
686
699
|
|
687
|
-
# Disassociates the specified connector from
|
700
|
+
# Disassociates the specified connector from Server Migration Service.
|
688
701
|
#
|
689
702
|
# After you disassociate a connector, it is no longer available to
|
690
703
|
# support replication jobs.
|
@@ -743,16 +756,15 @@ module Aws::SMS
|
|
743
756
|
req.send_request(options)
|
744
757
|
end
|
745
758
|
|
746
|
-
# Generates an
|
759
|
+
# Generates an CloudFormation template based on the current launch
|
747
760
|
# configuration and writes it to an Amazon S3 object in the customer’s
|
748
761
|
# Amazon S3 bucket.
|
749
762
|
#
|
750
763
|
# @option params [String] :app_id
|
751
|
-
# The ID of the application associated with the
|
752
|
-
# template.
|
764
|
+
# The ID of the application associated with the CloudFormation template.
|
753
765
|
#
|
754
766
|
# @option params [String] :template_format
|
755
|
-
# The format for generating the
|
767
|
+
# The format for generating the CloudFormation template.
|
756
768
|
#
|
757
769
|
# @return [Types::GenerateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
758
770
|
#
|
@@ -1059,7 +1071,7 @@ module Aws::SMS
|
|
1059
1071
|
req.send_request(options)
|
1060
1072
|
end
|
1061
1073
|
|
1062
|
-
# Describes the connectors registered with the
|
1074
|
+
# Describes the connectors registered with the Server Migration Service.
|
1063
1075
|
#
|
1064
1076
|
# @option params [String] :next_token
|
1065
1077
|
# The token for the next set of results.
|
@@ -1340,13 +1352,13 @@ module Aws::SMS
|
|
1340
1352
|
req.send_request(options)
|
1341
1353
|
end
|
1342
1354
|
|
1343
|
-
# Allows application import from
|
1355
|
+
# Allows application import from Migration Hub.
|
1344
1356
|
#
|
1345
1357
|
# @option params [String] :role_name
|
1346
1358
|
# The name of the service role. If you omit this parameter, we create a
|
1347
|
-
# service-linked role for
|
1348
|
-
#
|
1349
|
-
# described in the *
|
1359
|
+
# service-linked role for Migration Hub in your account. Otherwise, the
|
1360
|
+
# role that you provide must have the [policy and trust policy][1]
|
1361
|
+
# described in the *Migration Hub User Guide*.
|
1350
1362
|
#
|
1351
1363
|
#
|
1352
1364
|
#
|
@@ -1386,7 +1398,7 @@ module Aws::SMS
|
|
1386
1398
|
req.send_request(options)
|
1387
1399
|
end
|
1388
1400
|
|
1389
|
-
# Launches the specified application as a stack in
|
1401
|
+
# Launches the specified application as a stack in CloudFormation.
|
1390
1402
|
#
|
1391
1403
|
# @option params [String] :app_id
|
1392
1404
|
# The ID of the application.
|
@@ -1469,8 +1481,8 @@ module Aws::SMS
|
|
1469
1481
|
req.send_request(options)
|
1470
1482
|
end
|
1471
1483
|
|
1472
|
-
# Provides information to
|
1473
|
-
# is successful.
|
1484
|
+
# Provides information to Server Migration Service about whether
|
1485
|
+
# application validation is successful.
|
1474
1486
|
#
|
1475
1487
|
# @option params [required, String] :app_id
|
1476
1488
|
# The ID of the application.
|
@@ -1507,7 +1519,7 @@ module Aws::SMS
|
|
1507
1519
|
# The ID of the application.
|
1508
1520
|
#
|
1509
1521
|
# @option params [String] :role_name
|
1510
|
-
# The name of service role in the customer's account that
|
1522
|
+
# The name of service role in the customer's account that
|
1511
1523
|
# CloudFormation uses to launch the application.
|
1512
1524
|
#
|
1513
1525
|
# @option params [Boolean] :auto_launch
|
@@ -1872,8 +1884,8 @@ module Aws::SMS
|
|
1872
1884
|
# The new description of the application.
|
1873
1885
|
#
|
1874
1886
|
# @option params [String] :role_name
|
1875
|
-
# The name of the service role in the customer's account used by
|
1876
|
-
#
|
1887
|
+
# The name of the service role in the customer's account used by Server
|
1888
|
+
# Migration Service.
|
1877
1889
|
#
|
1878
1890
|
# @option params [Array<Types::ServerGroup>] :server_groups
|
1879
1891
|
# The server groups in the application to update.
|
@@ -1992,7 +2004,7 @@ module Aws::SMS
|
|
1992
2004
|
# replication run.
|
1993
2005
|
#
|
1994
2006
|
# @option params [String] :role_name
|
1995
|
-
# The name of the IAM role to be used by
|
2007
|
+
# The name of the IAM role to be used by Server Migration Service.
|
1996
2008
|
#
|
1997
2009
|
# @option params [String] :description
|
1998
2010
|
# The description of the replication job.
|
@@ -2058,7 +2070,7 @@ module Aws::SMS
|
|
2058
2070
|
params: params,
|
2059
2071
|
config: config)
|
2060
2072
|
context[:gem_name] = 'aws-sdk-sms'
|
2061
|
-
context[:gem_version] = '1.
|
2073
|
+
context[:gem_version] = '1.38.0'
|
2062
2074
|
Seahorse::Client::Request.new(handlers, context)
|
2063
2075
|
end
|
2064
2076
|
|
data/lib/aws-sdk-sms/types.rb
CHANGED
@@ -78,8 +78,8 @@ module Aws::SMS
|
|
78
78
|
# @return [Time]
|
79
79
|
#
|
80
80
|
# @!attribute [rw] role_name
|
81
|
-
# The name of the service role in the customer's account used by
|
82
|
-
#
|
81
|
+
# The name of the service role in the customer's account used by
|
82
|
+
# Server Migration Service.
|
83
83
|
# @return [String]
|
84
84
|
#
|
85
85
|
# @!attribute [rw] total_server_groups
|
@@ -290,7 +290,7 @@ module Aws::SMS
|
|
290
290
|
#
|
291
291
|
# @!attribute [rw] role_name
|
292
292
|
# The name of the service role in the customer's account to be used
|
293
|
-
# by
|
293
|
+
# by Server Migration Service.
|
294
294
|
# @return [String]
|
295
295
|
#
|
296
296
|
# @!attribute [rw] client_token
|
@@ -379,7 +379,7 @@ module Aws::SMS
|
|
379
379
|
# @return [String]
|
380
380
|
#
|
381
381
|
# @!attribute [rw] role_name
|
382
|
-
# The name of the IAM role to be used by the
|
382
|
+
# The name of the IAM role to be used by the Server Migration Service.
|
383
383
|
# @return [String]
|
384
384
|
#
|
385
385
|
# @!attribute [rw] description
|
@@ -663,12 +663,12 @@ module Aws::SMS
|
|
663
663
|
# }
|
664
664
|
#
|
665
665
|
# @!attribute [rw] app_id
|
666
|
-
# The ID of the application associated with the
|
666
|
+
# The ID of the application associated with the CloudFormation
|
667
667
|
# template.
|
668
668
|
# @return [String]
|
669
669
|
#
|
670
670
|
# @!attribute [rw] template_format
|
671
|
-
# The format for generating the
|
671
|
+
# The format for generating the CloudFormation template.
|
672
672
|
# @return [String]
|
673
673
|
#
|
674
674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GenerateTemplateRequest AWS API Documentation
|
@@ -716,7 +716,7 @@ module Aws::SMS
|
|
716
716
|
# @return [String]
|
717
717
|
#
|
718
718
|
# @!attribute [rw] role_name
|
719
|
-
# The name of the service role in the customer's account that
|
719
|
+
# The name of the service role in the customer's account that
|
720
720
|
# CloudFormation uses to launch the application.
|
721
721
|
# @return [String]
|
722
722
|
#
|
@@ -1107,9 +1107,9 @@ module Aws::SMS
|
|
1107
1107
|
#
|
1108
1108
|
# @!attribute [rw] role_name
|
1109
1109
|
# The name of the service role. If you omit this parameter, we create
|
1110
|
-
# a service-linked role for
|
1111
|
-
#
|
1112
|
-
#
|
1110
|
+
# a service-linked role for Migration Hub in your account. Otherwise,
|
1111
|
+
# the role that you provide must have the [policy and trust policy][1]
|
1112
|
+
# described in the *Migration Hub User Guide*.
|
1113
1113
|
#
|
1114
1114
|
#
|
1115
1115
|
#
|
@@ -1426,7 +1426,7 @@ module Aws::SMS
|
|
1426
1426
|
# @return [String]
|
1427
1427
|
#
|
1428
1428
|
# @!attribute [rw] role_name
|
1429
|
-
# The name of service role in the customer's account that
|
1429
|
+
# The name of service role in the customer's account that
|
1430
1430
|
# CloudFormation uses to launch the application.
|
1431
1431
|
# @return [String]
|
1432
1432
|
#
|
@@ -1648,7 +1648,7 @@ module Aws::SMS
|
|
1648
1648
|
# @return [String]
|
1649
1649
|
#
|
1650
1650
|
# @!attribute [rw] role_name
|
1651
|
-
# The name of the IAM role to be used by
|
1651
|
+
# The name of the IAM role to be used by Server Migration Service.
|
1652
1652
|
# @return [String]
|
1653
1653
|
#
|
1654
1654
|
# @!attribute [rw] latest_ami_id
|
@@ -1932,7 +1932,7 @@ module Aws::SMS
|
|
1932
1932
|
# @return [String]
|
1933
1933
|
#
|
1934
1934
|
# @!attribute [rw] command
|
1935
|
-
# The command to run the validation script
|
1935
|
+
# The command to run the validation script.
|
1936
1936
|
# @return [String]
|
1937
1937
|
#
|
1938
1938
|
# @!attribute [rw] execution_timeout_seconds
|
@@ -2308,7 +2308,7 @@ module Aws::SMS
|
|
2308
2308
|
# @return [Types::Server]
|
2309
2309
|
#
|
2310
2310
|
# @!attribute [rw] logical_id
|
2311
|
-
# The logical ID of the server in the
|
2311
|
+
# The logical ID of the server in the CloudFormation template.
|
2312
2312
|
# @return [String]
|
2313
2313
|
#
|
2314
2314
|
# @!attribute [rw] vpc
|
@@ -2835,8 +2835,8 @@ module Aws::SMS
|
|
2835
2835
|
# @return [String]
|
2836
2836
|
#
|
2837
2837
|
# @!attribute [rw] role_name
|
2838
|
-
# The name of the service role in the customer's account used by
|
2839
|
-
#
|
2838
|
+
# The name of the service role in the customer's account used by
|
2839
|
+
# Server Migration Service.
|
2840
2840
|
# @return [String]
|
2841
2841
|
#
|
2842
2842
|
# @!attribute [rw] server_groups
|
@@ -2915,7 +2915,7 @@ module Aws::SMS
|
|
2915
2915
|
# @return [String]
|
2916
2916
|
#
|
2917
2917
|
# @!attribute [rw] role_name
|
2918
|
-
# The name of the IAM role to be used by
|
2918
|
+
# The name of the IAM role to be used by Server Migration Service.
|
2919
2919
|
# @return [String]
|
2920
2920
|
#
|
2921
2921
|
# @!attribute [rw] description
|
data/lib/aws-sdk-sms.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.38.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:
|
11
|
+
date: 2022-02-03 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.
|
22
|
+
version: 3.126.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.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|