aws-sdk-serverlessapplicationrepository 1.25.0 → 1.30.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: 0e1935856640fb6381b2d50caa762cd3e1a6a26b74d64517d564043fb30930f5
4
- data.tar.gz: be5dd7b8494083eeb7c4d44c05d36966df03d8639ed74a2a81365e3e7bca3b92
3
+ metadata.gz: a69215e5c0f0e1d8db90d9ce4437c9ffa1e91726e8a7e0a3c8313a4d8eb4f862
4
+ data.tar.gz: 8410ad348b05d125ae5b4b6ad9e9389dbd0c114232dec81000dd3138bfefc922
5
5
  SHA512:
6
- metadata.gz: 3870548491f6648f28177b1b2eca346aa82e363746acfbc104a9024b9681ce6a609e28b365dd5386a1a69679cef0866cc0d637efaa382ccbcb4854960e28c587
7
- data.tar.gz: ea0162f39ef402d34c5fd5ce641325eca945d405c163e97369cfebe7897b8c09bfe3f503f4f0bbd4e2502545f2dbf088d75076a2add44fa15de611e6185d849e
6
+ metadata.gz: 8e0e3387cc896b28fa185bc1d4de09b3d8d247952b9f0652527051f657d122dfc334908ca126189e614f6984d970234927445d831b004344a69f27a054166a8d
7
+ data.tar.gz: 0cb9fb777e05fa3b72a04cd59bf7e7ac2f8e382840c034ebdc4eef29a4f4bb173379bedaff03f694f5c6abef71b86c0c128ea5f1b4f87ac3d50fa6f030f022b7
@@ -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:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-serverlessapplicationrepository/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::ServerlessApplicationRepository
47
49
 
48
- GEM_VERSION = '1.25.0'
50
+ GEM_VERSION = '1.30.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/rest_json.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::ServerlessApplicationRepository
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::RestJson)
74
78
 
@@ -81,13 +85,28 @@ module Aws::ServerlessApplicationRepository
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,15 +116,15 @@ module Aws::ServerlessApplicationRepository
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
107
126
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
127
+ # a default `:region` is searched for in the following locations:
109
128
  #
110
129
  # * `Aws.config[:region]`
111
130
  # * `ENV['AWS_REGION']`
@@ -161,7 +180,7 @@ module Aws::ServerlessApplicationRepository
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +195,7 @@ module Aws::ServerlessApplicationRepository
176
195
  # requests fetching endpoints information. Defaults to 60 sec.
177
196
  #
178
197
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
198
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
199
  #
181
200
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
201
  # The log formatter.
@@ -269,8 +288,7 @@ module Aws::ServerlessApplicationRepository
269
288
  #
270
289
  # @option options [Integer] :http_read_timeout (60) The default
271
290
  # number of seconds to wait for response data. This value can
272
- # safely be set
273
- # per-request on the session yielded by {#session_for}.
291
+ # safely be set per-request on the session.
274
292
  #
275
293
  # @option options [Float] :http_idle_timeout (5) The number of
276
294
  # seconds a connection is allowed to sit idle before it is
@@ -282,7 +300,7 @@ module Aws::ServerlessApplicationRepository
282
300
  # request body. This option has no effect unless the request has
283
301
  # "Expect" header set to "100-continue". Defaults to `nil` which
284
302
  # disables this behaviour. This value can safely be set per
285
- # request on the session yielded by {#session_for}.
303
+ # request on the session.
286
304
  #
287
305
  # @option options [Boolean] :http_wire_trace (false) When `true`,
288
306
  # HTTP debug output will be sent to the `:logger`.
@@ -826,6 +844,8 @@ module Aws::ServerlessApplicationRepository
826
844
  # * {Types::ListApplicationDependenciesResponse#dependencies #dependencies} => Array<Types::ApplicationDependencySummary>
827
845
  # * {Types::ListApplicationDependenciesResponse#next_token #next_token} => String
