aws-sdk-vpclattice 1.52.0 → 1.53.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25176cdfde565b38251dde7171931f6ef25ffc8f79adfe528b2ee4f32a626ac0
4
- data.tar.gz: 7113212aa2cfa5e1c17a4b9cb9fbfc00dd7ca2ed69ad8813c127c790fd2bfaea
3
+ metadata.gz: e0cd85dcc405db36348b931e1ca9074725b3b207eb0d966e04d50a81bd199b3d
4
+ data.tar.gz: fdc6be9c2ceb2c803d44ded6eca0e9a72269b218f5fb34355422acdd81e018d2
5
5
  SHA512:
6
- metadata.gz: 38886a1967fa6d5185ddc942bfb087233fba8fad345e881a418e78ffdef97fcdfbedfeee469853d6101c7c62282ea8f53983299ed98254f8b338800f934f7720
7
- data.tar.gz: 8889f3f3148e063fc5301558e4df135d30ae0d9ff95bdca77b99c0962202d879fd75b8051329edb27559f6b4b271c0236faa6cb67de6c8bdf386d029b4c3c2a6
6
+ metadata.gz: 0b0157a303f6439cc1981b80b0fc69664fa136af1116e606d6820a5d669d303c2ed8dbbedbfba65e13e4bfcf15d6dd55c70171fcc3e0eb9bae6e0cbdff8831d7
7
+ data.tar.gz: 1d399f759c8b50b7053abb4e47f5d8e5ae9e3041a4a865704d36643f288a3c32436fb61b8acfac89a6fefe7854bad22a5a98152d43bdb28455c7384bc9a8253a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2026-08-19)
5
+ ------------------
6
+
7
+ * Feature - Amazon VPC Lattice now supports modification of private DNS options on Service Network VPC Associations
8
+
4
9
  1.52.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
@@ -1599,7 +1599,7 @@ module Aws::VPCLattice
1599
1599
  #
1600
1600
  # resp = client.create_service_network_vpc_association({
1601
1601
  # client_token: "ClientToken",
1602
- # service_network_identifier: "ServiceNetworkIdentifier", # required
1602
+ # service_network_identifier: "ServiceNetworkIdentifierWithoutRegex", # required
1603
1603
  # vpc_identifier: "VpcId", # required
1604
1604
  # private_dns_enabled: false,
1605
1605
  # security_group_ids: ["SecurityGroupId"],
@@ -4539,9 +4539,15 @@ module Aws::VPCLattice
4539
4539
  # @option params [required, String] :service_network_vpc_association_identifier
4540
4540
  # The ID or ARN of the association.
4541
4541
  #
4542
- # @option params [required, Array<String>] :security_group_ids
4542
+ # @option params [Array<String>] :security_group_ids
4543
4543
  # The IDs of the security groups.
4544
4544
  #
4545
+ # @option params [Boolean] :private_dns_enabled
4546
+ # Indicates if private DNS is enabled for the VPC association.
4547
+ #
4548
+ # @option params [Types::DnsOptions] :dns_options
4549
+ # DNS options for the service network VPC association.
4550
+ #
4545
4551
  # @return [Types::UpdateServiceNetworkVpcAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4546
4552
  #
4547
4553
  # * {Types::UpdateServiceNetworkVpcAssociationResponse#id #id} => String
@@ -4549,12 +4555,19 @@ module Aws::VPCLattice
4549
4555
  # * {Types::UpdateServiceNetworkVpcAssociationResponse#status #status} => String
4550
4556
  # * {Types::UpdateServiceNetworkVpcAssociationResponse#created_by #created_by} => String
4551
4557
  # * {Types::UpdateServiceNetworkVpcAssociationResponse#security_group_ids #security_group_ids} => Array&lt;String&gt;
4558
+ # * {Types::UpdateServiceNetworkVpcAssociationResponse#private_dns_enabled #private_dns_enabled} => Boolean
4559
+ # * {Types::UpdateServiceNetworkVpcAssociationResponse#dns_options #dns_options} => Types::DnsOptions
4552
4560
  #
4553
4561
  # @example Request syntax with placeholder values
4554
4562
  #
4555
4563
  # resp = client.update_service_network_vpc_association({
4556
4564
  # service_network_vpc_association_identifier: "ServiceNetworkVpcAssociationIdentifier", # required
4557
- # security_group_ids: ["SecurityGroupId"], # required
4565
+ # security_group_ids: ["SecurityGroupId"],
4566
+ # private_dns_enabled: false,
4567
+ # dns_options: {
4568
+ # private_dns_preference: "VERIFIED_DOMAINS_ONLY", # accepts VERIFIED_DOMAINS_ONLY, ALL_DOMAINS, VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS, SPECIFIED_DOMAINS_ONLY
4569
+ # private_dns_specified_domains: ["PrivateDnsSpecifiedDomain"],
4570
+ # },
4558
4571
  # })
