aws-sdk-datazone 1.66.0 → 1.67.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: dbd572f3efa45b5fcb3d81d062bbfb7cdf4d1418f4d0f264206becfd728a5b26
4
- data.tar.gz: dc09052cd676eb1ace2008f6b0546502629f29084994d33591524d9cae306d03
3
+ metadata.gz: c59daf5f87fbc14d34a26862c466f6dadb99436fa629461934936c36c3e5247c
4
+ data.tar.gz: f817d2ac6e3f198a4340214690799d625809a60d174507f6456f73a42c150689
5
5
  SHA512:
6
- metadata.gz: 248f7df239dd27f434de007ba50604488c37019deb5cb028b08e849c36de7139065c9852b2a23fabdd86484f9bfa1aa101c9ed520c48de07bb9491fd270948bc
7
- data.tar.gz: a9376a91dc6e45da1cc908623026b983331ed03f1aeafcb39ab4e9fbddbaeb17c3c3a05428df3ee60412921b123b59133a2a4c4acf7b469fb3be2c4068f21efd
6
+ metadata.gz: '037961541147537924b82c98bb5a2f7e7b10317dc285a3216d1007d7efab60819ec28895f204a2a1e41d784a065f25996efed27c191b44c8742256e9f02f8f84'
7
+ data.tar.gz: d6ede2eaf3e7d2cc50655f756ffd759d518471ec8168aece052227c36ca3baedcc09db5b01db96789323afa9656caa1e8c279ab273504650ce35e7df74ee7c1b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2026-01-23)
5
+ ------------------
6
+
7
+ * Feature - Added api for deleting data export configuration for a domain
8
+
4
9
  1.66.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.67.0
@@ -4677,6 +4677,37 @@ module Aws::DataZone
4677
4677
  req.send_request(options)
4678
4678
  end
4679
4679
 
4680
+ # Deletes data export configuration for a domain.
4681
+ #
4682
+ # This operation does not delete the S3 table created by the
4683
+ # PutDataExportConfiguration operation.
4684
+ #
4685
+ # To temporarily disable export without deleting the configuration, use
4686
+ # the PutDataExportConfiguration operation with the `--no-enable-export`
4687
+ # flag instead. This allows you to re-enable export for the same domain
4688
+ # using the `--enable-export` flag without deleting S3 table.
4689
+ #
4690
+ # @option params [required, String] :domain_identifier
4691
+ # The domain ID for which you want to delete the data export
4692
+ # configuration.
4693
+ #
4694
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4695
+ #
4696
+ # @example Request syntax with placeholder values
4697
+ #
4698
+ # resp = client.delete_data_export_configuration({
4699
+ # domain_identifier: "DomainId", # required
4700
+ # })
4701
+ #
4702
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDataExportConfiguration AWS API Documentation
4703
+ #
4704
+ # @overload delete_data_export_configuration(params = {})
4705
+ # @param [Hash] params ({})
4706
+ def delete_data_export_configuration(params = {}, options = {})
4707
+ req = build_request(:delete_data_export_configuration, params)
4708
+ req.send_request(options)
4709
+ end
4710
+
4680
4711
  # Deletes a data product in Amazon DataZone.
4681
4712
  #
4682
4713
  # Prerequisites:
@@ -11026,14 +11057,28 @@ module Aws::DataZone
11026
11057
 
11027
11058
  # Creates data export configuration details.
11028
11059
  #
11029
- # In the current release, you can enable exporting asset metadata only
11030
- # for one domain per Amazon Web Services account per region. If you
11031
- # disable exporting asset metadata feature for a domain where it's
11032
- # already enabled, you cannot enable this feature for another domain in
11033
- # the same Amazon Web Services account and region.
11060
+ # If you want to temporarily disable export and later re-enable it for
11061
+ # the same domain, use the `--no-enable-export` flag to disable and the
11062
+ # `--enable-export` flag to re-enable. This preserves the configuration
11063
+ # and allows you to re-enable export without deleting S3 table.
11064
+ #
11065
+ # <note markdown="1"> You can enable asset metadata export for only one domain per account
11066
+ # per Region. To enable export for a different domain, complete the
11067
+ # following steps:
11068
+ #
11069
+ # 1. Delete the export configuration for the currently enabled domain
11070
+ # using the DeleteDataExportConfiguration operation.
11071
+ #
11072
+ # 2. Delete the asset S3 table under the aws-sagemaker-catalog S3 table
11073
+ # bucket. We recommend backing up the S3 table before deletion.
11074
+ #
11075
+ # 3. Call the PutDataExportConfiguration API to enable export for the
11076
+ # new domain.
11077
+ #
11078
+ # </note>
11034
11079
  #
11035
11080
  # @option params [required, String] :domain_identifier
11036
- # The domain ID where you want to create data export configuration
11081
+ # The domain ID for which you want to create data export configuration
11037
11082
  # details.
11038
11083
  #
11039
11084
  # @option params [required, Boolean] :enable_export
@@ -14862,7 +14907,7 @@ module Aws::DataZone
14862
14907
  tracer: tracer
14863
14908
  )
14864
14909
  context[:gem_name] = 'aws-sdk-datazone'
14865
- context[:gem_version] = '1.66.0'
14910
+ context[:gem_version] = '1.67.0'
14866
14911
  Seahorse::Client::Request.new(handlers, context)
14867
14912
  end
14868
14913
 
@@ -302,6 +302,8 @@ module Aws::DataZone
302
302
  DeleteAssetTypeOutput = Shapes::StructureShape.new(name: 'DeleteAssetTypeOutput')
303
303
  DeleteConnectionInput = Shapes::StructureShape.new(name: 'DeleteConnectionInput')
