aws-sdk-vpclattice 1.39.0 → 1.40.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-vpclattice/client.rb +246 -1
- data/lib/aws-sdk-vpclattice/client_api.rb +166 -0
- data/lib/aws-sdk-vpclattice/types.rb +457 -9
- data/lib/aws-sdk-vpclattice.rb +1 -1
- data/sig/client.rbs +80 -1
- data/sig/types.rbs +105 -0
- metadata +1 -1
data/lib/aws-sdk-vpclattice.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -201,6 +201,10 @@ module Aws
|
|
|
201
201
|
def allow_association_to_shareable_service_network: () -> bool
|
|
202
202
|
def created_at: () -> ::Time
|
|
203
203
|
def failure_reason: () -> ::String
|
|
204
|
+
def custom_domain_name: () -> ::String
|
|
205
|
+
def domain_verification_id: () -> ::String
|
|
206
|
+
def group_domain: () -> ::String
|
|
207
|
+
def domain_verification_arn: () -> ::String
|
|
204
208
|
end
|
|
205
209
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_resource_configuration-instance_method
|
|
206
210
|
def create_resource_configuration: (
|
|
@@ -223,6 +227,9 @@ module Aws
|
|
|
223
227
|
}?
|
|
224
228
|
},
|
|
225
229
|
?allow_association_to_shareable_service_network: bool,
|
|
230
|
+
?custom_domain_name: ::String,
|
|
231
|
+
?group_domain: ::String,
|
|
232
|
+
?domain_verification_identifier: ::String,
|
|
226
233
|
?client_token: ::String,
|
|
227
234
|
?tags: Hash[::String, ::String]
|
|
228
235
|
) -> _CreateResourceConfigurationResponseSuccess
|
|
@@ -357,12 +364,14 @@ module Aws
|
|
|
357
364
|
def arn: () -> ::String
|
|
358
365
|
def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "PARTIAL" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
|
359
366
|
def created_by: () -> ::String
|
|
367
|
+
def private_dns_enabled: () -> bool
|
|
360
368
|
end
|
|
361
369
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_service_network_resource_association-instance_method
|
|
362
370
|
def create_service_network_resource_association: (
|
|
363
371
|
?client_token: ::String,
|
|
364
372
|
resource_configuration_identifier: ::String,
|
|
365
373
|
service_network_identifier: ::String,
|
|
374
|
+
?private_dns_enabled: bool,
|
|
366
375
|
?tags: Hash[::String, ::String]
|
|
367
376
|
) -> _CreateServiceNetworkResourceAssociationResponseSuccess
|
|
368
377
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceNetworkResourceAssociationResponseSuccess
|
|
@@ -392,14 +401,21 @@ module Aws
|
|
|
392
401
|
def arn: () -> ::String
|
|
393
402
|
def created_by: () -> ::String
|
|
394
403
|
def security_group_ids: () -> ::Array[::String]
|
|
404
|
+
def private_dns_enabled: () -> bool
|
|
405
|
+
def dns_options: () -> Types::DnsOptions
|
|
395
406
|
end
|
|
396
407
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_service_network_vpc_association-instance_method
|
|
397
408
|
def create_service_network_vpc_association: (
|
|
398
409
|
?client_token: ::String,
|
|
399
410
|
service_network_identifier: ::String,
|
|
400
411
|
vpc_identifier: ::String,
|
|
412
|
+
?private_dns_enabled: bool,
|
|
401
413
|
?security_group_ids: Array[::String],
|
|
402
|
-
?tags: Hash[::String, ::String]
|
|
414
|
+
?tags: Hash[::String, ::String],
|
|
415
|
+
?dns_options: {
|
|
416
|
+
private_dns_preference: ("VERIFIED_DOMAINS_ONLY" | "ALL_DOMAINS" | "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS" | "SPECIFIED_DOMAINS_ONLY")?,
|
|
417
|
+
private_dns_specified_domains: Array[::String]?
|
|
418
|
+
}
|
|
403
419
|
) -> _CreateServiceNetworkVpcAssociationResponseSuccess
|
|
404
420
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceNetworkVpcAssociationResponseSuccess
|
|
405
421
|
|
|
@@ -461,6 +477,15 @@ module Aws
|
|
|
461
477
|
) -> _DeleteAuthPolicyResponseSuccess
|
|
462
478
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAuthPolicyResponseSuccess
|
|
463
479
|
|
|
480
|
+
interface _DeleteDomainVerificationResponseSuccess
|
|
481
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainVerificationResponse]
|
|
482
|
+
end
|
|
483
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_domain_verification-instance_method
|
|
484
|
+
def delete_domain_verification: (
|
|
485
|
+
domain_verification_identifier: ::String
|
|
486
|
+
) -> _DeleteDomainVerificationResponseSuccess
|
|
487
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainVerificationResponseSuccess
|
|
488
|
+
|
|
464
489
|
interface _DeleteListenerResponseSuccess
|
|
465
490
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteListenerResponse]
|
|
466
491
|
end
|
|
@@ -644,6 +669,23 @@ module Aws
|
|
|
644
669
|
) -> _GetAuthPolicyResponseSuccess
|
|
645
670
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAuthPolicyResponseSuccess
|
|
646
671
|
|
|
672
|
+
interface _GetDomainVerificationResponseSuccess
|
|
673
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainVerificationResponse]
|
|
674
|
+
def id: () -> ::String
|
|
675
|
+
def arn: () -> ::String
|
|
676
|
+
def domain_name: () -> ::String
|
|
677
|
+
def status: () -> ("VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT")
|
|
678
|
+
def txt_method_config: () -> Types::TxtMethodConfig
|
|
679
|
+
def created_at: () -> ::Time
|
|
680
|
+
def last_verified_time: () -> ::Time
|
|
681
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
682
|
+
end
|
|
683
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_domain_verification-instance_method
|
|
684
|
+
def get_domain_verification: (
|
|
685
|
+
domain_verification_identifier: ::String
|
|
686
|
+
) -> _GetDomainVerificationResponseSuccess
|
|
687
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainVerificationResponseSuccess
|
|
688
|
+
|
|
647
689
|
interface _GetListenerResponseSuccess
|
|
648
690
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetListenerResponse]
|
|
649
691
|
def arn: () -> ::String
|
|
@@ -682,6 +724,10 @@ module Aws
|
|
|
682
724
|
def amazon_managed: () -> bool
|
|
683
725
|
def failure_reason: () -> ::String
|
|
684
726
|
def last_updated_at: () -> ::Time
|
|
727
|
+
def domain_verification_id: () -> ::String
|
|
728
|
+
def domain_verification_arn: () -> ::String
|
|
729
|
+
def domain_verification_status: () -> ("VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT")
|
|
730
|
+
def group_domain: () -> ::String
|
|
685
731
|
end
|
|
686
732
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_resource_configuration-instance_method
|
|
687
733
|
def get_resource_configuration: (
|
|
@@ -795,8 +841,10 @@ module Aws
|
|
|
795
841
|
def failure_code: () -> ::String
|
|
796
842
|
def last_updated_at: () -> ::Time
|
|
797
843
|
def private_dns_entry: () -> Types::DnsEntry
|
|
844
|
+
def private_dns_enabled: () -> bool
|
|
798
845
|
def dns_entry: () -> Types::DnsEntry
|
|
799
846
|
def is_managed_association: () -> bool
|
|
847
|
+
def domain_verification_status: () -> ("VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT")
|
|
800
848
|
end
|
|
801
849
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_service_network_resource_association-instance_method
|
|
802
850
|
def get_service_network_resource_association: (
|
|
@@ -840,9 +888,11 @@ module Aws
|
|
|
840
888
|
def service_network_arn: () -> ::String
|
|
841
889
|
def vpc_id: () -> ::String
|
|
842
890
|
def security_group_ids: () -> ::Array[::String]
|
|
891
|
+
def private_dns_enabled: () -> bool
|
|
843
892
|
def failure_message: () -> ::String
|
|
844
893
|
def failure_code: () -> ::String
|
|
845
894
|
def last_updated_at: () -> ::Time
|
|
895
|
+
def dns_options: () -> Types::DnsOptions
|
|
846
896
|
end
|
|
847
897
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_service_network_vpc_association-instance_method
|
|
848
898
|
def get_service_network_vpc_association: (
|
|
@@ -883,6 +933,18 @@ module Aws
|
|
|
883
933
|
) -> _ListAccessLogSubscriptionsResponseSuccess
|
|
884
934
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessLogSubscriptionsResponseSuccess
|
|
885
935
|
|
|
936
|
+
interface _ListDomainVerificationsResponseSuccess
|
|
937
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainVerificationsResponse]
|
|
938
|
+
def items: () -> ::Array[Types::DomainVerificationSummary]
|
|
939
|
+
def next_token: () -> ::String
|
|
940
|
+
end
|
|
941
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_domain_verifications-instance_method
|
|
942
|
+
def list_domain_verifications: (
|
|
943
|
+
?max_results: ::Integer,
|
|
944
|
+
?next_token: ::String
|
|
945
|
+
) -> _ListDomainVerificationsResponseSuccess
|
|
946
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainVerificationsResponseSuccess
|
|
947
|
+
|
|
886
948
|
interface _ListListenersResponseSuccess
|
|
887
949
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListListenersResponse]
|
|
888
950
|
def items: () -> ::Array[Types::ListenerSummary]
|
|
@@ -905,6 +967,7 @@ module Aws
|
|
|
905
967
|
def list_resource_configurations: (
|
|
906
968
|
?resource_gateway_identifier: ::String,
|
|
907
969
|
?resource_configuration_group_identifier: ::String,
|
|
970
|
+
?domain_verification_identifier: ::String,
|
|
908
971
|
?max_results: ::Integer,
|
|
909
972
|
?next_token: ::String
|
|
910
973
|
) -> _ListResourceConfigurationsResponseSuccess
|
|
@@ -1114,6 +1177,22 @@ module Aws
|
|
|
1114
1177
|
) -> _RegisterTargetsResponseSuccess
|
|
1115
1178
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterTargetsResponseSuccess
|
|
1116
1179
|
|
|
1180
|
+
interface _StartDomainVerificationResponseSuccess
|
|
1181
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartDomainVerificationResponse]
|
|
1182
|
+
def id: () -> ::String
|
|
1183
|
+
def arn: () -> ::String
|
|
1184
|
+
def domain_name: () -> ::String
|
|
1185
|
+
def status: () -> ("VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT")
|
|
1186
|
+
def txt_method_config: () -> Types::TxtMethodConfig
|
|
1187
|
+
end
|
|
1188
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#start_domain_verification-instance_method
|
|
1189
|
+
def start_domain_verification: (
|
|
1190
|
+
?client_token: ::String,
|
|
1191
|
+
domain_name: ::String,
|
|
1192
|
+
?tags: Hash[::String, ::String]
|
|
1193
|
+
) -> _StartDomainVerificationResponseSuccess
|
|
1194
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDomainVerificationResponseSuccess
|
|
1195
|
+
|
|
1117
1196
|
interface _TagResourceResponseSuccess
|
|
1118
1197
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
|
1119
1198
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -101,6 +101,9 @@ module Aws::VPCLattice
|
|
|
101
101
|
attr_accessor resource_configuration_group_identifier: ::String
|
|
102
102
|
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
|
103
103
|
attr_accessor allow_association_to_shareable_service_network: bool
|
|
104
|
+
attr_accessor custom_domain_name: ::String
|
|
105
|
+
attr_accessor group_domain: ::String
|
|
106
|
+
attr_accessor domain_verification_identifier: ::String
|
|
104
107
|
attr_accessor client_token: ::String
|
|
105
108
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
106
109
|
SENSITIVE: []
|
|
@@ -120,6 +123,10 @@ module Aws::VPCLattice
|
|
|
120
123
|
attr_accessor allow_association_to_shareable_service_network: bool
|
|
121
124
|
attr_accessor created_at: ::Time
|
|
122
125
|
attr_accessor failure_reason: ::String
|
|
126
|
+
attr_accessor custom_domain_name: ::String
|
|
127
|
+
attr_accessor domain_verification_id: ::String
|
|
128
|
+
attr_accessor group_domain: ::String
|
|
129
|
+
attr_accessor domain_verification_arn: ::String
|
|
123
130
|
SENSITIVE: []
|
|
124
131
|
end
|
|
125
132
|
|
|
@@ -183,6 +190,7 @@ module Aws::VPCLattice
|
|
|
183
190
|
attr_accessor client_token: ::String
|
|
184
191
|
attr_accessor resource_configuration_identifier: ::String
|
|
185
192
|
attr_accessor service_network_identifier: ::String
|
|
193
|
+
attr_accessor private_dns_enabled: bool
|
|
186
194
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
187
195
|
SENSITIVE: []
|
|
188
196
|
end
|
|
@@ -192,6 +200,7 @@ module Aws::VPCLattice
|
|
|
192
200
|
attr_accessor arn: ::String
|
|
193
201
|
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "PARTIAL" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
|
194
202
|
attr_accessor created_by: ::String
|
|
203
|
+
attr_accessor private_dns_enabled: bool
|
|
195
204
|
SENSITIVE: []
|
|
196
205
|
end
|
|
197
206
|
|
|
@@ -226,8 +235,10 @@ module Aws::VPCLattice
|
|
|
226
235
|
attr_accessor client_token: ::String
|
|
227
236
|
attr_accessor service_network_identifier: ::String
|
|
228
237
|
attr_accessor vpc_identifier: ::String
|
|
238
|
+
attr_accessor private_dns_enabled: bool
|
|
229
239
|
attr_accessor security_group_ids: ::Array[::String]
|
|
230
240
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
241
|
+
attr_accessor dns_options: Types::DnsOptions
|
|
231
242
|
SENSITIVE: []
|
|
232
243
|
end
|
|
233
244
|
|
|
@@ -237,6 +248,8 @@ module Aws::VPCLattice
|
|
|
237
248
|
attr_accessor arn: ::String
|
|
238
249
|
attr_accessor created_by: ::String
|
|
239
250
|
attr_accessor security_group_ids: ::Array[::String]
|
|
251
|
+
attr_accessor private_dns_enabled: bool
|
|
252
|
+
attr_accessor dns_options: Types::DnsOptions
|
|
240
253
|
SENSITIVE: []
|
|
241
254
|
end
|
|
242
255
|
|
|
@@ -297,6 +310,14 @@ module Aws::VPCLattice
|
|
|
297
310
|
class DeleteAuthPolicyResponse < Aws::EmptyStructure
|
|
298
311
|
end
|
|
299
312
|
|
|
313
|
+
class DeleteDomainVerificationRequest
|
|
314
|
+
attr_accessor domain_verification_identifier: ::String
|
|
315
|
+
SENSITIVE: []
|
|
316
|
+
end
|
|
317
|
+
|
|
318
|
+
class DeleteDomainVerificationResponse < Aws::EmptyStructure
|
|
319
|
+
end
|
|
320
|
+
|
|
300
321
|
class DeleteListenerRequest
|
|
301
322
|
attr_accessor service_identifier: ::String
|
|
302
323
|
attr_accessor listener_identifier: ::String
|
|
@@ -446,12 +467,30 @@ module Aws::VPCLattice
|
|
|
446
467
|
SENSITIVE: []
|
|
447
468
|
end
|
|
448
469
|
|
|
470
|
+
class DnsOptions
|
|
471
|
+
attr_accessor private_dns_preference: ("VERIFIED_DOMAINS_ONLY" | "ALL_DOMAINS" | "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS" | "SPECIFIED_DOMAINS_ONLY")
|
|
472
|
+
attr_accessor private_dns_specified_domains: ::Array[::String]
|
|
473
|
+
SENSITIVE: []
|
|
474
|
+
end
|
|
475
|
+
|
|
449
476
|
class DnsResource
|
|
450
477
|
attr_accessor domain_name: ::String
|
|
451
478
|
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
|
452
479
|
SENSITIVE: []
|
|
453
480
|
end
|
|
454
481
|
|
|
482
|
+
class DomainVerificationSummary
|
|
483
|
+
attr_accessor id: ::String
|
|
484
|
+
attr_accessor arn: ::String
|
|
485
|
+
attr_accessor domain_name: ::String
|
|
486
|
+
attr_accessor status: ("VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT")
|
|
487
|
+
attr_accessor txt_method_config: Types::TxtMethodConfig
|
|
488
|
+
attr_accessor created_at: ::Time
|
|
489
|
+
attr_accessor last_verified_time: ::Time
|
|
490
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
491
|
+
SENSITIVE: []
|
|
492
|
+
end
|
|
493
|
+
|
|
455
494
|
class FixedResponseAction
|
|
456
495
|
attr_accessor status_code: ::Integer
|
|
457
496
|
SENSITIVE: []
|
|
@@ -492,6 +531,23 @@ module Aws::VPCLattice
|
|
|
492
531
|
SENSITIVE: []
|
|
493
532
|
end
|
|
494
533
|
|
|
534
|
+
class GetDomainVerificationRequest
|
|
535
|
+
attr_accessor domain_verification_identifier: ::String
|
|
536
|
+
SENSITIVE: []
|
|
537
|
+
end
|
|
538
|
+
|
|
539
|
+
class GetDomainVerificationResponse
|
|
540
|
+
attr_accessor id: ::String
|
|
541
|
+
attr_accessor arn: ::String
|
|
542
|
+
attr_accessor domain_name: ::String
|
|
543
|
+
attr_accessor status: ("VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT")
|
|
544
|
+
attr_accessor txt_method_config: Types::TxtMethodConfig
|
|
545
|
+
attr_accessor created_at: ::Time
|
|
546
|
+
attr_accessor last_verified_time: ::Time
|
|
547
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
548
|
+
SENSITIVE: []
|
|
549
|
+
end
|
|
550
|
+
|
|
495
551
|
class GetListenerRequest
|
|
496
552
|
attr_accessor service_identifier: ::String
|
|
497
553
|
attr_accessor listener_identifier: ::String
|
|
@@ -534,6 +590,10 @@ module Aws::VPCLattice
|
|
|
534
590
|
attr_accessor amazon_managed: bool
|
|
535
591
|
attr_accessor failure_reason: ::String
|
|
536
592
|
attr_accessor last_updated_at: ::Time
|
|
593
|
+
attr_accessor domain_verification_id: ::String
|
|
594
|
+
attr_accessor domain_verification_arn: ::String
|
|
595
|
+
attr_accessor domain_verification_status: ("VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT")
|
|
596
|
+
attr_accessor group_domain: ::String
|
|
537
597
|
SENSITIVE: []
|
|
538
598
|
end
|
|
539
599
|
|
|
@@ -613,8 +673,10 @@ module Aws::VPCLattice
|
|
|
613
673
|
attr_accessor failure_code: ::String
|
|
614
674
|
attr_accessor last_updated_at: ::Time
|
|
615
675
|
attr_accessor private_dns_entry: Types::DnsEntry
|
|
676
|
+
attr_accessor private_dns_enabled: bool
|
|
616
677
|
attr_accessor dns_entry: Types::DnsEntry
|
|
617
678
|
attr_accessor is_managed_association: bool
|
|
679
|
+
attr_accessor domain_verification_status: ("VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT")
|
|
618
680
|
SENSITIVE: []
|
|
619
681
|
end
|
|
620
682
|
|
|
@@ -671,9 +733,11 @@ module Aws::VPCLattice
|
|
|
671
733
|
attr_accessor service_network_arn: ::String
|
|
672
734
|
attr_accessor vpc_id: ::String
|
|
673
735
|
attr_accessor security_group_ids: ::Array[::String]
|
|
736
|
+
attr_accessor private_dns_enabled: bool
|
|
674
737
|
attr_accessor failure_message: ::String
|
|
675
738
|
attr_accessor failure_code: ::String
|
|
676
739
|
attr_accessor last_updated_at: ::Time
|
|
740
|
+
attr_accessor dns_options: Types::DnsOptions
|
|
677
741
|
SENSITIVE: []
|
|
678
742
|
end
|
|
679
743
|
|
|
@@ -787,6 +851,18 @@ module Aws::VPCLattice
|
|
|
787
851
|
SENSITIVE: []
|
|
788
852
|
end
|
|
789
853
|
|
|
854
|
+
class ListDomainVerificationsRequest
|
|
855
|
+
attr_accessor max_results: ::Integer
|
|
856
|
+
attr_accessor next_token: ::String
|
|
857
|
+
SENSITIVE: []
|
|
858
|
+
end
|
|
859
|
+
|
|
860
|
+
class ListDomainVerificationsResponse
|
|
861
|
+
attr_accessor items: ::Array[Types::DomainVerificationSummary]
|
|
862
|
+
attr_accessor next_token: ::String
|
|
863
|
+
SENSITIVE: []
|
|
864
|
+
end
|
|
865
|
+
|
|
790
866
|
class ListListenersRequest
|
|
791
867
|
attr_accessor service_identifier: ::String
|
|
792
868
|
attr_accessor max_results: ::Integer
|
|
@@ -803,6 +879,7 @@ module Aws::VPCLattice
|
|
|
803
879
|
class ListResourceConfigurationsRequest
|
|
804
880
|
attr_accessor resource_gateway_identifier: ::String
|
|
805
881
|
attr_accessor resource_configuration_group_identifier: ::String
|
|
882
|
+
attr_accessor domain_verification_identifier: ::String
|
|
806
883
|
attr_accessor max_results: ::Integer
|
|
807
884
|
attr_accessor next_token: ::String
|
|
808
885
|
SENSITIVE: []
|
|
@@ -1077,6 +1154,9 @@ module Aws::VPCLattice
|
|
|
1077
1154
|
attr_accessor amazon_managed: bool
|
|
1078
1155
|
attr_accessor created_at: ::Time
|
|
1079
1156
|
attr_accessor last_updated_at: ::Time
|
|
1157
|
+
attr_accessor custom_domain_name: ::String
|
|
1158
|
+
attr_accessor domain_verification_id: ::String
|
|
1159
|
+
attr_accessor group_domain: ::String
|
|
1080
1160
|
SENSITIVE: []
|
|
1081
1161
|
end
|
|
1082
1162
|
|
|
@@ -1204,6 +1284,7 @@ module Aws::VPCLattice
|
|
|
1204
1284
|
attr_accessor private_dns_entry: Types::DnsEntry
|
|
1205
1285
|
attr_accessor is_managed_association: bool
|
|
1206
1286
|
attr_accessor failure_code: ::String
|
|
1287
|
+
attr_accessor private_dns_enabled: bool
|
|
1207
1288
|
SENSITIVE: []
|
|
1208
1289
|
end
|
|
1209
1290
|
|
|
@@ -1245,6 +1326,8 @@ module Aws::VPCLattice
|
|
|
1245
1326
|
attr_accessor service_network_id: ::String
|
|
1246
1327
|
attr_accessor service_network_name: ::String
|
|
1247
1328
|
attr_accessor service_network_arn: ::String
|
|
1329
|
+
attr_accessor private_dns_enabled: bool
|
|
1330
|
+
attr_accessor dns_options: Types::DnsOptions
|
|
1248
1331
|
attr_accessor vpc_id: ::String
|
|
1249
1332
|
attr_accessor last_updated_at: ::Time
|
|
1250
1333
|
SENSITIVE: []
|
|
@@ -1276,6 +1359,22 @@ module Aws::VPCLattice
|
|
|
1276
1359
|
SENSITIVE: []
|
|
1277
1360
|
end
|
|
1278
1361
|
|
|
1362
|
+
class StartDomainVerificationRequest
|
|
1363
|
+
attr_accessor client_token: ::String
|
|
1364
|
+
attr_accessor domain_name: ::String
|
|
1365
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1366
|
+
SENSITIVE: []
|
|
1367
|
+
end
|
|
1368
|
+
|
|
1369
|
+
class StartDomainVerificationResponse
|
|
1370
|
+
attr_accessor id: ::String
|
|
1371
|
+
attr_accessor arn: ::String
|
|
1372
|
+
attr_accessor domain_name: ::String
|
|
1373
|
+
attr_accessor status: ("VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT")
|
|
1374
|
+
attr_accessor txt_method_config: Types::TxtMethodConfig
|
|
1375
|
+
SENSITIVE: []
|
|
1376
|
+
end
|
|
1377
|
+
|
|
1279
1378
|
class TagResourceRequest
|
|
1280
1379
|
attr_accessor resource_arn: ::String
|
|
1281
1380
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -1343,6 +1442,12 @@ module Aws::VPCLattice
|
|
|
1343
1442
|
SENSITIVE: []
|
|
1344
1443
|
end
|
|
1345
1444
|
|
|
1445
|
+
class TxtMethodConfig
|
|
1446
|
+
attr_accessor value: ::String
|
|
1447
|
+
attr_accessor name: ::String
|
|
1448
|
+
SENSITIVE: []
|
|
1449
|
+
end
|
|
1450
|
+
|
|
1346
1451
|
class UntagResourceRequest
|
|
1347
1452
|
attr_accessor resource_arn: ::String
|
|
1348
1453
|
attr_accessor tag_keys: ::Array[::String]
|