4559
4572
  #
4560
4573
  # @example Response structure
@@ -4565,6 +4578,10 @@ module Aws::VPCLattice
4565
4578
  # resp.created_by #=> String
4566
4579
  # resp.security_group_ids #=> Array
4567
4580
  # resp.security_group_ids[0] #=> String
4581
+ # resp.private_dns_enabled #=> Boolean
4582
+ # resp.dns_options.private_dns_preference #=> String, one of "VERIFIED_DOMAINS_ONLY", "ALL_DOMAINS", "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS", "SPECIFIED_DOMAINS_ONLY"
4583
+ # resp.dns_options.private_dns_specified_domains #=> Array
4584
+ # resp.dns_options.private_dns_specified_domains[0] #=> String
4568
4585
  #
4569
4586
  # @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateServiceNetworkVpcAssociation AWS API Documentation
4570
4587
  #
@@ -4663,7 +4680,7 @@ module Aws::VPCLattice
4663
4680
  tracer: tracer
4664
4681
  )
4665
4682
  context[:gem_name] = 'aws-sdk-vpclattice'
4666
- context[:gem_version] = '1.52.0'
4683
+ context[:gem_version] = '1.53.0'
4667
4684
  Seahorse::Client::Request.new(handlers, context)
4668
4685
  end
4669
4686
 
@@ -560,7 +560,7 @@ module Aws::VPCLattice
560
560
  CreateServiceNetworkServiceAssociationResponse.struct_class = Types::CreateServiceNetworkServiceAssociationResponse
561
561
 
562
562
  CreateServiceNetworkVpcAssociationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
563
- CreateServiceNetworkVpcAssociationRequest.add_member(:service_network_identifier, Shapes::ShapeRef.new(shape: ServiceNetworkIdentifier, required: true, location_name: "serviceNetworkIdentifier"))
563
+ CreateServiceNetworkVpcAssociationRequest.add_member(:service_network_identifier, Shapes::ShapeRef.new(shape: ServiceNetworkIdentifierWithoutRegex, required: true, location_name: "serviceNetworkIdentifier"))
564
564
  CreateServiceNetworkVpcAssociationRequest.add_member(:vpc_identifier, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcIdentifier"))
565
565
  CreateServiceNetworkVpcAssociationRequest.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "privateDnsEnabled"))
566
566
  CreateServiceNetworkVpcAssociationRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: CreateServiceNetworkVpcAssociationRequestSecurityGroupIdsList, location_name: "securityGroupIds"))
@@ -1627,7 +1627,9 @@ module Aws::VPCLattice
1627
1627
  UpdateServiceNetworkResponse.struct_class = Types::UpdateServiceNetworkResponse
1628
1628
 
1629
1629
  UpdateServiceNetworkVpcAssociationRequest.add_member(:service_network_vpc_association_identifier, Shapes::ShapeRef.new(shape: ServiceNetworkVpcAssociationIdentifier, required: true, location: "uri", location_name: "serviceNetworkVpcAssociationIdentifier"))
1630
- UpdateServiceNetworkVpcAssociationRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: UpdateServiceNetworkVpcAssociationRequestSecurityGroupIdsList, required: true, location_name: "securityGroupIds"))
1630
+ UpdateServiceNetworkVpcAssociationRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: UpdateServiceNetworkVpcAssociationRequestSecurityGroupIdsList, location_name: "securityGroupIds"))
1631
+ UpdateServiceNetworkVpcAssociationRequest.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "privateDnsEnabled"))
1632
+ UpdateServiceNetworkVpcAssociationRequest.add_member(:dns_options, Shapes::ShapeRef.new(shape: DnsOptions, location_name: "dnsOptions"))
1631
1633
  UpdateServiceNetworkVpcAssociationRequest.struct_class = Types::UpdateServiceNetworkVpcAssociationRequest
1632
1634
 
1633
1635
  UpdateServiceNetworkVpcAssociationRequestSecurityGroupIdsList.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
@@ -1637,6 +1639,8 @@ module Aws::VPCLattice
1637
1639
  UpdateServiceNetworkVpcAssociationResponse.add_member(:status, Shapes::ShapeRef.new(shape: ServiceNetworkVpcAssociationStatus, location_name: "status"))
1638
1640
  UpdateServiceNetworkVpcAssociationResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: AccountId, location_name: "createdBy"))
1639
1641
  UpdateServiceNetworkVpcAssociationResponse.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupList, location_name: "securityGroupIds"))
1642
+ UpdateServiceNetworkVpcAssociationResponse.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "privateDnsEnabled"))
1643
+ UpdateServiceNetworkVpcAssociationResponse.add_member(:dns_options, Shapes::ShapeRef.new(shape: DnsOptions, location_name: "dnsOptions"))
1640
1644
  UpdateServiceNetworkVpcAssociationResponse.struct_class = Types::UpdateServiceNetworkVpcAssociationResponse
1641
1645
 
1642
1646
  UpdateServiceRequest.add_member(:service_identifier, Shapes::ShapeRef.new(shape: ServiceIdentifier, required: true, location: "uri", location_name: "serviceIdentifier"))
@@ -5926,11 +5926,21 @@ module Aws::VPCLattice
5926
5926
  # The IDs of the security groups.
5927
5927
  # @return [Array<String>]
5928
5928
  #
5929
+ # @!attribute [rw] private_dns_enabled
5930
+ # Indicates if private DNS is enabled for the VPC association.
5931
+ # @return [Boolean]
5932
+ #
5933
+ # @!attribute [rw] dns_options
5934
+ # DNS options for the service network VPC association.
5935
+ # @return [Types::DnsOptions]
5936
+ #
5929
5937
  # @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateServiceNetworkVpcAssociationRequest AWS API Documentation
5930
5938
  #
5931
5939
  class UpdateServiceNetworkVpcAssociationRequest < Struct.new(
5932
5940
  :service_network_vpc_association_identifier,
5933
- :security_group_ids)
5941
+ :security_group_ids,
5942
+ :private_dns_enabled,
5943
+ :dns_options)
5934
5944
  SENSITIVE = []
5935
5945
  include Aws::Structure
5936
5946
  end
@@ -5957,6 +5967,14 @@ module Aws::VPCLattice
5957
5967
  # The IDs of the security groups.
5958
5968
  # @return [Array<String>]
5959
5969
  #
5970
+ # @!attribute [rw] private_dns_enabled
5971
+ # Indicates if private DNS is enabled for the VPC association.
5972
+ # @return [Boolean]
5973
+ #
5974
+ # @!attribute [rw] dns_options
5975
+ # DNS options for the service network VPC association.
5976
+ # @return [Types::DnsOptions]
5977
+ #
5960
5978
  # @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateServiceNetworkVpcAssociationResponse AWS API Documentation
5961
5979
  #
5962
5980
  class UpdateServiceNetworkVpcAssociationResponse < Struct.new(
@@ -5964,7 +5982,9 @@ module Aws::VPCLattice
5964
5982
  :arn,
5965
5983
  :status,
5966
5984
  :created_by,
5967
- :security_group_ids)
5985
+ :security_group_ids,
5986
+ :private_dns_enabled,
5987
+ :dns_options)
5968
5988
  SENSITIVE = []
5969
5989
  include Aws::Structure
5970
5990
  end
@@ -55,7 +55,7 @@ module Aws::VPCLattice
55
55
  autoload :EndpointProvider, 'aws-sdk-vpclattice/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-vpclattice/endpoints'
57
57
 
58
- GEM_VERSION = '1.52.0'
58
+ GEM_VERSION = '1.53.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1253,11 +1253,18 @@ module Aws
1253
1253
  def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
1254
1254
  def created_by: () -> ::String
1255
1255
  def security_group_ids: () -> ::Array[::String]
1256
+ def private_dns_enabled: () -> bool
1257
+ def dns_options: () -> Types::DnsOptions
1256
1258
  end
1257
1259
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_service_network_vpc_association-instance_method
1258
1260
  def update_service_network_vpc_association: (
1259
1261
  service_network_vpc_association_identifier: ::String,
1260
- security_group_ids: Array[::String]
1262
+ ?security_group_ids: Array[::String],
1263
+ ?private_dns_enabled: bool,
1264
+ ?dns_options: {
1265
+ private_dns_preference: ("VERIFIED_DOMAINS_ONLY" | "ALL_DOMAINS" | "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS" | "SPECIFIED_DOMAINS_ONLY")?,
1266
+ private_dns_specified_domains: Array[::String]?
1267
+ }
1261
1268
  ) -> _UpdateServiceNetworkVpcAssociationResponseSuccess
1262
1269
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceNetworkVpcAssociationResponseSuccess
1263
1270
 
data/sig/types.rbs CHANGED
@@ -1579,6 +1579,8 @@ module Aws::VPCLattice
1579
1579
  class UpdateServiceNetworkVpcAssociationRequest
1580
1580
  attr_accessor service_network_vpc_association_identifier: ::String
1581
1581
  attr_accessor security_group_ids: ::Array[::String]
1582
+ attr_accessor private_dns_enabled: bool
1583
+ attr_accessor dns_options: Types::DnsOptions
1582
1584
  SENSITIVE: []
1583
1585
  end
1584
1586
 
@@ -1588,6 +1590,8 @@ module Aws::VPCLattice
1588
1590
  attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
1589
1591
  attr_accessor created_by: ::String
1590
1592
  attr_accessor security_group_ids: ::Array[::String]
1593
+ attr_accessor private_dns_enabled: bool
1594
+ attr_accessor dns_options: Types::DnsOptions
1591
1595
  SENSITIVE: []
1592
1596
  end
1593
1597
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-vpclattice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services