aws-sdk-sms 1.33.0 → 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc0d720e6400310f204b442d710e5067e021b9ff04dc349e59a358c66097c25e
4
- data.tar.gz: b43c080db60d2828712c216b654bc4106e1d5cdd4e55a877c4e391c9f57bfb9c
3
+ metadata.gz: 78759be7ea4a81d85275cdcad9f96c31703820da762e1a06284273c06e1a64e6
4
+ data.tar.gz: 2c79522db90b9ac490223d3832726b24052a4719d780f1cc92c287b4aa44f09a
5
5
  SHA512:
6
- metadata.gz: da72d8edd3ef58d3a635fef9cc81e1616247d3230dbeec14a2b8fe6b2713143d84f909c02512655fcbda4cfe22d5101ddd79cb3bffcff87da63366d5137ae40e
7
- data.tar.gz: c97921c0b74f1e8f2e4ca6fb5bef19da3b0a39b43c403e0bcb07ac7b3d9c23faf6637f9429dab152c2dee51f9d25c97a7f9887df70f906199dd5a00c4a2186ea
6
+ metadata.gz: 8cd99f8993e6f17fa815b9b95a007be0d0b9329dd93f5a373f46d5fbf2de87642a4054f1975e104482b6e822fe47ac6bf5c79f60f665afefd46fe6f59bb6f6ae
7
+ data.tar.gz: 373da8193a1e5921c7c0db2d606164a0a8156d3b3f3a084b5a0a03ff737bd62a0604ce715c91e25b7def94218ef5f7c3989309da7504565dc46690ae67a74b1b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.36.0 (2021-12-09)
10
+ ------------------
11
+
12
+ * Feature - This release adds SMS discontinuation information to the API and CLI references.
13
+
14
+ 1.35.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.34.0 (2021-11-04)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.33.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.37.0
@@ -27,6 +27,7 @@ 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'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::SMS
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
80
 
@@ -119,7 +121,9 @@ module Aws::SMS
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::SMS
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -285,6 +293,15 @@ module Aws::SMS
285
293
  # ** Please note ** When response stubbing is enabled, no HTTP
286
294
  # requests are made, and retries are disabled.
287
295
  #
296
+ # @option options [Boolean] :use_dualstack_endpoint
297
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
298
+ # will be used if available.
299
+ #
300
+ # @option options [Boolean] :use_fips_endpoint
301
+ # When set to `true`, fips compatible endpoints will be used if available.
302
+ # When a `fips` region is used, the region is normalized and this config
303
+ # is set to `true`.
304
+ #
288
305
  # @option options [Boolean] :validate_params (true)
289
306
  # When `true`, request parameters are validated before
290
307
  # sending the request.
@@ -296,7 +313,7 @@ module Aws::SMS
296
313
  # seconds to wait when opening a HTTP session before raising a
297
314
  # `Timeout::Error`.
298
315
  #
299
- # @option options [Integer] :http_read_timeout (60) The default
316
+ # @option options [Float] :http_read_timeout (60) The default
300
317
  # number of seconds to wait for response data. This value can
301
318
  # safely be set per-request on the session.
302
319
  #
@@ -312,6 +329,9 @@ module Aws::SMS
312
329
  # disables this behaviour. This value can safely be set per
313
330
  # request on the session.
314
331
  #
332
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
333
+ # in seconds.
334
+ #
315
335
  # @option options [Boolean] :http_wire_trace (false) When `true`,
316
336
  # HTTP debug output will be sent to the `:logger`.
317
337
  #
@@ -348,7 +368,7 @@ module Aws::SMS
348
368
  #
349
369
  # @option params [String] :role_name
350
370
  # The name of the service role in the customer's account to be used by
351
- # AWS SMS.
371
+ # Server Migration Service.
352
372
  #
353
373
  # @option params [String] :client_token
354
374
  # A unique, case-sensitive identifier that you provide to ensure the
@@ -456,8 +476,8 @@ module Aws::SMS
456
476
  end