828
846
  #
847
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
848
+ #
829
849
  # @example Request syntax with placeholder values
830
850
  #
831
851
  # resp = client.list_application_dependencies({
@@ -864,6 +884,8 @@ module Aws::ServerlessApplicationRepository
864
884
  # * {Types::ListApplicationVersionsResponse#next_token #next_token} => String
865
885
  # * {Types::ListApplicationVersionsResponse#versions #versions} => Array<Types::VersionSummary>
866
886
  #
887
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
888
+ #
867
889
  # @example Request syntax with placeholder values
868
890
  #
869
891
  # resp = client.list_application_versions({
@@ -901,6 +923,8 @@ module Aws::ServerlessApplicationRepository
901
923
  # * {Types::ListApplicationsResponse#applications #applications} => Array<Types::ApplicationSummary>
902
924
  # * {Types::ListApplicationsResponse#next_token #next_token} => String
903
925
  #
926
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
927
+ #
904
928
  # @example Request syntax with placeholder values
905
929
  #
906
930
  # resp = client.list_applications({
@@ -1114,7 +1138,7 @@ module Aws::ServerlessApplicationRepository
1114
1138
  params: params,
1115
1139
  config: config)
1116
1140
  context[:gem_name] = 'aws-sdk-serverlessapplicationrepository'
1117
- context[:gem_version] = '1.25.0'
1141
+ context[:gem_version] = '1.30.0'
1118
1142
  Seahorse::Client::Request.new(handlers, context)
1119
1143
  end
1120
1144
 
@@ -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:
@@ -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::ServerlessApplicationRepository
9
- # This class provides a resource oriented interface for ServerlessApplicationRepository.
10
- # To create a resource object:
11
- # resource = Aws::ServerlessApplicationRepository::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::ServerlessApplicationRepository::Client.new(region: 'us-west-2')
15
- # resource = Aws::ServerlessApplicationRepository::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:
@@ -104,6 +106,7 @@ module Aws::ServerlessApplicationRepository
104
106
  :spdx_license_id,
105
107
  :verified_author_url,
106
108
  :version)
109
+ SENSITIVE = []
107
110
  include Aws::Structure
108
111
  end
109
112
 
@@ -122,6 +125,7 @@ module Aws::ServerlessApplicationRepository
122
125
  class ApplicationDependencyPage < Struct.new(
123
126
  :dependencies,
124
127
  :next_token)
128
+ SENSITIVE = []
125
129
  include Aws::Structure
126
130
  end
127
131
 
@@ -140,6 +144,7 @@ module Aws::ServerlessApplicationRepository
140
144
  class ApplicationDependencySummary < Struct.new(
141
145
  :application_id,
142
146
  :semantic_version)
147
+ SENSITIVE = []
143
148
  include Aws::Structure
144
149
  end
145
150
 
@@ -158,6 +163,7 @@ module Aws::ServerlessApplicationRepository
158
163
  class ApplicationPage < Struct.new(
159
164
  :applications,
160
165
  :next_token)
166
+ SENSITIVE = []
161
167
  include Aws::Structure
162
168
  end
163
169
 
@@ -171,6 +177,7 @@ module Aws::ServerlessApplicationRepository
171
177
  #
172
178
  class ApplicationPolicy < Struct.new(
173
179
  :statements)
180
+ SENSITIVE = []
174
181
  include Aws::Structure
175
182
  end
176
183
 
@@ -219,6 +226,7 @@ module Aws::ServerlessApplicationRepository
219
226
  :principal_org_i_ds,
220
227
  :principals,
221
228
  :statement_id)
229
+ SENSITIVE = []
222
230
  include Aws::Structure
223
231
  end
224
232
 
@@ -286,6 +294,7 @@ module Aws::ServerlessApplicationRepository
286
294
  :labels,
287
295
  :name,
288
296
  :spdx_license_id)
297
+ SENSITIVE = []
289
298
  include Aws::Structure
290
299
  end
291
300
 
@@ -304,6 +313,7 @@ module Aws::ServerlessApplicationRepository
304
313
  class ApplicationVersionPage < Struct.new(
305
314
  :next_token,
306
315
  :versions)
316
+ SENSITIVE = []
307
317
  include Aws::Structure
308
318
  end
309
319
 
@@ -322,6 +332,7 @@ module Aws::ServerlessApplicationRepository
322
332
  class BadRequestException < Struct.new(
323
333
  :error_code,
324
334
  :message)
335
+ SENSITIVE = []
325
336
  include Aws::Structure
326
337
  end
327
338
 
@@ -360,6 +371,7 @@ module Aws::ServerlessApplicationRepository
360
371
  :change_set_id,
361
372
  :semantic_version,
362
373
  :stack_id)
374
+ SENSITIVE = []
363
375
  include Aws::Structure
364
376
  end
365
377
 
@@ -378,6 +390,7 @@ module Aws::ServerlessApplicationRepository
378
390
  class ConflictException < Struct.new(
379
391
  :error_code,
380
392
  :message)
393
+ SENSITIVE = []
381
394
  include Aws::Structure
382
395
  end
383
396
 
@@ -524,6 +537,7 @@ module Aws::ServerlessApplicationRepository
524
537
  :spdx_license_id,
525
538
  :template_body,
526
539
  :template_url)
540
+ SENSITIVE = []
527
541
  include Aws::Structure
528
542
  end
529
543
 
@@ -611,6 +625,7 @@ module Aws::ServerlessApplicationRepository
611
625
  :spdx_license_id,
612
626
  :template_body,
613
627
  :template_url)
628
+ SENSITIVE = []
614
629
  include Aws::Structure
615
630
  end
616
631
 
@@ -670,6 +685,7 @@ module Aws::ServerlessApplicationRepository
670
685
  :spdx_license_id,
671
686
  :verified_author_url,
672
687
  :version)
688
+ SENSITIVE = []
673
689
  include Aws::Structure
674
690
  end
675
691
 
@@ -702,6 +718,7 @@ module Aws::ServerlessApplicationRepository
702
718
  :source_code_url,
703
719
  :template_body,
704
720
  :template_url)
721
+ SENSITIVE = []
705
722
  include Aws::Structure
706
723
  end
707
724
 
@@ -744,6 +761,7 @@ module Aws::ServerlessApplicationRepository
744
761
  :source_code_url,
745
762
  :template_body,
746
763
  :template_url)
764
+ SENSITIVE = []
747
765
  include Aws::Structure
748
766
  end
749
767
 
@@ -786,6 +804,7 @@ module Aws::ServerlessApplicationRepository
786
804
  :source_code_archive_url,
787
805
  :source_code_url,
788
806
  :template_url)
807
+ SENSITIVE = []
789
808
  include Aws::Structure
790
809
  end
791
810
 
@@ -930,6 +949,7 @@ module Aws::ServerlessApplicationRepository
930
949
  :stack_name,
931
950
  :tags,
932
951
  :template_id)
952
+ SENSITIVE = []
933
953
  include Aws::Structure
934
954
  end
935
955
 
@@ -1028,6 +1048,7 @@ module Aws::ServerlessApplicationRepository
1028
1048
  :stack_name,
1029
1049
  :tags,
1030
1050
  :template_id)
1051
+ SENSITIVE = []
1031
1052
  include Aws::Structure
1032
1053
  end
1033
1054
 
@@ -1050,6 +1071,7 @@ module Aws::ServerlessApplicationRepository
1050
1071
  :change_set_id,
1051
1072
  :semantic_version,
1052
1073
  :stack_id)
1074
+ SENSITIVE = []
1053
1075
  include Aws::Structure
1054
1076
  end
1055
1077
 
