aws-sdk-apigateway 1.29.0 → 1.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f51a2a689545a4047fd8f435974e3a44a4c6c35f
4
- data.tar.gz: 229061fa19eceb62c00ed2b0084823731883c52f
3
+ metadata.gz: 163110b7c1862f082e7a095440e09c720e7cc6b4
4
+ data.tar.gz: 42c01d0836d127dc7dfc9e1accb4bf9c6b5a50a7
5
5
  SHA512:
6
- metadata.gz: 96782fab9082a6f4e097df4337bd50a764f3dc7cc4c87a0a2931a325af2bae5365596edcc17766d867949ba0a58c33eb199b26f1f3f72f0fee93f18e568814d7
7
- data.tar.gz: d69fd8fc2c243b2cd7307fbdec3ca0826e5e130ce33ddab74f2e3f046c16501188a3d384b1506ed3c4f5455533f1ea510e075f4297b062dd282ef093c6137fca
6
+ metadata.gz: 90abf634303d1cea07aa16f48e6d6d5d3fcf69af221f21815a067a9d5eaef3e06879383fa4be5076de92b9b5f60cd8b1aeb48a48df7f881b60bada2a72d606a1
7
+ data.tar.gz: bcfc136ca9c83a4c6fee40e04db58fb69f8490272e9de6f7b7f7249798607b4c308139951c2bab0df0395a65ae3354dfb43e41117bd9a8f94a338f8ce713e73f
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-apigateway/customizations'
42
42
  # @service
43
43
  module Aws::APIGateway
44
44
 
45
- GEM_VERSION = '1.29.0'
45
+ GEM_VERSION = '1.30.0'
46
46
 
47
47
  end
@@ -286,6 +286,11 @@ module Aws::APIGateway
286
286
  # An AWS Marketplace customer identifier , when integrating with the AWS
287
287
  # SaaS Marketplace.
288
288
  #
289
+ # @option params [Hash<String,String>] :tags
290
+ # The key-value map of strings. The valid character set is
291
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
292
+ # not start with `aws:`. The tag value can be up to 256 characters.
293
+ #
289
294
  # @return [Types::ApiKey] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
290
295
  #
291
296
  # * {Types::ApiKey#id #id} => String
@@ -297,6 +302,7 @@ module Aws::APIGateway
297
302
  # * {Types::ApiKey#created_date #created_date} => Time
298
303
  # * {Types::ApiKey#last_updated_date #last_updated_date} => Time
299
304
  # * {Types::ApiKey#stage_keys #stage_keys} => Array&lt;String&gt;
305
+ # * {Types::ApiKey#tags #tags} => Hash&lt;String,String&gt;
300
306
  #
301
307
  # @example Request syntax with placeholder values
302
308
  #
@@ -313,6 +319,9 @@ module Aws::APIGateway
313
319
  # },
314
320
  # ],
315
321
  # customer_id: "String",
322
+ # tags: {
323
+ # "String" => "String",
324
+ # },
316
325
  # })
317
326
  #
318
327
  # @example Response structure
@@ -327,6 +336,8 @@ module Aws::APIGateway
327
336
  # resp.last_updated_date #=> Time
328
337
  # resp.stage_keys #=> Array
329
338
  # resp.stage_keys[0] #=> String
339
+ # resp.tags #=> Hash
340
+ # resp.tags["String"] #=> String
330
341
  #
331
342
  # @overload create_api_key(params = {})
332
343
  # @param [Hash] params ({})
@@ -739,6 +750,11 @@ module Aws::APIGateway
739
750
  # The endpoint configuration of this DomainName showing the endpoint
740
751
  # types of the domain name.
741
752
  #
753
+ # @option params [Hash<String,String>] :tags
754
+ # The key-value map of strings. The valid character set is
755
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
756
+ # not start with `aws:`. The tag value can be up to 256 characters.
757
+ #
742
758
  # @return [Types::DomainName] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
743
759
  #
744
760
  # * {Types::DomainName#domain_name #domain_name} => String
@@ -752,6 +768,7 @@ module Aws::APIGateway
752
768
  # * {Types::DomainName#distribution_domain_name #distribution_domain_name} => String
753
769
  # * {Types::DomainName#distribution_hosted_zone_id #distribution_hosted_zone_id} => String
754
770
  # * {Types::DomainName#endpoint_configuration #endpoint_configuration} => Types::EndpointConfiguration
771
+ # * {Types::DomainName#tags #tags} => Hash&lt;String,String&gt;
755
772
  #
756
773
  # @example Request syntax with placeholder values
757
774
  #
@@ -767,6 +784,9 @@ module Aws::APIGateway
767
784
  # endpoint_configuration: {
768
785
  # types: ["REGIONAL"], # accepts REGIONAL, EDGE, PRIVATE
769
786
  # },
787
+ # tags: {
788
+ # "String" => "String",
789
+ # },
770
790
  # })
771
791
  #
772
792
  # @example Response structure
@@ -783,6 +803,8 @@ module Aws::APIGateway
783
803
  # resp.distribution_hosted_zone_id #=> String
784
804
  # resp.endpoint_configuration.types #=> Array
785
805
  # resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
806
+ # resp.tags #=> Hash
807
+ # resp.tags["String"] #=> String
786
808
  #
787
809
  # @overload create_domain_name(params = {})
788
810
  # @param [Hash] params ({})
@@ -1019,6 +1041,11 @@ module Aws::APIGateway
1019
1041
  # @option params [String] :policy
1020
1042
  # A stringified JSON policy document that applies to this RestApi regardless of the caller and Method configuration.
1021
1043
  #
1044
+ # @option params [Hash<String,String>] :tags
1045
+ # The key-value map of strings. The valid character set is
1046
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
1047
+ # not start with `aws:`. The tag value can be up to 256 characters.
1048
+ #
1022
1049
  # @return [Types::RestApi] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1023
1050
  #
1024
1051
  # * {Types::RestApi#id #id} => String
@@ -1032,6 +1059,7 @@ module Aws::APIGateway
1032
1059
  # * {Types::RestApi#api_key_source #api_key_source} => String
1033
1060
  # * {Types::RestApi#endpoint_configuration #endpoint_configuration} => Types::EndpointConfiguration
1034
1061
  # * {Types::RestApi#policy #policy} => String
1062
+ # * {Types::RestApi#tags #tags} => Hash&lt;String,String&gt;
1035
1063
  #
