aws-sdk-sms 1.32.0 → 1.36.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: b598d71811725ea77ace9e2b3319d6285d8baecabfc11cc8fee37da01c192c0b
4
- data.tar.gz: adef4fcfc5af64637d1c1c8f48413ebd605ebb989703b6029e100c7ce90f5b14
3
+ metadata.gz: 4785598d3dd0793fdc4707edf213ecbb6b03025d12b525152f2f4236d1872130
4
+ data.tar.gz: 70bdcbb206238511d8ac4973e9f535ad025e8e7dda369ada2a4e49d54c2cd741
5
5
  SHA512:
6
- metadata.gz: 557b9a0db8e1e82410301b37c469b270c63a1555e2d142013c8cc6d68a62b5342c14341b2f66c6d8a79866b205f42af1f9b57dbb5f6c06a757c29c8b021175cd
7
- data.tar.gz: 19d5e7a28de03e90df2e8aa54da9f622cc1846ae9f355e31e6e68a77152835f4c3643f8d34ffbf41554b3029e1d8755c7a7ecc4317396b85aa9ce42b7ff42cb3
6
+ metadata.gz: 8c9850984e96636542f3a9ceecea37cf8aa73d82f0acc3e98a7b3a33459e8934f7c0e82453937507819c3204dff08c9eb8c48455e7e017e240575091f3c4b60d
7
+ data.tar.gz: 788b612c883b8cf88275a819a56dc8e83ceaead455a9c833573836a28908513327ee3e231b0d44999425960d5f05a3806119a5dbbc924bdcea8a8b651b9a973f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2021-12-09)
5
+ ------------------
6
+
7
+ * Feature - This release adds SMS discontinuation information to the API and CLI references.
8
+
9
+ 1.35.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.34.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.33.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.32.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.36.0
@@ -119,7 +119,9 @@ module Aws::SMS
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -285,6 +287,15 @@ module Aws::SMS
285
287
  # ** Please note ** When response stubbing is enabled, no HTTP
286
288
  # requests are made, and retries are disabled.
287
289
  #
290
+ # @option options [Boolean] :use_dualstack_endpoint
291
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
+ # will be used if available.
293
+ #
294
+ # @option options [Boolean] :use_fips_endpoint
295
+ # When set to `true`, fips compatible endpoints will be used if available.
296
+ # When a `fips` region is used, the region is normalized and this config
297
+ # is set to `true`.
298
+ #
288
299
  # @option options [Boolean] :validate_params (true)
289
300
  # When `true`, request parameters are validated before
290
301
  # sending the request.
@@ -348,7 +359,7 @@ module Aws::SMS
348
359
  #
349
360
  # @option params [String] :role_name
350
361
  # The name of the service role in the customer's account to be used by
351
- # AWS SMS.
362
+ # Server Migration Service.
352
363
  #
353
364
  # @option params [String] :client_token
354
365
  # A unique, case-sensitive identifier that you provide to ensure the
@@ -456,8 +467,8 @@ module Aws::SMS
456
467
  end
457
468
 
458
469
  # 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).
470
+ # replication runs to replicate your server to Amazon Web Services. Each
471
+ # replication run creates an Amazon Machine Image (AMI).
461
472
  #
462
473
  # @option params [required, String] :server_id
463
474
  # The ID of the server.
@@ -476,7 +487,7 @@ module Aws::SMS
476
487
  # replication run.
477
488
  #
478
489
  # @option params [String] :role_name
479
- # The name of the IAM role to be used by the AWS SMS.
490
+ # The name of the IAM role to be used by the Server Migration Service.
480
491
  #
481
492
  # @option params [String] :description
482
493
  # The description of the replication job.
@@ -536,8 +547,8 @@ module Aws::SMS
536
547
  end
537
548
 
538
549
  # 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.
550
+ # stack associated with the application and all Server Migration Service
551
+ # replication jobs for servers in the application.
541
552
  #
542
553
  # @option params [String] :app_id
543
554
  # The ID of the application.
@@ -638,9 +649,9 @@ module Aws::SMS
638
649
  # Deletes the specified replication job.
639
650
  #
640
651
  # 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.
652
+ # runs. Amazon Web Services deletes the contents of the Amazon S3 bucket
653
+ # used to store Server Migration Service artifacts. The AMIs created by
654
+ # the replication runs are not deleted.
644
655
  #
645
656
  # @option params [required, String] :replication_job_id
646
657
  # The ID of the replication job.
@@ -675,7 +686,7 @@ module Aws::SMS
675
686
  req.send_request(options)
676
687
  end
677
688
 
678
- # Disassociates the specified connector from AWS SMS.
689
+ # Disassociates the specified connector from Server Migration Service.
679
690
  #