@@ -1072,6 +1094,7 @@ module Aws::ServerlessApplicationRepository
1072
1094
  class CreateCloudFormationTemplateRequest < Struct.new(
1073
1095
  :application_id,
1074
1096
  :semantic_version)
1097
+ SENSITIVE = []
1075
1098
  include Aws::Structure
1076
1099
  end
1077
1100
 
@@ -1106,6 +1129,7 @@ module Aws::ServerlessApplicationRepository
1106
1129
  :status,
1107
1130
  :template_id,
1108
1131
  :template_url)
1132
+ SENSITIVE = []
1109
1133
  include Aws::Structure
1110
1134
  end
1111
1135
 
@@ -1123,6 +1147,7 @@ module Aws::ServerlessApplicationRepository
1123
1147
  #
1124
1148
  class DeleteApplicationRequest < Struct.new(
1125
1149
  :application_id)
1150
+ SENSITIVE = []
1126
1151
  include Aws::Structure
1127
1152
  end
1128
1153
 
@@ -1141,6 +1166,7 @@ module Aws::ServerlessApplicationRepository
1141
1166
  class ForbiddenException < Struct.new(
1142
1167
  :error_code,
1143
1168
  :message)
1169
+ SENSITIVE = []
1144
1170
  include Aws::Structure
1145
1171
  end
1146
1172
 
@@ -1158,6 +1184,7 @@ module Aws::ServerlessApplicationRepository
1158
1184
  #
1159
1185
  class GetApplicationPolicyRequest < Struct.new(
1160
1186
  :application_id)
1187
+ SENSITIVE = []
1161
1188
  include Aws::Structure
1162
1189
  end
1163
1190
 
@@ -1168,6 +1195,7 @@ module Aws::ServerlessApplicationRepository
1168
1195
  #
1169
1196
  class GetApplicationPolicyResponse < Struct.new(
1170
1197
  :statements)
1198
+ SENSITIVE = []
1171
1199
  include Aws::Structure
1172
1200
  end
1173
1201
 
@@ -1190,6 +1218,7 @@ module Aws::ServerlessApplicationRepository
1190
1218
  class GetApplicationRequest < Struct.new(
1191
1219
  :application_id,
1192
1220
  :semantic_version)
1221
+ SENSITIVE = []
1193
1222
  include Aws::Structure
1194
1223
  end
1195
1224
 
@@ -1249,6 +1278,7 @@ module Aws::ServerlessApplicationRepository
1249
1278
  :spdx_license_id,
1250
1279
  :verified_author_url,
1251
1280
  :version)
1281
+ SENSITIVE = []
1252
1282
  include Aws::Structure
1253
1283
  end
1254
1284
 
@@ -1271,6 +1301,7 @@ module Aws::ServerlessApplicationRepository
1271
1301
  class GetCloudFormationTemplateRequest < Struct.new(
1272
1302
  :application_id,
1273
1303
  :template_id)
1304
+ SENSITIVE = []
1274
1305
  include Aws::Structure
1275
1306
  end
1276
1307
 
@@ -1305,6 +1336,7 @@ module Aws::ServerlessApplicationRepository
1305
1336
  :status,
1306
1337
  :template_id,
1307
1338
  :template_url)
1339
+ SENSITIVE = []
1308
1340
  include Aws::Structure
1309
1341
  end
1310
1342
 
@@ -1325,6 +1357,7 @@ module Aws::ServerlessApplicationRepository
1325
1357
  class InternalServerErrorException < Struct.new(
1326
1358
  :error_code,
1327
1359
  :message)
1360
+ SENSITIVE = []
1328
1361
  include Aws::Structure
1329
1362
  end
1330
1363
 
@@ -1357,6 +1390,7 @@ module Aws::ServerlessApplicationRepository
1357
1390
  :max_items,
1358
1391
  :next_token,
1359
1392
  :semantic_version)
1393
+ SENSITIVE = []
1360
1394
  include Aws::Structure