1036
1064
  # @example Request syntax with placeholder values
1037
1065
  #
@@ -1047,6 +1075,9 @@ module Aws::APIGateway
1047
1075
  # types: ["REGIONAL"], # accepts REGIONAL, EDGE, PRIVATE
1048
1076
  # },
1049
1077
  # policy: "String",
1078
+ # tags: {
1079
+ # "String" => "String",
1080
+ # },
1050
1081
  # })
1051
1082
  #
1052
1083
  # @example Response structure
@@ -1065,6 +1096,8 @@ module Aws::APIGateway
1065
1096
  # resp.endpoint_configuration.types #=> Array
1066
1097
  # resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
1067
1098
  # resp.policy #=> String
1099
+ # resp.tags #=> Hash
1100
+ # resp.tags["String"] #=> String
1068
1101
  #
1069
1102
  # @overload create_rest_api(params = {})
1070
1103
  # @param [Hash] params ({})
@@ -1223,6 +1256,11 @@ module Aws::APIGateway
1223
1256
  # @option params [Types::QuotaSettings] :quota
1224
1257
  # The quota of the usage plan.
1225
1258
  #
1259
+ # @option params [Hash<String,String>] :tags
1260
+ # The key-value map of strings. The valid character set is
1261
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
1262
+ # not start with `aws:`. The tag value can be up to 256 characters.
1263
+ #
1226
1264
  # @return [Types::UsagePlan] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1227
1265
  #
1228
1266
  # * {Types::UsagePlan#id #id} => String
@@ -1232,6 +1270,7 @@ module Aws::APIGateway
1232
1270
  # * {Types::UsagePlan#throttle #throttle} => Types::ThrottleSettings
1233
1271
  # * {Types::UsagePlan#quota #quota} => Types::QuotaSettings
1234
1272
  # * {Types::UsagePlan#product_code #product_code} => String
1273
+ # * {Types::UsagePlan#tags #tags} => Hash&lt;String,String&gt;
1235
1274
  #
1236
1275
  # @example Request syntax with placeholder values
1237
1276
  #
@@ -1259,6 +1298,9 @@ module Aws::APIGateway
1259
1298
  # offset: 1,
1260
1299
  # period: "DAY", # accepts DAY, WEEK, MONTH
1261
1300
  # },
1301
+ # tags: {
1302
+ # "String" => "String",
1303
+ # },
1262
1304
  # })
1263
1305
  #
1264
1306
  # @example Response structure
@@ -1278,6 +1320,8 @@ module Aws::APIGateway
1278
1320
  # resp.quota.offset #=> Integer
1279
1321
  # resp.quota.period #=> String, one of "DAY", "WEEK", "MONTH"
1280
1322
  # resp.product_code #=> String
1323
+ # resp.tags #=> Hash
1324
+ # resp.tags["String"] #=> String
1281
1325
  #
1282
1326
  # @overload create_usage_plan(params = {})
1283
1327
  # @param [Hash] params ({})
@@ -1346,6 +1390,11 @@ module Aws::APIGateway
1346
1390
  # the VPC link. The network load balancers must be owned by the same AWS
1347
1391
  # account of the API owner.
1348
1392
  #
1393
+ # @option params [Hash<String,String>] :tags
1394
+ # The key-value map of strings. The valid character set is
1395
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
1396
+ # not start with `aws:`. The tag value can be up to 256 characters.
1397
+ #
1349
1398
  # @return [Types::VpcLink] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1350
1399
  #
1351
1400
  # * {Types::VpcLink#id #id} => String
@@ -1354,6 +1403,7 @@ module Aws::APIGateway
1354
1403
  # * {Types::VpcLink#target_arns #target_arns} => Array&lt;String&gt;
1355
1404
  # * {Types::VpcLink#status #status} => String
1356
1405
  # * {Types::VpcLink#status_message #status_message} => String
1406
+ # * {Types::VpcLink#tags #tags} => Hash&lt;String,String&gt;
1357
1407
  #
1358
1408
  # @example Request syntax with placeholder values
1359
1409
  #
@@ -1361,6 +1411,9 @@ module Aws::APIGateway
1361
1411
  # name: "String", # required
1362
1412
  # description: "String",
1363
1413
  # target_arns: ["String"], # required
1414
+ # tags: {
1415
+ # "String" => "String",
1416
+ # },
1364
1417
  # })
1365
1418
  #
1366
1419
  # @example Response structure
@@ -1372,6 +1425,8 @@ module Aws::APIGateway
1372
1425
  # resp.target_arns[0] #=> String
1373
1426
  # resp.status #=> String, one of "AVAILABLE", "PENDING", "DELETING", "FAILED"
1374
1427
  # resp.status_message #=> String
1428
+ # resp.tags #=> Hash
1429
+ # resp.tags["String"] #=> String
1375
1430
  #
1376
1431
  # @overload create_vpc_link(params = {})
1377
1432
  # @param [Hash] params ({})
@@ -1977,6 +2032,11 @@ module Aws::APIGateway
1977
2032
  # @option params [String] :description
1978
2033
  # The description of the ClientCertificate.
1979
2034
  #
2035
+ # @option params [Hash<String,String>] :tags
2036
+ # The key-value map of strings. The valid character set is
2037
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
2038
+ # not start with `aws:`. The tag value can be up to 256 characters.
2039
+ #
1980
2040
  # @return [Types::ClientCertificate] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1981
2041
  #
1982
2042
  # * {Types::ClientCertificate#client_certificate_id #client_certificate_id} => String
@@ -1984,11 +2044,15 @@ module Aws::APIGateway
1984
2044
  # * {Types::ClientCertificate#pem_encoded_certificate #pem_encoded_certificate} => String
1985
2045
  # * {Types::ClientCertificate#created_date #created_date} => Time
1986
2046
  # * {Types::ClientCertificate#expiration_date #expiration_date} => Time
2047
+ # * {Types::ClientCertificate#tags #tags} => Hash&lt;String,String&gt;
1987
2048
  #
1988
2049
  # @example Request syntax with placeholder values
1989
2050
  #
1990
2051
  # resp = client.generate_client_certificate({
1991
2052
  # description: "String",
2053
+ # tags: {
2054
+ # "String" => "String",
2055
+ # },
1992
2056
  # })
1993
2057
  #
1994
2058
  # @example Response structure