457
477
 
458
478
  # Creates a replication job. The replication job schedules periodic
459
- # replication runs to replicate your server to AWS. Each replication run
460
- # creates an Amazon Machine Image (AMI).
479
+ # replication runs to replicate your server to Amazon Web Services. Each
480
+ # replication run creates an Amazon Machine Image (AMI).
461
481
  #
462
482
  # @option params [required, String] :server_id
463
483
  # The ID of the server.
@@ -476,7 +496,7 @@ module Aws::SMS
476
496
  # replication run.
477
497
  #
478
498
  # @option params [String] :role_name
479
- # The name of the IAM role to be used by the AWS SMS.
499
+ # The name of the IAM role to be used by the Server Migration Service.
480
500
  #
481
501
  # @option params [String] :description
482
502
  # The description of the replication job.
@@ -536,8 +556,8 @@ module Aws::SMS
536
556
  end
537
557
 
538
558
  # Deletes the specified application. Optionally deletes the launched
539
- # stack associated with the application and all AWS SMS replication jobs
540
- # for servers in the application.
559
+ # stack associated with the application and all Server Migration Service
560
+ # replication jobs for servers in the application.
541
561
  #
542
562
  # @option params [String] :app_id
543
563
  # The ID of the application.
@@ -638,9 +658,9 @@ module Aws::SMS
638
658
  # Deletes the specified replication job.
639
659
  #
640
660
  # After you delete a replication job, there are no further replication
641
- # runs. AWS deletes the contents of the Amazon S3 bucket used to store
642
- # AWS SMS artifacts. The AMIs created by the replication runs are not
643
- # deleted.
661
+ # runs. Amazon Web Services deletes the contents of the Amazon S3 bucket
662
+ # used to store Server Migration Service artifacts. The AMIs created by
663
+ # the replication runs are not deleted.
644
664
  #
645
665
  # @option params [required, String] :replication_job_id
646
666
  # The ID of the replication job.
@@ -675,7 +695,7 @@ module Aws::SMS
675
695
  req.send_request(options)
676
696
  end
677
697
 
678
- # Disassociates the specified connector from AWS SMS.
698
+ # Disassociates the specified connector from Server Migration Service.
679
699
  #
680
700
  # After you disassociate a connector, it is no longer available to
681
701
  # support replication jobs.
@@ -734,16 +754,15 @@ module Aws::SMS
734
754
  req.send_request(options)
735
755
  end
736
756
 
737
- # Generates an AWS CloudFormation template based on the current launch
757
+ # Generates an CloudFormation template based on the current launch
738
758
  # configuration and writes it to an Amazon S3 object in the customer’s
739
759
  # Amazon S3 bucket.
740
760
  #
741
761
  # @option params [String] :app_id
742
- # The ID of the application associated with the AWS CloudFormation
743
- # template.
762
+ # The ID of the application associated with the CloudFormation template.
744
763
  #
745
764
  # @option params [String] :template_format
746
- # The format for generating the AWS CloudFormation template.
765
+ # The format for generating the CloudFormation template.
747
766
  #
748
767
  # @return [Types::GenerateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
749
768
  #
@@ -1050,7 +1069,7 @@ module Aws::SMS
1050
1069
  req.send_request(options)
1051
1070
  end
1052
1071
 
1053
- # Describes the connectors registered with the AWS SMS.
1072
+ # Describes the connectors registered with the Server Migration Service.
1054
1073
  #
1055
1074
  # @option params [String] :next_token
1056
1075
  # The token for the next set of results.
@@ -1331,13 +1350,13 @@ module Aws::SMS
1331
1350
  req.send_request(options)
1332
1351
  end
1333
1352
 
1334
- # Allows application import from AWS Migration Hub.
1353
+ # Allows application import from Migration Hub.
1335
1354
  #
1336
1355
  # @option params [String] :role_name
1337
1356
  # The name of the service role. If you omit this parameter, we create a
