aws-sdk-apigatewayv2 1.34.0 → 1.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigatewayv2/client.rb +22 -7
- data/lib/aws-sdk-apigatewayv2/client_api.rb +1 -0
- data/lib/aws-sdk-apigatewayv2/types.rb +19 -7
- data/lib/aws-sdk-apigatewayv2.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54d78b7f0b18f52ec05b298c6cc5b1b2d2666ad2c52823e342e1c21d8da39713
|
4
|
+
data.tar.gz: f856c10909a047ac780b7c900d0a371f53ef49c69a1af6bcf7d3a62a2507cb0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 577a035f5e14bd42f97eb47e5d5459196fe67d9f6eb212b2990ca64a957710ad0d61908fce5b0966890681a49512be9b2b9b62a7d8c99d412fb1c65fafcd84af
|
7
|
+
data.tar.gz: '0983a1a6507adbf80847c6e3919bdc2d9858d701575635f8d7c2d89a17f1dbf1bd631ba881ab7bc92463cd3277594ffeb458a1d156b903daec5c3edc91d43036'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.38.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.37.0 (2021-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.36.0 (2021-09-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.35.0 (2021-08-12)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Adding support for ACM imported or private CA certificates for mTLS enabled domain names
|
23
|
+
|
4
24
|
1.34.0 (2021-07-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.38.0
|
@@ -275,6 +275,15 @@ module Aws::ApiGatewayV2
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -706,11 +715,12 @@ module Aws::ApiGatewayV2
|
|
706
715
|
# certificate_arn: "Arn",
|
707
716
|
# certificate_name: "StringWithLengthBetween1And128",
|
708
717
|
# certificate_upload_date: Time.now,
|
709
|
-
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING
|
718
|
+
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING, PENDING_CERTIFICATE_REIMPORT, PENDING_OWNERSHIP_VERIFICATION
|
710
719
|
# domain_name_status_message: "__string",
|
711
720
|
# endpoint_type: "REGIONAL", # accepts REGIONAL, EDGE
|
712
721
|
# hosted_zone_id: "__string",
|
713
722
|
# security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2
|
723
|
+
# ownership_verification_certificate_arn: "Arn",
|
714
724
|
# },
|
715
725
|
# ],
|
716
726
|
# mutual_tls_authentication: {
|
@@ -731,11 +741,12 @@ module Aws::ApiGatewayV2
|
|
731
741
|
# resp.domain_name_configurations[0].certificate_arn #=> String
|
732
742
|
# resp.domain_name_configurations[0].certificate_name #=> String
|
733
743
|
# resp.domain_name_configurations[0].certificate_upload_date #=> Time
|
734
|
-
# resp.domain_name_configurations[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING"
|
744
|
+
# resp.domain_name_configurations[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
735
745
|
# resp.domain_name_configurations[0].domain_name_status_message #=> String
|
736
746
|
# resp.domain_name_configurations[0].endpoint_type #=> String, one of "REGIONAL", "EDGE"
|
737
747
|
# resp.domain_name_configurations[0].hosted_zone_id #=> String
|
738
748
|
# resp.domain_name_configurations[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
749
|
+
# resp.domain_name_configurations[0].ownership_verification_certificate_arn #=> String
|
739
750
|
# resp.mutual_tls_authentication.truststore_uri #=> String
|
740
751
|
# resp.mutual_tls_authentication.truststore_version #=> String
|
741
752
|
# resp.mutual_tls_authentication.truststore_warnings #=> Array
|
@@ -2294,11 +2305,12 @@ module Aws::ApiGatewayV2
|
|
2294
2305
|
# resp.domain_name_configurations[0].certificate_arn #=> String
|
2295
2306
|
# resp.domain_name_configurations[0].certificate_name #=> String
|
2296
2307
|
# resp.domain_name_configurations[0].certificate_upload_date #=> Time
|
2297
|
-
# resp.domain_name_configurations[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING"
|
2308
|
+
# resp.domain_name_configurations[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
2298
2309
|
# resp.domain_name_configurations[0].domain_name_status_message #=> String
|
2299
2310
|
# resp.domain_name_configurations[0].endpoint_type #=> String, one of "REGIONAL", "EDGE"
|
2300
2311
|
# resp.domain_name_configurations[0].hosted_zone_id #=> String
|
2301
2312
|
# resp.domain_name_configurations[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
2313
|
+
# resp.domain_name_configurations[0].ownership_verification_certificate_arn #=> String
|
2302
2314
|
# resp.mutual_tls_authentication.truststore_uri #=> String
|
2303
2315
|
# resp.mutual_tls_authentication.truststore_version #=> String
|
2304
2316
|
# resp.mutual_tls_authentication.truststore_warnings #=> Array
|
@@ -2341,11 +2353,12 @@ module Aws::ApiGatewayV2
|
|
2341
2353
|
# resp.items[0].domain_name_configurations[0].certificate_arn #=> String
|
2342
2354
|
# resp.items[0].domain_name_configurations[0].certificate_name #=> String
|
2343
2355
|
# resp.items[0].domain_name_configurations[0].certificate_upload_date #=> Time
|
2344
|
-
# resp.items[0].domain_name_configurations[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING"
|
2356
|
+
# resp.items[0].domain_name_configurations[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
2345
2357
|
# resp.items[0].domain_name_configurations[0].domain_name_status_message #=> String
|
2346
2358
|
# resp.items[0].domain_name_configurations[0].endpoint_type #=> String, one of "REGIONAL", "EDGE"
|
2347
2359
|
# resp.items[0].domain_name_configurations[0].hosted_zone_id #=> String
|
2348
2360
|
# resp.items[0].domain_name_configurations[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
2361
|
+
# resp.items[0].domain_name_configurations[0].ownership_verification_certificate_arn #=> String
|
2349
2362
|
# resp.items[0].mutual_tls_authentication.truststore_uri #=> String
|
2350
2363
|
# resp.items[0].mutual_tls_authentication.truststore_version #=> String
|
2351
2364
|
# resp.items[0].mutual_tls_authentication.truststore_warnings #=> Array
|
@@ -3671,11 +3684,12 @@ module Aws::ApiGatewayV2
|
|
3671
3684
|
# certificate_arn: "Arn",
|
3672
3685
|
# certificate_name: "StringWithLengthBetween1And128",
|
3673
3686
|
# certificate_upload_date: Time.now,
|
3674
|
-
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING
|
3687
|
+
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING, PENDING_CERTIFICATE_REIMPORT, PENDING_OWNERSHIP_VERIFICATION
|
3675
3688
|
# domain_name_status_message: "__string",
|
3676
3689
|
# endpoint_type: "REGIONAL", # accepts REGIONAL, EDGE
|
3677
3690
|
# hosted_zone_id: "__string",
|
3678
3691
|
# security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2
|
3692
|
+
# ownership_verification_certificate_arn: "Arn",
|
3679
3693
|
# },
|
3680
3694
|
# ],
|
3681
3695
|
# mutual_tls_authentication: {
|
@@ -3693,11 +3707,12 @@ module Aws::ApiGatewayV2
|
|
3693
3707
|
# resp.domain_name_configurations[0].certificate_arn #=> String
|
3694
3708
|
# resp.domain_name_configurations[0].certificate_name #=> String
|
3695
3709
|
# resp.domain_name_configurations[0].certificate_upload_date #=> Time
|
3696
|
-
# resp.domain_name_configurations[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING"
|
3710
|
+
# resp.domain_name_configurations[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
3697
3711
|
# resp.domain_name_configurations[0].domain_name_status_message #=> String
|
3698
3712
|
# resp.domain_name_configurations[0].endpoint_type #=> String, one of "REGIONAL", "EDGE"
|
3699
3713
|
# resp.domain_name_configurations[0].hosted_zone_id #=> String
|
3700
3714
|
# resp.domain_name_configurations[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
|
3715
|
+
# resp.domain_name_configurations[0].ownership_verification_certificate_arn #=> String
|
3701
3716
|
# resp.mutual_tls_authentication.truststore_uri #=> String
|
3702
3717
|
# resp.mutual_tls_authentication.truststore_version #=> String
|
3703
3718
|
# resp.mutual_tls_authentication.truststore_warnings #=> Array
|
@@ -4451,7 +4466,7 @@ module Aws::ApiGatewayV2
|
|
4451
4466
|
params: params,
|
4452
4467
|
config: config)
|
4453
4468
|
context[:gem_name] = 'aws-sdk-apigatewayv2'
|
4454
|
-
context[:gem_version] = '1.
|
4469
|
+
context[:gem_version] = '1.38.0'
|
4455
4470
|
Seahorse::Client::Request.new(handlers, context)
|
4456
4471
|
end
|
4457
4472
|
|
@@ -821,6 +821,7 @@ module Aws::ApiGatewayV2
|
|
821
821
|
DomainNameConfiguration.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: EndpointType, location_name: "endpointType"))
|
822
822
|
DomainNameConfiguration.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: __string, location_name: "hostedZoneId"))
|
823
823
|
DomainNameConfiguration.add_member(:security_policy, Shapes::ShapeRef.new(shape: SecurityPolicy, location_name: "securityPolicy"))
|
824
|
+
DomainNameConfiguration.add_member(:ownership_verification_certificate_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ownershipVerificationCertificateArn"))
|
824
825
|
DomainNameConfiguration.struct_class = Types::DomainNameConfiguration
|
825
826
|
|
826
827
|
DomainNameConfigurations.member = Shapes::ShapeRef.new(shape: DomainNameConfiguration)
|
@@ -1272,11 +1272,12 @@ module Aws::ApiGatewayV2
|
|
1272
1272
|
# certificate_arn: "Arn",
|
1273
1273
|
# certificate_name: "StringWithLengthBetween1And128",
|
1274
1274
|
# certificate_upload_date: Time.now,
|
1275
|
-
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING
|
1275
|
+
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING, PENDING_CERTIFICATE_REIMPORT, PENDING_OWNERSHIP_VERIFICATION
|
1276
1276
|
# domain_name_status_message: "__string",
|
1277
1277
|
# endpoint_type: "REGIONAL", # accepts REGIONAL, EDGE
|
1278
1278
|
# hosted_zone_id: "__string",
|
1279
1279
|
# security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2
|
1280
|
+
# ownership_verification_certificate_arn: "Arn",
|
1280
1281
|
# },
|
1281
1282
|
# ],
|
1282
1283
|
# mutual_tls_authentication: {
|
@@ -3441,11 +3442,12 @@ module Aws::ApiGatewayV2
|
|
3441
3442
|
# certificate_arn: "Arn",
|
3442
3443
|
# certificate_name: "StringWithLengthBetween1And128",
|
3443
3444
|
# certificate_upload_date: Time.now,
|
3444
|
-
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING
|
3445
|
+
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING, PENDING_CERTIFICATE_REIMPORT, PENDING_OWNERSHIP_VERIFICATION
|
3445
3446
|
# domain_name_status_message: "__string",
|
3446
3447
|
# endpoint_type: "REGIONAL", # accepts REGIONAL, EDGE
|
3447
3448
|
# hosted_zone_id: "__string",
|
3448
3449
|
# security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2
|
3450
|
+
# ownership_verification_certificate_arn: "Arn",
|
3449
3451
|
# }
|
3450
3452
|
#
|
3451
3453
|
# @!attribute [rw] api_gateway_domain_name
|
@@ -3470,9 +3472,10 @@ module Aws::ApiGatewayV2
|
|
3470
3472
|
#
|
3471
3473
|
# @!attribute [rw] domain_name_status
|
3472
3474
|
# The status of the domain name migration. The valid values are
|
3473
|
-
# AVAILABLE
|
3474
|
-
#
|
3475
|
-
#
|
3475
|
+
# AVAILABLE, UPDATING, PENDING\_CERTIFICATE\_REIMPORT, and
|
3476
|
+
# PENDING\_OWNERSHIP\_VERIFICATION. If the status is UPDATING, the
|
3477
|
+
# domain cannot be modified further until the existing operation is
|
3478
|
+
# complete. If it is AVAILABLE, the domain can be updated.
|
3476
3479
|
# @return [String]
|
3477
3480
|
#
|
3478
3481
|
# @!attribute [rw] domain_name_status_message
|
@@ -3493,6 +3496,13 @@ module Aws::ApiGatewayV2
|
|
3493
3496
|
# for this domain name. The valid values are TLS\_1\_0 and TLS\_1\_2.
|
3494
3497
|
# @return [String]
|
3495
3498
|
#
|
3499
|
+
# @!attribute [rw] ownership_verification_certificate_arn
|
3500
|
+
# The ARN of the public certificate issued by ACM to validate
|
3501
|
+
# ownership of your custom domain. Only required when configuring
|
3502
|
+
# mutual TLS and using an ACM imported or private CA certificate ARN
|
3503
|
+
# as the regionalCertificateArn
|
3504
|
+
# @return [String]
|
3505
|
+
#
|
3496
3506
|
class DomainNameConfiguration < Struct.new(
|
3497
3507
|
:api_gateway_domain_name,
|
3498
3508
|
:certificate_arn,
|
@@ -3502,7 +3512,8 @@ module Aws::ApiGatewayV2
|
|
3502
3512
|
:domain_name_status_message,
|
3503
3513
|
:endpoint_type,
|
3504
3514
|
:hosted_zone_id,
|
3505
|
-
:security_policy
|
3515
|
+
:security_policy,
|
3516
|
+
:ownership_verification_certificate_arn)
|
3506
3517
|
SENSITIVE = []
|
3507
3518
|
include Aws::Structure
|
3508
3519
|
end
|
@@ -7255,11 +7266,12 @@ module Aws::ApiGatewayV2
|
|
7255
7266
|
# certificate_arn: "Arn",
|
7256
7267
|
# certificate_name: "StringWithLengthBetween1And128",
|
7257
7268
|
# certificate_upload_date: Time.now,
|
7258
|
-
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING
|
7269
|
+
# domain_name_status: "AVAILABLE", # accepts AVAILABLE, UPDATING, PENDING_CERTIFICATE_REIMPORT, PENDING_OWNERSHIP_VERIFICATION
|
7259
7270
|
# domain_name_status_message: "__string",
|
7260
7271
|
# endpoint_type: "REGIONAL", # accepts REGIONAL, EDGE
|
7261
7272
|
# hosted_zone_id: "__string",
|
7262
7273
|
# security_policy: "TLS_1_0", # accepts TLS_1_0, TLS_1_2
|
7274
|
+
# ownership_verification_certificate_arn: "Arn",
|
7263
7275
|
# },
|
7264
7276
|
# ],
|
7265
7277
|
# mutual_tls_authentication: {
|
data/lib/aws-sdk-apigatewayv2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-apigatewayv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-04 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.
|
22
|
+
version: 3.122.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|