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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d25452d89dd3afa5879efb109021a099d01b94d0bf2dd420d399c79bfef42b2e
|
|
4
|
+
data.tar.gz: fd7105d03032bca5890e5952db080c679b8ba589ebf3198444b0504267091592
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59631f9c7b4a5c876457cf8fa08e38c8df191cd7841655f7245f970b9bf102c24bae7373d3d071299d1625aba34b1f8276892e990491a295d96093d32525c70e
|
|
7
|
+
data.tar.gz: f333daeb8d29d4a50408eea27a3e56a97bea58397d72ba692d04c6b50d46aa0714c2056ca1c4bc1140a677f99ec5d43e86ca7736c1fd2135e455e003e16e8080
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.40.0
|
|
@@ -827,6 +827,20 @@ module Aws::VPCLattice
|
|
|
827
827
|
# (SINGLE, GROUP, ARN) Specifies whether the resource configuration can
|
|
828
828
|
# be associated with a sharable service network. The default is false.
|
|
829
829
|
#
|
|
830
|
+
# @option params [String] :custom_domain_name
|
|
831
|
+
# A custom domain name for your resource configuration. Additionally,
|
|
832
|
+
# provide a DomainVerificationID to prove your ownership of a domain.
|
|
833
|
+
#
|
|
834
|
+
# @option params [String] :group_domain
|
|
835
|
+
# (GROUP) The group domain for a group resource configuration. Any
|
|
836
|
+
# domains that you create for the child resource are subdomains of the
|
|
837
|
+
# group domain. Child resources inherit the verification status of the
|
|
838
|
+
# domain.
|
|
839
|
+
#
|
|
840
|
+
# @option params [String] :domain_verification_identifier
|
|
841
|
+
# The domain verification ID of your verified custom domain name. If you
|
|
842
|
+
# don't provide an ID, you must configure the DNS settings yourself.
|
|
843
|
+
#
|
|
830
844
|
# @option params [String] :client_token
|
|
831
845
|
# A unique, case-sensitive identifier that you provide to ensure the
|
|
832
846
|
# idempotency of the request. If you retry a request that completed
|
|
@@ -855,6 +869,10 @@ module Aws::VPCLattice
|
|
|
855
869
|
# * {Types::CreateResourceConfigurationResponse#allow_association_to_shareable_service_network #allow_association_to_shareable_service_network} => Boolean
|
|
856
870
|
# * {Types::CreateResourceConfigurationResponse#created_at #created_at} => Time
|
|
857
871
|
# * {Types::CreateResourceConfigurationResponse#failure_reason #failure_reason} => String
|
|
872
|
+
# * {Types::CreateResourceConfigurationResponse#custom_domain_name #custom_domain_name} => String
|
|
873
|
+
# * {Types::CreateResourceConfigurationResponse#domain_verification_id #domain_verification_id} => String
|
|
874
|
+
# * {Types::CreateResourceConfigurationResponse#group_domain #group_domain} => String
|
|
875
|
+
# * {Types::CreateResourceConfigurationResponse#domain_verification_arn #domain_verification_arn} => String
|
|
858
876
|
#
|
|
859
877
|
# @example Request syntax with placeholder values
|
|
860
878
|
#
|
|
@@ -878,6 +896,9 @@ module Aws::VPCLattice
|
|
|
878
896
|
# },
|
|
879
897
|
# },
|
|
880
898
|
# allow_association_to_shareable_service_network: false,
|
|
899
|
+
# custom_domain_name: "DomainName",
|
|
900
|
+
# group_domain: "DomainName",
|
|
901
|
+
# domain_verification_identifier: "DomainVerificationIdentifier",
|
|
881
902
|
# client_token: "ClientToken",
|
|
882
903
|
# tags: {
|
|
883
904
|
# "TagKey" => "TagValue",
|
|
@@ -903,6 +924,10 @@ module Aws::VPCLattice
|
|
|
903
924
|
# resp.allow_association_to_shareable_service_network #=> Boolean
|
|
904
925
|
# resp.created_at #=> Time
|
|
905
926
|
# resp.failure_reason #=> String
|
|
927
|
+
# resp.custom_domain_name #=> String
|
|
928
|
+
# resp.domain_verification_id #=> String
|
|
929
|
+
# resp.group_domain #=> String
|
|
930
|
+
# resp.domain_verification_arn #=> String
|
|
906
931
|
#
|
|
907
932
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateResourceConfiguration AWS API Documentation
|
|
908
933
|
#
|
|
@@ -1349,6 +1374,10 @@ module Aws::VPCLattice
|
|
|
1349
1374
|
# The ID of the service network to associate with the resource
|
|
1350
1375
|
# configuration.
|
|
1351
1376
|
#
|
|
1377
|
+
# @option params [Boolean] :private_dns_enabled
|
|
1378
|
+
# Indicates if private DNS is enabled for the service network resource
|
|
1379
|
+
# association.
|
|
1380
|
+
#
|
|
1352
1381
|
# @option params [Hash<String,String>] :tags
|
|
1353
1382
|
# A key-value pair to associate with a resource.
|
|
1354
1383
|
#
|
|
@@ -1358,6 +1387,7 @@ module Aws::VPCLattice
|
|
|
1358
1387
|
# * {Types::CreateServiceNetworkResourceAssociationResponse#arn #arn} => String
|
|
1359
1388
|
# * {Types::CreateServiceNetworkResourceAssociationResponse#status #status} => String
|
|
1360
1389
|
# * {Types::CreateServiceNetworkResourceAssociationResponse#created_by #created_by} => String
|
|
1390
|
+
# * {Types::CreateServiceNetworkResourceAssociationResponse#private_dns_enabled #private_dns_enabled} => Boolean
|
|
1361
1391
|
#
|
|
1362
1392
|
# @example Request syntax with placeholder values
|
|
1363
1393
|
#
|
|
@@ -1365,6 +1395,7 @@ module Aws::VPCLattice
|
|
|
1365
1395
|
# client_token: "ClientToken",
|
|
1366
1396
|
# resource_configuration_identifier: "ResourceConfigurationIdentifier", # required
|
|
1367
1397
|
# service_network_identifier: "ServiceNetworkIdentifierWithoutRegex", # required
|
|
1398
|
+
# private_dns_enabled: false,
|
|
1368
1399
|
# tags: {
|
|
1369
1400
|
# "TagKey" => "TagValue",
|
|
1370
1401
|
# },
|
|
@@ -1376,6 +1407,7 @@ module Aws::VPCLattice
|
|
|
1376
1407
|
# resp.arn #=> String
|
|
1377
1408
|
# resp.status #=> String, one of "CREATE_IN_PROGRESS", "ACTIVE", "PARTIAL", "DELETE_IN_PROGRESS", "CREATE_FAILED", "DELETE_FAILED"
|
|
1378
1409
|
# resp.created_by #=> String
|
|
1410
|
+
# resp.private_dns_enabled #=> Boolean
|
|
1379
1411
|
#
|
|
1380
1412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateServiceNetworkResourceAssociation AWS API Documentation
|
|
1381
1413
|
#
|
|
@@ -1505,6 +1537,9 @@ module Aws::VPCLattice
|
|
|
1505
1537
|
# @option params [required, String] :vpc_identifier
|
|
1506
1538
|
# The ID of the VPC.
|
|
1507
1539
|
#
|
|
1540
|
+
# @option params [Boolean] :private_dns_enabled
|
|
1541
|
+
# Indicates if private DNS is enabled for the VPC association.
|
|
1542
|
+
#
|
|
1508
1543
|
# @option params [Array<String>] :security_group_ids
|
|
1509
1544
|
# The IDs of the security groups. Security groups aren't added by
|
|
1510
1545
|
# default. You can add a security group to apply network level controls
|
|
@@ -1519,6 +1554,9 @@ module Aws::VPCLattice
|
|
|
1519
1554
|
# @option params [Hash<String,String>] :tags
|
|
1520
1555
|
# The tags for the association.
|
|
1521
1556
|
#
|
|
1557
|
+
# @option params [Types::DnsOptions] :dns_options
|
|
1558
|
+
# DNS options for the service network VPC association.
|
|
1559
|
+
#
|
|
1522
1560
|
# @return [Types::CreateServiceNetworkVpcAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1523
1561
|
#
|
|
1524
1562
|
# * {Types::CreateServiceNetworkVpcAssociationResponse#id #id} => String
|
|
@@ -1526,6 +1564,8 @@ module Aws::VPCLattice
|
|
|
1526
1564
|
# * {Types::CreateServiceNetworkVpcAssociationResponse#arn #arn} => String
|
|
1527
1565
|
# * {Types::CreateServiceNetworkVpcAssociationResponse#created_by #created_by} => String
|
|
1528
1566
|
# * {Types::CreateServiceNetworkVpcAssociationResponse#security_group_ids #security_group_ids} => Array<String>
|
|
1567
|
+
# * {Types::CreateServiceNetworkVpcAssociationResponse#private_dns_enabled #private_dns_enabled} => Boolean
|
|
1568
|
+
# * {Types::CreateServiceNetworkVpcAssociationResponse#dns_options #dns_options} => Types::DnsOptions
|
|
1529
1569
|
#
|
|
1530
1570
|
# @example Request syntax with placeholder values
|
|
1531
1571
|
#
|
|
@@ -1533,10 +1573,15 @@ module Aws::VPCLattice
|
|
|
1533
1573
|
# client_token: "ClientToken",
|
|
1534
1574
|
# service_network_identifier: "ServiceNetworkIdentifier", # required
|
|
1535
1575
|
# vpc_identifier: "VpcId", # required
|
|
1576
|
+
# private_dns_enabled: false,
|
|
1536
1577
|
# security_group_ids: ["SecurityGroupId"],
|
|
1537
1578
|
# tags: {
|
|
1538
1579
|
# "TagKey" => "TagValue",
|
|
1539
1580
|
# },
|
|
1581
|
+
# dns_options: {
|
|
1582
|
+
# private_dns_preference: "VERIFIED_DOMAINS_ONLY", # accepts VERIFIED_DOMAINS_ONLY, ALL_DOMAINS, VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS, SPECIFIED_DOMAINS_ONLY
|
|
1583
|
+
# private_dns_specified_domains: ["PrivateDnsSpecifiedDomain"],
|
|
1584
|
+
# },
|
|
1540
1585
|
# })
|
|
1541
1586
|
#
|
|
1542
1587
|
# @example Response structure
|
|
@@ -1547,6 +1592,10 @@ module Aws::VPCLattice
|
|
|
1547
1592
|
# resp.created_by #=> String
|
|
1548
1593
|
# resp.security_group_ids #=> Array
|
|
1549
1594
|
# resp.security_group_ids[0] #=> String
|
|
1595
|
+
# resp.private_dns_enabled #=> Boolean
|
|
1596
|
+
# resp.dns_options.private_dns_preference #=> String, one of "VERIFIED_DOMAINS_ONLY", "ALL_DOMAINS", "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS", "SPECIFIED_DOMAINS_ONLY"
|
|
1597
|
+
# resp.dns_options.private_dns_specified_domains #=> Array
|
|
1598
|
+
# resp.dns_options.private_dns_specified_domains[0] #=> String
|
|
1550
1599
|
#
|
|
1551
1600
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateServiceNetworkVpcAssociation AWS API Documentation
|
|
1552
1601
|
#
|
|
@@ -1716,6 +1765,28 @@ module Aws::VPCLattice
|
|
|
1716
1765
|
req.send_request(options)
|
|
1717
1766
|
end
|
|
1718
1767
|
|
|
1768
|
+
# Deletes the specified domain verification.
|
|
1769
|
+
#
|
|
1770
|
+
# @option params [required, String] :domain_verification_identifier
|
|
1771
|
+
# The ID of the domain verification to delete.
|
|
1772
|
+
#
|
|
1773
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1774
|
+
#
|
|
1775
|
+
# @example Request syntax with placeholder values
|
|
1776
|
+
#
|
|
1777
|
+
# resp = client.delete_domain_verification({
|
|
1778
|
+
# domain_verification_identifier: "DomainVerificationIdentifier", # required
|
|
1779
|
+
# })
|
|
1780
|
+
#
|
|
1781
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteDomainVerification AWS API Documentation
|
|
1782
|
+
#
|
|
1783
|
+
# @overload delete_domain_verification(params = {})
|
|
1784
|
+
# @param [Hash] params ({})
|
|
1785
|
+
def delete_domain_verification(params = {}, options = {})
|
|
1786
|
+
req = build_request(:delete_domain_verification, params)
|
|
1787
|
+
req.send_request(options)
|
|
1788
|
+
end
|
|
1789
|
+
|
|
1719
1790
|
# Deletes the specified listener.
|
|
1720
1791
|
#
|
|
1721
1792
|
# @option params [required, String] :service_identifier
|
|
@@ -2227,6 +2298,50 @@ module Aws::VPCLattice
|
|
|
2227
2298
|
req.send_request(options)
|
|
2228
2299
|
end
|
|
2229
2300
|
|
|
2301
|
+
# Retrieves information about a domain verification.ß
|
|
2302
|
+
#
|
|
2303
|
+
# @option params [required, String] :domain_verification_identifier
|
|
2304
|
+
# The ID or ARN of the domain verification to retrieve.
|
|
2305
|
+
#
|
|
2306
|
+
# @return [Types::GetDomainVerificationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2307
|
+
#
|
|
2308
|
+
# * {Types::GetDomainVerificationResponse#id #id} => String
|
|
2309
|
+
# * {Types::GetDomainVerificationResponse#arn #arn} => String
|
|
2310
|
+
# * {Types::GetDomainVerificationResponse#domain_name #domain_name} => String
|
|
2311
|
+
# * {Types::GetDomainVerificationResponse#status #status} => String
|
|
2312
|
+
# * {Types::GetDomainVerificationResponse#txt_method_config #txt_method_config} => Types::TxtMethodConfig
|
|
2313
|
+
# * {Types::GetDomainVerificationResponse#created_at #created_at} => Time
|
|
2314
|
+
# * {Types::GetDomainVerificationResponse#last_verified_time #last_verified_time} => Time
|
|
2315
|
+
# * {Types::GetDomainVerificationResponse#tags #tags} => Hash<String,String>
|
|
2316
|
+
#
|
|
2317
|
+
# @example Request syntax with placeholder values
|
|
2318
|
+
#
|
|
2319
|
+
# resp = client.get_domain_verification({
|
|
2320
|
+
# domain_verification_identifier: "DomainVerificationIdentifier", # required
|
|
2321
|
+
# })
|
|
2322
|
+
#
|
|
2323
|
+
# @example Response structure
|
|
2324
|
+
#
|
|
2325
|
+
# resp.id #=> String
|
|
2326
|
+
# resp.arn #=> String
|
|
2327
|
+
# resp.domain_name #=> String
|
|
2328
|
+
# resp.status #=> String, one of "VERIFIED", "PENDING", "VERIFICATION_TIMED_OUT"
|
|
2329
|
+
# resp.txt_method_config.value #=> String
|
|
2330
|
+
# resp.txt_method_config.name #=> String
|
|
2331
|
+
# resp.created_at #=> Time
|
|
2332
|
+
# resp.last_verified_time #=> Time
|
|
2333
|
+
# resp.tags #=> Hash
|
|
2334
|
+
# resp.tags["TagKey"] #=> String
|
|
2335
|
+
#
|
|
2336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetDomainVerification AWS API Documentation
|
|
2337
|
+
#
|
|
2338
|
+
# @overload get_domain_verification(params = {})
|
|
2339
|
+
# @param [Hash] params ({})
|
|
2340
|
+
def get_domain_verification(params = {}, options = {})
|
|
2341
|
+
req = build_request(:get_domain_verification, params)
|
|
2342
|
+
req.send_request(options)
|
|
2343
|
+
end
|
|
2344
|
+
|
|
2230
2345
|
# Retrieves information about the specified listener for the specified
|
|
2231
2346
|
# service.
|
|
2232
2347
|
#
|
|
@@ -2304,6 +2419,10 @@ module Aws::VPCLattice
|
|
|
2304
2419
|
# * {Types::GetResourceConfigurationResponse#amazon_managed #amazon_managed} => Boolean
|
|
2305
2420
|
# * {Types::GetResourceConfigurationResponse#failure_reason #failure_reason} => String
|
|
2306
2421
|
# * {Types::GetResourceConfigurationResponse#last_updated_at #last_updated_at} => Time
|
|
2422
|
+
# * {Types::GetResourceConfigurationResponse#domain_verification_id #domain_verification_id} => String
|
|
2423
|
+
# * {Types::GetResourceConfigurationResponse#domain_verification_arn #domain_verification_arn} => String
|
|
2424
|
+
# * {Types::GetResourceConfigurationResponse#domain_verification_status #domain_verification_status} => String
|
|
2425
|
+
# * {Types::GetResourceConfigurationResponse#group_domain #group_domain} => String
|
|
2307
2426
|
#
|
|
2308
2427
|
# @example Request syntax with placeholder values
|
|
2309
2428
|
#
|
|
@@ -2333,6 +2452,10 @@ module Aws::VPCLattice
|
|
|
2333
2452
|
# resp.amazon_managed #=> Boolean
|
|
2334
2453
|
# resp.failure_reason #=> String
|
|
2335
2454
|
# resp.last_updated_at #=> Time
|
|
2455
|
+
# resp.domain_verification_id #=> String
|
|
2456
|
+
# resp.domain_verification_arn #=> String
|
|
2457
|
+
# resp.domain_verification_status #=> String, one of "VERIFIED", "PENDING", "VERIFICATION_TIMED_OUT"
|
|
2458
|
+
# resp.group_domain #=> String
|
|
2336
2459
|
#
|
|
2337
2460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetResourceConfiguration AWS API Documentation
|
|
2338
2461
|
#
|
|
@@ -2612,8 +2735,10 @@ module Aws::VPCLattice
|
|
|
2612
2735
|
# * {Types::GetServiceNetworkResourceAssociationResponse#failure_code #failure_code} => String
|
|
2613
2736
|
# * {Types::GetServiceNetworkResourceAssociationResponse#last_updated_at #last_updated_at} => Time
|
|
2614
2737
|
# * {Types::GetServiceNetworkResourceAssociationResponse#private_dns_entry #private_dns_entry} => Types::DnsEntry
|
|
2738
|
+
# * {Types::GetServiceNetworkResourceAssociationResponse#private_dns_enabled #private_dns_enabled} => Boolean
|
|
2615
2739
|
# * {Types::GetServiceNetworkResourceAssociationResponse#dns_entry #dns_entry} => Types::DnsEntry
|
|
2616
2740
|
# * {Types::GetServiceNetworkResourceAssociationResponse#is_managed_association #is_managed_association} => Boolean
|
|
2741
|
+
# * {Types::GetServiceNetworkResourceAssociationResponse#domain_verification_status #domain_verification_status} => String
|
|
2617
2742
|
#
|
|
2618
2743
|
# @example Request syntax with placeholder values
|
|
2619
2744
|
#
|
|
@@ -2639,9 +2764,11 @@ module Aws::VPCLattice
|
|
|
2639
2764
|
# resp.last_updated_at #=> Time
|
|
2640
2765
|
# resp.private_dns_entry.domain_name #=> String
|
|
2641
2766
|
# resp.private_dns_entry.hosted_zone_id #=> String
|
|
2767
|
+
# resp.private_dns_enabled #=> Boolean
|
|
2642
2768
|
# resp.dns_entry.domain_name #=> String
|
|
2643
2769
|
# resp.dns_entry.hosted_zone_id #=> String
|
|
2644
2770
|
# resp.is_managed_association #=> Boolean
|
|
2771
|
+
# resp.domain_verification_status #=> String, one of "VERIFIED", "PENDING", "VERIFICATION_TIMED_OUT"
|
|
2645
2772
|
#
|
|
2646
2773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetServiceNetworkResourceAssociation AWS API Documentation
|
|
2647
2774
|
#
|
|
@@ -2728,9 +2855,11 @@ module Aws::VPCLattice
|
|
|
2728
2855
|
# * {Types::GetServiceNetworkVpcAssociationResponse#service_network_arn #service_network_arn} => String
|
|
2729
2856
|
# * {Types::GetServiceNetworkVpcAssociationResponse#vpc_id #vpc_id} => String
|
|
2730
2857
|
# * {Types::GetServiceNetworkVpcAssociationResponse#security_group_ids #security_group_ids} => Array<String>
|
|
2858
|
+
# * {Types::GetServiceNetworkVpcAssociationResponse#private_dns_enabled #private_dns_enabled} => Boolean
|
|
2731
2859
|
# * {Types::GetServiceNetworkVpcAssociationResponse#failure_message #failure_message} => String
|
|
2732
2860
|
# * {Types::GetServiceNetworkVpcAssociationResponse#failure_code #failure_code} => String
|
|
2733
2861
|
# * {Types::GetServiceNetworkVpcAssociationResponse#last_updated_at #last_updated_at} => Time
|
|
2862
|
+
# * {Types::GetServiceNetworkVpcAssociationResponse#dns_options #dns_options} => Types::DnsOptions
|
|
2734
2863
|
#
|
|
2735
2864
|
# @example Request syntax with placeholder values
|
|
2736
2865
|
#
|
|
@@ -2751,9 +2880,13 @@ module Aws::VPCLattice
|
|
|
2751
2880
|
# resp.vpc_id #=> String
|
|
2752
2881
|
# resp.security_group_ids #=> Array
|
|
2753
2882
|
# resp.security_group_ids[0] #=> String
|
|
2883
|
+
# resp.private_dns_enabled #=> Boolean
|
|
2754
2884
|
# resp.failure_message #=> String
|
|
2755
2885
|
# resp.failure_code #=> String
|
|
2756
2886
|
# resp.last_updated_at #=> Time
|
|
2887
|
+
# resp.dns_options.private_dns_preference #=> String, one of "VERIFIED_DOMAINS_ONLY", "ALL_DOMAINS", "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS", "SPECIFIED_DOMAINS_ONLY"
|
|
2888
|
+
# resp.dns_options.private_dns_specified_domains #=> Array
|
|
2889
|
+
# resp.dns_options.private_dns_specified_domains[0] #=> String
|
|
2757
2890
|
#
|
|
2758
2891
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetServiceNetworkVpcAssociation AWS API Documentation
|
|
2759
2892
|
#
|
|
@@ -2877,6 +3010,52 @@ module Aws::VPCLattice
|
|
|
2877
3010
|
req.send_request(options)
|
|
2878
3011
|
end
|
|
2879
3012
|
|
|
3013
|
+
# Lists the domain verifications.
|
|
3014
|
+
#
|
|
3015
|
+
# @option params [Integer] :max_results
|
|
3016
|
+
# The maximum number of results to return.
|
|
3017
|
+
#
|
|
3018
|
+
# @option params [String] :next_token
|
|
3019
|
+
# A pagination token for the next page of results.
|
|
3020
|
+
#
|
|
3021
|
+
# @return [Types::ListDomainVerificationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3022
|
+
#
|
|
3023
|
+
# * {Types::ListDomainVerificationsResponse#items #items} => Array<Types::DomainVerificationSummary>
|
|
3024
|
+
# * {Types::ListDomainVerificationsResponse#next_token #next_token} => String
|
|
3025
|
+
#
|
|
3026
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
3027
|
+
#
|
|
3028
|
+
# @example Request syntax with placeholder values
|
|
3029
|
+
#
|
|
3030
|
+
# resp = client.list_domain_verifications({
|
|
3031
|
+
# max_results: 1,
|
|
3032
|
+
# next_token: "NextToken",
|
|
3033
|
+
# })
|
|
3034
|
+
#
|
|
3035
|
+
# @example Response structure
|
|
3036
|
+
#
|
|
3037
|
+
# resp.items #=> Array
|
|
3038
|
+
# resp.items[0].id #=> String
|
|
3039
|
+
# resp.items[0].arn #=> String
|
|
3040
|
+
# resp.items[0].domain_name #=> String
|
|
3041
|
+
# resp.items[0].status #=> String, one of "VERIFIED", "PENDING", "VERIFICATION_TIMED_OUT"
|
|
3042
|
+
# resp.items[0].txt_method_config.value #=> String
|
|
3043
|
+
# resp.items[0].txt_method_config.name #=> String
|
|
3044
|
+
# resp.items[0].created_at #=> Time
|
|
3045
|
+
# resp.items[0].last_verified_time #=> Time
|
|
3046
|
+
# resp.items[0].tags #=> Hash
|
|
3047
|
+
# resp.items[0].tags["TagKey"] #=> String
|
|
3048
|
+
# resp.next_token #=> String
|
|
3049
|
+
#
|
|
3050
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListDomainVerifications AWS API Documentation
|
|
3051
|
+
#
|
|
3052
|
+
# @overload list_domain_verifications(params = {})
|
|
3053
|
+
# @param [Hash] params ({})
|
|
3054
|
+
def list_domain_verifications(params = {}, options = {})
|
|
3055
|
+
req = build_request(:list_domain_verifications, params)
|
|
3056
|
+
req.send_request(options)
|
|
3057
|
+
end
|
|
3058
|
+
|
|
2880
3059
|
# Lists the listeners for the specified service.
|
|
2881
3060
|
#
|
|
2882
3061
|
# @option params [required, String] :service_identifier
|
|
@@ -2933,6 +3112,9 @@ module Aws::VPCLattice
|
|
|
2933
3112
|
# @option params [String] :resource_configuration_group_identifier
|
|
2934
3113
|
# The ID of the resource configuration of type `Group`.
|
|
2935
3114
|
#
|
|
3115
|
+
# @option params [String] :domain_verification_identifier
|
|
3116
|
+
# The domain verification ID.
|
|
3117
|
+
#
|
|
2936
3118
|
# @option params [Integer] :max_results
|
|
2937
3119
|
# The maximum page size.
|
|
2938
3120
|
#
|
|
@@ -2951,6 +3133,7 @@ module Aws::VPCLattice
|
|
|
2951
3133
|
# resp = client.list_resource_configurations({
|
|
2952
3134
|
# resource_gateway_identifier: "ResourceGatewayIdentifier",
|
|
2953
3135
|
# resource_configuration_group_identifier: "ResourceConfigurationIdentifier",
|
|
3136
|
+
# domain_verification_identifier: "DomainVerificationIdentifier",
|
|
2954
3137
|
# max_results: 1,
|
|
2955
3138
|
# next_token: "NextToken",
|
|
2956
3139
|
# })
|
|
@@ -2968,6 +3151,9 @@ module Aws::VPCLattice
|
|
|
2968
3151
|
# resp.items[0].amazon_managed #=> Boolean
|
|
2969
3152
|
# resp.items[0].created_at #=> Time
|
|
2970
3153
|
# resp.items[0].last_updated_at #=> Time
|
|
3154
|
+
# resp.items[0].custom_domain_name #=> String
|
|
3155
|
+
# resp.items[0].domain_verification_id #=> String
|
|
3156
|
+
# resp.items[0].group_domain #=> String
|
|
2971
3157
|
# resp.next_token #=> String
|
|
2972
3158
|
#
|
|
2973
3159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListResourceConfigurations AWS API Documentation
|
|
@@ -3201,6 +3387,7 @@ module Aws::VPCLattice
|
|
|
3201
3387
|
# resp.items[0].private_dns_entry.hosted_zone_id #=> String
|
|
3202
3388
|
# resp.items[0].is_managed_association #=> Boolean
|
|
3203
3389
|
# resp.items[0].failure_code #=> String
|
|
3390
|
+
# resp.items[0].private_dns_enabled #=> Boolean
|
|
3204
3391
|
# resp.next_token #=> String
|
|
3205
3392
|
#
|
|
3206
3393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListServiceNetworkResourceAssociations AWS API Documentation
|
|
@@ -3322,6 +3509,10 @@ module Aws::VPCLattice
|
|
|
3322
3509
|
# resp.items[0].service_network_id #=> String
|
|
3323
3510
|
# resp.items[0].service_network_name #=> String
|
|
3324
3511
|
# resp.items[0].service_network_arn #=> String
|
|
3512
|
+
# resp.items[0].private_dns_enabled #=> Boolean
|
|
3513
|
+
# resp.items[0].dns_options.private_dns_preference #=> String, one of "VERIFIED_DOMAINS_ONLY", "ALL_DOMAINS", "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS", "SPECIFIED_DOMAINS_ONLY"
|
|
3514
|
+
# resp.items[0].dns_options.private_dns_specified_domains #=> Array
|
|
3515
|
+
# resp.items[0].dns_options.private_dns_specified_domains[0] #=> String
|
|
3325
3516
|
# resp.items[0].vpc_id #=> String
|
|
3326
3517
|
# resp.items[0].last_updated_at #=> Time
|
|
3327
3518
|
# resp.next_token #=> String
|
|
@@ -3738,6 +3929,60 @@ module Aws::VPCLattice
|
|
|
3738
3929
|
req.send_request(options)
|
|
3739
3930
|
end
|
|
3740
3931
|
|
|
3932
|
+
# Starts the domain verification process for a custom domain name.
|
|
3933
|
+
#
|
|
3934
|
+
# @option params [String] :client_token
|
|
3935
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
3936
|
+
# idempotency of the request. If you retry a request that completed
|
|
3937
|
+
# successfully using the same client token and parameters, the retry
|
|
3938
|
+
# succeeds without performing any actions. If the parameters aren't
|
|
3939
|
+
# identical, the retry fails.
|
|
3940
|
+
#
|
|
3941
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
3942
|
+
# not need to pass this option.**
|
|
3943
|
+
#
|
|
3944
|
+
# @option params [required, String] :domain_name
|
|
3945
|
+
# The domain name to verify ownership for.
|
|
3946
|
+
#
|
|
3947
|
+
# @option params [Hash<String,String>] :tags
|
|
3948
|
+
# The tags for the domain verification.
|
|
3949
|
+
#
|
|
3950
|
+
# @return [Types::StartDomainVerificationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3951
|
+
#
|
|
3952
|
+
# * {Types::StartDomainVerificationResponse#id #id} => String
|
|
3953
|
+
# * {Types::StartDomainVerificationResponse#arn #arn} => String
|
|
3954
|
+
# * {Types::StartDomainVerificationResponse#domain_name #domain_name} => String
|
|
3955
|
+
# * {Types::StartDomainVerificationResponse#status #status} => String
|
|
3956
|
+
# * {Types::StartDomainVerificationResponse#txt_method_config #txt_method_config} => Types::TxtMethodConfig
|
|
3957
|
+
#
|
|
3958
|
+
# @example Request syntax with placeholder values
|
|
3959
|
+
#
|
|
3960
|
+
# resp = client.start_domain_verification({
|
|
3961
|
+
# client_token: "ClientToken",
|
|
3962
|
+
# domain_name: "DomainName", # required
|
|
3963
|
+
# tags: {
|
|
3964
|
+
# "TagKey" => "TagValue",
|
|
3965
|
+
# },
|
|
3966
|
+
# })
|
|
3967
|
+
#
|
|
3968
|
+
# @example Response structure
|
|
3969
|
+
#
|
|
3970
|
+
# resp.id #=> String
|
|
3971
|
+
# resp.arn #=> String
|
|
3972
|
+
# resp.domain_name #=> String
|
|
3973
|
+
# resp.status #=> String, one of "VERIFIED", "PENDING", "VERIFICATION_TIMED_OUT"
|
|
3974
|
+
# resp.txt_method_config.value #=> String
|
|
3975
|
+
# resp.txt_method_config.name #=> String
|
|
3976
|
+
#
|
|
3977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/StartDomainVerification AWS API Documentation
|
|
3978
|
+
#
|
|
3979
|
+
# @overload start_domain_verification(params = {})
|
|
3980
|
+
# @param [Hash] params ({})
|
|
3981
|
+
def start_domain_verification(params = {}, options = {})
|
|
3982
|
+
req = build_request(:start_domain_verification, params)
|
|
3983
|
+
req.send_request(options)
|
|
3984
|
+
end
|
|
3985
|
+
|
|
3741
3986
|
# Adds the specified tags to the specified resource.
|
|
3742
3987
|
#
|
|
3743
3988
|
# @option params [required, String] :resource_arn
|
|
@@ -4371,7 +4616,7 @@ module Aws::VPCLattice
|
|
|
4371
4616
|
tracer: tracer
|
|
4372
4617
|
)
|
|
4373
4618
|
context[:gem_name] = 'aws-sdk-vpclattice'
|
|
4374
|
-
context[:gem_version] = '1.
|
|
4619
|
+
context[:gem_version] = '1.40.0'
|
|
4375
4620
|
Seahorse::Client::Request.new(handlers, context)
|
|
4376
4621
|
end
|
|
4377
4622
|
|