aws-sdk-apigateway 1.109.0 → 1.111.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigateway/client.rb +261 -6
- data/lib/aws-sdk-apigateway/client_api.rb +105 -0
- data/lib/aws-sdk-apigateway/types.rb +231 -15
- data/lib/aws-sdk-apigateway.rb +1 -1
- data/sig/client.rbs +71 -4
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +55 -0
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -151,6 +151,7 @@ module Aws::APIGateway
|
|
151
151
|
|
152
152
|
class CreateBasePathMappingRequest
|
153
153
|
attr_accessor domain_name: ::String
|
154
|
+
attr_accessor domain_name_id: ::String
|
154
155
|
attr_accessor base_path: ::String
|
155
156
|
attr_accessor rest_api_id: ::String
|
156
157
|
attr_accessor stage: ::String
|
@@ -185,6 +186,14 @@ module Aws::APIGateway
|
|
185
186
|
SENSITIVE: []
|
186
187
|
end
|
187
188
|
|
189
|
+
class CreateDomainNameAccessAssociationRequest
|
190
|
+
attr_accessor domain_name_arn: ::String
|
191
|
+
attr_accessor access_association_source_type: ("VPCE")
|
192
|
+
attr_accessor access_association_source: ::String
|
193
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
188
197
|
class CreateDomainNameRequest
|
189
198
|
attr_accessor domain_name: ::String
|
190
199
|
attr_accessor certificate_name: ::String
|
@@ -199,6 +208,7 @@ module Aws::APIGateway
|
|
199
208
|
attr_accessor security_policy: ("TLS_1_0" | "TLS_1_2")
|
200
209
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
201
210
|
attr_accessor ownership_verification_certificate_arn: ::String
|
211
|
+
attr_accessor policy: ::String
|
202
212
|
SENSITIVE: []
|
203
213
|
end
|
204
214
|
|
@@ -294,6 +304,7 @@ module Aws::APIGateway
|
|
294
304
|
|
295
305
|
class DeleteBasePathMappingRequest
|
296
306
|
attr_accessor domain_name: ::String
|
307
|
+
attr_accessor domain_name_id: ::String
|
297
308
|
attr_accessor base_path: ::String
|
298
309
|
SENSITIVE: []
|
299
310
|
end
|
@@ -321,8 +332,14 @@ module Aws::APIGateway
|
|
321
332
|
SENSITIVE: []
|
322
333
|
end
|
323
334
|
|
335
|
+
class DeleteDomainNameAccessAssociationRequest
|
336
|
+
attr_accessor domain_name_access_association_arn: ::String
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
324
340
|
class DeleteDomainNameRequest
|
325
341
|
attr_accessor domain_name: ::String
|
342
|
+
attr_accessor domain_name_id: ::String
|
326
343
|
SENSITIVE: []
|
327
344
|
end
|
328
345
|
|
@@ -471,6 +488,8 @@ module Aws::APIGateway
|
|
471
488
|
|
472
489
|
class DomainName
|
473
490
|
attr_accessor domain_name: ::String
|
491
|
+
attr_accessor domain_name_id: ::String
|
492
|
+
attr_accessor domain_name_arn: ::String
|
474
493
|
attr_accessor certificate_name: ::String
|
475
494
|
attr_accessor certificate_arn: ::String
|
476
495
|
attr_accessor certificate_upload_date: ::Time
|
@@ -487,6 +506,23 @@ module Aws::APIGateway
|
|
487
506
|
attr_accessor tags: ::Hash[::String, ::String]
|
488
507
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
489
508
|
attr_accessor ownership_verification_certificate_arn: ::String
|
509
|
+
attr_accessor management_policy: ::String
|
510
|
+
attr_accessor policy: ::String
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class DomainNameAccessAssociation
|
515
|
+
attr_accessor domain_name_access_association_arn: ::String
|
516
|
+
attr_accessor domain_name_arn: ::String
|
517
|
+
attr_accessor access_association_source_type: ("VPCE")
|
518
|
+
attr_accessor access_association_source: ::String
|
519
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class DomainNameAccessAssociations
|
524
|
+
attr_accessor position: ::String
|
525
|
+
attr_accessor items: ::Array[Types::DomainNameAccessAssociation]
|
490
526
|
SENSITIVE: []
|
491
527
|
end
|
492
528
|
|
@@ -575,12 +611,14 @@ module Aws::APIGateway
|
|
575
611
|
|
576
612
|
class GetBasePathMappingRequest
|
577
613
|
attr_accessor domain_name: ::String
|
614
|
+
attr_accessor domain_name_id: ::String
|
578
615
|
attr_accessor base_path: ::String
|
579
616
|
SENSITIVE: []
|
580
617
|
end
|
581
618
|
|
582
619
|
class GetBasePathMappingsRequest
|
583
620
|
attr_accessor domain_name: ::String
|
621
|
+
attr_accessor domain_name_id: ::String
|
584
622
|
attr_accessor position: ::String
|
585
623
|
attr_accessor limit: ::Integer
|
586
624
|
SENSITIVE: []
|
@@ -641,14 +679,23 @@ module Aws::APIGateway
|
|
641
679
|
SENSITIVE: []
|
642
680
|
end
|
643
681
|
|
682
|
+
class GetDomainNameAccessAssociationsRequest
|
683
|
+
attr_accessor position: ::String
|
684
|
+
attr_accessor limit: ::Integer
|
685
|
+
attr_accessor resource_owner: ("SELF" | "OTHER_ACCOUNTS")
|
686
|
+
SENSITIVE: []
|
687
|
+
end
|
688
|
+
|
644
689
|
class GetDomainNameRequest
|
645
690
|
attr_accessor domain_name: ::String
|
691
|
+
attr_accessor domain_name_id: ::String
|
646
692
|
SENSITIVE: []
|
647
693
|
end
|
648
694
|
|
649
695
|
class GetDomainNamesRequest
|
650
696
|
attr_accessor position: ::String
|
651
697
|
attr_accessor limit: ::Integer
|
698
|
+
attr_accessor resource_owner: ("SELF" | "OTHER_ACCOUNTS")
|
652
699
|
SENSITIVE: []
|
653
700
|
end
|
654
701
|
|
@@ -1070,6 +1117,12 @@ module Aws::APIGateway
|
|
1070
1117
|
SENSITIVE: []
|
1071
1118
|
end
|
1072
1119
|
|
1120
|
+
class RejectDomainNameAccessAssociationRequest
|
1121
|
+
attr_accessor domain_name_access_association_arn: ::String
|
1122
|
+
attr_accessor domain_name_arn: ::String
|
1123
|
+
SENSITIVE: []
|
1124
|
+
end
|
1125
|
+
|
1073
1126
|
class RequestValidator
|
1074
1127
|
attr_accessor id: ::String
|
1075
1128
|
attr_accessor name: ::String
|
@@ -1301,6 +1354,7 @@ module Aws::APIGateway
|
|
1301
1354
|
|
1302
1355
|
class UpdateBasePathMappingRequest
|
1303
1356
|
attr_accessor domain_name: ::String
|
1357
|
+
attr_accessor domain_name_id: ::String
|
1304
1358
|
attr_accessor base_path: ::String
|
1305
1359
|
attr_accessor patch_operations: ::Array[Types::PatchOperation]
|
1306
1360
|
SENSITIVE: []
|
@@ -1335,6 +1389,7 @@ module Aws::APIGateway
|
|
1335
1389
|
|
1336
1390
|
class UpdateDomainNameRequest
|
1337
1391
|
attr_accessor domain_name: ::String
|
1392
|
+
attr_accessor domain_name_id: ::String
|
1338
1393
|
attr_accessor patch_operations: ::Array[Types::PatchOperation]
|
1339
1394
|
SENSITIVE: []
|
1340
1395
|
end
|
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.
|
4
|
+
version: 1.111.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:
|
11
|
+
date: 2025-01-15 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.216.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.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|