680
691
  # After you disassociate a connector, it is no longer available to
681
692
  # support replication jobs.
@@ -734,16 +745,15 @@ module Aws::SMS
734
745
  req.send_request(options)
735
746
  end
736
747
 
737
- # Generates an AWS CloudFormation template based on the current launch
748
+ # Generates an CloudFormation template based on the current launch
738
749
  # configuration and writes it to an Amazon S3 object in the customer’s
739
750
  # Amazon S3 bucket.
740
751
  #
741
752
  # @option params [String] :app_id
742
- # The ID of the application associated with the AWS CloudFormation
743
- # template.
753
+ # The ID of the application associated with the CloudFormation template.
744
754
  #
745
755
  # @option params [String] :template_format
746
- # The format for generating the AWS CloudFormation template.
756
+ # The format for generating the CloudFormation template.
747
757
  #
748
758
  # @return [Types::GenerateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
749
759
  #
@@ -1050,7 +1060,7 @@ module Aws::SMS
1050
1060
  req.send_request(options)
1051
1061
  end
1052
1062
 
1053
- # Describes the connectors registered with the AWS SMS.
1063
+ # Describes the connectors registered with the Server Migration Service.
1054
1064
  #
1055
1065
  # @option params [String] :next_token
1056
1066
  # The token for the next set of results.
@@ -1331,13 +1341,13 @@ module Aws::SMS
1331
1341
  req.send_request(options)
1332
1342
  end
1333
1343
 
1334
- # Allows application import from AWS Migration Hub.
1344
+ # Allows application import from Migration Hub.
1335
1345
  #
1336
1346
  # @option params [String] :role_name
1337
1347
  # 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*.
1348
+ # service-linked role for Migration Hub in your account. Otherwise, the
1349
+ # role that you provide must have the [policy and trust policy][1]
1350
+ # described in the *Migration Hub User Guide*.
1341
1351
  #
1342
1352
  #
1343
1353
  #
@@ -1377,7 +1387,7 @@ module Aws::SMS
1377
1387
  req.send_request(options)
1378
1388
  end
1379
1389
 
1380
- # Launches the specified application as a stack in AWS CloudFormation.
1390
+ # Launches the specified application as a stack in CloudFormation.
1381
1391
  #
1382
1392
  # @option params [String] :app_id
1383
1393
  # The ID of the application.
@@ -1460,8 +1470,8 @@ module Aws::SMS
1460
1470
  req.send_request(options)
1461
1471
  end
1462
1472
 
1463
- # Provides information to AWS SMS about whether application validation
1464
- # is successful.
1473
+ # Provides information to Server Migration Service about whether
1474
+ # application validation is successful.
1465
1475
  #
1466
1476
  # @option params [required, String] :app_id
1467
1477
  # The ID of the application.
@@ -1498,7 +1508,7 @@ module Aws::SMS
1498
1508
  # The ID of the application.
1499
1509
  #
1500
1510
  # @option params [String] :role_name
1501
- # The name of service role in the customer's account that AWS
1511
+ # The name of service role in the customer's account that
1502
1512
  # CloudFormation uses to launch the application.
1503
1513
  #
1504
1514
  # @option params [Boolean] :auto_launch
@@ -1863,8 +1873,8 @@ module Aws::SMS
1863
1873
  # The new description of the application.
1864
1874
  #
1865
1875
  # @option params [String] :role_name
1866
- # The name of the service role in the customer's account used by AWS
1867
- # SMS.
1876
+ # The name of the service role in the customer's account used by Server
1877
+ # Migration Service.
1868
1878
  #
1869
1879
  # @option params [Array<Types::ServerGroup>] :server_groups
1870
1880
  # The server groups in the application to update.
@@ -1983,7 +1993,7 @@ module Aws::SMS
1983
1993
  # replication run.
1984
1994
  #
1985
1995
  # @option params [String] :role_name
1986
- # The name of the IAM role to be used by AWS SMS.
1996
+ # The name of the IAM role to be used by Server Migration Service.
1987
1997
  #
1988
1998
  # @option params [String] :description
1989
1999
  # The description of the replication job.
@@ -2049,7 +2059,7 @@ module Aws::SMS
2049
2059
  params: params,
2050
2060
  config: config)
2051
2061
  context[:gem_name] = 'aws-sdk-sms'
2052
- context[:gem_version] = '1.32.0'
2062
+ context[:gem_version] = '1.36.0'
2053
2063
  Seahorse::Client::Request.new(handlers, context)
2054
2064
  end
2055
2065
 
@@ -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.32.0'
51
+ GEM_VERSION = '1.36.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.32.0
4
+ version: 1.36.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-12-09 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.120.0
22
+ version: 3.122.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement