aws-sdk-sms 1.18.0 → 1.23.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
- SHA1:
3
- metadata.gz: a277187b51a34bbccc9e3527dd25119c2cd0d37b
4
- data.tar.gz: 16932b7e022bb9fc59f35750cfddaf32e7221d8d
2
+ SHA256:
3
+ metadata.gz: 144d9e87d247c4d894984a80292785dcf203c4070612f9de29cb3cd0d23f465c
4
+ data.tar.gz: 943c242d454d7be767f339e346f1bd4e3f9aa841d2664493033901ae89ffe031
5
5
  SHA512:
6
- metadata.gz: b6a1598e37e61d9b7adcacad6204d13b15b0a78f8d38c8d4684144c3dd6531d698171e4282f7d0dcb1ffc227be8596110e957dffd37977cfd6afe8b9d8c47b09
7
- data.tar.gz: f14109e1b81da6a0f14cb7bfec3161dd8bd30402cb5638a829191cde82a073553ea7cd64365da863527577077c140ea256766a4b359552a726c8514fa37f2747
6
+ metadata.gz: ea703bb5fc56d73a9cb280e31f029a0ac62e9b3840c5a4c2bb3d42952156715fd150ffdca3b7b12392012ddea3aa1b9fcdf300464698fe1bb75e90d0c95353fb
7
+ data.tar.gz: e2f82e10da8887fcb83de980ff36346e220cfbeb252fe595e3a04102b0fb74bc0365f2474e600368a67d6ea0e0082d4cbb697ae2523dfe03bd4451a00238ba50
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-sms/customizations'
45
47
  # @service
46
48
  module Aws::SMS
47
49
 
48
- GEM_VERSION = '1.18.0'
50
+ GEM_VERSION = '1.23.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
32
 
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:sms)
32
35
  module Aws::SMS
33
36
  # An API client for SMS. To construct a client, you need to configure a `:region` and `:credentials`.
34
37
  #
35
- # client = Aws::SMS::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
38
+ # client = Aws::SMS::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
40
43
  #
41
44
  # For details on configuring region and credentials see
42
45
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -69,6 +72,7 @@ module Aws::SMS
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
74
78
 
@@ -105,7 +109,7 @@ module Aws::SMS
105
109
  # @option options [required, String] :region
106
110
  # The AWS region to connect to. The configured `:region` is
107
111
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
109
113
  #
110
114
  # * `Aws.config[:region]`
111
115
  # * `ENV['AWS_REGION']`
@@ -161,7 +165,7 @@ module Aws::SMS
161
165
  # @option options [String] :endpoint
162
166
  # The client endpoint is normally constructed from the `:region`
163
167
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
169
  #
166
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +180,7 @@ module Aws::SMS
176
180
  # requests fetching endpoints information. Defaults to 60 sec.
177
181
  #
178
182
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
184
  #
181
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
186
  # The log formatter.
@@ -229,15 +233,19 @@ module Aws::SMS
229
233
  #
230
234
  # @option options [String] :retry_mode ("legacy")
231
235
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
236
+ #
237
+ # * `legacy` - The pre-existing retry behavior. This is default value if
238
+ # no retry mode is provided.
239
+ #
240
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
241
+ # This includes support for retry quotas, which limit the number of
242
+ # unsuccessful retries a client can make.
243
+ #
244
+ # * `adaptive` - An experimental retry mode that includes all the
245
+ # functionality of `standard` mode along with automatic client side
246
+ # throttling. This is a provisional mode that may change behavior
247
+ # in the future.
248
+ #
241
249
  #
242
250
  # @option options [String] :secret_access_key
243
251
  #
@@ -275,8 +283,7 @@ module Aws::SMS
275
283
  #
276
284
  # @option options [Integer] :http_read_timeout (60) The default
277
285
  # number of seconds to wait for response data. This value can
278
- # safely be set
279
- # per-request on the session yielded by {#session_for}.
286
+ # safely be set per-request on the session.
280
287
  #
281
288
  # @option options [Float] :http_idle_timeout (5) The number of
282
289
  # seconds a connection is allowed to sit idle before it is
@@ -288,7 +295,7 @@ module Aws::SMS
288
295
  # request body. This option has no effect unless the request has
289
296
  # "Expect" header set to "100-continue". Defaults to `nil` which
290
297
  # disables this behaviour. This value can safely be set per
291
- # request on the session yielded by {#session_for}.
298
+ # request on the session.
292
299
  #
293
300
  # @option options [Boolean] :http_wire_trace (false) When `true`,
294
301
  # HTTP debug output will be sent to the `:logger`.
@@ -904,6 +911,8 @@ module Aws::SMS
904
911
  # * {Types::GetConnectorsResponse#connector_list #connector_list} => Array<Types::Connector>
905
912
  # * {Types::GetConnectorsResponse#next_token #next_token} => String
906
913
  #
914
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
915
+ #
907
916
  # @example Request syntax with placeholder values
908
917
  #
909
918
  # resp = client.get_connectors({
@@ -955,6 +964,8 @@ module Aws::SMS
955
964
  # * {Types::GetReplicationJobsResponse#replication_job_list #replication_job_list} => Array<Types::ReplicationJob>
956
965
  # * {Types::GetReplicationJobsResponse#next_token #next_token} => String
957
966
  #
967
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
968
+ #
958
969
  # @example Request syntax with placeholder values
959
970
  #
960
971
  # resp = client.get_replication_jobs({
@@ -1031,6 +1042,8 @@ module Aws::SMS
1031
1042
  # * {Types::GetReplicationRunsResponse#replication_run_list #replication_run_list} => Array<Types::ReplicationRun>
1032
1043
  # * {Types::GetReplicationRunsResponse#next_token #next_token} => String
1033
1044
  #
1045
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1046
+ #
1034
1047
  # @example Request syntax with placeholder values
1035
1048
  #
1036
1049
  # resp = client.get_replication_runs({
@@ -1123,6 +1136,8 @@ module Aws::SMS
1123
1136
  # * {Types::GetServersResponse#server_list #server_list} => Array<Types::Server>
1124
1137
  # * {Types::GetServersResponse#next_token #next_token} => String
1125
1138
  #
1139
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1140
+ #
1126
1141
  # @example Request syntax with placeholder values
1127
1142
  #
1128
1143
  # resp = client.get_servers({
@@ -1683,7 +1698,7 @@ module Aws::SMS
1683
1698
  params: params,
1684
1699
  config: config)
1685
1700
  context[:gem_name] = 'aws-sdk-sms'
1686
- context[:gem_version] = '1.18.0'
1701
+ context[:gem_version] = '1.23.0'
1687
1702
  Seahorse::Client::Request.new(handlers, context)
1688
1703
  end
1689
1704
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,13 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::SMS
9
- # This class provides a resource oriented interface for SMS.
10
- # To create a resource object:
11
- # resource = Aws::SMS::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::SMS::Client.new(region: 'us-west-2')
15
- # resource = Aws::SMS::Resource.new(client: client)
11
+
16
12
  class Resource
17
13
 
18
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -93,6 +95,7 @@ module Aws::SMS
93
95
  :role_name,
94
96
  :total_server_groups,
95
97
  :total_servers)
98
+ SENSITIVE = []
96
99
  include Aws::Structure
97
100
  end
98
101
 
@@ -151,6 +154,7 @@ module Aws::SMS
151
154
  :ip_address,
152
155
  :mac_address,
153
156
  :associated_on)
157
+ SENSITIVE = []
154
158
  include Aws::Structure
155
159
  end
156
160
 
@@ -228,6 +232,7 @@ module Aws::SMS
228
232
  :client_token,
229
233
  :server_groups,
230
234
  :tags)
235
+ SENSITIVE = []
231
236
  include Aws::Structure
232
237
  end
233
238
 
@@ -249,6 +254,7 @@ module Aws::SMS
249
254
  :app_summary,
250
255
  :server_groups,
251
256
  :tags)
257
+ SENSITIVE = []
252
258
  include Aws::Structure
253
259
  end
254
260
 
@@ -335,6 +341,7 @@ module Aws::SMS
335
341
  :number_of_recent_amis_to_keep,
336
342
  :encrypted,
337
343
  :kms_key_id)
344
+ SENSITIVE = []
338
345
  include Aws::Structure
339
346
  end
340
347
 
@@ -346,6 +353,7 @@ module Aws::SMS
346
353
  #
347
354
  class CreateReplicationJobResponse < Struct.new(
348
355
  :replication_job_id)
356
+ SENSITIVE = []
349
357
  include Aws::Structure
350
358
  end
351
359
 
@@ -364,6 +372,7 @@ module Aws::SMS
364
372
  #
365
373
  class DeleteAppLaunchConfigurationRequest < Struct.new(
366
374
  :app_id)
375
+ SENSITIVE = []
367
376
  include Aws::Structure
368
377
  end
369
378
 