@@ -1998,6 +2062,8 @@ module Aws::APIGateway
1998
2062
  # resp.pem_encoded_certificate #=> String
1999
2063
  # resp.created_date #=> Time
2000
2064
  # resp.expiration_date #=> Time
2065
+ # resp.tags #=> Hash
2066
+ # resp.tags["String"] #=> String
2001
2067
  #
2002
2068
  # @overload generate_client_certificate(params = {})
2003
2069
  # @param [Hash] params ({})
@@ -2051,6 +2117,7 @@ module Aws::APIGateway
2051
2117
  # * {Types::ApiKey#created_date #created_date} => Time
2052
2118
  # * {Types::ApiKey#last_updated_date #last_updated_date} => Time
2053
2119
  # * {Types::ApiKey#stage_keys #stage_keys} => Array&lt;String&gt;
2120
+ # * {Types::ApiKey#tags #tags} => Hash&lt;String,String&gt;
2054
2121
  #
2055
2122
  # @example Request syntax with placeholder values
2056
2123
  #
@@ -2071,6 +2138,8 @@ module Aws::APIGateway
2071
2138
  # resp.last_updated_date #=> Time
2072
2139
  # resp.stage_keys #=> Array
2073
2140
  # resp.stage_keys[0] #=> String
2141
+ # resp.tags #=> Hash
2142
+ # resp.tags["String"] #=> String
2074
2143
  #
2075
2144
  # @overload get_api_key(params = {})
2076
2145
  # @param [Hash] params ({})
@@ -2131,6 +2200,8 @@ module Aws::APIGateway
2131
2200
  # resp.items[0].last_updated_date #=> Time
2132
2201
  # resp.items[0].stage_keys #=> Array
2133
2202
  # resp.items[0].stage_keys[0] #=> String
2203
+ # resp.items[0].tags #=> Hash
2204
+ # resp.items[0].tags["String"] #=> String
2134
2205
  #
2135
2206
  # @overload get_api_keys(params = {})
2136
2207
  # @param [Hash] params ({})
@@ -2344,6 +2415,7 @@ module Aws::APIGateway
2344
2415
  # * {Types::ClientCertificate#pem_encoded_certificate #pem_encoded_certificate} => String
2345
2416
  # * {Types::ClientCertificate#created_date #created_date} => Time
2346
2417
  # * {Types::ClientCertificate#expiration_date #expiration_date} => Time
2418
+ # * {Types::ClientCertificate#tags #tags} => Hash&lt;String,String&gt;
2347
2419
  #
2348
2420
  # @example Request syntax with placeholder values
2349
2421
  #
@@ -2358,6 +2430,8 @@ module Aws::APIGateway
2358
2430
  # resp.pem_encoded_certificate #=> String
2359
2431
  # resp.created_date #=> Time
2360
2432
  # resp.expiration_date #=> Time
2433
+ # resp.tags #=> Hash
2434
+ # resp.tags["String"] #=> String
2361
2435
  #
2362
2436
  # @overload get_client_certificate(params = {})
2363
2437
  # @param [Hash] params ({})
@@ -2396,6 +2470,8 @@ module Aws::APIGateway
2396
2470
  # resp.items[0].pem_encoded_certificate #=> String
2397
2471
  # resp.items[0].created_date #=> Time
2398
2472
  # resp.items[0].expiration_date #=> Time
2473
+ # resp.items[0].tags #=> Hash
2474
+ # resp.items[0].tags["String"] #=> String
2399
2475
  #
2400
2476
  # @overload get_client_certificates(params = {})
2401
2477
  # @param [Hash] params ({})
@@ -2689,6 +2765,7 @@ module Aws::APIGateway
2689
2765
  # * {Types::DomainName#distribution_domain_name #distribution_domain_name} => String
2690
2766
  # * {Types::DomainName#distribution_hosted_zone_id #distribution_hosted_zone_id} => String
2691
2767
  # * {Types::DomainName#endpoint_configuration #endpoint_configuration} => Types::EndpointConfiguration
2768
+ # * {Types::DomainName#tags #tags} => Hash&lt;String,String&gt;
2692
2769
  #
2693
2770
  # @example Request syntax with placeholder values
2694
2771
  #
@@ -2710,6 +2787,8 @@ module Aws::APIGateway
2710
2787
  # resp.distribution_hosted_zone_id #=> String
2711
2788
  # resp.endpoint_configuration.types #=> Array
2712
2789
  # resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
2790
+ # resp.tags #=> Hash
2791
+ # resp.tags["String"] #=> String
2713
2792
  #
2714
2793
  # @overload get_domain_name(params = {})
2715
2794
  # @param [Hash] params ({})
@@ -2755,6 +2834,8 @@ module Aws::APIGateway
2755
2834
  # resp.items[0].distribution_hosted_zone_id #=> String
2756
2835
  # resp.items[0].endpoint_configuration.types #=> Array
2757
2836
  # resp.items[0].endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
2837
+ # resp.items[0].tags #=> Hash
2838
+ # resp.items[0].tags["String"] #=> String
2758
2839
  #
2759
2840
  # @overload get_domain_names(params = {})
2760
2841
  # @param [Hash] params ({})
@@ -3581,6 +3662,7 @@ module Aws::APIGateway
3581
3662
  # * {Types::RestApi#api_key_source #api_key_source} => String
3582
3663
  # * {Types::RestApi#endpoint_configuration #endpoint_configuration} => Types::EndpointConfiguration
3583
3664
  # * {Types::RestApi#policy #policy} => String
3665
+ # * {Types::RestApi#tags #tags} => Hash&lt;String,String&gt;
3584
3666
  #
3585
3667
  # @example Request syntax with placeholder values
3586
3668
  #
@@ -3604,6 +3686,8 @@ module Aws::APIGateway
3604
3686
  # resp.endpoint_configuration.types #=> Array
3605
3687
  # resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
3606
3688
  # resp.policy #=> String
3689
+ # resp.tags #=> Hash
3690
+ # resp.tags["String"] #=> String
3607
3691
  #
3608
3692
  # @overload get_rest_api(params = {})
3609
3693
  # @param [Hash] params ({})
@@ -3651,6 +3735,8 @@ module Aws::APIGateway
3651
3735
  # resp.items[0].endpoint_configuration.types #=> Array
3652
3736
  # resp.items[0].endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
3653
3737
  # resp.items[0].policy #=> String