1361
1395
  end
1362
1396
 
@@ -1371,6 +1405,7 @@ module Aws::ServerlessApplicationRepository
1371
1405
  class ListApplicationDependenciesResponse < Struct.new(
1372
1406
  :dependencies,
1373
1407
  :next_token)
1408
+ SENSITIVE = []
1374
1409
  include Aws::Structure
1375
1410
  end
1376
1411
 
@@ -1398,6 +1433,7 @@ module Aws::ServerlessApplicationRepository
1398
1433
  :application_id,
1399
1434
  :max_items,
1400
1435
  :next_token)
1436
+ SENSITIVE = []
1401
1437
  include Aws::Structure
1402
1438
  end
1403
1439
 
@@ -1412,6 +1448,7 @@ module Aws::ServerlessApplicationRepository
1412
1448
  class ListApplicationVersionsResponse < Struct.new(
1413
1449
  :next_token,
1414
1450
  :versions)
1451
+ SENSITIVE = []
1415
1452
  include Aws::Structure
1416
1453
  end
1417
1454
 
@@ -1434,6 +1471,7 @@ module Aws::ServerlessApplicationRepository
1434
1471
  class ListApplicationsRequest < Struct.new(
1435
1472
  :max_items,
1436
1473
  :next_token)
1474
+ SENSITIVE = []
1437
1475
  include Aws::Structure
1438
1476
  end
1439
1477
 
@@ -1448,6 +1486,7 @@ module Aws::ServerlessApplicationRepository
1448
1486
  class ListApplicationsResponse < Struct.new(
1449
1487
  :applications,
1450
1488
  :next_token)
1489
+ SENSITIVE = []
1451
1490
  include Aws::Structure
1452
1491
  end
1453
1492
 
@@ -1468,6 +1507,7 @@ module Aws::ServerlessApplicationRepository
1468
1507
  class NotFoundException < Struct.new(
1469
1508
  :error_code,
1470
1509
  :message)
1510
+ SENSITIVE = []
1471
1511
  include Aws::Structure
1472
1512
  end
1473
1513
 
@@ -1594,6 +1634,7 @@ module Aws::ServerlessApplicationRepository
1594
1634
  :no_echo,
1595
1635
  :referenced_by_resources,
1596
1636
  :type)
1637
+ SENSITIVE = []
1597
1638
  include Aws::Structure
1598
1639
  end
1599
1640
 
@@ -1622,6 +1663,7 @@ module Aws::ServerlessApplicationRepository
1622
1663
  class ParameterValue < Struct.new(
1623
1664
  :name,
1624
1665
  :value)
1666
+ SENSITIVE = []
1625
1667
  include Aws::Structure
1626
1668
  end
1627
1669
 
@@ -1651,6 +1693,7 @@ module Aws::ServerlessApplicationRepository
1651
1693
  class PutApplicationPolicyRequest < Struct.new(
1652
1694
  :application_id,
1653
1695
  :statements)
1696
+ SENSITIVE = []
1654
1697
  include Aws::Structure
1655
1698
  end
1656
1699
 
@@ -1661,6 +1704,7 @@ module Aws::ServerlessApplicationRepository
1661
1704
  #
1662
1705
  class PutApplicationPolicyResponse < Struct.new(
1663
1706
  :statements)
1707
+ SENSITIVE = []
1664
1708
  include Aws::Structure
1665
1709
  end
1666
1710
 
@@ -1700,6 +1744,7 @@ module Aws::ServerlessApplicationRepository
1700
1744
  class RollbackConfiguration < Struct.new(
1701
1745
  :monitoring_time_in_minutes,
1702
1746
  :rollback_triggers)
1747
+ SENSITIVE = []
1703
1748
  include Aws::Structure
1704
1749
  end
1705
1750
 
@@ -1734,6 +1779,7 @@ module Aws::ServerlessApplicationRepository
1734
1779
  class RollbackTrigger < Struct.new(
1735
1780
  :arn,
1736
1781
  :type)