@@ -386,6 +395,7 @@ module Aws::SMS
386
395
  #
387
396
  class DeleteAppReplicationConfigurationRequest < Struct.new(
388
397
  :app_id)
398
+ SENSITIVE = []
389
399
  include Aws::Structure
390
400
  end
391
401
 
@@ -422,6 +432,7 @@ module Aws::SMS
422
432
  :app_id,
423
433
  :force_stop_app_replication,
424
434
  :force_terminate_app)
435
+ SENSITIVE = []
425
436
  include Aws::Structure
426
437
  end
427
438
 
@@ -444,6 +455,7 @@ module Aws::SMS
444
455
  #
445
456
  class DeleteReplicationJobRequest < Struct.new(
446
457
  :replication_job_id)
458
+ SENSITIVE = []
447
459
  include Aws::Structure
448
460
  end
449
461
 
@@ -476,6 +488,7 @@ module Aws::SMS
476
488
  #
477
489
  class DisassociateConnectorRequest < Struct.new(
478
490
  :connector_id)
491
+ SENSITIVE = []
479
492
  include Aws::Structure
480
493
  end
481
494
 
@@ -504,6 +517,7 @@ module Aws::SMS
504
517
  class GenerateChangeSetRequest < Struct.new(
505
518
  :app_id,
506
519
  :changeset_format)
520
+ SENSITIVE = []
507
521
  include Aws::Structure
508
522
  end
509
523
 
@@ -515,6 +529,7 @@ module Aws::SMS
515
529
  #
516
530
  class GenerateChangeSetResponse < Struct.new(
517
531
  :s3_location)
532
+ SENSITIVE = []
518
533
  include Aws::Structure
519
534
  end
520
535
 
@@ -540,6 +555,7 @@ module Aws::SMS
540
555
  class GenerateTemplateRequest < Struct.new(
541
556
  :app_id,
542
557
  :template_format)
558
+ SENSITIVE = []
543
559
  include Aws::Structure
544
560
  end
545
561
 
@@ -551,6 +567,7 @@ module Aws::SMS
551
567
  #
552
568
  class GenerateTemplateResponse < Struct.new(
553
569
  :s3_location)
570
+ SENSITIVE = []
554
571
  include Aws::Structure
555
572
  end
556
573
 
@@ -569,6 +586,7 @@ module Aws::SMS
569
586
  #
570
587
  class GetAppLaunchConfigurationRequest < Struct.new(
571
588
  :app_id)
589
+ SENSITIVE = []
572
590
  include Aws::Structure
573
591
  end
574
592
 
@@ -591,6 +609,7 @@ module Aws::SMS
591
609
  :app_id,
592
610
  :role_name,
593
611
  :server_group_launch_configurations)
612
+ SENSITIVE = []
594
613
  include Aws::Structure
595
614
  end
596
615
 
@@ -609,6 +628,7 @@ module Aws::SMS
609
628
  #
610
629
  class GetAppReplicationConfigurationRequest < Struct.new(
611
630
  :app_id)
631
+ SENSITIVE = []
612
632
  include Aws::Structure
613
633
  end
614
634
 
@@ -621,6 +641,7 @@ module Aws::SMS
621
641
  #
622
642
  class GetAppReplicationConfigurationResponse < Struct.new(
623
643
  :server_group_replication_configurations)
644
+ SENSITIVE = []
624
645
  include Aws::Structure
625
646
  end
626
647
 
@@ -639,6 +660,7 @@ module Aws::SMS
639
660
  #
640
661
  class GetAppRequest < Struct.new(
641
662
  :app_id)
663
+ SENSITIVE = []
642
664
  include Aws::Structure
643
665
  end
644
666
 
@@ -660,6 +682,7 @@ module Aws::SMS
660
682
  :app_summary,
661
683
  :server_groups,
662
684
  :tags)
685
+ SENSITIVE = []
663
686
  include Aws::Structure
664
687
  end
665
688
 
@@ -686,6 +709,7 @@ module Aws::SMS
686
709
  class GetConnectorsRequest < Struct.new(
687
710
  :next_token,
688
711
  :max_results)
712
+ SENSITIVE = []
689
713
  include Aws::Structure
690
714
  end
691
715
 
@@ -703,6 +727,7 @@ module Aws::SMS
703
727
  class GetConnectorsResponse < Struct.new(
704
728
  :connector_list,
705
729
  :next_token)
730
+ SENSITIVE = []
706
731
  include Aws::Structure
707
732
  end
708
733
 
@@ -735,6 +760,7 @@ module Aws::SMS
735
760
  :replication_job_id,
736
761
  :next_token,
737
762
  :max_results)
763
+ SENSITIVE = []
738
764
  include Aws::Structure
739
765
  end
740
766
 
@@ -752,6 +778,7 @@ module Aws::SMS
752
778
  class GetReplicationJobsResponse < Struct.new(
753
779
  :replication_job_list,
754
780
  :next_token)
781
+ SENSITIVE = []
755
782
  include Aws::Structure
756
783
  end
757
784
 
@@ -784,6 +811,7 @@ module Aws::SMS
784
811
  :replication_job_id,
785
812
  :next_token,
786
813
  :max_results)
814
+ SENSITIVE = []
787
815
  include Aws::Structure
788
816
  end
789
817
 
@@ -806,6 +834,7 @@ module Aws::SMS
806
834
  :replication_job,
807
835
  :replication_run_list,
808
836
  :next_token)
837
+ SENSITIVE = []
809
838
  include Aws::Structure
810
839
  end
811
840
 
@@ -843,6 +872,7 @@ module Aws::SMS
843
872
  :next_token,
844
873
  :max_results,
845
874
  :vm_server_address_list)
875
+ SENSITIVE = []
846
876
  include Aws::Structure
847
877
  end
848
878
 
@@ -870,6 +900,7 @@ module Aws::SMS
870
900
  :server_catalog_status,
871
901
  :server_list,
872
902
  :next_token)
903
+ SENSITIVE = []
873
904
  include Aws::Structure
874
905
  end
875
906
 
@@ -892,6 +923,7 @@ module Aws::SMS
892
923
  #
893
924
  class InternalError < Struct.new(
894
925
  :message)
926
+ SENSITIVE = []
895
927
  include Aws::Structure
896
928
  end
897
929
 
@@ -904,6 +936,7 @@ module Aws::SMS
904
936
  #
905
937
  class InvalidParameterException < Struct.new(
906
938
  :message)
939
+ SENSITIVE = []
907
940
  include Aws::Structure
908
941
  end
909
942
 
@@ -922,6 +955,7 @@ module Aws::SMS
922
955
  #
923
956
  class LaunchAppRequest < Struct.new(
924
957
  :app_id)
958
+ SENSITIVE = []
925
959
  include Aws::Structure
926
960
  end
927
961
 
@@ -949,6 +983,7 @@ module Aws::SMS
949
983
  :latest_launch_time,
950
984
  :stack_name,
951
985
  :stack_id)
986
+ SENSITIVE = []
952
987
  include Aws::Structure
953
988
  end
954
989
 
@@ -980,6 +1015,7 @@ module Aws::SMS
980
1015
  :app_ids,
981
1016
  :next_token,
982
1017
  :max_results)
1018
+ SENSITIVE = []
983
1019
  include Aws::Structure
984
1020
  end
985
1021
 
@@ -997,6 +1033,7 @@ module Aws::SMS
997
1033
  class ListAppsResponse < Struct.new(
998
1034
  :apps,
999
1035
  :next_token)
1036
+ SENSITIVE = []
1000
1037
  include Aws::Structure
1001
1038
  end
1002
1039
 
@@ -1009,6 +1046,7 @@ module Aws::SMS
1009
1046
  #
1010
1047
  class MissingRequiredParameterException < Struct.new(
1011
1048
  :message)
1049
+ SENSITIVE = []
1012
1050
  include Aws::Structure
1013
1051
  end
1014
1052
 
@@ -1021,6 +1059,7 @@ module Aws::SMS
1021
1059
  #
1022
1060
  class NoConnectorsAvailableException < Struct.new(
1023
1061
  :message)
1062
+ SENSITIVE = []
1024
1063
  include Aws::Structure
1025
1064
  end
1026
1065
 
@@ -1033,6 +1072,7 @@ module Aws::SMS
1033
1072
  #
1034
1073
  class OperationNotPermittedException < Struct.new(
1035
1074
  :message)
1075
+ SENSITIVE = []
1036
1076
  include Aws::Structure
1037
1077
  end
1038
1078
 
@@ -1102,6 +1142,7 @@ module Aws::SMS
1102
1142
  :app_id,
1103
1143
  :role_name,
1104
1144
  :server_group_launch_configurations)
1145
+ SENSITIVE = []
1105
1146
  include Aws::Structure
1106
1147
  end
1107
1148
 
@@ -1164,6 +1205,7 @@ module Aws::SMS
1164
1205
  class PutAppReplicationConfigurationRequest < Struct.new(
1165
1206
  :app_id,
1166
1207
  :server_group_replication_configurations)
1208
+ SENSITIVE = []
1167
1209
  include Aws::Structure
1168
1210
  end
1169
1211
 
@@ -1281,6 +1323,7 @@ module Aws::SMS
1281
1323
  :encrypted,
1282
1324
  :kms_key_id,
1283
1325
  :replication_run_list)
1326
+ SENSITIVE = []
1284
1327
  include Aws::Structure
1285
1328
  end
1286
1329
 
@@ -1293,6 +1336,7 @@ module Aws::SMS
1293
1336
  #
1294
1337
  class ReplicationJobAlreadyExistsException < Struct.new(
1295
1338
  :message)
1339
+ SENSITIVE = []
1296
1340
  include Aws::Structure
1297
1341
  end
1298
1342
 
@@ -1305,6 +1349,7 @@ module Aws::SMS
1305
1349
  #
1306
1350
  class ReplicationJobNotFoundException < Struct.new(
1307
1351
  :message)
1352
+ SENSITIVE = []
1308
1353
  include Aws::Structure
1309
1354
  end
1310
1355
 
@@ -1382,6 +1427,7 @@ module Aws::SMS
1382
1427
  :description,
1383
1428
  :encrypted,
1384
1429
  :kms_key_id)
1430
+ SENSITIVE = []
1385
1431
  include Aws::Structure
1386
1432
  end
1387
1433
 
@@ -1395,6 +1441,7 @@ module Aws::SMS
1395
1441
  #
1396
1442
  class ReplicationRunLimitExceededException < Struct.new(
1397
1443
  :message)
1444
+ SENSITIVE = []
1398
1445
  include Aws::Structure
1399
1446
  end
1400
1447
 
@@ -1414,6 +1461,7 @@ module Aws::SMS
1414
1461
  class ReplicationRunStageDetails < Struct.new(
1415
1462
  :stage,
1416
1463
  :stage_progress)
1464
+ SENSITIVE = []
1417
1465
  include Aws::Structure
1418
1466
  end
1419
1467
 
@@ -1440,6 +1488,7 @@ module Aws::SMS
1440
1488
  class S3Location < Struct.new(
1441
1489
  :bucket,
1442
1490
  :key)
1491
+ SENSITIVE = []
1443
1492
  include Aws::Structure
1444
1493
  end
1445
1494
 
@@ -1493,6 +1542,7 @@ module Aws::SMS
1493
1542
  :vm_server,
1494
1543
  :replication_job_id,
1495
1544
  :replication_job_terminated)
1545
+ SENSITIVE = []
1496
1546
  include Aws::Structure
1497
1547
  end
1498
1548
 
@@ -1505,6 +1555,7 @@ module Aws::SMS
1505
1555
  #
1506
1556
  class ServerCannotBeReplicatedException < Struct.new(
1507
1557
  :message)
1558
+ SENSITIVE = []
1508
1559
  include Aws::Structure
1509
1560
  end
1510
1561
 
@@ -1554,6 +1605,7 @@ module Aws::SMS
1554
1605
  :server_group_id,
1555
1606
  :name,
1556
1607
  :server_list)
1608
+ SENSITIVE = []
1557
1609
  include Aws::Structure
1558
1610
  end
1559
1611
 
@@ -1619,6 +1671,7 @@ module Aws::SMS
1619
1671
  :server_group_id,
1620
1672
  :launch_order,
1621
1673
  :server_launch_configurations)
1674
+ SENSITIVE = []
1622
1675
  include Aws::Structure
1623
1676
  end
1624
1677
 
@@ -1674,6 +1727,7 @@ module Aws::SMS
1674
1727
  class ServerGroupReplicationConfiguration < Struct.new(
1675
1728
  :server_group_id,
1676
1729
  :server_replication_configurations)
1730
+ SENSITIVE = []
1677
1731
  include Aws::Structure
1678
1732
  end
1679
1733
 
@@ -1767,6 +1821,7 @@ module Aws::SMS
1767
1821
  :user_data,
1768
1822
  :instance_type,
1769
1823
  :associate_public_ip_address)
1824
+ SENSITIVE = []
1770
1825
  include Aws::Structure
1771
1826
  end
1772
1827
 
@@ -1817,6 +1872,7 @@ module Aws::SMS
1817
1872
  class ServerReplicationConfiguration < Struct.new(
1818
1873
  :server,
1819
1874
  :server_replication_parameters)