3738
+ # resp.items[0].tags #=> Hash
3739
+ # resp.items[0].tags["String"] #=> String
3654
3740
  #
3655
3741
  # @overload get_rest_apis(params = {})
3656
3742
  # @param [Hash] params ({})
@@ -4040,6 +4126,7 @@ module Aws::APIGateway
4040
4126
  # * {Types::UsagePlan#throttle #throttle} => Types::ThrottleSettings
4041
4127
  # * {Types::UsagePlan#quota #quota} => Types::QuotaSettings
4042
4128
  # * {Types::UsagePlan#product_code #product_code} => String
4129
+ # * {Types::UsagePlan#tags #tags} => Hash&lt;String,String&gt;
4043
4130
  #
4044
4131
  # @example Request syntax with placeholder values
4045
4132
  #
@@ -4064,6 +4151,8 @@ module Aws::APIGateway
4064
4151
  # resp.quota.offset #=> Integer
4065
4152
  # resp.quota.period #=> String, one of "DAY", "WEEK", "MONTH"
4066
4153
  # resp.product_code #=> String
4154
+ # resp.tags #=> Hash
4155
+ # resp.tags["String"] #=> String
4067
4156
  #
4068
4157
  # @overload get_usage_plan(params = {})
4069
4158
  # @param [Hash] params ({})
@@ -4204,6 +4293,8 @@ module Aws::APIGateway
4204
4293
  # resp.items[0].quota.offset #=> Integer
4205
4294
  # resp.items[0].quota.period #=> String, one of "DAY", "WEEK", "MONTH"
4206
4295
  # resp.items[0].product_code #=> String
4296
+ # resp.items[0].tags #=> Hash
4297
+ # resp.items[0].tags["String"] #=> String
4207
4298
  #
4208
4299
  # @overload get_usage_plans(params = {})
4209
4300
  # @param [Hash] params ({})
@@ -4226,6 +4317,7 @@ module Aws::APIGateway
4226
4317
  # * {Types::VpcLink#target_arns #target_arns} => Array&lt;String&gt;
4227
4318
  # * {Types::VpcLink#status #status} => String
4228
4319
  # * {Types::VpcLink#status_message #status_message} => String
4320
+ # * {Types::VpcLink#tags #tags} => Hash&lt;String,String&gt;
4229
4321
  #
4230
4322
  # @example Request syntax with placeholder values
4231
4323
  #
@@ -4242,6 +4334,8 @@ module Aws::APIGateway
4242
4334
  # resp.target_arns[0] #=> String
4243
4335
  # resp.status #=> String, one of "AVAILABLE", "PENDING", "DELETING", "FAILED"
4244
4336
  # resp.status_message #=> String
4337
+ # resp.tags #=> Hash
4338
+ # resp.tags["String"] #=> String
4245
4339
  #
4246
4340
  # @overload get_vpc_link(params = {})
4247
4341
  # @param [Hash] params ({})
@@ -4283,6 +4377,8 @@ module Aws::APIGateway
4283
4377
  # resp.items[0].target_arns[0] #=> String
4284
4378
  # resp.items[0].status #=> String, one of "AVAILABLE", "PENDING", "DELETING", "FAILED"
4285
4379
  # resp.items[0].status_message #=> String
4380
+ # resp.items[0].tags #=> Hash
4381
+ # resp.items[0].tags["String"] #=> String
4286
4382
  #
4287
4383
  # @overload get_vpc_links(params = {})
4288
4384
  # @param [Hash] params ({})
@@ -4435,6 +4531,7 @@ module Aws::APIGateway
4435
4531
  # * {Types::RestApi#api_key_source #api_key_source} => String
4436
4532
  # * {Types::RestApi#endpoint_configuration #endpoint_configuration} => Types::EndpointConfiguration
4437
4533
  # * {Types::RestApi#policy #policy} => String
4534
+ # * {Types::RestApi#tags #tags} => Hash&lt;String,String&gt;
4438
4535
  #
4439
4536
  # @example Request syntax with placeholder values
4440
4537
  #
@@ -4462,6 +4559,8 @@ module Aws::APIGateway
4462
4559
  # resp.endpoint_configuration.types #=> Array
4463
4560
  # resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
4464
4561
  # resp.policy #=> String
4562
+ # resp.tags #=> Hash
4563
+ # resp.tags["String"] #=> String
4465
4564
  #
4466
4565
  # @overload import_rest_api(params = {})
4467
4566
  # @param [Hash] params ({})
@@ -5113,6 +5212,7 @@ module Aws::APIGateway
5113
5212
  # * {Types::RestApi#api_key_source #api_key_source} => String
5114
5213
  # * {Types::RestApi#endpoint_configuration #endpoint_configuration} => Types::EndpointConfiguration
5115
5214
  # * {Types::RestApi#policy #policy} => String
5215
+ # * {Types::RestApi#tags #tags} => Hash&lt;String,String&gt;
5116
5216
  #
5117
5217
  # @example Request syntax with placeholder values
5118
5218
  #
@@ -5142,6 +5242,8 @@ module Aws::APIGateway
5142
5242
  # resp.endpoint_configuration.types #=> Array
5143
5243
  # resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
5144
5244
  # resp.policy #=> String
5245
+ # resp.tags #=> Hash
5246
+ # resp.tags["String"] #=> String
5145
5247
  #
5146
5248
  # @overload put_rest_api(params = {})
5147
5249
  # @param [Hash] params ({})
@@ -5447,6 +5549,7 @@ module Aws::APIGateway
5447
5549
  # * {Types::ApiKey#created_date #created_date} => Time
5448
5550
  # * {Types::ApiKey#last_updated_date #last_updated_date} => Time
5449
5551
  # * {Types::ApiKey#stage_keys #stage_keys} => Array&lt;String&gt;
5552
+ # * {Types::ApiKey#tags #tags} => Hash&lt;String,String&gt;
5450
5553
  #
5451
5554
  # @example Request syntax with placeholder values
5452
5555
  #
@@ -5474,6 +5577,8 @@ module Aws::APIGateway
5474
5577
  # resp.last_updated_date #=> Time
5475
5578
  # resp.stage_keys #=> Array
5476
5579
  # resp.stage_keys[0] #=> String
5580
+ # resp.tags #=> Hash
5581
+ # resp.tags["String"] #=> String
5477
5582
  #
5478
5583
  # @overload update_api_key(params = {})
5479
5584
  # @param [Hash] params ({})