304
304
  DeleteConnectionOutput = Shapes::StructureShape.new(name: 'DeleteConnectionOutput')
305
+ DeleteDataExportConfigurationInput = Shapes::StructureShape.new(name: 'DeleteDataExportConfigurationInput')
306
+ DeleteDataExportConfigurationOutput = Shapes::StructureShape.new(name: 'DeleteDataExportConfigurationOutput')
305
307
  DeleteDataProductInput = Shapes::StructureShape.new(name: 'DeleteDataProductInput')
306
308
  DeleteDataProductOutput = Shapes::StructureShape.new(name: 'DeleteDataProductOutput')
307
309
  DeleteDataSourceInput = Shapes::StructureShape.new(name: 'DeleteDataSourceInput')
@@ -2595,6 +2597,11 @@ module Aws::DataZone
2595
2597
  DeleteConnectionOutput.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
2596
2598
  DeleteConnectionOutput.struct_class = Types::DeleteConnectionOutput
2597
2599
 
2600
+ DeleteDataExportConfigurationInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
2601
+ DeleteDataExportConfigurationInput.struct_class = Types::DeleteDataExportConfigurationInput
2602
+
2603
+ DeleteDataExportConfigurationOutput.struct_class = Types::DeleteDataExportConfigurationOutput
2604
+
2598
2605
  DeleteDataProductInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
2599
2606
  DeleteDataProductInput.add_member(:identifier, Shapes::ShapeRef.new(shape: DataProductId, required: true, location: "uri", location_name: "identifier"))
2600
2607
  DeleteDataProductInput.struct_class = Types::DeleteDataProductInput
@@ -6902,6 +6909,21 @@ module Aws::DataZone
6902
6909
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
6903
6910
  end)
6904
6911
 
6912
+ api.add_operation(:delete_data_export_configuration, Seahorse::Model::Operation.new.tap do |o|
6913
+ o.name = "DeleteDataExportConfiguration"
6914
+ o.http_method = "DELETE"
6915
+ o.http_request_uri = "/v2/domains/{domainIdentifier}/data-export-configuration"
6916
+ o.input = Shapes::ShapeRef.new(shape: DeleteDataExportConfigurationInput)
6917
+ o.output = Shapes::ShapeRef.new(shape: DeleteDataExportConfigurationOutput)
6918
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
6919
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
6920
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
6921
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
6922
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
6923
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
6924
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
6925
+ end)
6926
+
6905
6927
  api.add_operation(:delete_data_product, Seahorse::Model::Operation.new.tap do |o|
6906
6928
  o.name = "DeleteDataProduct"
6907
6929
  o.http_method = "DELETE"
@@ -6402,6 +6402,23 @@ module Aws::DataZone
6402
6402
  include Aws::Structure
6403
6403
  end
6404
6404
 
6405
+ # @!attribute [rw] domain_identifier
6406
+ # The domain ID for which you want to delete the data export
6407
+ # configuration.
6408
+ # @return [String]
6409
+ #
6410
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDataExportConfigurationInput AWS API Documentation
6411
+ #
6412
+ class DeleteDataExportConfigurationInput < Struct.new(
6413
+ :domain_identifier)
6414
+ SENSITIVE = []
6415
+ include Aws::Structure
6416
+ end
6417
+
6418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDataExportConfigurationOutput AWS API Documentation
6419
+ #
6420
+ class DeleteDataExportConfigurationOutput < Aws::EmptyStructure; end
6421
+
6405
6422
  # @!attribute [rw] domain_identifier
6406
6423
  # The ID of the Amazon DataZone domain in which the data product is
6407
6424
  # deleted.
@@ -16701,7 +16718,7 @@ module Aws::DataZone
16701
16718
  end
16702
16719
 
16703
16720
  # @!attribute [rw] domain_identifier
16704
- # The domain ID where you want to create data export configuration
16721
+ # The domain ID for which you want to create data export configuration
16705
16722
  # details.
16706
16723
  # @return [String]
16707
16724
  #
@@ -55,7 +55,7 @@ module Aws::DataZone
55
55
  autoload :EndpointProvider, 'aws-sdk-datazone/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-datazone/endpoints'
57
57
 
58
- GEM_VERSION = '1.66.0'
58
+ GEM_VERSION = '1.67.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1630,6 +1630,15 @@ module Aws
1630
1630
  ) -> _DeleteConnectionResponseSuccess
1631
1631
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionResponseSuccess
1632
1632
 
1633
+ interface _DeleteDataExportConfigurationResponseSuccess
1634
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataExportConfigurationOutput]
1635
+ end
1636
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_data_export_configuration-instance_method
1637
+ def delete_data_export_configuration: (
1638
+ domain_identifier: ::String
1639
+ ) -> _DeleteDataExportConfigurationResponseSuccess
1640
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataExportConfigurationResponseSuccess
1641
+
1633
1642
  interface _DeleteDataProductResponseSuccess
1634
1643
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataProductOutput]
1635
1644
  end
data/sig/types.rbs CHANGED
@@ -1718,6 +1718,14 @@ module Aws::DataZone
1718
1718
  SENSITIVE: []
1719
1719
  end
1720
1720
 
1721
+ class DeleteDataExportConfigurationInput
1722
+ attr_accessor domain_identifier: ::String
1723
+ SENSITIVE: []
1724
+ end
1725
+
1726
+ class DeleteDataExportConfigurationOutput < Aws::EmptyStructure
1727
+ end
1728
+
1721
1729
  class DeleteDataProductInput
1722
1730
  attr_accessor domain_identifier: ::String
1723
1731
  attr_accessor identifier: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datazone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.66.0
4
+ version: 1.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services