1875
+ SENSITIVE = []
1820
1876
  include Aws::Structure
1821
1877
  end
1822
1878
 
@@ -1886,6 +1942,7 @@ module Aws::SMS
1886
1942
  :number_of_recent_amis_to_keep,
1887
1943
  :encrypted,
1888
1944
  :kms_key_id)
1945
+ SENSITIVE = []
1889
1946
  include Aws::Structure
1890
1947
  end
1891
1948
 
@@ -1904,6 +1961,7 @@ module Aws::SMS
1904
1961
  #
1905
1962
  class StartAppReplicationRequest < Struct.new(
1906
1963
  :app_id)
1964
+ SENSITIVE = []
1907
1965
  include Aws::Structure
1908
1966
  end
1909
1967
 
@@ -1932,6 +1990,7 @@ module Aws::SMS
1932
1990
  class StartOnDemandReplicationRunRequest < Struct.new(
1933
1991
  :replication_job_id,
1934
1992
  :description)
1993
+ SENSITIVE = []
1935
1994
  include Aws::Structure
1936
1995
  end
1937
1996
 
@@ -1943,6 +2002,7 @@ module Aws::SMS
1943
2002
  #
1944
2003
  class StartOnDemandReplicationRunResponse < Struct.new(
1945
2004
  :replication_run_id)
2005
+ SENSITIVE = []
1946
2006
  include Aws::Structure
1947
2007
  end
1948
2008
 
@@ -1961,6 +2021,7 @@ module Aws::SMS
1961
2021
  #
1962
2022
  class StopAppReplicationRequest < Struct.new(
1963
2023
  :app_id)
2024
+ SENSITIVE = []
1964
2025
  include Aws::Structure
1965
2026
  end
1966
2027
 
@@ -1991,6 +2052,7 @@ module Aws::SMS
1991
2052
  class Tag < Struct.new(
1992
2053
  :key,
1993
2054
  :value)
2055
+ SENSITIVE = []
1994
2056
  include Aws::Structure
1995
2057
  end
1996
2058
 
@@ -2015,6 +2077,7 @@ module Aws::SMS
2015
2077
  #
2016
2078
  class TerminateAppRequest < Struct.new(
2017
2079
  :app_id)
2080
+ SENSITIVE = []
2018
2081
  include Aws::Structure
2019
2082
  end
2020
2083
 
@@ -2032,6 +2095,7 @@ module Aws::SMS
2032
2095
  #
2033
2096
  class UnauthorizedOperationException < Struct.new(
2034
2097
  :message)
2098
+ SENSITIVE = []
2035
2099
  include Aws::Structure
2036
2100
  end
2037
2101
 
@@ -2108,6 +2172,7 @@ module Aws::SMS
2108
2172
  :role_name,
2109
2173
  :server_groups,
2110
2174
  :tags)
2175
+ SENSITIVE = []
2111
2176
  include Aws::Structure
2112
2177
  end
2113
2178
 
@@ -2129,6 +2194,7 @@ module Aws::SMS
2129
2194
  :app_summary,
2130
2195
  :server_groups,
2131
2196
  :tags)
2197
+ SENSITIVE = []
2132
2198
  include Aws::Structure
2133
2199
  end
2134
2200
 
@@ -2210,6 +2276,7 @@ module Aws::SMS
2210
2276
  :number_of_recent_amis_to_keep,
2211
2277
  :encrypted,
2212
2278
  :kms_key_id)
2279
+ SENSITIVE = []
2213
2280
  include Aws::Structure
2214
2281
  end
2215
2282
 
@@ -2238,6 +2305,7 @@ module Aws::SMS
2238
2305
  #
2239
2306
  class UserData < Struct.new(
2240
2307
  :s3_location)
2308
+ SENSITIVE = []
2241
2309
  include Aws::Structure
2242
2310
  end
2243
2311
 
@@ -2286,6 +2354,7 @@ module Aws::SMS
2286
2354
  :vm_manager_name,
2287
2355
  :vm_manager_type,
2288
2356
  :vm_path)
2357
+ SENSITIVE = []
2289
2358
  include Aws::Structure
2290
2359
  end
2291
2360
 
@@ -2312,6 +2381,7 @@ module Aws::SMS
2312
2381
  class VmServerAddress < Struct.new(
2313
2382
  :vm_manager_id,
2314
2383
  :vm_id)
2384
+ SENSITIVE = []
2315
2385
  include Aws::Structure
2316
2386
  end
2317
2387
 
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.18.0
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: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-07-02 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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - SMS