@@ -5615,6 +5720,7 @@ module Aws::APIGateway
5615
5720
  # * {Types::ClientCertificate#pem_encoded_certificate #pem_encoded_certificate} => String
5616
5721
  # * {Types::ClientCertificate#created_date #created_date} => Time
5617
5722
  # * {Types::ClientCertificate#expiration_date #expiration_date} => Time
5723
+ # * {Types::ClientCertificate#tags #tags} => Hash&lt;String,String&gt;
5618
5724
  #
5619
5725
  # @example Request syntax with placeholder values
5620
5726
  #
@@ -5637,6 +5743,8 @@ module Aws::APIGateway
5637
5743
  # resp.pem_encoded_certificate #=> String
5638
5744
  # resp.created_date #=> Time
5639
5745
  # resp.expiration_date #=> Time
5746
+ # resp.tags #=> Hash
5747
+ # resp.tags["String"] #=> String
5640
5748
  #
5641
5749
  # @overload update_client_certificate(params = {})
5642
5750
  # @param [Hash] params ({})
@@ -5812,6 +5920,7 @@ module Aws::APIGateway
5812
5920
  # * {Types::DomainName#distribution_domain_name #distribution_domain_name} => String
5813
5921
  # * {Types::DomainName#distribution_hosted_zone_id #distribution_hosted_zone_id} => String
5814
5922
  # * {Types::DomainName#endpoint_configuration #endpoint_configuration} => Types::EndpointConfiguration
5923
+ # * {Types::DomainName#tags #tags} => Hash&lt;String,String&gt;
5815
5924
  #
5816
5925
  # @example Request syntax with placeholder values
5817
5926
  #
@@ -5841,6 +5950,8 @@ module Aws::APIGateway
5841
5950
  # resp.distribution_hosted_zone_id #=> String
5842
5951
  # resp.endpoint_configuration.types #=> Array
5843
5952
  # resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
5953
+ # resp.tags #=> Hash
5954
+ # resp.tags["String"] #=> String
5844
5955
  #
5845
5956
  # @overload update_domain_name(params = {})
5846
5957
  # @param [Hash] params ({})
@@ -6434,6 +6545,7 @@ module Aws::APIGateway
6434
6545
  # * {Types::RestApi#api_key_source #api_key_source} => String
6435
6546
  # * {Types::RestApi#endpoint_configuration #endpoint_configuration} => Types::EndpointConfiguration
6436
6547
  # * {Types::RestApi#policy #policy} => String
6548
+ # * {Types::RestApi#tags #tags} => Hash&lt;String,String&gt;
6437
6549
  #
6438
6550
  # @example Request syntax with placeholder values
6439
6551
  #
@@ -6465,6 +6577,8 @@ module Aws::APIGateway
6465
6577
  # resp.endpoint_configuration.types #=> Array
6466
6578
  # resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
6467
6579
  # resp.policy #=> String
6580
+ # resp.tags #=> Hash
6581
+ # resp.tags["String"] #=> String
6468
6582
  #
6469
6583
  # @overload update_rest_api(params = {})
6470
6584
  # @param [Hash] params ({})
@@ -6638,6 +6752,7 @@ module Aws::APIGateway
6638
6752
  # * {Types::UsagePlan#throttle #throttle} => Types::ThrottleSettings
6639
6753
  # * {Types::UsagePlan#quota #quota} => Types::QuotaSettings
6640
6754
  # * {Types::UsagePlan#product_code #product_code} => String
6755
+ # * {Types::UsagePlan#tags #tags} => Hash&lt;String,String&gt;
6641
6756
  #
6642
6757
  # @example Request syntax with placeholder values
6643
6758
  #
@@ -6670,6 +6785,8 @@ module Aws::APIGateway
6670
6785
  # resp.quota.offset #=> Integer
6671
6786
  # resp.quota.period #=> String, one of "DAY", "WEEK", "MONTH"
6672
6787
  # resp.product_code #=> String
6788
+ # resp.tags #=> Hash
6789
+ # resp.tags["String"] #=> String
6673
6790
  #
6674
6791
  # @overload update_usage_plan(params = {})
6675
6792
  # @param [Hash] params ({})
@@ -6696,6 +6813,7 @@ module Aws::APIGateway
6696
6813
  # * {Types::VpcLink#target_arns #target_arns} => Array&lt;String&gt;
6697
6814
  # * {Types::VpcLink#status #status} => String
6698
6815
  # * {Types::VpcLink#status_message #status_message} => String
6816
+ # * {Types::VpcLink#tags #tags} => Hash&lt;String,String&gt;
6699
6817
  #
6700
6818
  # @example Request syntax with placeholder values
6701
6819
  #
@@ -6720,6 +6838,8 @@ module Aws::APIGateway
6720
6838
  # resp.target_arns[0] #=> String
6721
6839
  # resp.status #=> String, one of "AVAILABLE", "PENDING", "DELETING", "FAILED"
6722
6840
  # resp.status_message #=> String
6841
+ # resp.tags #=> Hash
6842
+ # resp.tags["String"] #=> String
6723
6843
  #
6724
6844
  # @overload update_vpc_link(params = {})
6725
6845
  # @param [Hash] params ({})
@@ -6741,7 +6861,7 @@ module Aws::APIGateway
6741
6861
  params: params,
6742
6862
  config: config)
6743
6863
  context[:gem_name] = 'aws-sdk-apigateway'
6744
- context[:gem_version] = '1.29.0'
6864
+ context[:gem_version] = '1.30.0'
6745
6865
  Seahorse::Client::Request.new(handlers, context)
6746
6866
  end
6747
6867
 
@@ -288,6 +288,7 @@ module Aws::APIGateway
288
288
  ApiKey.add_member(:created_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdDate"))
289
289
  ApiKey.add_member(:last_updated_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedDate"))
290
290
  ApiKey.add_member(:stage_keys, Shapes::ShapeRef.new(shape: ListOfString, location_name: "stageKeys"))
291
+ ApiKey.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
291
292
  ApiKey.struct_class = Types::ApiKey
292
293
 
293
294
  ApiKeyIds.add_member(:ids, Shapes::ShapeRef.new(shape: ListOfString, location_name: "ids"))
@@ -343,6 +344,7 @@ module Aws::APIGateway
343
344
  ClientCertificate.add_member(:pem_encoded_certificate, Shapes::ShapeRef.new(shape: String, location_name: "pemEncodedCertificate"))
344
345
  ClientCertificate.add_member(:created_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdDate"))
345
346
  ClientCertificate.add_member(:expiration_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expirationDate"))
347
+ ClientCertificate.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
346
348
  ClientCertificate.struct_class = Types::ClientCertificate
347
349
 
348
350
  ClientCertificates.add_member(:position, Shapes::ShapeRef.new(shape: String, location_name: "position"))
@@ -359,6 +361,7 @@ module Aws::APIGateway
359
361
  CreateApiKeyRequest.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
360
362
  CreateApiKeyRequest.add_member(:stage_keys, Shapes::ShapeRef.new(shape: ListOfStageKeys, location_name: "stageKeys"))
361
363
  CreateApiKeyRequest.add_member(:customer_id, Shapes::ShapeRef.new(shape: String, location_name: "customerId"))
364
+ CreateApiKeyRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
362
365
  CreateApiKeyRequest.struct_class = Types::CreateApiKeyRequest
363
366
 
364
367
  CreateAuthorizerRequest.add_member(:rest_api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "restapi_id"))
@@ -410,6 +413,7 @@ module Aws::APIGateway
410
413
  CreateDomainNameRequest.add_member(:regional_certificate_name, Shapes::ShapeRef.new(shape: String, location_name: "regionalCertificateName"))
411
414
  CreateDomainNameRequest.add_member(:regional_certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "regionalCertificateArn"))
412
415
  CreateDomainNameRequest.add_member(:endpoint_configuration, Shapes::ShapeRef.new(shape: EndpointConfiguration, location_name: "endpointConfiguration"))
416
+ CreateDomainNameRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
413
417
  CreateDomainNameRequest.struct_class = Types::CreateDomainNameRequest
414
418
 
415
419
  CreateModelRequest.add_member(:rest_api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "restapi_id"))
@@ -439,6 +443,7 @@ module Aws::APIGateway
439
443
  CreateRestApiRequest.add_member(:api_key_source, Shapes::ShapeRef.new(shape: ApiKeySourceType, location_name: "apiKeySource"))
440
444
  CreateRestApiRequest.add_member(:endpoint_configuration, Shapes::ShapeRef.new(shape: EndpointConfiguration, location_name: "endpointConfiguration"))
441
445
  CreateRestApiRequest.add_member(:policy, Shapes::ShapeRef.new(shape: String, location_name: "policy"))
446
+ CreateRestApiRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
442
447
  CreateRestApiRequest.struct_class = Types::CreateRestApiRequest
443
448
 
444
449
  CreateStageRequest.add_member(:rest_api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "restapi_id"))
@@ -464,11 +469,13 @@ module Aws::APIGateway
464
469
  CreateUsagePlanRequest.add_member(:api_stages, Shapes::ShapeRef.new(shape: ListOfApiStage, location_name: "apiStages"))
465
470
  CreateUsagePlanRequest.add_member(:throttle, Shapes::ShapeRef.new(shape: ThrottleSettings, location_name: "throttle"))
466
471
  CreateUsagePlanRequest.add_member(:quota, Shapes::ShapeRef.new(shape: QuotaSettings, location_name: "quota"))
472
+ CreateUsagePlanRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
467
473
  CreateUsagePlanRequest.struct_class = Types::CreateUsagePlanRequest
468
474
 
469
475
  CreateVpcLinkRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
470
476
  CreateVpcLinkRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
471
477
  CreateVpcLinkRequest.add_member(:target_arns, Shapes::ShapeRef.new(shape: ListOfString, required: true, location_name: "targetArns"))
478
+ CreateVpcLinkRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
472
479
  CreateVpcLinkRequest.struct_class = Types::CreateVpcLinkRequest
473
480
 
474
481
  DeleteApiKeyRequest.add_member(:api_key, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "api_Key"))
@@ -610,6 +617,7 @@ module Aws::APIGateway
610
617
  DomainName.add_member(:distribution_domain_name, Shapes::ShapeRef.new(shape: String, location_name: "distributionDomainName"))
611
618
  DomainName.add_member(:distribution_hosted_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "distributionHostedZoneId"))
612
619
  DomainName.add_member(:endpoint_configuration, Shapes::ShapeRef.new(shape: EndpointConfiguration, location_name: "endpointConfiguration"))
620
+ DomainName.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
613
621
  DomainName.struct_class = Types::DomainName
614
622
 
615
623
  DomainNames.add_member(:position, Shapes::ShapeRef.new(shape: String, location_name: "position"))
@@ -646,6 +654,7 @@ module Aws::APIGateway
646
654
  GatewayResponses.struct_class = Types::GatewayResponses
647
655
 
648
656
  GenerateClientCertificateRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
657
+ GenerateClientCertificateRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
649
658
  GenerateClientCertificateRequest.struct_class = Types::GenerateClientCertificateRequest
650
659
 
651
660
  GetAccountRequest.struct_class = Types::GetAccountRequest
@@ -1155,6 +1164,7 @@ module Aws::APIGateway
1155
1164
  RestApi.add_member(:api_key_source, Shapes::ShapeRef.new(shape: ApiKeySourceType, location_name: "apiKeySource"))
1156
1165
  RestApi.add_member(:endpoint_configuration, Shapes::ShapeRef.new(shape: EndpointConfiguration, location_name: "endpointConfiguration"))
1157
1166
  RestApi.add_member(:policy, Shapes::ShapeRef.new(shape: String, location_name: "policy"))
1167
+ RestApi.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
1158
1168
  RestApi.struct_class = Types::RestApi
1159
1169
 
1160
1170
  RestApis.add_member(:position, Shapes::ShapeRef.new(shape: String, location_name: "position"))
@@ -1400,6 +1410,7 @@ module Aws::APIGateway
1400
1410
  UsagePlan.add_member(:throttle, Shapes::ShapeRef.new(shape: ThrottleSettings, location_name: "throttle"))
1401
1411
  UsagePlan.add_member(:quota, Shapes::ShapeRef.new(shape: QuotaSettings, location_name: "quota"))
1402
1412
  UsagePlan.add_member(:product_code, Shapes::ShapeRef.new(shape: String, location_name: "productCode"))
1413
+ UsagePlan.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
1403
1414
  UsagePlan.struct_class = Types::UsagePlan
1404
1415
 
1405
1416
  UsagePlanKey.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
@@ -1422,6 +1433,7 @@ module Aws::APIGateway
1422
1433
  VpcLink.add_member(:target_arns, Shapes::ShapeRef.new(shape: ListOfString, location_name: "targetArns"))
1423
1434
  VpcLink.add_member(:status, Shapes::ShapeRef.new(shape: VpcLinkStatus, location_name: "status"))
1424
1435
  VpcLink.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
1436
+ VpcLink.add_member(:tags, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "tags"))
1425
1437
  VpcLink.struct_class = Types::VpcLink
1426
1438
 
1427
1439
  VpcLinks.add_member(:position, Shapes::ShapeRef.new(shape: String, location_name: "position"))
@@ -152,6 +152,11 @@ module Aws::APIGateway
152
152
  # resource.
153
153
  # @return [Array<String>]
154
154
  #
155
+ # @!attribute [rw] tags
156
+ # The collection of tags. Each tag element is associated with a given
157
+ # resource.
158
+ # @return [Hash<String,String>]
159
+ #
155
160
  class ApiKey < Struct.new(
156
161
  :id,
157
162
  :value,
@@ -161,7 +166,8 @@ module Aws::APIGateway
161
166
  :enabled,
162
167
  :created_date,
163
168
  :last_updated_date,
164
- :stage_keys)
169
+ :stage_keys,
170
+ :tags)
165
171
  include Aws::Structure
166
172
  end
167
173
 
@@ -537,12 +543,18 @@ module Aws::APIGateway
537
543
  # The timestamp when the client certificate will expire.
538
544
  # @return [Time]
539
545
  #
546
+ # @!attribute [rw] tags
547
+ # The collection of tags. Each tag element is associated with a given
548
+ # resource.
549
+ # @return [Hash<String,String>]
550
+ #
540
551
  class ClientCertificate < Struct.new(
541
552
  :client_certificate_id,
542
553
  :description,
543
554
  :pem_encoded_certificate,
544
555
  :created_date,
545
- :expiration_date)
556
+ :expiration_date,
557
+ :tags)
546
558
  include Aws::Structure
547
559
  end
548
560
 
@@ -598,6 +610,9 @@ module Aws::APIGateway
598
610
  # },
599
611
  # ],
600
612
  # customer_id: "String",
613
+ # tags: {
614
+ # "String" => "String",
615
+ # },
601
616
  # }
602
617
  #
603
618
  # @!attribute [rw] name
@@ -631,6 +646,12 @@ module Aws::APIGateway
631
646
  # AWS SaaS Marketplace.
632
647
  # @return [String]
633
648
  #
649
+ # @!attribute [rw] tags
650
+ # The key-value map of strings. The valid character set is
651
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
652
+ # not start with `aws:`. The tag value can be up to 256 characters.
653
+ # @return [Hash<String,String>]
654
+ #
634
655
  class CreateApiKeyRequest < Struct.new(
635
656
  :name,
636
657
  :description,
@@ -638,7 +659,8 @@ module Aws::APIGateway
638
659
  :generate_distinct_id,
639
660
  :value,
640
661
  :stage_keys,
641
- :customer_id)
662
+ :customer_id,
663
+ :tags)
642
664
  include Aws::Structure
643
665
  end
644
666
 
@@ -982,6 +1004,9 @@ module Aws::APIGateway
982
1004
  # endpoint_configuration: {
983
1005
  # types: ["REGIONAL"], # accepts REGIONAL, EDGE, PRIVATE
984
1006
  # },
1007
+ # tags: {
1008
+ # "String" => "String",
1009
+ # },
985
1010
  # }
986
1011
  #
987
1012
  # @!attribute [rw] domain_name
@@ -1037,6 +1062,12 @@ module Aws::APIGateway
1037
1062
  # types of the domain name.
1038
1063
  # @return [Types::EndpointConfiguration]
1039
1064
  #
1065
+ # @!attribute [rw] tags
1066
+ # The key-value map of strings. The valid character set is
1067
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
1068
+ # not start with `aws:`. The tag value can be up to 256 characters.
1069
+ # @return [Hash<String,String>]
1070
+ #
1040
1071
  class CreateDomainNameRequest < Struct.new(
1041
1072
  :domain_name,
1042
1073
  :certificate_name,
@@ -1046,7 +1077,8 @@ module Aws::APIGateway
1046
1077
  :certificate_arn,
1047
1078
  :regional_certificate_name,
1048
1079
  :regional_certificate_arn,
1049
- :endpoint_configuration)
1080
+ :endpoint_configuration,
1081
+ :tags)
1050
1082
  include Aws::Structure
1051
1083
  end
1052
1084
 
@@ -1184,6 +1216,9 @@ module Aws::APIGateway
1184
1216
  # types: ["REGIONAL"], # accepts REGIONAL, EDGE, PRIVATE
1185
1217
  # },
1186
1218
  # policy: "String",
1219
+ # tags: {
1220
+ # "String" => "String",
1221
+ # },
1187
1222
  # }
1188
1223
  #
1189
1224
  # @!attribute [rw] name
@@ -1234,6 +1269,12 @@ module Aws::APIGateway
1234
1269
  # A stringified JSON policy document that applies to this RestApi regardless of the caller and Method configuration.
1235
1270
  # @return [String]
1236
1271
  #
1272
+ # @!attribute [rw] tags
1273
+ # The key-value map of strings. The valid character set is
1274
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
1275
+ # not start with `aws:`. The tag value can be up to 256 characters.
1276
+ # @return [Hash<String,String>]
1277
+ #
1237
1278
  class CreateRestApiRequest < Struct.new(
1238
1279
  :name,
1239
1280
  :description,
@@ -1243,7 +1284,8 @@ module Aws::APIGateway
1243
1284
  :minimum_compression_size,
1244
1285
  :api_key_source,
1245
1286
  :endpoint_configuration,
1246
- :policy)
1287
+ :policy,
1288
+ :tags)
1247
1289
  include Aws::Structure
1248
1290
  end
1249
1291
 
@@ -1408,6 +1450,9 @@ module Aws::APIGateway
1408
1450
  # offset: 1,
1409
1451
  # period: "DAY", # accepts DAY, WEEK, MONTH
1410
1452
  # },
1453
+ # tags: {
1454
+ # "String" => "String",
1455
+ # },
1411
1456
  # }
1412
1457
  #
1413
1458
  # @!attribute [rw] name
@@ -1430,12 +1475,19 @@ module Aws::APIGateway
1430
1475
  # The quota of the usage plan.
1431
1476
  # @return [Types::QuotaSettings]
1432
1477
  #
1478
+ # @!attribute [rw] tags
1479
+ # The key-value map of strings. The valid character set is
1480
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
1481
+ # not start with `aws:`. The tag value can be up to 256 characters.
1482
+ # @return [Hash<String,String>]
1483
+ #
1433
1484
  class CreateUsagePlanRequest < Struct.new(
1434
1485
  :name,
1435
1486
  :description,
1436
1487
  :api_stages,
1437
1488
  :throttle,
1438
- :quota)
1489
+ :quota,
1490
+ :tags)
1439
1491
  include Aws::Structure
1440
1492
  end
1441
1493
 
@@ -1451,6 +1503,9 @@ module Aws::APIGateway
1451
1503
  # name: "String", # required
1452
1504
  # description: "String",
1453
1505
  # target_arns: ["String"], # required
1506
+ # tags: {
1507
+ # "String" => "String",
1508
+ # },
1454
1509
  # }
1455
1510
  #
1456
1511
  # @!attribute [rw] name
@@ -1467,10 +1522,17 @@ module Aws::APIGateway
1467
1522
  # same AWS account of the API owner.
1468
1523
  # @return [Array<String>]
1469
1524
  #
1525
+ # @!attribute [rw] tags
1526
+ # The key-value map of strings. The valid character set is
1527
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
1528
+ # not start with `aws:`. The tag value can be up to 256 characters.
1529
+ # @return [Hash<String,String>]
1530
+ #
1470
1531
  class CreateVpcLinkRequest < Struct.new(
1471
1532
  :name,
1472
1533
  :description,
1473
- :target_arns)
1534
+ :target_arns,
1535
+ :tags)
1474
1536
  include Aws::Structure
1475
1537
  end
1476
1538
 
@@ -2492,6 +2554,11 @@ module Aws::APIGateway
2492
2554
  # types of the domain name.
2493
2555
  # @return [Types::EndpointConfiguration]
2494
2556
  #
2557
+ # @!attribute [rw] tags
2558
+ # The collection of tags. Each tag element is associated with a given
2559
+ # resource.
2560
+ # @return [Hash<String,String>]
2561
+ #
2495
2562
  class DomainName < Struct.new(
2496
2563
  :domain_name,
2497
2564
  :certificate_name,
@@ -2503,7 +2570,8 @@ module Aws::APIGateway
2503
2570
  :regional_certificate_arn,
2504
2571
  :distribution_domain_name,
2505
2572
  :distribution_hosted_zone_id,
2506
- :endpoint_configuration)
2573
+ :endpoint_configuration,
2574
+ :tags)
2507
2575
  include Aws::Structure
2508
2576
  end
2509
2577
 
@@ -2777,14 +2845,24 @@ module Aws::APIGateway
2777
2845
  #
2778
2846
  # {
2779
2847
  # description: "String",
2848
+ # tags: {
2849
+ # "String" => "String",
2850
+ # },
2780
2851
  # }
2781
2852
  #
2782
2853
  # @!attribute [rw] description
2783
2854
  # The description of the ClientCertificate.
2784
2855
  # @return [String]
2785
2856
  #
2857
+ # @!attribute [rw] tags
2858
+ # The key-value map of strings. The valid character set is
2859
+ # \[a-zA-Z+-=.\_:/\]. The tag key can be up to 128 characters and must
2860
+ # not start with `aws:`. The tag value can be up to 256 characters.
2861
+ # @return [Hash<String,String>]
2862
+ #
2786
2863
  class GenerateClientCertificateRequest < Struct.new(
2787
- :description)
2864
+ :description,
2865
+ :tags)
2788
2866
  include Aws::Structure
2789
2867
  end
2790
2868
 
@@ -6088,6 +6166,11 @@ module Aws::APIGateway
6088
6166
  # A stringified JSON policy document that applies to this RestApi regardless of the caller and Method configuration.
6089
6167
  # @return [String]
6090
6168
  #
6169
+ # @!attribute [rw] tags
6170
+ # The collection of tags. Each tag element is associated with a given
6171
+ # resource.
6172
+ # @return [Hash<String,String>]
6173
+ #
6091
6174
  class RestApi < Struct.new(
6092
6175
  :id,
6093
6176
  :name,
@@ -6099,7 +6182,8 @@ module Aws::APIGateway
6099
6182
  :minimum_compression_size,
6100
6183
  :api_key_source,
6101
6184
  :endpoint_configuration,
6102
- :policy)
6185
+ :policy,
6186
+ :tags)
6103
6187
  include Aws::Structure
6104
6188
  end
6105
6189
 
@@ -7745,6 +7829,11 @@ module Aws::APIGateway
7745
7829
  # plan as a SaaS product on AWS Marketplace.
7746
7830
  # @return [String]
7747
7831
  #
7832
+ # @!attribute [rw] tags
7833
+ # The collection of tags. Each tag element is associated with a given
7834
+ # resource.
7835
+ # @return [Hash<String,String>]
7836
+ #
7748
7837
  class UsagePlan < Struct.new(
7749
7838
  :id,
7750
7839
  :name,
@@ -7752,7 +7841,8 @@ module Aws::APIGateway
7752
7841
  :api_stages,
7753
7842
  :throttle,
7754
7843
  :quota,
7755
- :product_code)
7844
+ :product_code,
7845
+ :tags)
7756
7846
  include Aws::Structure
7757
7847
  end
7758
7848
 
@@ -7888,13 +7978,19 @@ module Aws::APIGateway
7888
7978
  # A description about the VPC link status.
7889
7979
  # @return [String]
7890
7980
  #
7981
+ # @!attribute [rw] tags
7982
+ # The collection of tags. Each tag element is associated with a given
7983
+ # resource.
7984
+ # @return [Hash<String,String>]
7985
+ #
7891
7986
  class VpcLink < Struct.new(
7892
7987
  :id,
7893
7988
  :name,
7894
7989
  :description,
7895
7990
  :target_arns,
7896
7991
  :status,
7897
- :status_message)
7992
+ :status_message,
7993
+ :tags)
7898
7994
  include Aws::Structure
7899
7995
  end
7900
7996
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-apigateway
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.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: 2019-05-21 00:00:00.000000000 Z
11
+ date: 2019-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core