1338
- # service-linked role for AWS Migration Hub in your account. Otherwise,
1339
- # the role that you provide must have the [policy and trust policy][1]
1340
- # described in the *AWS Migration Hub User Guide*.
1357
+ # service-linked role for Migration Hub in your account. Otherwise, the
1358
+ # role that you provide must have the [policy and trust policy][1]
1359
+ # described in the *Migration Hub User Guide*.
1341
1360
  #
1342
1361
  #
1343
1362
  #
@@ -1377,7 +1396,7 @@ module Aws::SMS
1377
1396
  req.send_request(options)
1378
1397
  end
1379
1398
 
1380
- # Launches the specified application as a stack in AWS CloudFormation.
1399
+ # Launches the specified application as a stack in CloudFormation.
1381
1400
  #
1382
1401
  # @option params [String] :app_id
1383
1402
  # The ID of the application.
@@ -1460,8 +1479,8 @@ module Aws::SMS
1460
1479
  req.send_request(options)
1461
1480
  end
1462
1481
 
1463
- # Provides information to AWS SMS about whether application validation
1464
- # is successful.
1482
+ # Provides information to Server Migration Service about whether
1483
+ # application validation is successful.
1465
1484
  #
1466
1485
  # @option params [required, String] :app_id
1467
1486
  # The ID of the application.
@@ -1498,7 +1517,7 @@ module Aws::SMS
1498
1517
  # The ID of the application.
1499
1518
  #
1500
1519
  # @option params [String] :role_name
1501
- # The name of service role in the customer's account that AWS
1520
+ # The name of service role in the customer's account that
1502
1521
  # CloudFormation uses to launch the application.
1503
1522
  #
1504
1523
  # @option params [Boolean] :auto_launch
@@ -1863,8 +1882,8 @@ module Aws::SMS
1863
1882
  # The new description of the application.
1864
1883
  #
1865
1884
  # @option params [String] :role_name
1866
- # The name of the service role in the customer's account used by AWS
1867
- # SMS.
1885
+ # The name of the service role in the customer's account used by Server
1886
+ # Migration Service.
1868
1887
  #
1869
1888
  # @option params [Array<Types::ServerGroup>] :server_groups
1870
1889
  # The server groups in the application to update.
@@ -1983,7 +2002,7 @@ module Aws::SMS
1983
2002
  # replication run.
1984
2003
  #
1985
2004
  # @option params [String] :role_name
1986
- # The name of the IAM role to be used by AWS SMS.
2005
+ # The name of the IAM role to be used by Server Migration Service.
1987
2006
  #
1988
2007
  # @option params [String] :description
1989
2008
  # The description of the replication job.
@@ -2049,7 +2068,7 @@ module Aws::SMS
2049
2068
  params: params,
2050
2069
  config: config)
2051
2070
  context[:gem_name] = 'aws-sdk-sms'
2052
- context[:gem_version] = '1.33.0'
2071
+ context[:gem_version] = '1.37.0'
2053
2072
  Seahorse::Client::Request.new(handlers, context)
2054
2073
  end
2055
2074
 
@@ -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 AWS
82
- # SMS.
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 AWS SMS.
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 AWS SMS.
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 AWS CloudFormation
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 AWS CloudFormation template.
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 AWS
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 AWS Migration Hub in your account.
1111
- # Otherwise, the role that you provide must have the [policy and trust
1112
- # policy][1] described in the *AWS Migration Hub User Guide*.
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 AWS
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 AWS SMS.
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 AWS CloudFormation template.
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 AWS
2839
- # SMS.
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 AWS SMS.
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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-sms/customizations'
48
48
  # @!group service
49
49
  module Aws::SMS
50
50
 
51
- GEM_VERSION = '1.33.0'
51
+ GEM_VERSION = '1.37.0'
52
52
 
53
53
  end
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.33.0
4
+ version: 1.37.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: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.121.2
22
+ version: 3.125.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.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement