aws-sdk-datazone 1.61.0 → 1.62.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-datazone/client.rb +136 -12
- data/lib/aws-sdk-datazone/client_api.rb +82 -4
- data/lib/aws-sdk-datazone/types.rb +194 -5
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +44 -8
- data/sig/types.rbs +55 -9
- 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: 01ab3497a0fd493654d9b65234c53c9c3501e922f413300c0b2b0fb88afb01d8
|
|
4
|
+
data.tar.gz: '028d17233a2de95cba0ea2e9c7c353eb0242c84644abc90d228629d0242c2ca9'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b994c858dd80dfb56b9fcfd194e7b203d871aaa65ebc89d87b13f0e1b178a6e89dfe36aeff02c46f55003b770b9613aa0b95cd3cafde8e05f9f7831d5fc8856
|
|
7
|
+
data.tar.gz: 5657883528481e60f79c46bcc96b9822ef1622ce1d33c43f5a0bc3c94989b4bfe43f9e6832c2e8297d5ca3f8df723484572e300089555add24b24a0420874b78
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.62.0 (2025-12-02)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon DataZone now supports exporting Catalog datasets as Amazon S3 tables, and provides automatic business glossary term suggestions for data assets.
|
|
8
|
+
|
|
4
9
|
1.61.0 (2025-11-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.62.0
|
|
@@ -6063,6 +6063,46 @@ module Aws::DataZone
|
|
|
6063
6063
|
req.send_request(options)
|
|
6064
6064
|
end
|
|
6065
6065
|
|
|
6066
|
+
# Gets data export configuration details.
|
|
6067
|
+
#
|
|
6068
|
+
# @option params [required, String] :domain_identifier
|
|
6069
|
+
# The ID of the domain where you want to get the data export
|
|
6070
|
+
# configuration details.
|
|
6071
|
+
#
|
|
6072
|
+
# @return [Types::GetDataExportConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6073
|
+
#
|
|
6074
|
+
# * {Types::GetDataExportConfigurationOutput#created_at #created_at} => Time
|
|
6075
|
+
# * {Types::GetDataExportConfigurationOutput#encryption_configuration #encryption_configuration} => Types::EncryptionConfiguration
|
|
6076
|
+
# * {Types::GetDataExportConfigurationOutput#is_export_enabled #is_export_enabled} => Boolean
|
|
6077
|
+
# * {Types::GetDataExportConfigurationOutput#s3_table_bucket_arn #s3_table_bucket_arn} => String
|
|
6078
|
+
# * {Types::GetDataExportConfigurationOutput#status #status} => String
|
|
6079
|
+
# * {Types::GetDataExportConfigurationOutput#updated_at #updated_at} => Time
|
|
6080
|
+
#
|
|
6081
|
+
# @example Request syntax with placeholder values
|
|
6082
|
+
#
|
|
6083
|
+
# resp = client.get_data_export_configuration({
|
|
6084
|
+
# domain_identifier: "DomainId", # required
|
|
6085
|
+
# })
|
|
6086
|
+
#
|
|
6087
|
+
# @example Response structure
|
|
6088
|
+
#
|
|
6089
|
+
# resp.created_at #=> Time
|
|
6090
|
+
# resp.encryption_configuration.kms_key_arn #=> String
|
|
6091
|
+
# resp.encryption_configuration.sse_algorithm #=> String
|
|
6092
|
+
# resp.is_export_enabled #=> Boolean
|
|
6093
|
+
# resp.s3_table_bucket_arn #=> String
|
|
6094
|
+
# resp.status #=> String, one of "COMPLETED", "FAILED"
|
|
6095
|
+
# resp.updated_at #=> Time
|
|
6096
|
+
#
|
|
6097
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDataExportConfiguration AWS API Documentation
|
|
6098
|
+
#
|
|
6099
|
+
# @overload get_data_export_configuration(params = {})
|
|
6100
|
+
# @param [Hash] params ({})
|
|
6101
|
+
def get_data_export_configuration(params = {}, options = {})
|
|
6102
|
+
req = build_request(:get_data_export_configuration, params)
|
|
6103
|
+
req.send_request(options)
|
|
6104
|
+
end
|
|
6105
|
+
|
|
6066
6106
|
# Gets the data product.
|
|
6067
6107
|
#
|
|
6068
6108
|
# Prerequisites:
|
|
@@ -7381,6 +7421,9 @@ module Aws::DataZone
|
|
|
7381
7421
|
# @option params [required, String] :identifier
|
|
7382
7422
|
# The identifier of the metadata generation run.
|
|
7383
7423
|
#
|
|
7424
|
+
# @option params [String] :type
|
|
7425
|
+
# The type of the metadata generation run.
|
|
7426
|
+
#
|
|
7384
7427
|
# @return [Types::GetMetadataGenerationRunOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7385
7428
|
#
|
|
7386
7429
|
# * {Types::GetMetadataGenerationRunOutput#created_at #created_at} => Time
|
|
@@ -7391,12 +7434,15 @@ module Aws::DataZone
|
|
|
7391
7434
|
# * {Types::GetMetadataGenerationRunOutput#status #status} => String
|
|
7392
7435
|
# * {Types::GetMetadataGenerationRunOutput#target #target} => Types::MetadataGenerationRunTarget
|
|
7393
7436
|
# * {Types::GetMetadataGenerationRunOutput#type #type} => String
|
|
7437
|
+
# * {Types::GetMetadataGenerationRunOutput#type_stats #type_stats} => Array<Types::MetadataGenerationRunTypeStat>
|
|
7438
|
+
# * {Types::GetMetadataGenerationRunOutput#types #types} => Array<String>
|
|
7394
7439
|
#
|
|
7395
7440
|
# @example Request syntax with placeholder values
|
|
7396
7441
|
#
|
|
7397
7442
|
# resp = client.get_metadata_generation_run({
|
|
7398
7443
|
# domain_identifier: "DomainId", # required
|
|
7399
7444
|
# identifier: "MetadataGenerationRunIdentifier", # required
|
|
7445
|
+
# type: "BUSINESS_DESCRIPTIONS", # accepts BUSINESS_DESCRIPTIONS, BUSINESS_NAMES, BUSINESS_GLOSSARY_ASSOCIATIONS
|
|
7400
7446
|
# })
|
|
7401
7447
|
#
|
|
7402
7448
|
# @example Response structure
|
|
@@ -7406,11 +7452,17 @@ module Aws::DataZone
|
|
|
7406
7452
|
# resp.domain_id #=> String
|
|
7407
7453
|
# resp.id #=> String
|
|
7408
7454
|
# resp.owning_project_id #=> String
|
|
7409
|
-
# resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED"
|
|
7455
|
+
# resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED", "PARTIALLY_SUCCEEDED"
|
|
7410
7456
|
# resp.target.identifier #=> String
|
|
7411
7457
|
# resp.target.revision #=> String
|
|
7412
7458
|
# resp.target.type #=> String, one of "ASSET"
|
|
7413
|
-
# resp.type #=> String, one of "BUSINESS_DESCRIPTIONS"
|
|
7459
|
+
# resp.type #=> String, one of "BUSINESS_DESCRIPTIONS", "BUSINESS_NAMES", "BUSINESS_GLOSSARY_ASSOCIATIONS"
|
|
7460
|
+
# resp.type_stats #=> Array
|
|
7461
|
+
# resp.type_stats[0].error_message #=> String
|
|
7462
|
+
# resp.type_stats[0].status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED", "PARTIALLY_SUCCEEDED"
|
|
7463
|
+
# resp.type_stats[0].type #=> String, one of "BUSINESS_DESCRIPTIONS", "BUSINESS_NAMES", "BUSINESS_GLOSSARY_ASSOCIATIONS"
|
|
7464
|
+
# resp.types #=> Array
|
|
7465
|
+
# resp.types[0] #=> String, one of "BUSINESS_DESCRIPTIONS", "BUSINESS_NAMES", "BUSINESS_GLOSSARY_ASSOCIATIONS"
|
|
7414
7466
|
#
|
|
7415
7467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetMetadataGenerationRun AWS API Documentation
|
|
7416
7468
|
#
|
|
@@ -9701,6 +9753,9 @@ module Aws::DataZone
|
|
|
9701
9753
|
# @option params [String] :status
|
|
9702
9754
|
# The status of the metadata generation runs.
|
|
9703
9755
|
#
|
|
9756
|
+
# @option params [String] :target_identifier
|
|
9757
|
+
# The target ID for which you want to list metadata generation runs.
|
|
9758
|
+
#
|
|
9704
9759
|
# @option params [String] :type
|
|
9705
9760
|
# The type of the metadata generation runs.
|
|
9706
9761
|
#
|
|
@@ -9717,8 +9772,9 @@ module Aws::DataZone
|
|
|
9717
9772
|
# domain_identifier: "DomainId", # required
|
|
9718
9773
|
# max_results: 1,
|
|
9719
9774
|
# next_token: "PaginationToken",
|
|
9720
|
-
# status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, CANCELED, SUCCEEDED, FAILED
|
|
9721
|
-
#
|
|
9775
|
+
# status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, CANCELED, SUCCEEDED, FAILED, PARTIALLY_SUCCEEDED
|
|
9776
|
+
# target_identifier: "EntityId",
|
|
9777
|
+
# type: "BUSINESS_DESCRIPTIONS", # accepts BUSINESS_DESCRIPTIONS, BUSINESS_NAMES, BUSINESS_GLOSSARY_ASSOCIATIONS
|
|
9722
9778
|
# })
|
|
9723
9779
|
#
|
|
9724
9780
|
# @example Response structure
|
|
@@ -9729,11 +9785,13 @@ module Aws::DataZone
|
|
|
9729
9785
|
# resp.items[0].domain_id #=> String
|
|
9730
9786
|
# resp.items[0].id #=> String
|
|
9731
9787
|
# resp.items[0].owning_project_id #=> String
|
|
9732
|
-
# resp.items[0].status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED"
|
|
9788
|
+
# resp.items[0].status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED", "PARTIALLY_SUCCEEDED"
|
|
9733
9789
|
# resp.items[0].target.identifier #=> String
|
|
9734
9790
|
# resp.items[0].target.revision #=> String
|
|
9735
9791
|
# resp.items[0].target.type #=> String, one of "ASSET"
|
|
9736
|
-
# resp.items[0].type #=> String, one of "BUSINESS_DESCRIPTIONS"
|
|
9792
|
+
# resp.items[0].type #=> String, one of "BUSINESS_DESCRIPTIONS", "BUSINESS_NAMES", "BUSINESS_GLOSSARY_ASSOCIATIONS"
|
|
9793
|
+
# resp.items[0].types #=> Array
|
|
9794
|
+
# resp.items[0].types[0] #=> String, one of "BUSINESS_DESCRIPTIONS", "BUSINESS_NAMES", "BUSINESS_GLOSSARY_ASSOCIATIONS"
|
|
9737
9795
|
# resp.next_token #=> String
|
|
9738
9796
|
#
|
|
9739
9797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListMetadataGenerationRuns AWS API Documentation
|
|
@@ -10933,6 +10991,64 @@ module Aws::DataZone
|
|
|
10933
10991
|
req.send_request(options)
|
|
10934
10992
|
end
|
|
10935
10993
|
|
|
10994
|
+
# Creates data export configuration details.
|
|
10995
|
+
#
|
|
10996
|
+
# In the current release, you can enable exporting asset metadata only
|
|
10997
|
+
# for one domain per Amazon Web Services account per region. If you
|
|
10998
|
+
# disable exporting asset metadata feature for a domain where it's
|
|
10999
|
+
# already enabled, you cannot enable this feature for another domain in
|
|
11000
|
+
# the same Amazon Web Services account and region.
|
|
11001
|
+
#
|
|
11002
|
+
# @option params [String] :client_token
|
|
11003
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
11004
|
+
# request. This field is automatically populated if not provided.
|
|
11005
|
+
#
|
|
11006
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
11007
|
+
# not need to pass this option.**
|
|
11008
|
+
#
|
|
11009
|
+
# @option params [required, String] :domain_identifier
|
|
11010
|
+
# The domain ID where you want to create data export configuration
|
|
11011
|
+
# details.
|
|
11012
|
+
#
|
|
11013
|
+
# @option params [required, Boolean] :enable_export
|
|
11014
|
+
# Specifies that the export is to be enabled as part of creating data
|
|
11015
|
+
# export configuration details.
|
|
11016
|
+
#
|
|
11017
|
+
# @option params [Types::EncryptionConfiguration] :encryption_configuration
|
|
11018
|
+
# The encryption configuration as part of creating data export
|
|
11019
|
+
# configuration details.
|
|
11020
|
+
#
|
|
11021
|
+
# The KMS key provided here as part of encryptionConfiguration must have
|
|
11022
|
+
# the required permissions as described in [KMS permissions for
|
|
11023
|
+
# exporting asset metadata in Amazon SageMaker Unified Studio][1].
|
|
11024
|
+
#
|
|
11025
|
+
#
|
|
11026
|
+
#
|
|
11027
|
+
# [1]: https://docs.aws.amazon.com/sagemaker-unified-studio/latest/adminguide/sagemaker-unified-studio-export-asset-metadata-kms-permissions.html
|
|
11028
|
+
#
|
|
11029
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
11030
|
+
#
|
|
11031
|
+
# @example Request syntax with placeholder values
|
|
11032
|
+
#
|
|
11033
|
+
# resp = client.put_data_export_configuration({
|
|
11034
|
+
# client_token: "ClientToken",
|
|
11035
|
+
# domain_identifier: "DomainId", # required
|
|
11036
|
+
# enable_export: false, # required
|
|
11037
|
+
# encryption_configuration: {
|
|
11038
|
+
# kms_key_arn: "String",
|
|
11039
|
+
# sse_algorithm: "String",
|
|
11040
|
+
# },
|
|
11041
|
+
# })
|
|
11042
|
+
#
|
|
11043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PutDataExportConfiguration AWS API Documentation
|
|
11044
|
+
#
|
|
11045
|
+
# @overload put_data_export_configuration(params = {})
|
|
11046
|
+
# @param [Hash] params ({})
|
|
11047
|
+
def put_data_export_configuration(params = {}, options = {})
|
|
11048
|
+
req = build_request(:put_data_export_configuration, params)
|
|
11049
|
+
req.send_request(options)
|
|
11050
|
+
end
|
|
11051
|
+
|
|
10936
11052
|
# Writes the configuration for the specified environment blueprint in
|
|
10937
11053
|
# Amazon DataZone.
|
|
10938
11054
|
#
|
|
@@ -12243,7 +12359,8 @@ module Aws::DataZone
|
|
|
12243
12359
|
#
|
|
12244
12360
|
# * Asset must have a structured schema with valid rows and columns.
|
|
12245
12361
|
#
|
|
12246
|
-
# * Valid values for --type: BUSINESS\_DESCRIPTIONS, BUSINESS\_NAMES
|
|
12362
|
+
# * Valid values for --type: BUSINESS\_DESCRIPTIONS, BUSINESS\_NAMES,
|
|
12363
|
+
# BUSINESS\_GLOSSARY\_ASSOCIATIONS.
|
|
12247
12364
|
#
|
|
12248
12365
|
# * The user must have permission to run metadata generation in the
|
|
12249
12366
|
# domain/project.
|
|
@@ -12266,9 +12383,12 @@ module Aws::DataZone
|
|
|
12266
12383
|
# @option params [required, Types::MetadataGenerationRunTarget] :target
|
|
12267
12384
|
# The asset for which you want to start a metadata generation run.
|
|
12268
12385
|
#
|
|
12269
|
-
# @option params [
|
|
12386
|
+
# @option params [String] :type
|
|
12270
12387
|
# The type of the metadata generation run.
|
|
12271
12388
|
#
|
|
12389
|
+
# @option params [Array<String>] :types
|
|
12390
|
+
# The types of the metadata generation run.
|
|
12391
|
+
#
|
|
12272
12392
|
# @return [Types::StartMetadataGenerationRunOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12273
12393
|
#
|
|
12274
12394
|
# * {Types::StartMetadataGenerationRunOutput#created_at #created_at} => Time
|
|
@@ -12278,6 +12398,7 @@ module Aws::DataZone
|
|
|
12278
12398
|
# * {Types::StartMetadataGenerationRunOutput#owning_project_id #owning_project_id} => String
|
|
12279
12399
|
# * {Types::StartMetadataGenerationRunOutput#status #status} => String
|
|
12280
12400
|
# * {Types::StartMetadataGenerationRunOutput#type #type} => String
|
|
12401
|
+
# * {Types::StartMetadataGenerationRunOutput#types #types} => Array<String>
|
|
12281
12402
|
#
|
|
12282
12403
|
# @example Request syntax with placeholder values
|
|
12283
12404
|
#
|
|
@@ -12290,7 +12411,8 @@ module Aws::DataZone
|
|
|
12290
12411
|
# revision: "Revision",
|
|
12291
12412
|
# type: "ASSET", # required, accepts ASSET
|
|
12292
12413
|
# },
|
|
12293
|
-
# type: "BUSINESS_DESCRIPTIONS", #
|
|
12414
|
+
# type: "BUSINESS_DESCRIPTIONS", # accepts BUSINESS_DESCRIPTIONS, BUSINESS_NAMES, BUSINESS_GLOSSARY_ASSOCIATIONS
|
|
12415
|
+
# types: ["BUSINESS_DESCRIPTIONS"], # accepts BUSINESS_DESCRIPTIONS, BUSINESS_NAMES, BUSINESS_GLOSSARY_ASSOCIATIONS
|
|
12294
12416
|
# })
|
|
12295
12417
|
#
|
|
12296
12418
|
# @example Response structure
|
|
@@ -12300,8 +12422,10 @@ module Aws::DataZone
|
|
|
12300
12422
|
# resp.domain_id #=> String
|
|
12301
12423
|
# resp.id #=> String
|
|
12302
12424
|
# resp.owning_project_id #=> String
|
|
12303
|
-
# resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED"
|
|
12304
|
-
# resp.type #=> String, one of "BUSINESS_DESCRIPTIONS"
|
|
12425
|
+
# resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED", "PARTIALLY_SUCCEEDED"
|
|
12426
|
+
# resp.type #=> String, one of "BUSINESS_DESCRIPTIONS", "BUSINESS_NAMES", "BUSINESS_GLOSSARY_ASSOCIATIONS"
|
|
12427
|
+
# resp.types #=> Array
|
|
12428
|
+
# resp.types[0] #=> String, one of "BUSINESS_DESCRIPTIONS", "BUSINESS_NAMES", "BUSINESS_GLOSSARY_ASSOCIATIONS"
|
|
12305
12429
|
#
|
|
12306
12430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartMetadataGenerationRun AWS API Documentation
|
|
12307
12431
|
#
|
|
@@ -14648,7 +14772,7 @@ module Aws::DataZone
|
|
|
14648
14772
|
tracer: tracer
|
|
14649
14773
|
)
|
|
14650
14774
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
14651
|
-
context[:gem_version] = '1.
|
|
14775
|
+
context[:gem_version] = '1.62.0'
|
|
14652
14776
|
Seahorse::Client::Request.new(handlers, context)
|
|
14653
14777
|
end
|
|
14654
14778
|
|
|
@@ -160,6 +160,7 @@ module Aws::DataZone
|
|
|
160
160
|
ConfigurableActionParameterList = Shapes::ListShape.new(name: 'ConfigurableActionParameterList')
|
|
161
161
|
ConfigurableActionTypeAuthorization = Shapes::StringShape.new(name: 'ConfigurableActionTypeAuthorization')
|
|
162
162
|
ConfigurableEnvironmentAction = Shapes::StructureShape.new(name: 'ConfigurableEnvironmentAction')
|
|
163
|
+
ConfigurationStatus = Shapes::StringShape.new(name: 'ConfigurationStatus')
|
|
163
164
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
164
165
|
ConnectionCredentials = Shapes::StructureShape.new(name: 'ConnectionCredentials')
|
|
165
166
|
ConnectionId = Shapes::StringShape.new(name: 'ConnectionId')
|
|
@@ -381,6 +382,7 @@ module Aws::DataZone
|
|
|
381
382
|
EditedValue = Shapes::StringShape.new(name: 'EditedValue')
|
|
382
383
|
EnableSetting = Shapes::StringShape.new(name: 'EnableSetting')
|
|
383
384
|
EnabledRegionList = Shapes::ListShape.new(name: 'EnabledRegionList')
|
|
385
|
+
EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
|
|
384
386
|
EntityId = Shapes::StringShape.new(name: 'EntityId')
|
|
385
387
|
EntityIdentifier = Shapes::StringShape.new(name: 'EntityIdentifier')
|
|
386
388
|
EntityOwners = Shapes::ListShape.new(name: 'EntityOwners')
|
|
@@ -467,6 +469,8 @@ module Aws::DataZone
|
|
|
467
469
|
GetAssetTypeOutput = Shapes::StructureShape.new(name: 'GetAssetTypeOutput')
|
|
468
470
|
GetConnectionInput = Shapes::StructureShape.new(name: 'GetConnectionInput')
|
|
469
471
|
GetConnectionOutput = Shapes::StructureShape.new(name: 'GetConnectionOutput')
|
|
472
|
+
GetDataExportConfigurationInput = Shapes::StructureShape.new(name: 'GetDataExportConfigurationInput')
|
|
473
|
+
GetDataExportConfigurationOutput = Shapes::StructureShape.new(name: 'GetDataExportConfigurationOutput')
|
|
470
474
|
GetDataProductInput = Shapes::StructureShape.new(name: 'GetDataProductInput')
|
|
471
475
|
GetDataProductOutput = Shapes::StructureShape.new(name: 'GetDataProductOutput')
|
|
472
476
|
GetDataSourceInput = Shapes::StructureShape.new(name: 'GetDataSourceInput')
|
|
@@ -745,6 +749,9 @@ module Aws::DataZone
|
|
|
745
749
|
MetadataGenerationRunStatus = Shapes::StringShape.new(name: 'MetadataGenerationRunStatus')
|
|
746
750
|
MetadataGenerationRunTarget = Shapes::StructureShape.new(name: 'MetadataGenerationRunTarget')
|
|
747
751
|
MetadataGenerationRunType = Shapes::StringShape.new(name: 'MetadataGenerationRunType')
|
|
752
|
+
MetadataGenerationRunTypeStat = Shapes::StructureShape.new(name: 'MetadataGenerationRunTypeStat')
|
|
753
|
+
MetadataGenerationRunTypeStats = Shapes::ListShape.new(name: 'MetadataGenerationRunTypeStats')
|
|
754
|
+
MetadataGenerationRunTypes = Shapes::ListShape.new(name: 'MetadataGenerationRunTypes')
|
|
748
755
|
MetadataGenerationRuns = Shapes::ListShape.new(name: 'MetadataGenerationRuns')
|
|
749
756
|
MetadataGenerationTargetType = Shapes::StringShape.new(name: 'MetadataGenerationTargetType')
|
|
750
757
|
MetadataMap = Shapes::MapShape.new(name: 'MetadataMap')
|
|
@@ -827,6 +834,8 @@ module Aws::DataZone
|
|
|
827
834
|
ProvisioningConfiguration = Shapes::UnionShape.new(name: 'ProvisioningConfiguration')
|
|
828
835
|
ProvisioningConfigurationList = Shapes::ListShape.new(name: 'ProvisioningConfigurationList')
|
|
829
836
|
ProvisioningProperties = Shapes::UnionShape.new(name: 'ProvisioningProperties')
|
|
837
|
+
PutDataExportConfigurationInput = Shapes::StructureShape.new(name: 'PutDataExportConfigurationInput')
|
|
838
|
+
PutDataExportConfigurationOutput = Shapes::StructureShape.new(name: 'PutDataExportConfigurationOutput')
|
|
830
839
|
PutEnvironmentBlueprintConfigurationInput = Shapes::StructureShape.new(name: 'PutEnvironmentBlueprintConfigurationInput')
|
|
831
840
|
PutEnvironmentBlueprintConfigurationOutput = Shapes::StructureShape.new(name: 'PutEnvironmentBlueprintConfigurationOutput')
|
|
832
841
|
RecommendationConfiguration = Shapes::StructureShape.new(name: 'RecommendationConfiguration')
|
|
@@ -2833,6 +2842,10 @@ module Aws::DataZone
|
|
|
2833
2842
|
|
|
2834
2843
|
EnabledRegionList.member = Shapes::ShapeRef.new(shape: RegionName)
|
|
2835
2844
|
|
|
2845
|
+
EncryptionConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyArn"))
|
|
2846
|
+
EncryptionConfiguration.add_member(:sse_algorithm, Shapes::ShapeRef.new(shape: String, location_name: "sseAlgorithm"))
|
|
2847
|
+
EncryptionConfiguration.struct_class = Types::EncryptionConfiguration
|
|
2848
|
+
|
|
2836
2849
|
EntityOwners.member = Shapes::ShapeRef.new(shape: OwnerPropertiesOutput)
|
|
2837
2850
|
|
|
2838
2851
|
EnvironmentActionList.member = Shapes::ShapeRef.new(shape: ConfigurableEnvironmentAction)
|
|
@@ -3150,6 +3163,17 @@ module Aws::DataZone
|
|
|
3150
3163
|
GetConnectionOutput.add_member(:type, Shapes::ShapeRef.new(shape: ConnectionType, required: true, location_name: "type"))
|
|
3151
3164
|
GetConnectionOutput.struct_class = Types::GetConnectionOutput
|
|
3152
3165
|
|
|
3166
|
+
GetDataExportConfigurationInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
3167
|
+
GetDataExportConfigurationInput.struct_class = Types::GetDataExportConfigurationInput
|
|
3168
|
+
|
|
3169
|
+
GetDataExportConfigurationOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
3170
|
+
GetDataExportConfigurationOutput.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
|
|
3171
|
+
GetDataExportConfigurationOutput.add_member(:is_export_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isExportEnabled"))
|
|
3172
|
+
GetDataExportConfigurationOutput.add_member(:s3_table_bucket_arn, Shapes::ShapeRef.new(shape: String, location_name: "s3TableBucketArn"))
|
|
3173
|
+
GetDataExportConfigurationOutput.add_member(:status, Shapes::ShapeRef.new(shape: ConfigurationStatus, location_name: "status"))
|
|
3174
|
+
GetDataExportConfigurationOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
|
|
3175
|
+
GetDataExportConfigurationOutput.struct_class = Types::GetDataExportConfigurationOutput
|
|
3176
|
+
|
|
3153
3177
|
GetDataProductInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
3154
3178
|
GetDataProductInput.add_member(:identifier, Shapes::ShapeRef.new(shape: DataProductId, required: true, location: "uri", location_name: "identifier"))
|
|
3155
3179
|
GetDataProductInput.add_member(:revision, Shapes::ShapeRef.new(shape: Revision, location: "querystring", location_name: "revision"))
|
|
@@ -3504,6 +3528,7 @@ module Aws::DataZone
|
|
|
3504
3528
|
|
|
3505
3529
|
GetMetadataGenerationRunInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
3506
3530
|
GetMetadataGenerationRunInput.add_member(:identifier, Shapes::ShapeRef.new(shape: MetadataGenerationRunIdentifier, required: true, location: "uri", location_name: "identifier"))
|
|
3531
|
+
GetMetadataGenerationRunInput.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, location: "querystring", location_name: "type"))
|
|
3507
3532
|
GetMetadataGenerationRunInput.struct_class = Types::GetMetadataGenerationRunInput
|
|
3508
3533
|
|
|
3509
3534
|
GetMetadataGenerationRunOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
@@ -3513,7 +3538,9 @@ module Aws::DataZone
|
|
|
3513
3538
|
GetMetadataGenerationRunOutput.add_member(:owning_project_id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "owningProjectId"))
|
|
3514
3539
|
GetMetadataGenerationRunOutput.add_member(:status, Shapes::ShapeRef.new(shape: MetadataGenerationRunStatus, location_name: "status"))
|
|
3515
3540
|
GetMetadataGenerationRunOutput.add_member(:target, Shapes::ShapeRef.new(shape: MetadataGenerationRunTarget, location_name: "target"))
|
|
3516
|
-
GetMetadataGenerationRunOutput.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, location_name: "type"))
|
|
3541
|
+
GetMetadataGenerationRunOutput.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, deprecated: true, location_name: "type", metadata: {"deprecatedMessage" => "This field is going to be deprecated, please use the 'types' field to provide the MetadataGenerationRun types"}))
|
|
3542
|
+
GetMetadataGenerationRunOutput.add_member(:type_stats, Shapes::ShapeRef.new(shape: MetadataGenerationRunTypeStats, location_name: "typeStats"))
|
|
3543
|
+
GetMetadataGenerationRunOutput.add_member(:types, Shapes::ShapeRef.new(shape: MetadataGenerationRunTypes, location_name: "types"))
|
|
3517
3544
|
GetMetadataGenerationRunOutput.struct_class = Types::GetMetadataGenerationRunOutput
|
|
3518
3545
|
|
|
3519
3546
|
GetProjectInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
@@ -4228,6 +4255,7 @@ module Aws::DataZone
|
|
|
4228
4255
|
ListMetadataGenerationRunsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
4229
4256
|
ListMetadataGenerationRunsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
|
4230
4257
|
ListMetadataGenerationRunsInput.add_member(:status, Shapes::ShapeRef.new(shape: MetadataGenerationRunStatus, location: "querystring", location_name: "status"))
|
|
4258
|
+
ListMetadataGenerationRunsInput.add_member(:target_identifier, Shapes::ShapeRef.new(shape: EntityId, location: "querystring", location_name: "targetIdentifier"))
|
|
4231
4259
|
ListMetadataGenerationRunsInput.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, location: "querystring", location_name: "type"))
|
|
4232
4260
|
ListMetadataGenerationRunsInput.struct_class = Types::ListMetadataGenerationRunsInput
|
|
4233
4261
|
|
|
@@ -4490,7 +4518,8 @@ module Aws::DataZone
|
|
|
4490
4518
|
MetadataGenerationRunItem.add_member(:owning_project_id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "owningProjectId"))
|
|
4491
4519
|
MetadataGenerationRunItem.add_member(:status, Shapes::ShapeRef.new(shape: MetadataGenerationRunStatus, location_name: "status"))
|
|
4492
4520
|
MetadataGenerationRunItem.add_member(:target, Shapes::ShapeRef.new(shape: MetadataGenerationRunTarget, location_name: "target"))
|
|
4493
|
-
MetadataGenerationRunItem.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, location_name: "type"))
|
|
4521
|
+
MetadataGenerationRunItem.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, deprecated: true, location_name: "type", metadata: {"deprecatedMessage" => "This field is going to be deprecated, please use the 'types' field to provide the MetadataGenerationRun types"}))
|
|
4522
|
+
MetadataGenerationRunItem.add_member(:types, Shapes::ShapeRef.new(shape: MetadataGenerationRunTypes, location_name: "types"))
|
|
4494
4523
|
MetadataGenerationRunItem.struct_class = Types::MetadataGenerationRunItem
|
|
4495
4524
|
|
|
4496
4525
|
MetadataGenerationRunTarget.add_member(:identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "identifier"))
|
|
@@ -4498,6 +4527,15 @@ module Aws::DataZone
|
|
|
4498
4527
|
MetadataGenerationRunTarget.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationTargetType, required: true, location_name: "type"))
|
|
4499
4528
|
MetadataGenerationRunTarget.struct_class = Types::MetadataGenerationRunTarget
|
|
4500
4529
|
|
|
4530
|
+
MetadataGenerationRunTypeStat.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
|
|
4531
|
+
MetadataGenerationRunTypeStat.add_member(:status, Shapes::ShapeRef.new(shape: MetadataGenerationRunStatus, required: true, location_name: "status"))
|
|
4532
|
+
MetadataGenerationRunTypeStat.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, required: true, location_name: "type"))
|
|
4533
|
+
MetadataGenerationRunTypeStat.struct_class = Types::MetadataGenerationRunTypeStat
|
|
4534
|
+
|
|
4535
|
+
MetadataGenerationRunTypeStats.member = Shapes::ShapeRef.new(shape: MetadataGenerationRunTypeStat)
|
|
4536
|
+
|
|
4537
|
+
MetadataGenerationRunTypes.member = Shapes::ShapeRef.new(shape: MetadataGenerationRunType)
|
|
4538
|
+
|
|
4501
4539
|
MetadataGenerationRuns.member = Shapes::ShapeRef.new(shape: MetadataGenerationRunItem)
|
|
4502
4540
|
|
|
4503
4541
|
MetadataMap.key = Shapes::ShapeRef.new(shape: String)
|
|
@@ -4792,6 +4830,14 @@ module Aws::DataZone
|
|
|
4792
4830
|
ProvisioningProperties.add_member_subclass(:unknown, Types::ProvisioningProperties::Unknown)
|
|
4793
4831
|
ProvisioningProperties.struct_class = Types::ProvisioningProperties
|
|
4794
4832
|
|
|
4833
|
+
PutDataExportConfigurationInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
4834
|
+
PutDataExportConfigurationInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
4835
|
+
PutDataExportConfigurationInput.add_member(:enable_export, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enableExport"))
|
|
4836
|
+
PutDataExportConfigurationInput.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
|
|
4837
|
+
PutDataExportConfigurationInput.struct_class = Types::PutDataExportConfigurationInput
|
|
4838
|
+
|
|
4839
|
+
PutDataExportConfigurationOutput.struct_class = Types::PutDataExportConfigurationOutput
|
|
4840
|
+
|
|
4795
4841
|
PutEnvironmentBlueprintConfigurationInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
4796
4842
|
PutEnvironmentBlueprintConfigurationInput.add_member(:enabled_regions, Shapes::ShapeRef.new(shape: EnabledRegionList, required: true, location_name: "enabledRegions"))
|
|
4797
4843
|
PutEnvironmentBlueprintConfigurationInput.add_member(:environment_blueprint_identifier, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location: "uri", location_name: "environmentBlueprintIdentifier"))
|
|
@@ -5387,7 +5433,8 @@ module Aws::DataZone
|
|
|
5387
5433
|
StartMetadataGenerationRunInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
5388
5434
|
StartMetadataGenerationRunInput.add_member(:owning_project_identifier, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "owningProjectIdentifier"))
|
|
5389
5435
|
StartMetadataGenerationRunInput.add_member(:target, Shapes::ShapeRef.new(shape: MetadataGenerationRunTarget, required: true, location_name: "target"))
|
|
5390
|
-
StartMetadataGenerationRunInput.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType,
|
|
5436
|
+
StartMetadataGenerationRunInput.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, deprecated: true, location_name: "type", metadata: {"deprecatedMessage" => "This field is going to be deprecated, please use the 'types' field to provide the MetadataGenerationRun types"}))
|
|
5437
|
+
StartMetadataGenerationRunInput.add_member(:types, Shapes::ShapeRef.new(shape: MetadataGenerationRunTypes, location_name: "types"))
|
|
5391
5438
|
StartMetadataGenerationRunInput.struct_class = Types::StartMetadataGenerationRunInput
|
|
5392
5439
|
|
|
5393
5440
|
StartMetadataGenerationRunOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
@@ -5396,7 +5443,8 @@ module Aws::DataZone
|
|
|
5396
5443
|
StartMetadataGenerationRunOutput.add_member(:id, Shapes::ShapeRef.new(shape: MetadataGenerationRunIdentifier, required: true, location_name: "id"))
|
|
5397
5444
|
StartMetadataGenerationRunOutput.add_member(:owning_project_id, Shapes::ShapeRef.new(shape: ProjectId, location_name: "owningProjectId"))
|
|
5398
5445
|
StartMetadataGenerationRunOutput.add_member(:status, Shapes::ShapeRef.new(shape: MetadataGenerationRunStatus, location_name: "status"))
|
|
5399
|
-
StartMetadataGenerationRunOutput.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, location_name: "type"))
|
|
5446
|
+
StartMetadataGenerationRunOutput.add_member(:type, Shapes::ShapeRef.new(shape: MetadataGenerationRunType, deprecated: true, location_name: "type", metadata: {"deprecatedMessage" => "This field is going to be deprecated, please use the 'types' field to provide the MetadataGenerationRun types"}))
|
|
5447
|
+
StartMetadataGenerationRunOutput.add_member(:types, Shapes::ShapeRef.new(shape: MetadataGenerationRunTypes, location_name: "types"))
|
|
5400
5448
|
StartMetadataGenerationRunOutput.struct_class = Types::StartMetadataGenerationRunOutput
|
|
5401
5449
|
|
|
5402
5450
|
StringList.member = Shapes::ShapeRef.new(shape: String)
|
|
@@ -7237,6 +7285,20 @@ module Aws::DataZone
|
|
|
7237
7285
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
7238
7286
|
end)
|
|
7239
7287
|
|
|
7288
|
+
api.add_operation(:get_data_export_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
7289
|
+
o.name = "GetDataExportConfiguration"
|
|
7290
|
+
o.http_method = "GET"
|
|
7291
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/data-export-configuration"
|
|
7292
|
+
o.input = Shapes::ShapeRef.new(shape: GetDataExportConfigurationInput)
|
|
7293
|
+
o.output = Shapes::ShapeRef.new(shape: GetDataExportConfigurationOutput)
|
|
7294
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
7295
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
7296
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
7297
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
7298
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
7299
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
7300
|
+
end)
|
|
7301
|
+
|
|
7240
7302
|
api.add_operation(:get_data_product, Seahorse::Model::Operation.new.tap do |o|
|
|
7241
7303
|
o.name = "GetDataProduct"
|
|
7242
7304
|
o.http_method = "GET"
|
|
@@ -8346,6 +8408,22 @@ module Aws::DataZone
|
|
|
8346
8408
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
8347
8409
|
end)
|
|
8348
8410
|
|
|
8411
|
+
api.add_operation(:put_data_export_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
8412
|
+
o.name = "PutDataExportConfiguration"
|
|
8413
|
+
o.http_method = "PUT"
|
|
8414
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/data-export-configuration"
|
|
8415
|
+
o.input = Shapes::ShapeRef.new(shape: PutDataExportConfigurationInput)
|
|
8416
|
+
o.output = Shapes::ShapeRef.new(shape: PutDataExportConfigurationOutput)
|
|
8417
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
8418
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
8419
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
8420
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
8421
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
8422
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
8423
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
8424
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
8425
|
+
end)
|
|
8426
|
+
|
|
8349
8427
|
api.add_operation(:put_environment_blueprint_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
8350
8428
|
o.name = "PutEnvironmentBlueprintConfiguration"
|
|
8351
8429
|
o.http_method = "PUT"
|
|
@@ -7452,6 +7452,35 @@ module Aws::DataZone
|
|
|
7452
7452
|
include Aws::Structure
|
|
7453
7453
|
end
|
|
7454
7454
|
|
|
7455
|
+
# The encryption configuration details.
|
|
7456
|
+
#
|
|
7457
|
+
# @!attribute [rw] kms_key_arn
|
|
7458
|
+
# The Amazon Resource Name (ARN) of the KMS key to use for encryption.
|
|
7459
|
+
# This field is required only when `sseAlgorithm` is set to `aws:kms`.
|
|
7460
|
+
# @return [String]
|
|
7461
|
+
#
|
|
7462
|
+
# @!attribute [rw] sse_algorithm
|
|
7463
|
+
# The server-side encryption algorithm to use. Valid values are AES256
|
|
7464
|
+
# for S3-managed encryption keys, or aws:kms for Amazon Web Services
|
|
7465
|
+
# KMS-managed encryption keys. If you choose SSE-KMS encryption you
|
|
7466
|
+
# must grant the S3 Tables maintenance principal access to your KMS
|
|
7467
|
+
# key. For more information, see [Permissions requirements for S3
|
|
7468
|
+
# Tables SSE-KMS encryption][1].
|
|
7469
|
+
#
|
|
7470
|
+
#
|
|
7471
|
+
#
|
|
7472
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html
|
|
7473
|
+
# @return [String]
|
|
7474
|
+
#
|
|
7475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EncryptionConfiguration AWS API Documentation
|
|
7476
|
+
#
|
|
7477
|
+
class EncryptionConfiguration < Struct.new(
|
|
7478
|
+
:kms_key_arn,
|
|
7479
|
+
:sse_algorithm)
|
|
7480
|
+
SENSITIVE = []
|
|
7481
|
+
include Aws::Structure
|
|
7482
|
+
end
|
|
7483
|
+
|
|
7455
7484
|
# The details about the specified action configured for an environment.
|
|
7456
7485
|
# For example, the details of the specified console links for an
|
|
7457
7486
|
# analytics tool that is available in this environment.
|
|
@@ -8760,6 +8789,60 @@ module Aws::DataZone
|
|
|
8760
8789
|
include Aws::Structure
|
|
8761
8790
|
end
|
|
8762
8791
|
|
|
8792
|
+
# @!attribute [rw] domain_identifier
|
|
8793
|
+
# The ID of the domain where you want to get the data export
|
|
8794
|
+
# configuration details.
|
|
8795
|
+
# @return [String]
|
|
8796
|
+
#
|
|
8797
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDataExportConfigurationInput AWS API Documentation
|
|
8798
|
+
#
|
|
8799
|
+
class GetDataExportConfigurationInput < Struct.new(
|
|
8800
|
+
:domain_identifier)
|
|
8801
|
+
SENSITIVE = []
|
|
8802
|
+
include Aws::Structure
|
|
8803
|
+
end
|
|
8804
|
+
|
|
8805
|
+
# @!attribute [rw] created_at
|
|
8806
|
+
# The timestamp at which the data export configuration report was
|
|
8807
|
+
# created.
|
|
8808
|
+
# @return [Time]
|
|
8809
|
+
#
|
|
8810
|
+
# @!attribute [rw] encryption_configuration
|
|
8811
|
+
# The encryption configuration as part of the data export
|
|
8812
|
+
# configuration details.
|
|
8813
|
+
# @return [Types::EncryptionConfiguration]
|
|
8814
|
+
#
|
|
8815
|
+
# @!attribute [rw] is_export_enabled
|
|
8816
|
+
# Specifies whether the export is enabled.
|
|
8817
|
+
# @return [Boolean]
|
|
8818
|
+
#
|
|
8819
|
+
# @!attribute [rw] s3_table_bucket_arn
|
|
8820
|
+
# The Amazon S3 table bucket ARN as part of the data export
|
|
8821
|
+
# configuration details.
|
|
8822
|
+
# @return [String]
|
|
8823
|
+
#
|
|
8824
|
+
# @!attribute [rw] status
|
|
8825
|
+
# The status of the data export configuration.
|
|
8826
|
+
# @return [String]
|
|
8827
|
+
#
|
|
8828
|
+
# @!attribute [rw] updated_at
|
|
8829
|
+
# The timestamp at which the data export configuration report was
|
|
8830
|
+
# updated.
|
|
8831
|
+
# @return [Time]
|
|
8832
|
+
#
|
|
8833
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDataExportConfigurationOutput AWS API Documentation
|
|
8834
|
+
#
|
|
8835
|
+
class GetDataExportConfigurationOutput < Struct.new(
|
|
8836
|
+
:created_at,
|
|
8837
|
+
:encryption_configuration,
|
|
8838
|
+
:is_export_enabled,
|
|
8839
|
+
:s3_table_bucket_arn,
|
|
8840
|
+
:status,
|
|
8841
|
+
:updated_at)
|
|
8842
|
+
SENSITIVE = []
|
|
8843
|
+
include Aws::Structure
|
|
8844
|
+
end
|
|
8845
|
+
|
|
8763
8846
|
# @!attribute [rw] domain_identifier
|
|
8764
8847
|
# The ID of the domain where the data product lives.
|
|
8765
8848
|
# @return [String]
|
|
@@ -10444,11 +10527,16 @@ module Aws::DataZone
|
|
|
10444
10527
|
# The identifier of the metadata generation run.
|
|
10445
10528
|
# @return [String]
|
|
10446
10529
|
#
|
|
10530
|
+
# @!attribute [rw] type
|
|
10531
|
+
# The type of the metadata generation run.
|
|
10532
|
+
# @return [String]
|
|
10533
|
+
#
|
|
10447
10534
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetMetadataGenerationRunInput AWS API Documentation
|
|
10448
10535
|
#
|
|
10449
10536
|
class GetMetadataGenerationRunInput < Struct.new(
|
|
10450
10537
|
:domain_identifier,
|
|
10451
|
-
:identifier
|
|
10538
|
+
:identifier,
|
|
10539
|
+
:type)
|
|
10452
10540
|
SENSITIVE = []
|
|
10453
10541
|
include Aws::Structure
|
|
10454
10542
|
end
|
|
@@ -10487,6 +10575,15 @@ module Aws::DataZone
|
|
|
10487
10575
|
# The type of metadata generation run.
|
|
10488
10576
|
# @return [String]
|
|
10489
10577
|
#
|
|
10578
|
+
# @!attribute [rw] type_stats
|
|
10579
|
+
# The type stats included in the metadata generation run output
|
|
10580
|
+
# details.
|
|
10581
|
+
# @return [Array<Types::MetadataGenerationRunTypeStat>]
|
|
10582
|
+
#
|
|
10583
|
+
# @!attribute [rw] types
|
|
10584
|
+
# The types of the metadata generation run.
|
|
10585
|
+
# @return [Array<String>]
|
|
10586
|
+
#
|
|
10490
10587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetMetadataGenerationRunOutput AWS API Documentation
|
|
10491
10588
|
#
|
|
10492
10589
|
class GetMetadataGenerationRunOutput < Struct.new(
|
|
@@ -10497,7 +10594,9 @@ module Aws::DataZone
|
|
|
10497
10594
|
:owning_project_id,
|
|
10498
10595
|
:status,
|
|
10499
10596
|
:target,
|
|
10500
|
-
:type
|
|
10597
|
+
:type,
|
|
10598
|
+
:type_stats,
|
|
10599
|
+
:types)
|
|
10501
10600
|
SENSITIVE = []
|
|
10502
10601
|
include Aws::Structure
|
|
10503
10602
|
end
|
|
@@ -14044,6 +14143,10 @@ module Aws::DataZone
|
|
|
14044
14143
|
# The status of the metadata generation runs.
|
|
14045
14144
|
# @return [String]
|
|
14046
14145
|
#
|
|
14146
|
+
# @!attribute [rw] target_identifier
|
|
14147
|
+
# The target ID for which you want to list metadata generation runs.
|
|
14148
|
+
# @return [String]
|
|
14149
|
+
#
|
|
14047
14150
|
# @!attribute [rw] type
|
|
14048
14151
|
# The type of the metadata generation runs.
|
|
14049
14152
|
# @return [String]
|
|
@@ -14055,6 +14158,7 @@ module Aws::DataZone
|
|
|
14055
14158
|
:max_results,
|
|
14056
14159
|
:next_token,
|
|
14057
14160
|
:status,
|
|
14161
|
+
:target_identifier,
|
|
14058
14162
|
:type)
|
|
14059
14163
|
SENSITIVE = []
|
|
14060
14164
|
include Aws::Structure
|
|
@@ -15341,6 +15445,10 @@ module Aws::DataZone
|
|
|
15341
15445
|
# The type of the metadata generation run.
|
|
15342
15446
|
# @return [String]
|
|
15343
15447
|
#
|
|
15448
|
+
# @!attribute [rw] types
|
|
15449
|
+
# The types of the metadata generation run.
|
|
15450
|
+
# @return [Array<String>]
|
|
15451
|
+
#
|
|
15344
15452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MetadataGenerationRunItem AWS API Documentation
|
|
15345
15453
|
#
|
|
15346
15454
|
class MetadataGenerationRunItem < Struct.new(
|
|
@@ -15351,7 +15459,8 @@ module Aws::DataZone
|
|
|
15351
15459
|
:owning_project_id,
|
|
15352
15460
|
:status,
|
|
15353
15461
|
:target,
|
|
15354
|
-
:type
|
|
15462
|
+
:type,
|
|
15463
|
+
:types)
|
|
15355
15464
|
SENSITIVE = []
|
|
15356
15465
|
include Aws::Structure
|
|
15357
15466
|
end
|
|
@@ -15380,6 +15489,30 @@ module Aws::DataZone
|
|
|
15380
15489
|
include Aws::Structure
|
|
15381
15490
|
end
|
|
15382
15491
|
|
|
15492
|
+
# The statistics of the metadata generation run type.
|
|
15493
|
+
#
|
|
15494
|
+
# @!attribute [rw] error_message
|
|
15495
|
+
# The error message displayed if the action fails to run.
|
|
15496
|
+
# @return [String]
|
|
15497
|
+
#
|
|
15498
|
+
# @!attribute [rw] status
|
|
15499
|
+
# The status of the metadata generation run type statistics.
|
|
15500
|
+
# @return [String]
|
|
15501
|
+
#
|
|
15502
|
+
# @!attribute [rw] type
|
|
15503
|
+
# The type of the metadata generation run type statistics.
|
|
15504
|
+
# @return [String]
|
|
15505
|
+
#
|
|
15506
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MetadataGenerationRunTypeStat AWS API Documentation
|
|
15507
|
+
#
|
|
15508
|
+
class MetadataGenerationRunTypeStat < Struct.new(
|
|
15509
|
+
:error_message,
|
|
15510
|
+
:status,
|
|
15511
|
+
:type)
|
|
15512
|
+
SENSITIVE = []
|
|
15513
|
+
include Aws::Structure
|
|
15514
|
+
end
|
|
15515
|
+
|
|
15383
15516
|
# The MLflow properties of a connection.
|
|
15384
15517
|
#
|
|
15385
15518
|
# @!attribute [rw] tracking_server_arn
|
|
@@ -16521,6 +16654,52 @@ module Aws::DataZone
|
|
|
16521
16654
|
class Unknown < ProvisioningProperties; end
|
|
16522
16655
|
end
|
|
16523
16656
|
|
|
16657
|
+
# @!attribute [rw] client_token
|
|
16658
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
16659
|
+
# request. This field is automatically populated if not provided.
|
|
16660
|
+
#
|
|
16661
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
16662
|
+
# not need to pass this option.
|
|
16663
|
+
# @return [String]
|
|
16664
|
+
#
|
|
16665
|
+
# @!attribute [rw] domain_identifier
|
|
16666
|
+
# The domain ID where you want to create data export configuration
|
|
16667
|
+
# details.
|
|
16668
|
+
# @return [String]
|
|
16669
|
+
#
|
|
16670
|
+
# @!attribute [rw] enable_export
|
|
16671
|
+
# Specifies that the export is to be enabled as part of creating data
|
|
16672
|
+
# export configuration details.
|
|
16673
|
+
# @return [Boolean]
|
|
16674
|
+
#
|
|
16675
|
+
# @!attribute [rw] encryption_configuration
|
|
16676
|
+
# The encryption configuration as part of creating data export
|
|
16677
|
+
# configuration details.
|
|
16678
|
+
#
|
|
16679
|
+
# The KMS key provided here as part of encryptionConfiguration must
|
|
16680
|
+
# have the required permissions as described in [KMS permissions for
|
|
16681
|
+
# exporting asset metadata in Amazon SageMaker Unified Studio][1].
|
|
16682
|
+
#
|
|
16683
|
+
#
|
|
16684
|
+
#
|
|
16685
|
+
# [1]: https://docs.aws.amazon.com/sagemaker-unified-studio/latest/adminguide/sagemaker-unified-studio-export-asset-metadata-kms-permissions.html
|
|
16686
|
+
# @return [Types::EncryptionConfiguration]
|
|
16687
|
+
#
|
|
16688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PutDataExportConfigurationInput AWS API Documentation
|
|
16689
|
+
#
|
|
16690
|
+
class PutDataExportConfigurationInput < Struct.new(
|
|
16691
|
+
:client_token,
|
|
16692
|
+
:domain_identifier,
|
|
16693
|
+
:enable_export,
|
|
16694
|
+
:encryption_configuration)
|
|
16695
|
+
SENSITIVE = []
|
|
16696
|
+
include Aws::Structure
|
|
16697
|
+
end
|
|
16698
|
+
|
|
16699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PutDataExportConfigurationOutput AWS API Documentation
|
|
16700
|
+
#
|
|
16701
|
+
class PutDataExportConfigurationOutput < Aws::EmptyStructure; end
|
|
16702
|
+
|
|
16524
16703
|
# @!attribute [rw] domain_identifier
|
|
16525
16704
|
# The identifier of the Amazon DataZone domain.
|
|
16526
16705
|
# @return [String]
|
|
@@ -19121,6 +19300,10 @@ module Aws::DataZone
|
|
|
19121
19300
|
# The type of the metadata generation run.
|
|
19122
19301
|
# @return [String]
|
|
19123
19302
|
#
|
|
19303
|
+
# @!attribute [rw] types
|
|
19304
|
+
# The types of the metadata generation run.
|
|
19305
|
+
# @return [Array<String>]
|
|
19306
|
+
#
|
|
19124
19307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartMetadataGenerationRunInput AWS API Documentation
|
|
19125
19308
|
#
|
|
19126
19309
|
class StartMetadataGenerationRunInput < Struct.new(
|
|
@@ -19128,7 +19311,8 @@ module Aws::DataZone
|
|
|
19128
19311
|
:domain_identifier,
|
|
19129
19312
|
:owning_project_identifier,
|
|
19130
19313
|
:target,
|
|
19131
|
-
:type
|
|
19314
|
+
:type,
|
|
19315
|
+
:types)
|
|
19132
19316
|
SENSITIVE = []
|
|
19133
19317
|
include Aws::Structure
|
|
19134
19318
|
end
|
|
@@ -19163,6 +19347,10 @@ module Aws::DataZone
|
|
|
19163
19347
|
# The type of the metadata generation run.
|
|
19164
19348
|
# @return [String]
|
|
19165
19349
|
#
|
|
19350
|
+
# @!attribute [rw] types
|
|
19351
|
+
# The types of the metadata generation run.
|
|
19352
|
+
# @return [Array<String>]
|
|
19353
|
+
#
|
|
19166
19354
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartMetadataGenerationRunOutput AWS API Documentation
|
|
19167
19355
|
#
|
|
19168
19356
|
class StartMetadataGenerationRunOutput < Struct.new(
|
|
@@ -19172,7 +19360,8 @@ module Aws::DataZone
|
|
|
19172
19360
|
:id,
|
|
19173
19361
|
:owning_project_id,
|
|
19174
19362
|
:status,
|
|
19175
|
-
:type
|
|
19363
|
+
:type,
|
|
19364
|
+
:types)
|
|
19176
19365
|
SENSITIVE = []
|
|
19177
19366
|
include Aws::Structure
|
|
19178
19367
|
end
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2008,6 +2008,21 @@ module Aws
|
|
|
2008
2008
|
) -> _GetConnectionResponseSuccess
|
|
2009
2009
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionResponseSuccess
|
|
2010
2010
|
|
|
2011
|
+
interface _GetDataExportConfigurationResponseSuccess
|
|
2012
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataExportConfigurationOutput]
|
|
2013
|
+
def created_at: () -> ::Time
|
|
2014
|
+
def encryption_configuration: () -> Types::EncryptionConfiguration
|
|
2015
|
+
def is_export_enabled: () -> bool
|
|
2016
|
+
def s3_table_bucket_arn: () -> ::String
|
|
2017
|
+
def status: () -> ("COMPLETED" | "FAILED")
|
|
2018
|
+
def updated_at: () -> ::Time
|
|
2019
|
+
end
|
|
2020
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_data_export_configuration-instance_method
|
|
2021
|
+
def get_data_export_configuration: (
|
|
2022
|
+
domain_identifier: ::String
|
|
2023
|
+
) -> _GetDataExportConfigurationResponseSuccess
|
|
2024
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataExportConfigurationResponseSuccess
|
|
2025
|
+
|
|
2011
2026
|
interface _GetDataProductResponseSuccess
|
|
2012
2027
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataProductOutput]
|
|
2013
2028
|
def created_at: () -> ::Time
|
|
@@ -2444,14 +2459,17 @@ module Aws
|
|
|
2444
2459
|
def domain_id: () -> ::String
|
|
2445
2460
|
def id: () -> ::String
|
|
2446
2461
|
def owning_project_id: () -> ::String
|
|
2447
|
-
def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
2462
|
+
def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED" | "PARTIALLY_SUCCEEDED")
|
|
2448
2463
|
def target: () -> Types::MetadataGenerationRunTarget
|
|
2449
|
-
def type: () -> ("BUSINESS_DESCRIPTIONS")
|
|
2464
|
+
def type: () -> ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
2465
|
+
def type_stats: () -> ::Array[Types::MetadataGenerationRunTypeStat]
|
|
2466
|
+
def types: () -> ::Array[("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")]
|
|
2450
2467
|
end
|
|
2451
2468
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_metadata_generation_run-instance_method
|
|
2452
2469
|
def get_metadata_generation_run: (
|
|
2453
2470
|
domain_identifier: ::String,
|
|
2454
|
-
identifier: ::String
|
|
2471
|
+
identifier: ::String,
|
|
2472
|
+
?type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
2455
2473
|
) -> _GetMetadataGenerationRunResponseSuccess
|
|
2456
2474
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMetadataGenerationRunResponseSuccess
|
|
2457
2475
|
|
|
@@ -2981,8 +2999,9 @@ module Aws
|
|
|
2981
2999
|
domain_identifier: ::String,
|
|
2982
3000
|
?max_results: ::Integer,
|
|
2983
3001
|
?next_token: ::String,
|
|
2984
|
-
?status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED"),
|
|
2985
|
-
?
|
|
3002
|
+
?status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED" | "PARTIALLY_SUCCEEDED"),
|
|
3003
|
+
?target_identifier: ::String,
|
|
3004
|
+
?type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
2986
3005
|
) -> _ListMetadataGenerationRunsResponseSuccess
|
|
2987
3006
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMetadataGenerationRunsResponseSuccess
|
|
2988
3007
|
|
|
@@ -3236,6 +3255,21 @@ module Aws
|
|
|
3236
3255
|
) -> _PostTimeSeriesDataPointsResponseSuccess
|
|
3237
3256
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PostTimeSeriesDataPointsResponseSuccess
|
|
3238
3257
|
|
|
3258
|
+
interface _PutDataExportConfigurationResponseSuccess
|
|
3259
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutDataExportConfigurationOutput]
|
|
3260
|
+
end
|
|
3261
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#put_data_export_configuration-instance_method
|
|
3262
|
+
def put_data_export_configuration: (
|
|
3263
|
+
?client_token: ::String,
|
|
3264
|
+
domain_identifier: ::String,
|
|
3265
|
+
enable_export: bool,
|
|
3266
|
+
?encryption_configuration: {
|
|
3267
|
+
kms_key_arn: ::String?,
|
|
3268
|
+
sse_algorithm: ::String?
|
|
3269
|
+
}
|
|
3270
|
+
) -> _PutDataExportConfigurationResponseSuccess
|
|
3271
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDataExportConfigurationResponseSuccess
|
|
3272
|
+
|
|
3239
3273
|
interface _PutEnvironmentBlueprintConfigurationResponseSuccess
|
|
3240
3274
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutEnvironmentBlueprintConfigurationOutput]
|
|
3241
3275
|
def created_at: () -> ::Time
|
|
@@ -3586,8 +3620,9 @@ module Aws
|
|
|
3586
3620
|
def domain_id: () -> ::String
|
|
3587
3621
|
def id: () -> ::String
|
|
3588
3622
|
def owning_project_id: () -> ::String
|
|
3589
|
-
def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
3590
|
-
def type: () -> ("BUSINESS_DESCRIPTIONS")
|
|
3623
|
+
def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED" | "PARTIALLY_SUCCEEDED")
|
|
3624
|
+
def type: () -> ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
3625
|
+
def types: () -> ::Array[("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")]
|
|
3591
3626
|
end
|
|
3592
3627
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_metadata_generation_run-instance_method
|
|
3593
3628
|
def start_metadata_generation_run: (
|
|
@@ -3599,7 +3634,8 @@ module Aws
|
|
|
3599
3634
|
revision: ::String?,
|
|
3600
3635
|
type: ("ASSET")
|
|
3601
3636
|
},
|
|
3602
|
-
type: ("BUSINESS_DESCRIPTIONS")
|
|
3637
|
+
?type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS"),
|
|
3638
|
+
?types: Array[("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")]
|
|
3603
3639
|
) -> _StartMetadataGenerationRunResponseSuccess
|
|
3604
3640
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataGenerationRunResponseSuccess
|
|
3605
3641
|
|
data/sig/types.rbs
CHANGED
|
@@ -2052,6 +2052,12 @@ module Aws::DataZone
|
|
|
2052
2052
|
SENSITIVE: []
|
|
2053
2053
|
end
|
|
2054
2054
|
|
|
2055
|
+
class EncryptionConfiguration
|
|
2056
|
+
attr_accessor kms_key_arn: ::String
|
|
2057
|
+
attr_accessor sse_algorithm: ::String
|
|
2058
|
+
SENSITIVE: []
|
|
2059
|
+
end
|
|
2060
|
+
|
|
2055
2061
|
class EnvironmentActionSummary
|
|
2056
2062
|
attr_accessor description: ::String
|
|
2057
2063
|
attr_accessor domain_id: ::String
|
|
@@ -2398,6 +2404,21 @@ module Aws::DataZone
|
|
|
2398
2404
|
SENSITIVE: [:connection_credentials, :description]
|
|
2399
2405
|
end
|
|
2400
2406
|
|
|
2407
|
+
class GetDataExportConfigurationInput
|
|
2408
|
+
attr_accessor domain_identifier: ::String
|
|
2409
|
+
SENSITIVE: []
|
|
2410
|
+
end
|
|
2411
|
+
|
|
2412
|
+
class GetDataExportConfigurationOutput
|
|
2413
|
+
attr_accessor created_at: ::Time
|
|
2414
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
2415
|
+
attr_accessor is_export_enabled: bool
|
|
2416
|
+
attr_accessor s3_table_bucket_arn: ::String
|
|
2417
|
+
attr_accessor status: ("COMPLETED" | "FAILED")
|
|
2418
|
+
attr_accessor updated_at: ::Time
|
|
2419
|
+
SENSITIVE: []
|
|
2420
|
+
end
|
|
2421
|
+
|
|
2401
2422
|
class GetDataProductInput
|
|
2402
2423
|
attr_accessor domain_identifier: ::String
|
|
2403
2424
|
attr_accessor identifier: ::String
|
|
@@ -2831,6 +2852,7 @@ module Aws::DataZone
|
|
|
2831
2852
|
class GetMetadataGenerationRunInput
|
|
2832
2853
|
attr_accessor domain_identifier: ::String
|
|
2833
2854
|
attr_accessor identifier: ::String
|
|
2855
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
2834
2856
|
SENSITIVE: []
|
|
2835
2857
|
end
|
|
2836
2858
|
|
|
@@ -2840,9 +2862,11 @@ module Aws::DataZone
|
|
|
2840
2862
|
attr_accessor domain_id: ::String
|
|
2841
2863
|
attr_accessor id: ::String
|
|
2842
2864
|
attr_accessor owning_project_id: ::String
|
|
2843
|
-
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
2865
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED" | "PARTIALLY_SUCCEEDED")
|
|
2844
2866
|
attr_accessor target: Types::MetadataGenerationRunTarget
|
|
2845
|
-
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
|
2867
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
2868
|
+
attr_accessor type_stats: ::Array[Types::MetadataGenerationRunTypeStat]
|
|
2869
|
+
attr_accessor types: ::Array[("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")]
|
|
2846
2870
|
SENSITIVE: []
|
|
2847
2871
|
end
|
|
2848
2872
|
|
|
@@ -3753,8 +3777,9 @@ module Aws::DataZone
|
|
|
3753
3777
|
attr_accessor domain_identifier: ::String
|
|
3754
3778
|
attr_accessor max_results: ::Integer
|
|
3755
3779
|
attr_accessor next_token: ::String
|
|
3756
|
-
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
3757
|
-
attr_accessor
|
|
3780
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED" | "PARTIALLY_SUCCEEDED")
|
|
3781
|
+
attr_accessor target_identifier: ::String
|
|
3782
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
3758
3783
|
SENSITIVE: []
|
|
3759
3784
|
end
|
|
3760
3785
|
|
|
@@ -4091,9 +4116,10 @@ module Aws::DataZone
|
|
|
4091
4116
|
attr_accessor domain_id: ::String
|
|
4092
4117
|
attr_accessor id: ::String
|
|
4093
4118
|
attr_accessor owning_project_id: ::String
|
|
4094
|
-
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
4119
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED" | "PARTIALLY_SUCCEEDED")
|
|
4095
4120
|
attr_accessor target: Types::MetadataGenerationRunTarget
|
|
4096
|
-
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
|
4121
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
4122
|
+
attr_accessor types: ::Array[("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")]
|
|
4097
4123
|
SENSITIVE: []
|
|
4098
4124
|
end
|
|
4099
4125
|
|
|
@@ -4104,6 +4130,13 @@ module Aws::DataZone
|
|
|
4104
4130
|
SENSITIVE: []
|
|
4105
4131
|
end
|
|
4106
4132
|
|
|
4133
|
+
class MetadataGenerationRunTypeStat
|
|
4134
|
+
attr_accessor error_message: ::String
|
|
4135
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED" | "PARTIALLY_SUCCEEDED")
|
|
4136
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
4137
|
+
SENSITIVE: []
|
|
4138
|
+
end
|
|
4139
|
+
|
|
4107
4140
|
class MlflowPropertiesInput
|
|
4108
4141
|
attr_accessor tracking_server_arn: ::String
|
|
4109
4142
|
SENSITIVE: []
|
|
@@ -4489,6 +4522,17 @@ module Aws::DataZone
|
|
|
4489
4522
|
end
|
|
4490
4523
|
end
|
|
4491
4524
|
|
|
4525
|
+
class PutDataExportConfigurationInput
|
|
4526
|
+
attr_accessor client_token: ::String
|
|
4527
|
+
attr_accessor domain_identifier: ::String
|
|
4528
|
+
attr_accessor enable_export: bool
|
|
4529
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
4530
|
+
SENSITIVE: []
|
|
4531
|
+
end
|
|
4532
|
+
|
|
4533
|
+
class PutDataExportConfigurationOutput < Aws::EmptyStructure
|
|
4534
|
+
end
|
|
4535
|
+
|
|
4492
4536
|
class PutEnvironmentBlueprintConfigurationInput
|
|
4493
4537
|
attr_accessor domain_identifier: ::String
|
|
4494
4538
|
attr_accessor enabled_regions: ::Array[::String]
|
|
@@ -5252,7 +5296,8 @@ module Aws::DataZone
|
|
|
5252
5296
|
attr_accessor domain_identifier: ::String
|
|
5253
5297
|
attr_accessor owning_project_identifier: ::String
|
|
5254
5298
|
attr_accessor target: Types::MetadataGenerationRunTarget
|
|
5255
|
-
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
|
5299
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
5300
|
+
attr_accessor types: ::Array[("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")]
|
|
5256
5301
|
SENSITIVE: []
|
|
5257
5302
|
end
|
|
5258
5303
|
|
|
@@ -5262,8 +5307,9 @@ module Aws::DataZone
|
|
|
5262
5307
|
attr_accessor domain_id: ::String
|
|
5263
5308
|
attr_accessor id: ::String
|
|
5264
5309
|
attr_accessor owning_project_id: ::String
|
|
5265
|
-
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
5266
|
-
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
|
5310
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED" | "PARTIALLY_SUCCEEDED")
|
|
5311
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")
|
|
5312
|
+
attr_accessor types: ::Array[("BUSINESS_DESCRIPTIONS" | "BUSINESS_NAMES" | "BUSINESS_GLOSSARY_ASSOCIATIONS")]
|
|
5267
5313
|
SENSITIVE: []
|
|
5268
5314
|
end
|
|
5269
5315
|
|