aws-sdk-apigateway 1.108.0 → 1.110.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigateway/client.rb +281 -52
- data/lib/aws-sdk-apigateway/client_api.rb +105 -0
- data/lib/aws-sdk-apigateway/types.rb +316 -106
- data/lib/aws-sdk-apigateway.rb +1 -1
- data/sig/client.rbs +69 -4
- data/sig/types.rbs +55 -0
- metadata +2 -2
data/lib/aws-sdk-apigateway.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -143,6 +143,7 @@ module Aws
|
|
143
143
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_base_path_mapping-instance_method
|
144
144
|
def create_base_path_mapping: (
|
145
145
|
domain_name: ::String,
|
146
|
+
?domain_name_id: ::String,
|
146
147
|
?base_path: ::String,
|
147
148
|
rest_api_id: ::String,
|
148
149
|
?stage: ::String
|
@@ -212,6 +213,8 @@ module Aws
|
|
212
213
|
interface _CreateDomainNameResponseSuccess
|
213
214
|
include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
|
214
215
|
def domain_name: () -> ::String
|
216
|
+
def domain_name_id: () -> ::String
|
217
|
+
def domain_name_arn: () -> ::String
|
215
218
|
def certificate_name: () -> ::String
|
216
219
|
def certificate_arn: () -> ::String
|
217
220
|
def certificate_upload_date: () -> ::Time
|
@@ -228,6 +231,8 @@ module Aws
|
|
228
231
|
def tags: () -> ::Hash[::String, ::String]
|
229
232
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
230
233
|
def ownership_verification_certificate_arn: () -> ::String
|
234
|
+
def management_policy: () -> ::String
|
235
|
+
def policy: () -> ::String
|
231
236
|
end
|
232
237
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_domain_name-instance_method
|
233
238
|
def create_domain_name: (
|
@@ -249,10 +254,28 @@ module Aws
|
|
249
254
|
truststore_uri: ::String?,
|
250
255
|
truststore_version: ::String?
|
251
256
|
},
|
252
|
-
?ownership_verification_certificate_arn: ::String
|
257
|
+
?ownership_verification_certificate_arn: ::String,
|
258
|
+
?policy: ::String
|
253
259
|
) -> _CreateDomainNameResponseSuccess
|
254
260
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameResponseSuccess
|
255
261
|
|
262
|
+
interface _CreateDomainNameAccessAssociationResponseSuccess
|
263
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DomainNameAccessAssociation]
|
264
|
+
def domain_name_access_association_arn: () -> ::String
|
265
|
+
def domain_name_arn: () -> ::String
|
266
|
+
def access_association_source_type: () -> ("VPCE")
|
267
|
+
def access_association_source: () -> ::String
|
268
|
+
def tags: () -> ::Hash[::String, ::String]
|
269
|
+
end
|
270
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_domain_name_access_association-instance_method
|
271
|
+
def create_domain_name_access_association: (
|
272
|
+
domain_name_arn: ::String,
|
273
|
+
access_association_source_type: ("VPCE"),
|
274
|
+
access_association_source: ::String,
|
275
|
+
?tags: Hash[::String, ::String]
|
276
|
+
) -> _CreateDomainNameAccessAssociationResponseSuccess
|
277
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameAccessAssociationResponseSuccess
|
278
|
+
|
256
279
|
interface _CreateModelResponseSuccess
|
257
280
|
include ::Seahorse::Client::_ResponseSuccess[Types::Model]
|
258
281
|
def id: () -> ::String
|
@@ -468,6 +491,7 @@ module Aws
|
|
468
491
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_base_path_mapping-instance_method
|
469
492
|
def delete_base_path_mapping: (
|
470
493
|
domain_name: ::String,
|
494
|
+
?domain_name_id: ::String,
|
471
495
|
base_path: ::String
|
472
496
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
473
497
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
@@ -501,10 +525,17 @@ module Aws
|
|
501
525
|
|
502
526
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_domain_name-instance_method
|
503
527
|
def delete_domain_name: (
|
504
|
-
domain_name: ::String
|
528
|
+
domain_name: ::String,
|
529
|
+
?domain_name_id: ::String
|
505
530
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
506
531
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
507
532
|
|
533
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_domain_name_access_association-instance_method
|
534
|
+
def delete_domain_name_access_association: (
|
535
|
+
domain_name_access_association_arn: ::String
|
536
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
537
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
538
|
+
|
508
539
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_gateway_response-instance_method
|
509
540
|
def delete_gateway_response: (
|
510
541
|
rest_api_id: ::String,
|
@@ -719,6 +750,7 @@ module Aws
|
|
719
750
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_base_path_mapping-instance_method
|
720
751
|
def get_base_path_mapping: (
|
721
752
|
domain_name: ::String,
|
753
|
+
?domain_name_id: ::String,
|
722
754
|
base_path: ::String
|
723
755
|
) -> _GetBasePathMappingResponseSuccess
|
724
756
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBasePathMappingResponseSuccess
|
@@ -731,6 +763,7 @@ module Aws
|
|
731
763
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_base_path_mappings-instance_method
|
732
764
|
def get_base_path_mappings: (
|
733
765
|
domain_name: ::String,
|
766
|
+
?domain_name_id: ::String,
|
734
767
|
?position: ::String,
|
735
768
|
?limit: ::Integer
|
736
769
|
) -> _GetBasePathMappingsResponseSuccess
|
@@ -850,6 +883,8 @@ module Aws
|
|
850
883
|
interface _GetDomainNameResponseSuccess
|
851
884
|
include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
|
852
885
|
def domain_name: () -> ::String
|
886
|
+
def domain_name_id: () -> ::String
|
887
|
+
def domain_name_arn: () -> ::String
|
853
888
|
def certificate_name: () -> ::String
|
854
889
|
def certificate_arn: () -> ::String
|
855
890
|
def certificate_upload_date: () -> ::Time
|
@@ -866,13 +901,29 @@ module Aws
|
|
866
901
|
def tags: () -> ::Hash[::String, ::String]
|
867
902
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
868
903
|
def ownership_verification_certificate_arn: () -> ::String
|
904
|
+
def management_policy: () -> ::String
|
905
|
+
def policy: () -> ::String
|
869
906
|
end
|
870
907
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_name-instance_method
|
871
908
|
def get_domain_name: (
|
872
|
-
domain_name: ::String
|
909
|
+
domain_name: ::String,
|
910
|
+
?domain_name_id: ::String
|
873
911
|
) -> _GetDomainNameResponseSuccess
|
874
912
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNameResponseSuccess
|
875
913
|
|
914
|
+
interface _GetDomainNameAccessAssociationsResponseSuccess
|
915
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DomainNameAccessAssociations]
|
916
|
+
def position: () -> ::String
|
917
|
+
def items: () -> ::Array[Types::DomainNameAccessAssociation]
|
918
|
+
end
|
919
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_name_access_associations-instance_method
|
920
|
+
def get_domain_name_access_associations: (
|
921
|
+
?position: ::String,
|
922
|
+
?limit: ::Integer,
|
923
|
+
?resource_owner: ("SELF" | "OTHER_ACCOUNTS")
|
924
|
+
) -> _GetDomainNameAccessAssociationsResponseSuccess
|
925
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNameAccessAssociationsResponseSuccess
|
926
|
+
|
876
927
|
interface _GetDomainNamesResponseSuccess
|
877
928
|
include ::Seahorse::Client::_ResponseSuccess[Types::DomainNames]
|
878
929
|
def position: () -> ::String
|
@@ -881,7 +932,8 @@ module Aws
|
|
881
932
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_names-instance_method
|
882
933
|
def get_domain_names: (
|
883
934
|
?position: ::String,
|
884
|
-
?limit: ::Integer
|
935
|
+
?limit: ::Integer,
|
936
|
+
?resource_owner: ("SELF" | "OTHER_ACCOUNTS")
|
885
937
|
) -> _GetDomainNamesResponseSuccess
|
886
938
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNamesResponseSuccess
|
887
939
|
|
@@ -1543,6 +1595,13 @@ module Aws
|
|
1543
1595
|
) -> _PutRestApiResponseSuccess
|
1544
1596
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRestApiResponseSuccess
|
1545
1597
|
|
1598
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#reject_domain_name_access_association-instance_method
|
1599
|
+
def reject_domain_name_access_association: (
|
1600
|
+
domain_name_access_association_arn: ::String,
|
1601
|
+
domain_name_arn: ::String
|
1602
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1603
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1604
|
+
|
1546
1605
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#tag_resource-instance_method
|
1547
1606
|
def tag_resource: (
|
1548
1607
|
resource_arn: ::String,
|
@@ -1687,6 +1746,7 @@ module Aws
|
|
1687
1746
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_base_path_mapping-instance_method
|
1688
1747
|
def update_base_path_mapping: (
|
1689
1748
|
domain_name: ::String,
|
1749
|
+
?domain_name_id: ::String,
|
1690
1750
|
base_path: ::String,
|
1691
1751
|
?patch_operations: Array[
|
1692
1752
|
{
|
@@ -1789,6 +1849,8 @@ module Aws
|
|
1789
1849
|
interface _UpdateDomainNameResponseSuccess
|
1790
1850
|
include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
|
1791
1851
|
def domain_name: () -> ::String
|
1852
|
+
def domain_name_id: () -> ::String
|
1853
|
+
def domain_name_arn: () -> ::String
|
1792
1854
|
def certificate_name: () -> ::String
|
1793
1855
|
def certificate_arn: () -> ::String
|
1794
1856
|
def certificate_upload_date: () -> ::Time
|
@@ -1805,10 +1867,13 @@ module Aws
|
|
1805
1867
|
def tags: () -> ::Hash[::String, ::String]
|
1806
1868
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
1807
1869
|
def ownership_verification_certificate_arn: () -> ::String
|
1870
|
+
def management_policy: () -> ::String
|
1871
|
+
def policy: () -> ::String
|
1808
1872
|
end
|
1809
1873
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_domain_name-instance_method
|
1810
1874
|
def update_domain_name: (
|
1811
1875
|
domain_name: ::String,
|
1876
|
+
?domain_name_id: ::String,
|
1812
1877
|
?patch_operations: Array[
|
1813
1878
|
{
|
1814
1879
|
op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
|
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.110.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: 2024-
|
11
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|