1782
+ SENSITIVE = []
1737
1783
  include Aws::Structure
1738
1784
  end
1739
1785
 
@@ -1768,6 +1814,7 @@ module Aws::ServerlessApplicationRepository
1768
1814
  class Tag < Struct.new(
1769
1815
  :key,
1770
1816
  :value)
1817
+ SENSITIVE = []
1771
1818
  include Aws::Structure
1772
1819
  end
1773
1820
 
@@ -1824,6 +1871,7 @@ module Aws::ServerlessApplicationRepository
1824
1871
  :status,
1825
1872
  :template_id,
1826
1873
  :template_url)
1874
+ SENSITIVE = []
1827
1875
  include Aws::Structure
1828
1876
  end
1829
1877
 
@@ -1844,6 +1892,7 @@ module Aws::ServerlessApplicationRepository
1844
1892
  class TooManyRequestsException < Struct.new(
1845
1893
  :error_code,
1846
1894
  :message)
1895
+ SENSITIVE = []
1847
1896
  include Aws::Structure
1848
1897
  end
1849
1898
 
@@ -1857,6 +1906,7 @@ module Aws::ServerlessApplicationRepository
1857
1906
  #
1858
1907
  class UnshareApplicationInput < Struct.new(
1859
1908
  :organization_id)
1909
+ SENSITIVE = []
1860
1910
  include Aws::Structure
1861
1911
  end
1862
1912
 
@@ -1879,6 +1929,7 @@ module Aws::ServerlessApplicationRepository
1879
1929
  class UnshareApplicationRequest < Struct.new(
1880
1930
  :application_id,
1881
1931
  :organization_id)
1932
+ SENSITIVE = []
1882
1933
  include Aws::Structure
1883
1934
  end
1884
1935
 
@@ -1934,6 +1985,7 @@ module Aws::ServerlessApplicationRepository
1934
1985
  :labels,
1935
1986
  :readme_body,
1936
1987
  :readme_url)
1988
+ SENSITIVE = []
1937
1989
  include Aws::Structure
1938
1990
  end
1939
1991
 
@@ -1981,6 +2033,7 @@ module Aws::ServerlessApplicationRepository
1981
2033
  :labels,
1982
2034
  :readme_body,
1983
2035
  :readme_url)
2036
+ SENSITIVE = []
1984
2037
  include Aws::Structure
1985
2038
  end
1986
2039
 
@@ -2040,6 +2093,7 @@ module Aws::ServerlessApplicationRepository
2040
2093
  :spdx_license_id,
2041
2094
  :verified_author_url,
2042
2095
  :version)
2096
+ SENSITIVE = []
2043
2097
  include Aws::Structure
2044
2098
  end
2045
2099
 
@@ -2147,6 +2201,7 @@ module Aws::ServerlessApplicationRepository
2147
2201
  :source_code_archive_url,
2148
2202
  :source_code_url,
2149
2203
  :template_url)
2204
+ SENSITIVE = []
2150
2205
  include Aws::Structure
2151
2206
  end
2152
2207
 
@@ -2182,6 +2237,7 @@ module Aws::ServerlessApplicationRepository
2182
2237
  :creation_time,
2183
2238
  :semantic_version,
2184
2239
  :source_code_url)
2240
+ SENSITIVE = []
2185
2241
  include Aws::Structure
2186
2242
  end
2187
2243
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-serverlessapplicationrepository
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.30.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-16 00:00:00.000000000 Z
11
+ date: 2020-08-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.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
@@ -80,7 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  requirements: []
83
- rubygems_version: 3.0.3
83
+ rubyforge_project:
84
+ rubygems_version: 2.7.6.2
84
85
  signing_key:
85
86
  specification_version: 4
86
87
  summary: AWS SDK for Ruby - AWSServerlessApplicationRepository