aws-sdk-apigateway 1.109.0 → 1.110.0

Sign up to get free protection for your applications and to get access to all the features.
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.109.0
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-06 00:00:00.000000000 Z
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