aws-sdk-datazone 1.81.0 → 1.83.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +168 -1
- data/lib/aws-sdk-datazone/client_api.rb +94 -0
- data/lib/aws-sdk-datazone/types.rb +325 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +62 -29
- data/sig/params.rbs +32 -0
- data/sig/types.rbs +88 -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: 75a3270f87759af0959a377f8ec2b21dc3f6f161245b71754ae9c55e5cf9e5f9
|
|
4
|
+
data.tar.gz: a9f53382f84cb358c3264e450391beb21c7e24533f77514724d1ddfc0748193b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28332c0b8f8bca912199a35b4e8a7468a962c3a4d3daf2b5939388f3288be44dfff82ab0613630dfb4e057c9a8e28d611aedad919c7a16a8f0e1e8aceb49861e
|
|
7
|
+
data.tar.gz: 7f74d7507d9485c75fa8b84b68cc0beda5b7a7a607e164d5646b9c23a07d5809b721dcf01459c455f942eeaf6a91dc661565459244362d184e4c76208e8daa5c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.83.0 (2026-06-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon DataZone now supports SNOWFLAKE as a connection type in the CreateConnection API, enabling metadata and lineage retrieval from Snowflake databases. Specify snowflakeProperties with connection details, a Secrets Manager secret, an Athena spill bucket, and an identity mapping for Snowflake.
|
|
8
|
+
|
|
9
|
+
1.82.0 (2026-06-15)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for deleting lineage events in Amazon DataZone.
|
|
13
|
+
|
|
4
14
|
1.81.0 (2026-05-26)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.83.0
|
|
@@ -2069,6 +2069,75 @@ module Aws::DataZone
|
|
|
2069
2069
|
# s3_access_grant_location_id: "S3AccessGrantLocationId",
|
|
2070
2070
|
# register_s3_access_grant_location: false,
|
|
2071
2071
|
# },
|
|
2072
|
+
# snowflake_properties: {
|
|
2073
|
+
# connectivity_properties: {
|
|
2074
|
+
# connection_properties: {
|
|
2075
|
+
# "String" => "ConnectionPropertiesValueString",
|
|
2076
|
+
# },
|
|
2077
|
+
# physical_connection_requirements: {
|
|
2078
|
+
# subnet_id: "SubnetId",
|
|
2079
|
+
# subnet_id_list: ["SubnetId"],
|
|
2080
|
+
# security_group_id_list: ["SecurityGroupIdListMemberString"],
|
|
2081
|
+
# availability_zone: "PhysicalConnectionRequirementsAvailabilityZoneString",
|
|
2082
|
+
# },
|
|
2083
|
+
# name: "ConnectivityPropertiesNameString",
|
|
2084
|
+
# description: "ConnectivityPropertiesDescriptionString",
|
|
2085
|
+
# validate_credentials: false,
|
|
2086
|
+
# validate_for_compute_environments: ["SPARK"], # accepts SPARK, ATHENA, PYTHON
|
|
2087
|
+
# spark_properties: {
|
|
2088
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
|
2089
|
+
# },
|
|
2090
|
+
# athena_properties: {
|
|
2091
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
|
2092
|
+
# },
|
|
2093
|
+
# python_properties: {
|
|
2094
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
|
2095
|
+
# },
|
|
2096
|
+
# authentication_configuration: {
|
|
2097
|
+
# authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
|
|
2098
|
+
# o_auth_2_properties: {
|
|
2099
|
+
# o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
|
|
2100
|
+
# o_auth_2_client_application: {
|
|
2101
|
+
# user_managed_client_application_client_id: "OAuth2ClientApplicationUserManagedClientApplicationClientIdString",
|
|
2102
|
+
# a_ws_managed_client_application_reference: "OAuth2ClientApplicationAWSManagedClientApplicationReferenceString",
|
|
2103
|
+
# },
|
|
2104
|
+
# token_url: "OAuth2PropertiesTokenUrlString",
|
|
2105
|
+
# token_url_parameters_map: {
|
|
2106
|
+
# "TokenUrlParametersMapKeyString" => "TokenUrlParametersMapValueString",
|
|
2107
|
+
# },
|
|
2108
|
+
# authorization_code_properties: {
|
|
2109
|
+
# authorization_code: "AuthorizationCodePropertiesAuthorizationCodeString",
|
|
2110
|
+
# redirect_uri: "AuthorizationCodePropertiesRedirectUriString",
|
|
2111
|
+
# },
|
|
2112
|
+
# o_auth_2_credentials: {
|
|
2113
|
+
# user_managed_client_application_client_secret: "GlueOAuth2CredentialsUserManagedClientApplicationClientSecretString",
|
|
2114
|
+
# access_token: "GlueOAuth2CredentialsAccessTokenString",
|
|
2115
|
+
# refresh_token: "GlueOAuth2CredentialsRefreshTokenString",
|
|
2116
|
+
# jwt_token: "GlueOAuth2CredentialsJwtTokenString",
|
|
2117
|
+
# },
|
|
2118
|
+
# },
|
|
2119
|
+
# secret_arn: "AuthenticationConfigurationInputSecretArnString",
|
|
2120
|
+
# kms_key_arn: "AuthenticationConfigurationInputKmsKeyArnString",
|
|
2121
|
+
# basic_authentication_credentials: {
|
|
2122
|
+
# user_name: "BasicAuthenticationCredentialsUserNameString",
|
|
2123
|
+
# password: "BasicAuthenticationCredentialsPasswordString",
|
|
2124
|
+
# },
|
|
2125
|
+
# custom_authentication_credentials: {
|
|
2126
|
+
# "CredentialMapKeyString" => "CredentialMapValueString",
|
|
2127
|
+
# },
|
|
2128
|
+
# },
|
|
2129
|
+
# },
|
|
2130
|
+
# snowflake_role: "SnowflakeRole", # required
|
|
2131
|
+
# identity_mapping: { # required
|
|
2132
|
+
# username_attribute: "String", # required
|
|
2133
|
+
# prefix: "String",
|
|
2134
|
+
# },
|
|
2135
|
+
# lineage_sync: {
|
|
2136
|
+
# timezone: "UTC", # accepts UTC, AFRICA_JOHANNESBURG, AMERICA_MONTREAL, AMERICA_SAO_PAULO, ASIA_BAHRAIN, ASIA_BANGKOK, ASIA_CALCUTTA, ASIA_DUBAI, ASIA_HONG_KONG, ASIA_JAKARTA, ASIA_KUALA_LUMPUR, ASIA_SEOUL, ASIA_SHANGHAI, ASIA_SINGAPORE, ASIA_TAIPEI, ASIA_TOKYO, AUSTRALIA_MELBOURNE, AUSTRALIA_SYDNEY, CANADA_CENTRAL, CET, CST6CDT, ETC_GMT, ETC_GMT0, ETC_GMT_ADD_0, ETC_GMT_ADD_1, ETC_GMT_ADD_10, ETC_GMT_ADD_11, ETC_GMT_ADD_12, ETC_GMT_ADD_2, ETC_GMT_ADD_3, ETC_GMT_ADD_4, ETC_GMT_ADD_5, ETC_GMT_ADD_6, ETC_GMT_ADD_7, ETC_GMT_ADD_8, ETC_GMT_ADD_9, ETC_GMT_NEG_0, ETC_GMT_NEG_1, ETC_GMT_NEG_10, ETC_GMT_NEG_11, ETC_GMT_NEG_12, ETC_GMT_NEG_13, ETC_GMT_NEG_14, ETC_GMT_NEG_2, ETC_GMT_NEG_3, ETC_GMT_NEG_4, ETC_GMT_NEG_5, ETC_GMT_NEG_6, ETC_GMT_NEG_7, ETC_GMT_NEG_8, ETC_GMT_NEG_9, EUROPE_DUBLIN, EUROPE_LONDON, EUROPE_PARIS, EUROPE_STOCKHOLM, EUROPE_ZURICH, ISRAEL, MEXICO_GENERAL, MST7MDT, PACIFIC_AUCKLAND, US_CENTRAL, US_EASTERN, US_MOUNTAIN, US_PACIFIC
|
|
2137
|
+
# enabled: false, # required
|
|
2138
|
+
# schedule: "LineageSyncScheduleCronString",
|
|
2139
|
+
# },
|
|
2140
|
+
# },
|
|
2072
2141
|
# amazon_q_properties: {
|
|
2073
2142
|
# is_enabled: false, # required
|
|
2074
2143
|
# profile_arn: "AmazonQPropertiesInputProfileArnString",
|
|
@@ -2216,6 +2285,15 @@ module Aws::DataZone
|
|
|
2216
2285
|
# resp.props.s3_properties.register_s3_access_grant_location #=> Boolean
|
|
2217
2286
|
# resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
2218
2287
|
# resp.props.s3_properties.error_message #=> String
|
|
2288
|
+
# resp.props.snowflake_properties.snowflake_role #=> String
|
|
2289
|
+
# resp.props.snowflake_properties.identity_mapping.username_attribute #=> String
|
|
2290
|
+
# resp.props.snowflake_properties.identity_mapping.prefix #=> String
|
|
2291
|
+
# resp.props.snowflake_properties.lineage_sync.lineage_job_id #=> String
|
|
2292
|
+
# resp.props.snowflake_properties.lineage_sync.timezone #=> String, one of "UTC", "AFRICA_JOHANNESBURG", "AMERICA_MONTREAL", "AMERICA_SAO_PAULO", "ASIA_BAHRAIN", "ASIA_BANGKOK", "ASIA_CALCUTTA", "ASIA_DUBAI", "ASIA_HONG_KONG", "ASIA_JAKARTA", "ASIA_KUALA_LUMPUR", "ASIA_SEOUL", "ASIA_SHANGHAI", "ASIA_SINGAPORE", "ASIA_TAIPEI", "ASIA_TOKYO", "AUSTRALIA_MELBOURNE", "AUSTRALIA_SYDNEY", "CANADA_CENTRAL", "CET", "CST6CDT", "ETC_GMT", "ETC_GMT0", "ETC_GMT_ADD_0", "ETC_GMT_ADD_1", "ETC_GMT_ADD_10", "ETC_GMT_ADD_11", "ETC_GMT_ADD_12", "ETC_GMT_ADD_2", "ETC_GMT_ADD_3", "ETC_GMT_ADD_4", "ETC_GMT_ADD_5", "ETC_GMT_ADD_6", "ETC_GMT_ADD_7", "ETC_GMT_ADD_8", "ETC_GMT_ADD_9", "ETC_GMT_NEG_0", "ETC_GMT_NEG_1", "ETC_GMT_NEG_10", "ETC_GMT_NEG_11", "ETC_GMT_NEG_12", "ETC_GMT_NEG_13", "ETC_GMT_NEG_14", "ETC_GMT_NEG_2", "ETC_GMT_NEG_3", "ETC_GMT_NEG_4", "ETC_GMT_NEG_5", "ETC_GMT_NEG_6", "ETC_GMT_NEG_7", "ETC_GMT_NEG_8", "ETC_GMT_NEG_9", "EUROPE_DUBLIN", "EUROPE_LONDON", "EUROPE_PARIS", "EUROPE_STOCKHOLM", "EUROPE_ZURICH", "ISRAEL", "MEXICO_GENERAL", "MST7MDT", "PACIFIC_AUCKLAND", "US_CENTRAL", "US_EASTERN", "US_MOUNTAIN", "US_PACIFIC"
|
|
2293
|
+
# resp.props.snowflake_properties.lineage_sync.enabled #=> Boolean
|
|
2294
|
+
# resp.props.snowflake_properties.lineage_sync.schedule #=> String
|
|
2295
|
+
# resp.props.snowflake_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
2296
|
+
# resp.props.snowflake_properties.error_message #=> String
|
|
2219
2297
|
# resp.props.amazon_q_properties.is_enabled #=> Boolean
|
|
2220
2298
|
# resp.props.amazon_q_properties.profile_arn #=> String
|
|
2221
2299
|
# resp.props.amazon_q_properties.auth_mode #=> String
|
|
@@ -2924,6 +3002,11 @@ module Aws::DataZone
|
|
|
2924
3002
|
# @option params [String] :environment_blueprint_identifier
|
|
2925
3003
|
# The ID of the blueprint with which the environment is being created.
|
|
2926
3004
|
#
|
|
3005
|
+
# <note markdown="1"> This parameter is only valid for V1 domains. If provided for a V2
|
|
3006
|
+
# domain, the service returns a ValidationException.
|
|
3007
|
+
#
|
|
3008
|
+
# </note>
|
|
3009
|
+
#
|
|
2927
3010
|
# @option params [Integer] :deployment_order
|
|
2928
3011
|
# The deployment order of the environment.
|
|
2929
3012
|
#
|
|
@@ -5406,6 +5489,42 @@ module Aws::DataZone
|
|
|
5406
5489
|
req.send_request(options)
|
|
5407
5490
|
end
|
|
5408
5491
|
|
|
5492
|
+
# Deletes the specified lineage event.
|
|
5493
|
+
#
|
|
5494
|
+
# @option params [required, String] :domain_identifier
|
|
5495
|
+
# The ID of the domain.
|
|
5496
|
+
#
|
|
5497
|
+
# @option params [required, String] :identifier
|
|
5498
|
+
# The ID of the lineage event.
|
|
5499
|
+
#
|
|
5500
|
+
# @return [Types::DeleteLineageEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5501
|
+
#
|
|
5502
|
+
# * {Types::DeleteLineageEventOutput#id #id} => String
|
|
5503
|
+
# * {Types::DeleteLineageEventOutput#domain_id #domain_id} => String
|
|
5504
|
+
# * {Types::DeleteLineageEventOutput#processing_status #processing_status} => String
|
|
5505
|
+
#
|
|
5506
|
+
# @example Request syntax with placeholder values
|
|
5507
|
+
#
|
|
5508
|
+
# resp = client.delete_lineage_event({
|
|
5509
|
+
# domain_identifier: "DomainId", # required
|
|
5510
|
+
# identifier: "LineageEventIdentifier", # required
|
|
5511
|
+
# })
|
|
5512
|
+
#
|
|
5513
|
+
# @example Response structure
|
|
5514
|
+
#
|
|
5515
|
+
# resp.id #=> String
|
|
5516
|
+
# resp.domain_id #=> String
|
|
5517
|
+
# resp.processing_status #=> String, one of "REQUESTED", "PROCESSING", "SUCCESS", "FAILED"
|
|
5518
|
+
#
|
|
5519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteLineageEvent AWS API Documentation
|
|
5520
|
+
#
|
|
5521
|
+
# @overload delete_lineage_event(params = {})
|
|
5522
|
+
# @param [Hash] params ({})
|
|
5523
|
+
def delete_lineage_event(params = {}, options = {})
|
|
5524
|
+
req = build_request(:delete_lineage_event, params)
|
|
5525
|
+
req.send_request(options)
|
|
5526
|
+
end
|
|
5527
|
+
|
|
5409
5528
|
# Deletes a listing (a record of an asset at a given time).
|
|
5410
5529
|
#
|
|
5411
5530
|
# @option params [required, String] :domain_identifier
|
|
@@ -6340,6 +6459,15 @@ module Aws::DataZone
|
|
|
6340
6459
|
# resp.props.s3_properties.register_s3_access_grant_location #=> Boolean
|
|
6341
6460
|
# resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
6342
6461
|
# resp.props.s3_properties.error_message #=> String
|
|
6462
|
+
# resp.props.snowflake_properties.snowflake_role #=> String
|
|
6463
|
+
# resp.props.snowflake_properties.identity_mapping.username_attribute #=> String
|
|
6464
|
+
# resp.props.snowflake_properties.identity_mapping.prefix #=> String
|
|
6465
|
+
# resp.props.snowflake_properties.lineage_sync.lineage_job_id #=> String
|
|
6466
|
+
# resp.props.snowflake_properties.lineage_sync.timezone #=> String, one of "UTC", "AFRICA_JOHANNESBURG", "AMERICA_MONTREAL", "AMERICA_SAO_PAULO", "ASIA_BAHRAIN", "ASIA_BANGKOK", "ASIA_CALCUTTA", "ASIA_DUBAI", "ASIA_HONG_KONG", "ASIA_JAKARTA", "ASIA_KUALA_LUMPUR", "ASIA_SEOUL", "ASIA_SHANGHAI", "ASIA_SINGAPORE", "ASIA_TAIPEI", "ASIA_TOKYO", "AUSTRALIA_MELBOURNE", "AUSTRALIA_SYDNEY", "CANADA_CENTRAL", "CET", "CST6CDT", "ETC_GMT", "ETC_GMT0", "ETC_GMT_ADD_0", "ETC_GMT_ADD_1", "ETC_GMT_ADD_10", "ETC_GMT_ADD_11", "ETC_GMT_ADD_12", "ETC_GMT_ADD_2", "ETC_GMT_ADD_3", "ETC_GMT_ADD_4", "ETC_GMT_ADD_5", "ETC_GMT_ADD_6", "ETC_GMT_ADD_7", "ETC_GMT_ADD_8", "ETC_GMT_ADD_9", "ETC_GMT_NEG_0", "ETC_GMT_NEG_1", "ETC_GMT_NEG_10", "ETC_GMT_NEG_11", "ETC_GMT_NEG_12", "ETC_GMT_NEG_13", "ETC_GMT_NEG_14", "ETC_GMT_NEG_2", "ETC_GMT_NEG_3", "ETC_GMT_NEG_4", "ETC_GMT_NEG_5", "ETC_GMT_NEG_6", "ETC_GMT_NEG_7", "ETC_GMT_NEG_8", "ETC_GMT_NEG_9", "EUROPE_DUBLIN", "EUROPE_LONDON", "EUROPE_PARIS", "EUROPE_STOCKHOLM", "EUROPE_ZURICH", "ISRAEL", "MEXICO_GENERAL", "MST7MDT", "PACIFIC_AUCKLAND", "US_CENTRAL", "US_EASTERN", "US_MOUNTAIN", "US_PACIFIC"
|
|
6467
|
+
# resp.props.snowflake_properties.lineage_sync.enabled #=> Boolean
|
|
6468
|
+
# resp.props.snowflake_properties.lineage_sync.schedule #=> String
|
|
6469
|
+
# resp.props.snowflake_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
6470
|
+
# resp.props.snowflake_properties.error_message #=> String
|
|
6343
6471
|
# resp.props.amazon_q_properties.is_enabled #=> Boolean
|
|
6344
6472
|
# resp.props.amazon_q_properties.profile_arn #=> String
|
|
6345
6473
|
# resp.props.amazon_q_properties.auth_mode #=> String
|
|
@@ -9169,6 +9297,15 @@ module Aws::DataZone
|
|
|
9169
9297
|
# resp.items[0].props.s3_properties.register_s3_access_grant_location #=> Boolean
|
|
9170
9298
|
# resp.items[0].props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
9171
9299
|
# resp.items[0].props.s3_properties.error_message #=> String
|
|
9300
|
+
# resp.items[0].props.snowflake_properties.snowflake_role #=> String
|
|
9301
|
+
# resp.items[0].props.snowflake_properties.identity_mapping.username_attribute #=> String
|
|
9302
|
+
# resp.items[0].props.snowflake_properties.identity_mapping.prefix #=> String
|
|
9303
|
+
# resp.items[0].props.snowflake_properties.lineage_sync.lineage_job_id #=> String
|
|
9304
|
+
# resp.items[0].props.snowflake_properties.lineage_sync.timezone #=> String, one of "UTC", "AFRICA_JOHANNESBURG", "AMERICA_MONTREAL", "AMERICA_SAO_PAULO", "ASIA_BAHRAIN", "ASIA_BANGKOK", "ASIA_CALCUTTA", "ASIA_DUBAI", "ASIA_HONG_KONG", "ASIA_JAKARTA", "ASIA_KUALA_LUMPUR", "ASIA_SEOUL", "ASIA_SHANGHAI", "ASIA_SINGAPORE", "ASIA_TAIPEI", "ASIA_TOKYO", "AUSTRALIA_MELBOURNE", "AUSTRALIA_SYDNEY", "CANADA_CENTRAL", "CET", "CST6CDT", "ETC_GMT", "ETC_GMT0", "ETC_GMT_ADD_0", "ETC_GMT_ADD_1", "ETC_GMT_ADD_10", "ETC_GMT_ADD_11", "ETC_GMT_ADD_12", "ETC_GMT_ADD_2", "ETC_GMT_ADD_3", "ETC_GMT_ADD_4", "ETC_GMT_ADD_5", "ETC_GMT_ADD_6", "ETC_GMT_ADD_7", "ETC_GMT_ADD_8", "ETC_GMT_ADD_9", "ETC_GMT_NEG_0", "ETC_GMT_NEG_1", "ETC_GMT_NEG_10", "ETC_GMT_NEG_11", "ETC_GMT_NEG_12", "ETC_GMT_NEG_13", "ETC_GMT_NEG_14", "ETC_GMT_NEG_2", "ETC_GMT_NEG_3", "ETC_GMT_NEG_4", "ETC_GMT_NEG_5", "ETC_GMT_NEG_6", "ETC_GMT_NEG_7", "ETC_GMT_NEG_8", "ETC_GMT_NEG_9", "EUROPE_DUBLIN", "EUROPE_LONDON", "EUROPE_PARIS", "EUROPE_STOCKHOLM", "EUROPE_ZURICH", "ISRAEL", "MEXICO_GENERAL", "MST7MDT", "PACIFIC_AUCKLAND", "US_CENTRAL", "US_EASTERN", "US_MOUNTAIN", "US_PACIFIC"
|
|
9305
|
+
# resp.items[0].props.snowflake_properties.lineage_sync.enabled #=> Boolean
|
|
9306
|
+
# resp.items[0].props.snowflake_properties.lineage_sync.schedule #=> String
|
|
9307
|
+
# resp.items[0].props.snowflake_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
9308
|
+
# resp.items[0].props.snowflake_properties.error_message #=> String
|
|
9172
9309
|
# resp.items[0].props.amazon_q_properties.is_enabled #=> Boolean
|
|
9173
9310
|
# resp.items[0].props.amazon_q_properties.profile_arn #=> String
|
|
9174
9311
|
# resp.items[0].props.amazon_q_properties.auth_mode #=> String
|
|
@@ -14202,6 +14339,27 @@ module Aws::DataZone
|
|
|
14202
14339
|
# s3_access_grant_location_id: "S3AccessGrantLocationId",
|
|
14203
14340
|
# register_s3_access_grant_location: false,
|
|
14204
14341
|
# },
|
|
14342
|
+
# snowflake_properties: {
|
|
14343
|
+
# connectivity_properties_patch: {
|
|
14344
|
+
# description: "ConnectivityPropertiesPatchDescriptionString",
|
|
14345
|
+
# connection_properties: {
|
|
14346
|
+
# "String" => "ConnectionPropertiesValueString",
|
|
14347
|
+
# },
|
|
14348
|
+
# authentication_configuration: {
|
|
14349
|
+
# secret_arn: "AuthenticationConfigurationPatchSecretArnString",
|
|
14350
|
+
# basic_authentication_credentials: {
|
|
14351
|
+
# user_name: "BasicAuthenticationCredentialsUserNameString",
|
|
14352
|
+
# password: "BasicAuthenticationCredentialsPasswordString",
|
|
14353
|
+
# },
|
|
14354
|
+
# },
|
|
14355
|
+
# },
|
|
14356
|
+
# snowflake_role: "SnowflakeRole",
|
|
14357
|
+
# lineage_sync: {
|
|
14358
|
+
# timezone: "UTC", # accepts UTC, AFRICA_JOHANNESBURG, AMERICA_MONTREAL, AMERICA_SAO_PAULO, ASIA_BAHRAIN, ASIA_BANGKOK, ASIA_CALCUTTA, ASIA_DUBAI, ASIA_HONG_KONG, ASIA_JAKARTA, ASIA_KUALA_LUMPUR, ASIA_SEOUL, ASIA_SHANGHAI, ASIA_SINGAPORE, ASIA_TAIPEI, ASIA_TOKYO, AUSTRALIA_MELBOURNE, AUSTRALIA_SYDNEY, CANADA_CENTRAL, CET, CST6CDT, ETC_GMT, ETC_GMT0, ETC_GMT_ADD_0, ETC_GMT_ADD_1, ETC_GMT_ADD_10, ETC_GMT_ADD_11, ETC_GMT_ADD_12, ETC_GMT_ADD_2, ETC_GMT_ADD_3, ETC_GMT_ADD_4, ETC_GMT_ADD_5, ETC_GMT_ADD_6, ETC_GMT_ADD_7, ETC_GMT_ADD_8, ETC_GMT_ADD_9, ETC_GMT_NEG_0, ETC_GMT_NEG_1, ETC_GMT_NEG_10, ETC_GMT_NEG_11, ETC_GMT_NEG_12, ETC_GMT_NEG_13, ETC_GMT_NEG_14, ETC_GMT_NEG_2, ETC_GMT_NEG_3, ETC_GMT_NEG_4, ETC_GMT_NEG_5, ETC_GMT_NEG_6, ETC_GMT_NEG_7, ETC_GMT_NEG_8, ETC_GMT_NEG_9, EUROPE_DUBLIN, EUROPE_LONDON, EUROPE_PARIS, EUROPE_STOCKHOLM, EUROPE_ZURICH, ISRAEL, MEXICO_GENERAL, MST7MDT, PACIFIC_AUCKLAND, US_CENTRAL, US_EASTERN, US_MOUNTAIN, US_PACIFIC
|
|
14359
|
+
# enabled: false, # required
|
|
14360
|
+
# schedule: "LineageSyncScheduleCronString",
|
|
14361
|
+
# },
|
|
14362
|
+
# },
|
|
14205
14363
|
# amazon_q_properties: {
|
|
14206
14364
|
# is_enabled: false, # required
|
|
14207
14365
|
# profile_arn: "AmazonQPropertiesPatchProfileArnString",
|
|
@@ -14342,6 +14500,15 @@ module Aws::DataZone
|
|
|
14342
14500
|
# resp.props.s3_properties.register_s3_access_grant_location #=> Boolean
|
|
14343
14501
|
# resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
14344
14502
|
# resp.props.s3_properties.error_message #=> String
|
|
14503
|
+
# resp.props.snowflake_properties.snowflake_role #=> String
|
|
14504
|
+
# resp.props.snowflake_properties.identity_mapping.username_attribute #=> String
|
|
14505
|
+
# resp.props.snowflake_properties.identity_mapping.prefix #=> String
|
|
14506
|
+
# resp.props.snowflake_properties.lineage_sync.lineage_job_id #=> String
|
|
14507
|
+
# resp.props.snowflake_properties.lineage_sync.timezone #=> String, one of "UTC", "AFRICA_JOHANNESBURG", "AMERICA_MONTREAL", "AMERICA_SAO_PAULO", "ASIA_BAHRAIN", "ASIA_BANGKOK", "ASIA_CALCUTTA", "ASIA_DUBAI", "ASIA_HONG_KONG", "ASIA_JAKARTA", "ASIA_KUALA_LUMPUR", "ASIA_SEOUL", "ASIA_SHANGHAI", "ASIA_SINGAPORE", "ASIA_TAIPEI", "ASIA_TOKYO", "AUSTRALIA_MELBOURNE", "AUSTRALIA_SYDNEY", "CANADA_CENTRAL", "CET", "CST6CDT", "ETC_GMT", "ETC_GMT0", "ETC_GMT_ADD_0", "ETC_GMT_ADD_1", "ETC_GMT_ADD_10", "ETC_GMT_ADD_11", "ETC_GMT_ADD_12", "ETC_GMT_ADD_2", "ETC_GMT_ADD_3", "ETC_GMT_ADD_4", "ETC_GMT_ADD_5", "ETC_GMT_ADD_6", "ETC_GMT_ADD_7", "ETC_GMT_ADD_8", "ETC_GMT_ADD_9", "ETC_GMT_NEG_0", "ETC_GMT_NEG_1", "ETC_GMT_NEG_10", "ETC_GMT_NEG_11", "ETC_GMT_NEG_12", "ETC_GMT_NEG_13", "ETC_GMT_NEG_14", "ETC_GMT_NEG_2", "ETC_GMT_NEG_3", "ETC_GMT_NEG_4", "ETC_GMT_NEG_5", "ETC_GMT_NEG_6", "ETC_GMT_NEG_7", "ETC_GMT_NEG_8", "ETC_GMT_NEG_9", "EUROPE_DUBLIN", "EUROPE_LONDON", "EUROPE_PARIS", "EUROPE_STOCKHOLM", "EUROPE_ZURICH", "ISRAEL", "MEXICO_GENERAL", "MST7MDT", "PACIFIC_AUCKLAND", "US_CENTRAL", "US_EASTERN", "US_MOUNTAIN", "US_PACIFIC"
|
|
14508
|
+
# resp.props.snowflake_properties.lineage_sync.enabled #=> Boolean
|
|
14509
|
+
# resp.props.snowflake_properties.lineage_sync.schedule #=> String
|
|
14510
|
+
# resp.props.snowflake_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
14511
|
+
# resp.props.snowflake_properties.error_message #=> String
|
|
14345
14512
|
# resp.props.amazon_q_properties.is_enabled #=> Boolean
|
|
14346
14513
|
# resp.props.amazon_q_properties.profile_arn #=> String
|
|
14347
14514
|
# resp.props.amazon_q_properties.auth_mode #=> String
|
|
@@ -16299,7 +16466,7 @@ module Aws::DataZone
|
|
|
16299
16466
|
tracer: tracer
|
|
16300
16467
|
)
|
|
16301
16468
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
16302
|
-
context[:gem_version] = '1.
|
|
16469
|
+
context[:gem_version] = '1.83.0'
|
|
16303
16470
|
Seahorse::Client::Request.new(handlers, context)
|
|
16304
16471
|
end
|
|
16305
16472
|
|
|
@@ -184,6 +184,11 @@ module Aws::DataZone
|
|
|
184
184
|
ConnectionSummaries = Shapes::ListShape.new(name: 'ConnectionSummaries')
|
|
185
185
|
ConnectionSummary = Shapes::StructureShape.new(name: 'ConnectionSummary')
|
|
186
186
|
ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
|
|
187
|
+
ConnectivityProperties = Shapes::StructureShape.new(name: 'ConnectivityProperties')
|
|
188
|
+
ConnectivityPropertiesDescriptionString = Shapes::StringShape.new(name: 'ConnectivityPropertiesDescriptionString')
|
|
189
|
+
ConnectivityPropertiesNameString = Shapes::StringShape.new(name: 'ConnectivityPropertiesNameString')
|
|
190
|
+
ConnectivityPropertiesPatch = Shapes::StructureShape.new(name: 'ConnectivityPropertiesPatch')
|
|
191
|
+
ConnectivityPropertiesPatchDescriptionString = Shapes::StringShape.new(name: 'ConnectivityPropertiesPatchDescriptionString')
|
|
187
192
|
CreateAccountPoolInput = Shapes::StructureShape.new(name: 'CreateAccountPoolInput')
|
|
188
193
|
CreateAccountPoolOutput = Shapes::StructureShape.new(name: 'CreateAccountPoolOutput')
|
|
189
194
|
CreateAssetFilterInput = Shapes::StructureShape.new(name: 'CreateAssetFilterInput')
|
|
@@ -336,6 +341,8 @@ module Aws::DataZone
|
|
|
336
341
|
DeleteGlossaryOutput = Shapes::StructureShape.new(name: 'DeleteGlossaryOutput')
|
|
337
342
|
DeleteGlossaryTermInput = Shapes::StructureShape.new(name: 'DeleteGlossaryTermInput')
|
|
338
343
|
DeleteGlossaryTermOutput = Shapes::StructureShape.new(name: 'DeleteGlossaryTermOutput')
|
|
344
|
+
DeleteLineageEventInput = Shapes::StructureShape.new(name: 'DeleteLineageEventInput')
|
|
345
|
+
DeleteLineageEventOutput = Shapes::StructureShape.new(name: 'DeleteLineageEventOutput')
|
|
339
346
|
DeleteListingInput = Shapes::StructureShape.new(name: 'DeleteListingInput')
|
|
340
347
|
DeleteListingOutput = Shapes::StructureShape.new(name: 'DeleteListingOutput')
|
|
341
348
|
DeleteNotebookInput = Shapes::StructureShape.new(name: 'DeleteNotebookInput')
|
|
@@ -636,6 +643,7 @@ module Aws::DataZone
|
|
|
636
643
|
IamPropertiesPatch = Shapes::StructureShape.new(name: 'IamPropertiesPatch')
|
|
637
644
|
IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
|
|
638
645
|
IamUserProfileDetails = Shapes::StructureShape.new(name: 'IamUserProfileDetails')
|
|
646
|
+
IdentityMapping = Shapes::StructureShape.new(name: 'IdentityMapping')
|
|
639
647
|
Import = Shapes::StructureShape.new(name: 'Import')
|
|
640
648
|
ImportList = Shapes::ListShape.new(name: 'ImportList')
|
|
641
649
|
InExpression = Shapes::StructureShape.new(name: 'InExpression')
|
|
@@ -683,7 +691,10 @@ module Aws::DataZone
|
|
|
683
691
|
LineageNodeTypeItem = Shapes::StructureShape.new(name: 'LineageNodeTypeItem')
|
|
684
692
|
LineageRunDetails = Shapes::StructureShape.new(name: 'LineageRunDetails')
|
|
685
693
|
LineageSqlQueryRunDetails = Shapes::StructureShape.new(name: 'LineageSqlQueryRunDetails')
|
|
694
|
+
LineageSyncInput = Shapes::StructureShape.new(name: 'LineageSyncInput')
|
|
695
|
+
LineageSyncOutput = Shapes::StructureShape.new(name: 'LineageSyncOutput')
|
|
686
696
|
LineageSyncSchedule = Shapes::StructureShape.new(name: 'LineageSyncSchedule')
|
|
697
|
+
LineageSyncScheduleCronString = Shapes::StringShape.new(name: 'LineageSyncScheduleCronString')
|
|
687
698
|
LineageSyncScheduleScheduleString = Shapes::StringShape.new(name: 'LineageSyncScheduleScheduleString')
|
|
688
699
|
ListAccountPoolsInput = Shapes::StructureShape.new(name: 'ListAccountPoolsInput')
|
|
689
700
|
ListAccountPoolsOutput = Shapes::StructureShape.new(name: 'ListAccountPoolsOutput')
|
|
@@ -1073,6 +1084,10 @@ module Aws::DataZone
|
|
|
1073
1084
|
SingleSignOn = Shapes::StructureShape.new(name: 'SingleSignOn')
|
|
1074
1085
|
SingleSignOnIdcInstanceArnString = Shapes::StringShape.new(name: 'SingleSignOnIdcInstanceArnString')
|
|
1075
1086
|
Smithy = Shapes::StringShape.new(name: 'Smithy')
|
|
1087
|
+
SnowflakePropertiesInput = Shapes::StructureShape.new(name: 'SnowflakePropertiesInput')
|
|
1088
|
+
SnowflakePropertiesOutput = Shapes::StructureShape.new(name: 'SnowflakePropertiesOutput')
|
|
1089
|
+
SnowflakePropertiesPatch = Shapes::StructureShape.new(name: 'SnowflakePropertiesPatch')
|
|
1090
|
+
SnowflakeRole = Shapes::StringShape.new(name: 'SnowflakeRole')
|
|
1076
1091
|
SortFieldAccountPool = Shapes::StringShape.new(name: 'SortFieldAccountPool')
|
|
1077
1092
|
SortFieldConnection = Shapes::StringShape.new(name: 'SortFieldConnection')
|
|
1078
1093
|
SortFieldProject = Shapes::StringShape.new(name: 'SortFieldProject')
|
|
@@ -1799,6 +1814,7 @@ module Aws::DataZone
|
|
|
1799
1814
|
ConnectionPropertiesInput.add_member(:spark_emr_properties, Shapes::ShapeRef.new(shape: SparkEmrPropertiesInput, location_name: "sparkEmrProperties"))
|
|
1800
1815
|
ConnectionPropertiesInput.add_member(:spark_glue_properties, Shapes::ShapeRef.new(shape: SparkGluePropertiesInput, location_name: "sparkGlueProperties"))
|
|
1801
1816
|
ConnectionPropertiesInput.add_member(:s3_properties, Shapes::ShapeRef.new(shape: S3PropertiesInput, location_name: "s3Properties"))
|
|
1817
|
+
ConnectionPropertiesInput.add_member(:snowflake_properties, Shapes::ShapeRef.new(shape: SnowflakePropertiesInput, location_name: "snowflakeProperties"))
|
|
1802
1818
|
ConnectionPropertiesInput.add_member(:amazon_q_properties, Shapes::ShapeRef.new(shape: AmazonQPropertiesInput, location_name: "amazonQProperties"))
|
|
1803
1819
|
ConnectionPropertiesInput.add_member(:mlflow_properties, Shapes::ShapeRef.new(shape: MlflowPropertiesInput, location_name: "mlflowProperties"))
|
|
1804
1820
|
ConnectionPropertiesInput.add_member(:workflows_mwaa_properties, Shapes::ShapeRef.new(shape: WorkflowsMwaaPropertiesInput, location_name: "workflowsMwaaProperties"))
|
|
@@ -1814,6 +1830,7 @@ module Aws::DataZone
|
|
|
1814
1830
|
ConnectionPropertiesInput.add_member_subclass(:spark_emr_properties, Types::ConnectionPropertiesInput::SparkEmrProperties)
|
|
1815
1831
|
ConnectionPropertiesInput.add_member_subclass(:spark_glue_properties, Types::ConnectionPropertiesInput::SparkGlueProperties)
|
|
1816
1832
|
ConnectionPropertiesInput.add_member_subclass(:s3_properties, Types::ConnectionPropertiesInput::S3Properties)
|
|
1833
|
+
ConnectionPropertiesInput.add_member_subclass(:snowflake_properties, Types::ConnectionPropertiesInput::SnowflakeProperties)
|
|
1817
1834
|
ConnectionPropertiesInput.add_member_subclass(:amazon_q_properties, Types::ConnectionPropertiesInput::AmazonQProperties)
|
|
1818
1835
|
ConnectionPropertiesInput.add_member_subclass(:mlflow_properties, Types::ConnectionPropertiesInput::MlflowProperties)
|
|
1819
1836
|
ConnectionPropertiesInput.add_member_subclass(:workflows_mwaa_properties, Types::ConnectionPropertiesInput::WorkflowsMwaaProperties)
|
|
@@ -1831,6 +1848,7 @@ module Aws::DataZone
|
|
|
1831
1848
|
ConnectionPropertiesOutput.add_member(:spark_emr_properties, Shapes::ShapeRef.new(shape: SparkEmrPropertiesOutput, location_name: "sparkEmrProperties"))
|
|
1832
1849
|
ConnectionPropertiesOutput.add_member(:spark_glue_properties, Shapes::ShapeRef.new(shape: SparkGluePropertiesOutput, location_name: "sparkGlueProperties"))
|
|
1833
1850
|
ConnectionPropertiesOutput.add_member(:s3_properties, Shapes::ShapeRef.new(shape: S3PropertiesOutput, location_name: "s3Properties"))
|
|
1851
|
+
ConnectionPropertiesOutput.add_member(:snowflake_properties, Shapes::ShapeRef.new(shape: SnowflakePropertiesOutput, location_name: "snowflakeProperties"))
|
|
1834
1852
|
ConnectionPropertiesOutput.add_member(:amazon_q_properties, Shapes::ShapeRef.new(shape: AmazonQPropertiesOutput, location_name: "amazonQProperties"))
|
|
1835
1853
|
ConnectionPropertiesOutput.add_member(:mlflow_properties, Shapes::ShapeRef.new(shape: MlflowPropertiesOutput, location_name: "mlflowProperties"))
|
|
1836
1854
|
ConnectionPropertiesOutput.add_member(:workflows_mwaa_properties, Shapes::ShapeRef.new(shape: WorkflowsMwaaPropertiesOutput, location_name: "workflowsMwaaProperties"))
|
|
@@ -1846,6 +1864,7 @@ module Aws::DataZone
|
|
|
1846
1864
|
ConnectionPropertiesOutput.add_member_subclass(:spark_emr_properties, Types::ConnectionPropertiesOutput::SparkEmrProperties)
|
|
1847
1865
|
ConnectionPropertiesOutput.add_member_subclass(:spark_glue_properties, Types::ConnectionPropertiesOutput::SparkGlueProperties)
|
|
1848
1866
|
ConnectionPropertiesOutput.add_member_subclass(:s3_properties, Types::ConnectionPropertiesOutput::S3Properties)
|
|
1867
|
+
ConnectionPropertiesOutput.add_member_subclass(:snowflake_properties, Types::ConnectionPropertiesOutput::SnowflakeProperties)
|
|
1849
1868
|
ConnectionPropertiesOutput.add_member_subclass(:amazon_q_properties, Types::ConnectionPropertiesOutput::AmazonQProperties)
|
|
1850
1869
|
ConnectionPropertiesOutput.add_member_subclass(:mlflow_properties, Types::ConnectionPropertiesOutput::MlflowProperties)
|
|
1851
1870
|
ConnectionPropertiesOutput.add_member_subclass(:workflows_mwaa_properties, Types::ConnectionPropertiesOutput::WorkflowsMwaaProperties)
|
|
@@ -1861,6 +1880,7 @@ module Aws::DataZone
|
|
|
1861
1880
|
ConnectionPropertiesPatch.add_member(:redshift_properties, Shapes::ShapeRef.new(shape: RedshiftPropertiesPatch, location_name: "redshiftProperties"))
|
|
1862
1881
|
ConnectionPropertiesPatch.add_member(:spark_emr_properties, Shapes::ShapeRef.new(shape: SparkEmrPropertiesPatch, location_name: "sparkEmrProperties"))
|
|
1863
1882
|
ConnectionPropertiesPatch.add_member(:s3_properties, Shapes::ShapeRef.new(shape: S3PropertiesPatch, location_name: "s3Properties"))
|
|
1883
|
+
ConnectionPropertiesPatch.add_member(:snowflake_properties, Shapes::ShapeRef.new(shape: SnowflakePropertiesPatch, location_name: "snowflakeProperties"))
|
|
1864
1884
|
ConnectionPropertiesPatch.add_member(:amazon_q_properties, Shapes::ShapeRef.new(shape: AmazonQPropertiesPatch, location_name: "amazonQProperties"))
|
|
1865
1885
|
ConnectionPropertiesPatch.add_member(:mlflow_properties, Shapes::ShapeRef.new(shape: MlflowPropertiesPatch, location_name: "mlflowProperties"))
|
|
1866
1886
|
ConnectionPropertiesPatch.add_member(:lakehouse_properties, Shapes::ShapeRef.new(shape: LakehousePropertiesPatch, location_name: "lakehouseProperties"))
|
|
@@ -1872,6 +1892,7 @@ module Aws::DataZone
|
|
|
1872
1892
|
ConnectionPropertiesPatch.add_member_subclass(:redshift_properties, Types::ConnectionPropertiesPatch::RedshiftProperties)
|
|
1873
1893
|
ConnectionPropertiesPatch.add_member_subclass(:spark_emr_properties, Types::ConnectionPropertiesPatch::SparkEmrProperties)
|
|
1874
1894
|
ConnectionPropertiesPatch.add_member_subclass(:s3_properties, Types::ConnectionPropertiesPatch::S3Properties)
|
|
1895
|
+
ConnectionPropertiesPatch.add_member_subclass(:snowflake_properties, Types::ConnectionPropertiesPatch::SnowflakeProperties)
|
|
1875
1896
|
ConnectionPropertiesPatch.add_member_subclass(:amazon_q_properties, Types::ConnectionPropertiesPatch::AmazonQProperties)
|
|
1876
1897
|
ConnectionPropertiesPatch.add_member_subclass(:mlflow_properties, Types::ConnectionPropertiesPatch::MlflowProperties)
|
|
1877
1898
|
ConnectionPropertiesPatch.add_member_subclass(:lakehouse_properties, Types::ConnectionPropertiesPatch::LakehouseProperties)
|
|
@@ -1894,6 +1915,23 @@ module Aws::DataZone
|
|
|
1894
1915
|
ConnectionSummary.add_member(:scope, Shapes::ShapeRef.new(shape: ConnectionScope, location_name: "scope"))
|
|
1895
1916
|
ConnectionSummary.struct_class = Types::ConnectionSummary
|
|
1896
1917
|
|
|
1918
|
+
ConnectivityProperties.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, location_name: "connectionProperties"))
|
|
1919
|
+
ConnectivityProperties.add_member(:physical_connection_requirements, Shapes::ShapeRef.new(shape: PhysicalConnectionRequirements, location_name: "physicalConnectionRequirements"))
|
|
1920
|
+
ConnectivityProperties.add_member(:name, Shapes::ShapeRef.new(shape: ConnectivityPropertiesNameString, location_name: "name"))
|
|
1921
|
+
ConnectivityProperties.add_member(:description, Shapes::ShapeRef.new(shape: ConnectivityPropertiesDescriptionString, location_name: "description"))
|
|
1922
|
+
ConnectivityProperties.add_member(:validate_credentials, Shapes::ShapeRef.new(shape: Boolean, location_name: "validateCredentials"))
|
|
1923
|
+
ConnectivityProperties.add_member(:validate_for_compute_environments, Shapes::ShapeRef.new(shape: ComputeEnvironmentsList, location_name: "validateForComputeEnvironments"))
|
|
1924
|
+
ConnectivityProperties.add_member(:spark_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "sparkProperties"))
|
|
1925
|
+
ConnectivityProperties.add_member(:athena_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "athenaProperties"))
|
|
1926
|
+
ConnectivityProperties.add_member(:python_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "pythonProperties"))
|
|
1927
|
+
ConnectivityProperties.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfigurationInput, location_name: "authenticationConfiguration"))
|
|
1928
|
+
ConnectivityProperties.struct_class = Types::ConnectivityProperties
|
|
1929
|
+
|
|
1930
|
+
ConnectivityPropertiesPatch.add_member(:description, Shapes::ShapeRef.new(shape: ConnectivityPropertiesPatchDescriptionString, location_name: "description"))
|
|
1931
|
+
ConnectivityPropertiesPatch.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, location_name: "connectionProperties"))
|
|
1932
|
+
ConnectivityPropertiesPatch.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfigurationPatch, location_name: "authenticationConfiguration"))
|
|
1933
|
+
ConnectivityPropertiesPatch.struct_class = Types::ConnectivityPropertiesPatch
|
|
1934
|
+
|
|
1897
1935
|
CreateAccountPoolInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
1898
1936
|
CreateAccountPoolInput.add_member(:name, Shapes::ShapeRef.new(shape: AccountPoolName, required: true, location_name: "name"))
|
|
1899
1937
|
CreateAccountPoolInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
@@ -2893,6 +2931,15 @@ module Aws::DataZone
|
|
|
2893
2931
|
|
|
2894
2932
|
DeleteGlossaryTermOutput.struct_class = Types::DeleteGlossaryTermOutput
|
|
2895
2933
|
|
|
2934
|
+
DeleteLineageEventInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
2935
|
+
DeleteLineageEventInput.add_member(:identifier, Shapes::ShapeRef.new(shape: LineageEventIdentifier, required: true, location: "uri", location_name: "identifier"))
|
|
2936
|
+
DeleteLineageEventInput.struct_class = Types::DeleteLineageEventInput
|
|
2937
|
+
|
|
2938
|
+
DeleteLineageEventOutput.add_member(:id, Shapes::ShapeRef.new(shape: LineageEventIdentifier, location_name: "id"))
|
|
2939
|
+
DeleteLineageEventOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "domainId"))
|
|
2940
|
+
DeleteLineageEventOutput.add_member(:processing_status, Shapes::ShapeRef.new(shape: LineageEventProcessingStatus, location_name: "processingStatus"))
|
|
2941
|
+
DeleteLineageEventOutput.struct_class = Types::DeleteLineageEventOutput
|
|
2942
|
+
|
|
2896
2943
|
DeleteListingInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
2897
2944
|
DeleteListingInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ListingId, required: true, location: "uri", location_name: "identifier"))
|
|
2898
2945
|
DeleteListingInput.struct_class = Types::DeleteListingInput
|
|
@@ -4212,6 +4259,10 @@ module Aws::DataZone
|
|
|
4212
4259
|
IamUserProfileDetails.add_member(:group_profile_id, Shapes::ShapeRef.new(shape: String, location_name: "groupProfileId"))
|
|
4213
4260
|
IamUserProfileDetails.struct_class = Types::IamUserProfileDetails
|
|
4214
4261
|
|
|
4262
|
+
IdentityMapping.add_member(:username_attribute, Shapes::ShapeRef.new(shape: String, required: true, location_name: "usernameAttribute"))
|
|
4263
|
+
IdentityMapping.add_member(:prefix, Shapes::ShapeRef.new(shape: String, location_name: "prefix"))
|
|
4264
|
+
IdentityMapping.struct_class = Types::IdentityMapping
|
|
4265
|
+
|
|
4215
4266
|
Import.add_member(:name, Shapes::ShapeRef.new(shape: FormTypeName, required: true, location_name: "name"))
|
|
4216
4267
|
Import.add_member(:revision, Shapes::ShapeRef.new(shape: Revision, required: true, location_name: "revision"))
|
|
4217
4268
|
Import.struct_class = Types::Import
|
|
@@ -4360,6 +4411,17 @@ module Aws::DataZone
|
|
|
4360
4411
|
LineageSqlQueryRunDetails.add_member(:error_messages, Shapes::ShapeRef.new(shape: FailedQueryProcessingErrorMessages, location_name: "errorMessages"))
|
|
4361
4412
|
LineageSqlQueryRunDetails.struct_class = Types::LineageSqlQueryRunDetails
|
|
4362
4413
|
|
|
4414
|
+
LineageSyncInput.add_member(:timezone, Shapes::ShapeRef.new(shape: Timezone, location_name: "timezone"))
|
|
4415
|
+
LineageSyncInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
|
|
4416
|
+
LineageSyncInput.add_member(:schedule, Shapes::ShapeRef.new(shape: LineageSyncScheduleCronString, location_name: "schedule"))
|
|
4417
|
+
LineageSyncInput.struct_class = Types::LineageSyncInput
|
|
4418
|
+
|
|
4419
|
+
LineageSyncOutput.add_member(:lineage_job_id, Shapes::ShapeRef.new(shape: String, location_name: "lineageJobId"))
|
|
4420
|
+
LineageSyncOutput.add_member(:timezone, Shapes::ShapeRef.new(shape: Timezone, location_name: "timezone"))
|
|
4421
|
+
LineageSyncOutput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
4422
|
+
LineageSyncOutput.add_member(:schedule, Shapes::ShapeRef.new(shape: LineageSyncScheduleCronString, location_name: "schedule"))
|
|
4423
|
+
LineageSyncOutput.struct_class = Types::LineageSyncOutput
|
|
4424
|
+
|
|
4363
4425
|
LineageSyncSchedule.add_member(:schedule, Shapes::ShapeRef.new(shape: LineageSyncScheduleScheduleString, location_name: "schedule"))
|
|
4364
4426
|
LineageSyncSchedule.struct_class = Types::LineageSyncSchedule
|
|
4365
4427
|
|
|
@@ -5862,6 +5924,24 @@ module Aws::DataZone
|
|
|
5862
5924
|
SingleSignOn.add_member(:idc_instance_arn, Shapes::ShapeRef.new(shape: SingleSignOnIdcInstanceArnString, location_name: "idcInstanceArn"))
|
|
5863
5925
|
SingleSignOn.struct_class = Types::SingleSignOn
|
|
5864
5926
|
|
|
5927
|
+
SnowflakePropertiesInput.add_member(:connectivity_properties, Shapes::ShapeRef.new(shape: ConnectivityProperties, location_name: "connectivityProperties"))
|
|
5928
|
+
SnowflakePropertiesInput.add_member(:snowflake_role, Shapes::ShapeRef.new(shape: SnowflakeRole, required: true, location_name: "snowflakeRole"))
|
|
5929
|
+
SnowflakePropertiesInput.add_member(:identity_mapping, Shapes::ShapeRef.new(shape: IdentityMapping, required: true, location_name: "identityMapping"))
|
|
5930
|
+
SnowflakePropertiesInput.add_member(:lineage_sync, Shapes::ShapeRef.new(shape: LineageSyncInput, location_name: "lineageSync"))
|
|
5931
|
+
SnowflakePropertiesInput.struct_class = Types::SnowflakePropertiesInput
|
|
5932
|
+
|
|
5933
|
+
SnowflakePropertiesOutput.add_member(:snowflake_role, Shapes::ShapeRef.new(shape: SnowflakeRole, required: true, location_name: "snowflakeRole"))
|
|
5934
|
+
SnowflakePropertiesOutput.add_member(:identity_mapping, Shapes::ShapeRef.new(shape: IdentityMapping, required: true, location_name: "identityMapping"))
|
|
5935
|
+
SnowflakePropertiesOutput.add_member(:lineage_sync, Shapes::ShapeRef.new(shape: LineageSyncOutput, required: true, location_name: "lineageSync"))
|
|
5936
|
+
SnowflakePropertiesOutput.add_member(:status, Shapes::ShapeRef.new(shape: ConnectionStatus, required: true, location_name: "status"))
|
|
5937
|
+
SnowflakePropertiesOutput.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
|
|
5938
|
+
SnowflakePropertiesOutput.struct_class = Types::SnowflakePropertiesOutput
|
|
5939
|
+
|
|
5940
|
+
SnowflakePropertiesPatch.add_member(:connectivity_properties_patch, Shapes::ShapeRef.new(shape: ConnectivityPropertiesPatch, location_name: "connectivityPropertiesPatch"))
|
|
5941
|
+
SnowflakePropertiesPatch.add_member(:snowflake_role, Shapes::ShapeRef.new(shape: SnowflakeRole, location_name: "snowflakeRole"))
|
|
5942
|
+
SnowflakePropertiesPatch.add_member(:lineage_sync, Shapes::ShapeRef.new(shape: LineageSyncInput, location_name: "lineageSync"))
|
|
5943
|
+
SnowflakePropertiesPatch.struct_class = Types::SnowflakePropertiesPatch
|
|
5944
|
+
|
|
5865
5945
|
SourceLocation.add_member(:s3, Shapes::ShapeRef.new(shape: S3SourceLocation, location_name: "s3"))
|
|
5866
5946
|
SourceLocation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
5867
5947
|
SourceLocation.add_member_subclass(:s3, Types::SourceLocation::S3)
|
|
@@ -7788,6 +7868,20 @@ module Aws::DataZone
|
|
|
7788
7868
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
7789
7869
|
end)
|
|
7790
7870
|
|
|
7871
|
+
api.add_operation(:delete_lineage_event, Seahorse::Model::Operation.new.tap do |o|
|
|
7872
|
+
o.name = "DeleteLineageEvent"
|
|
7873
|
+
o.http_method = "DELETE"
|
|
7874
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/lineage/events/{identifier}"
|
|
7875
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteLineageEventInput)
|
|
7876
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteLineageEventOutput)
|
|
7877
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
7878
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
7879
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
7880
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
7881
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
7882
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
7883
|
+
end)
|
|
7884
|
+
|
|
7791
7885
|
api.add_operation(:delete_listing, Seahorse::Model::Operation.new.tap do |o|
|
|
7792
7886
|
o.name = "DeleteListing"
|
|
7793
7887
|
o.http_method = "DELETE"
|
|
@@ -2101,6 +2101,11 @@ module Aws::DataZone
|
|
|
2101
2101
|
# The Amazon S3 properties of a connection.
|
|
2102
2102
|
# @return [Types::S3PropertiesInput]
|
|
2103
2103
|
#
|
|
2104
|
+
# @!attribute [rw] snowflake_properties
|
|
2105
|
+
# The Snowflake-specific connection properties to use when creating
|
|
2106
|
+
# the connection.
|
|
2107
|
+
# @return [Types::SnowflakePropertiesInput]
|
|
2108
|
+
#
|
|
2104
2109
|
# @!attribute [rw] amazon_q_properties
|
|
2105
2110
|
# The Amazon Q properties of the connection.
|
|
2106
2111
|
# @return [Types::AmazonQPropertiesInput]
|
|
@@ -2136,6 +2141,7 @@ module Aws::DataZone
|
|
|
2136
2141
|
:spark_emr_properties,
|
|
2137
2142
|
:spark_glue_properties,
|
|
2138
2143
|
:s3_properties,
|
|
2144
|
+
:snowflake_properties,
|
|
2139
2145
|
:amazon_q_properties,
|
|
2140
2146
|
:mlflow_properties,
|
|
2141
2147
|
:workflows_mwaa_properties,
|
|
@@ -2155,6 +2161,7 @@ module Aws::DataZone
|
|
|
2155
2161
|
class SparkEmrProperties < ConnectionPropertiesInput; end
|
|
2156
2162
|
class SparkGlueProperties < ConnectionPropertiesInput; end
|
|
2157
2163
|
class S3Properties < ConnectionPropertiesInput; end
|
|
2164
|
+
class SnowflakeProperties < ConnectionPropertiesInput; end
|
|
2158
2165
|
class AmazonQProperties < ConnectionPropertiesInput; end
|
|
2159
2166
|
class MlflowProperties < ConnectionPropertiesInput; end
|
|
2160
2167
|
class WorkflowsMwaaProperties < ConnectionPropertiesInput; end
|
|
@@ -2200,6 +2207,11 @@ module Aws::DataZone
|
|
|
2200
2207
|
# The Amazon S3 properties of a connection.
|
|
2201
2208
|
# @return [Types::S3PropertiesOutput]
|
|
2202
2209
|
#
|
|
2210
|
+
# @!attribute [rw] snowflake_properties
|
|
2211
|
+
# The Snowflake-specific connection properties for an existing
|
|
2212
|
+
# connection.
|
|
2213
|
+
# @return [Types::SnowflakePropertiesOutput]
|
|
2214
|
+
#
|
|
2203
2215
|
# @!attribute [rw] amazon_q_properties
|
|
2204
2216
|
# The Amazon Q properties of the connection.
|
|
2205
2217
|
# @return [Types::AmazonQPropertiesOutput]
|
|
@@ -2235,6 +2247,7 @@ module Aws::DataZone
|
|
|
2235
2247
|
:spark_emr_properties,
|
|
2236
2248
|
:spark_glue_properties,
|
|
2237
2249
|
:s3_properties,
|
|
2250
|
+
:snowflake_properties,
|
|
2238
2251
|
:amazon_q_properties,
|
|
2239
2252
|
:mlflow_properties,
|
|
2240
2253
|
:workflows_mwaa_properties,
|
|
@@ -2254,6 +2267,7 @@ module Aws::DataZone
|
|
|
2254
2267
|
class SparkEmrProperties < ConnectionPropertiesOutput; end
|
|
2255
2268
|
class SparkGlueProperties < ConnectionPropertiesOutput; end
|
|
2256
2269
|
class S3Properties < ConnectionPropertiesOutput; end
|
|
2270
|
+
class SnowflakeProperties < ConnectionPropertiesOutput; end
|
|
2257
2271
|
class AmazonQProperties < ConnectionPropertiesOutput; end
|
|
2258
2272
|
class MlflowProperties < ConnectionPropertiesOutput; end
|
|
2259
2273
|
class WorkflowsMwaaProperties < ConnectionPropertiesOutput; end
|
|
@@ -2292,6 +2306,10 @@ module Aws::DataZone
|
|
|
2292
2306
|
# The Amazon S3 properties of a connection properties patch.
|
|
2293
2307
|
# @return [Types::S3PropertiesPatch]
|
|
2294
2308
|
#
|
|
2309
|
+
# @!attribute [rw] snowflake_properties
|
|
2310
|
+
# The Snowflake-specific connection properties to update.
|
|
2311
|
+
# @return [Types::SnowflakePropertiesPatch]
|
|
2312
|
+
#
|
|
2295
2313
|
# @!attribute [rw] amazon_q_properties
|
|
2296
2314
|
# The Amazon Q properties of the connection.
|
|
2297
2315
|
# @return [Types::AmazonQPropertiesPatch]
|
|
@@ -2317,6 +2335,7 @@ module Aws::DataZone
|
|
|
2317
2335
|
:redshift_properties,
|
|
2318
2336
|
:spark_emr_properties,
|
|
2319
2337
|
:s3_properties,
|
|
2338
|
+
:snowflake_properties,
|
|
2320
2339
|
:amazon_q_properties,
|
|
2321
2340
|
:mlflow_properties,
|
|
2322
2341
|
:lakehouse_properties,
|
|
@@ -2332,6 +2351,7 @@ module Aws::DataZone
|
|
|
2332
2351
|
class RedshiftProperties < ConnectionPropertiesPatch; end
|
|
2333
2352
|
class SparkEmrProperties < ConnectionPropertiesPatch; end
|
|
2334
2353
|
class S3Properties < ConnectionPropertiesPatch; end
|
|
2354
|
+
class SnowflakeProperties < ConnectionPropertiesPatch; end
|
|
2335
2355
|
class AmazonQProperties < ConnectionPropertiesPatch; end
|
|
2336
2356
|
class MlflowProperties < ConnectionPropertiesPatch; end
|
|
2337
2357
|
class LakehouseProperties < ConnectionPropertiesPatch; end
|
|
@@ -2403,6 +2423,97 @@ module Aws::DataZone
|
|
|
2403
2423
|
include Aws::Structure
|
|
2404
2424
|
end
|
|
2405
2425
|
|
|
2426
|
+
# Contains the network and authentication settings for a connection,
|
|
2427
|
+
# including connection credentials, physical network requirements, and
|
|
2428
|
+
# compute-environment validation options.
|
|
2429
|
+
#
|
|
2430
|
+
# @!attribute [rw] connection_properties
|
|
2431
|
+
# The connection properties for this configuration.
|
|
2432
|
+
# @return [Hash<String,String>]
|
|
2433
|
+
#
|
|
2434
|
+
# @!attribute [rw] physical_connection_requirements
|
|
2435
|
+
# The physical network requirements for the connection, such as the
|
|
2436
|
+
# subnet, security group, and VPC settings needed to reach the data
|
|
2437
|
+
# source.
|
|
2438
|
+
# @return [Types::PhysicalConnectionRequirements]
|
|
2439
|
+
#
|
|
2440
|
+
# @!attribute [rw] name
|
|
2441
|
+
# The name of the connectivity configuration.
|
|
2442
|
+
# @return [String]
|
|
2443
|
+
#
|
|
2444
|
+
# @!attribute [rw] description
|
|
2445
|
+
# The description of the connectivity configuration.
|
|
2446
|
+
# @return [String]
|
|
2447
|
+
#
|
|
2448
|
+
# @!attribute [rw] validate_credentials
|
|
2449
|
+
# Specifies whether to validate credentials for the connectivity
|
|
2450
|
+
# configuration. Defaults to true if not specified.
|
|
2451
|
+
# @return [Boolean]
|
|
2452
|
+
#
|
|
2453
|
+
# @!attribute [rw] validate_for_compute_environments
|
|
2454
|
+
# The compute environments to use when validating connectivity. The
|
|
2455
|
+
# service validates that the connection is reachable from each
|
|
2456
|
+
# specified environment.
|
|
2457
|
+
# @return [Array<String>]
|
|
2458
|
+
#
|
|
2459
|
+
# @!attribute [rw] spark_properties
|
|
2460
|
+
# The Spark properties for this configuration.
|
|
2461
|
+
# @return [Hash<String,String>]
|
|
2462
|
+
#
|
|
2463
|
+
# @!attribute [rw] athena_properties
|
|
2464
|
+
# The Athena properties for this configuration.
|
|
2465
|
+
# @return [Hash<String,String>]
|
|
2466
|
+
#
|
|
2467
|
+
# @!attribute [rw] python_properties
|
|
2468
|
+
# The Python properties for this configuration.
|
|
2469
|
+
# @return [Hash<String,String>]
|
|
2470
|
+
#
|
|
2471
|
+
# @!attribute [rw] authentication_configuration
|
|
2472
|
+
# The authentication settings for this configuration.
|
|
2473
|
+
# @return [Types::AuthenticationConfigurationInput]
|
|
2474
|
+
#
|
|
2475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectivityProperties AWS API Documentation
|
|
2476
|
+
#
|
|
2477
|
+
class ConnectivityProperties < Struct.new(
|
|
2478
|
+
:connection_properties,
|
|
2479
|
+
:physical_connection_requirements,
|
|
2480
|
+
:name,
|
|
2481
|
+
:description,
|
|
2482
|
+
:validate_credentials,
|
|
2483
|
+
:validate_for_compute_environments,
|
|
2484
|
+
:spark_properties,
|
|
2485
|
+
:athena_properties,
|
|
2486
|
+
:python_properties,
|
|
2487
|
+
:authentication_configuration)
|
|
2488
|
+
SENSITIVE = []
|
|
2489
|
+
include Aws::Structure
|
|
2490
|
+
end
|
|
2491
|
+
|
|
2492
|
+
# Contains the connectivity settings to update on an existing
|
|
2493
|
+
# connection. Include only the fields you want to change.
|
|
2494
|
+
#
|
|
2495
|
+
# @!attribute [rw] description
|
|
2496
|
+
# A description of the connectivity properties update.
|
|
2497
|
+
# @return [String]
|
|
2498
|
+
#
|
|
2499
|
+
# @!attribute [rw] connection_properties
|
|
2500
|
+
# The connection properties to update.
|
|
2501
|
+
# @return [Hash<String,String>]
|
|
2502
|
+
#
|
|
2503
|
+
# @!attribute [rw] authentication_configuration
|
|
2504
|
+
# The authentication settings to update.
|
|
2505
|
+
# @return [Types::AuthenticationConfigurationPatch]
|
|
2506
|
+
#
|
|
2507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectivityPropertiesPatch AWS API Documentation
|
|
2508
|
+
#
|
|
2509
|
+
class ConnectivityPropertiesPatch < Struct.new(
|
|
2510
|
+
:description,
|
|
2511
|
+
:connection_properties,
|
|
2512
|
+
:authentication_configuration)
|
|
2513
|
+
SENSITIVE = []
|
|
2514
|
+
include Aws::Structure
|
|
2515
|
+
end
|
|
2516
|
+
|
|
2406
2517
|
# @!attribute [rw] domain_identifier
|
|
2407
2518
|
# The ID of the domain where the account pool is created.
|
|
2408
2519
|
# @return [String]
|
|
@@ -4118,6 +4229,11 @@ module Aws::DataZone
|
|
|
4118
4229
|
#
|
|
4119
4230
|
# @!attribute [rw] environment_blueprint_identifier
|
|
4120
4231
|
# The ID of the blueprint with which the environment is being created.
|
|
4232
|
+
#
|
|
4233
|
+
# <note markdown="1"> This parameter is only valid for V1 domains. If provided for a V2
|
|
4234
|
+
# domain, the service returns a ValidationException.
|
|
4235
|
+
#
|
|
4236
|
+
# </note>
|
|
4121
4237
|
# @return [String]
|
|
4122
4238
|
#
|
|
4123
4239
|
# @!attribute [rw] deployment_order
|
|
@@ -7173,6 +7289,45 @@ module Aws::DataZone
|
|
|
7173
7289
|
#
|
|
7174
7290
|
class DeleteGlossaryTermOutput < Aws::EmptyStructure; end
|
|
7175
7291
|
|
|
7292
|
+
# @!attribute [rw] domain_identifier
|
|
7293
|
+
# The ID of the domain.
|
|
7294
|
+
# @return [String]
|
|
7295
|
+
#
|
|
7296
|
+
# @!attribute [rw] identifier
|
|
7297
|
+
# The ID of the lineage event.
|
|
7298
|
+
# @return [String]
|
|
7299
|
+
#
|
|
7300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteLineageEventInput AWS API Documentation
|
|
7301
|
+
#
|
|
7302
|
+
class DeleteLineageEventInput < Struct.new(
|
|
7303
|
+
:domain_identifier,
|
|
7304
|
+
:identifier)
|
|
7305
|
+
SENSITIVE = []
|
|
7306
|
+
include Aws::Structure
|
|
7307
|
+
end
|
|
7308
|
+
|
|
7309
|
+
# @!attribute [rw] id
|
|
7310
|
+
# The ID of the lineage event.
|
|
7311
|
+
# @return [String]
|
|
7312
|
+
#
|
|
7313
|
+
# @!attribute [rw] domain_id
|
|
7314
|
+
# The ID of the domain.
|
|
7315
|
+
# @return [String]
|
|
7316
|
+
#
|
|
7317
|
+
# @!attribute [rw] processing_status
|
|
7318
|
+
# The progressing status of the lineage event.
|
|
7319
|
+
# @return [String]
|
|
7320
|
+
#
|
|
7321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteLineageEventOutput AWS API Documentation
|
|
7322
|
+
#
|
|
7323
|
+
class DeleteLineageEventOutput < Struct.new(
|
|
7324
|
+
:id,
|
|
7325
|
+
:domain_id,
|
|
7326
|
+
:processing_status)
|
|
7327
|
+
SENSITIVE = []
|
|
7328
|
+
include Aws::Structure
|
|
7329
|
+
end
|
|
7330
|
+
|
|
7176
7331
|
# @!attribute [rw] domain_identifier
|
|
7177
7332
|
# The ID of the Amazon DataZone domain.
|
|
7178
7333
|
# @return [String]
|
|
@@ -13094,6 +13249,27 @@ module Aws::DataZone
|
|
|
13094
13249
|
include Aws::Structure
|
|
13095
13250
|
end
|
|
13096
13251
|
|
|
13252
|
+
# Contains the configuration for mapping user identities to Snowflake
|
|
13253
|
+
# users, including the username attribute and optional prefix applied
|
|
13254
|
+
# during the mapping.
|
|
13255
|
+
#
|
|
13256
|
+
# @!attribute [rw] username_attribute
|
|
13257
|
+
# The username attribute used for the identity mapping.
|
|
13258
|
+
# @return [String]
|
|
13259
|
+
#
|
|
13260
|
+
# @!attribute [rw] prefix
|
|
13261
|
+
# The prefix used for the identity mapping.
|
|
13262
|
+
# @return [String]
|
|
13263
|
+
#
|
|
13264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IdentityMapping AWS API Documentation
|
|
13265
|
+
#
|
|
13266
|
+
class IdentityMapping < Struct.new(
|
|
13267
|
+
:username_attribute,
|
|
13268
|
+
:prefix)
|
|
13269
|
+
SENSITIVE = []
|
|
13270
|
+
include Aws::Structure
|
|
13271
|
+
end
|
|
13272
|
+
|
|
13097
13273
|
# The details of the import of the metadata form type.
|
|
13098
13274
|
#
|
|
13099
13275
|
# @!attribute [rw] name
|
|
@@ -13745,6 +13921,62 @@ module Aws::DataZone
|
|
|
13745
13921
|
include Aws::Structure
|
|
13746
13922
|
end
|
|
13747
13923
|
|
|
13924
|
+
# Contains the settings for configuring lineage sync on a Snowflake
|
|
13925
|
+
# connection, including the schedule, timezone, and enabled state.
|
|
13926
|
+
#
|
|
13927
|
+
# @!attribute [rw] timezone
|
|
13928
|
+
# The timezone of the lineage sync schedule.
|
|
13929
|
+
# @return [String]
|
|
13930
|
+
#
|
|
13931
|
+
# @!attribute [rw] enabled
|
|
13932
|
+
# Specifies whether lineage sync is enabled.
|
|
13933
|
+
# @return [Boolean]
|
|
13934
|
+
#
|
|
13935
|
+
# @!attribute [rw] schedule
|
|
13936
|
+
# The schedule of the lineage sync.
|
|
13937
|
+
# @return [String]
|
|
13938
|
+
#
|
|
13939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageSyncInput AWS API Documentation
|
|
13940
|
+
#
|
|
13941
|
+
class LineageSyncInput < Struct.new(
|
|
13942
|
+
:timezone,
|
|
13943
|
+
:enabled,
|
|
13944
|
+
:schedule)
|
|
13945
|
+
SENSITIVE = []
|
|
13946
|
+
include Aws::Structure
|
|
13947
|
+
end
|
|
13948
|
+
|
|
13949
|
+
# Contains the current state of lineage sync for a Snowflake connection,
|
|
13950
|
+
# including the schedule, timezone, enabled state, and the ID of the
|
|
13951
|
+
# associated lineage job.
|
|
13952
|
+
#
|
|
13953
|
+
# @!attribute [rw] lineage_job_id
|
|
13954
|
+
# The ID of the lineage sync job.
|
|
13955
|
+
# @return [String]
|
|
13956
|
+
#
|
|
13957
|
+
# @!attribute [rw] timezone
|
|
13958
|
+
# The timezone of the lineage sync schedule.
|
|
13959
|
+
# @return [String]
|
|
13960
|
+
#
|
|
13961
|
+
# @!attribute [rw] enabled
|
|
13962
|
+
# Specifies whether lineage sync is enabled.
|
|
13963
|
+
# @return [Boolean]
|
|
13964
|
+
#
|
|
13965
|
+
# @!attribute [rw] schedule
|
|
13966
|
+
# The schedule of the lineage sync.
|
|
13967
|
+
# @return [String]
|
|
13968
|
+
#
|
|
13969
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageSyncOutput AWS API Documentation
|
|
13970
|
+
#
|
|
13971
|
+
class LineageSyncOutput < Struct.new(
|
|
13972
|
+
:lineage_job_id,
|
|
13973
|
+
:timezone,
|
|
13974
|
+
:enabled,
|
|
13975
|
+
:schedule)
|
|
13976
|
+
SENSITIVE = []
|
|
13977
|
+
include Aws::Structure
|
|
13978
|
+
end
|
|
13979
|
+
|
|
13748
13980
|
# The lineage sync schedule.
|
|
13749
13981
|
#
|
|
13750
13982
|
# @!attribute [rw] schedule
|
|
@@ -20572,6 +20804,99 @@ module Aws::DataZone
|
|
|
20572
20804
|
include Aws::Structure
|
|
20573
20805
|
end
|
|
20574
20806
|
|
|
20807
|
+
# Contains the Snowflake-specific settings required when creating or
|
|
20808
|
+
# updating a connection, including the Snowflake role, identity mapping,
|
|
20809
|
+
# and lineage sync configuration.
|
|
20810
|
+
#
|
|
20811
|
+
# @!attribute [rw] connectivity_properties
|
|
20812
|
+
# The connectivity properties of the Snowflake connection.
|
|
20813
|
+
# @return [Types::ConnectivityProperties]
|
|
20814
|
+
#
|
|
20815
|
+
# @!attribute [rw] snowflake_role
|
|
20816
|
+
# The Snowflake role used to access Snowflake resources.
|
|
20817
|
+
# @return [String]
|
|
20818
|
+
#
|
|
20819
|
+
# @!attribute [rw] identity_mapping
|
|
20820
|
+
# The identity mapping configuration for the Snowflake connection.
|
|
20821
|
+
# @return [Types::IdentityMapping]
|
|
20822
|
+
#
|
|
20823
|
+
# @!attribute [rw] lineage_sync
|
|
20824
|
+
# The lineage sync configuration for the Snowflake connection.
|
|
20825
|
+
# @return [Types::LineageSyncInput]
|
|
20826
|
+
#
|
|
20827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SnowflakePropertiesInput AWS API Documentation
|
|
20828
|
+
#
|
|
20829
|
+
class SnowflakePropertiesInput < Struct.new(
|
|
20830
|
+
:connectivity_properties,
|
|
20831
|
+
:snowflake_role,
|
|
20832
|
+
:identity_mapping,
|
|
20833
|
+
:lineage_sync)
|
|
20834
|
+
SENSITIVE = []
|
|
20835
|
+
include Aws::Structure
|
|
20836
|
+
end
|
|
20837
|
+
|
|
20838
|
+
# Contains the Snowflake-specific settings returned for an existing
|
|
20839
|
+
# connection, including the current role, identity mapping, lineage sync
|
|
20840
|
+
# state, and connection status.
|
|
20841
|
+
#
|
|
20842
|
+
# @!attribute [rw] snowflake_role
|
|
20843
|
+
# The Snowflake role used to access Snowflake resources.
|
|
20844
|
+
# @return [String]
|
|
20845
|
+
#
|
|
20846
|
+
# @!attribute [rw] identity_mapping
|
|
20847
|
+
# The identity mapping configuration for the Snowflake connection.
|
|
20848
|
+
# @return [Types::IdentityMapping]
|
|
20849
|
+
#
|
|
20850
|
+
# @!attribute [rw] lineage_sync
|
|
20851
|
+
# The lineage sync configuration for the Snowflake connection.
|
|
20852
|
+
# @return [Types::LineageSyncOutput]
|
|
20853
|
+
#
|
|
20854
|
+
# @!attribute [rw] status
|
|
20855
|
+
# The status of the Snowflake connection.
|
|
20856
|
+
# @return [String]
|
|
20857
|
+
#
|
|
20858
|
+
# @!attribute [rw] error_message
|
|
20859
|
+
# An error message returned if the Snowflake connection failed to
|
|
20860
|
+
# establish or validate.
|
|
20861
|
+
# @return [String]
|
|
20862
|
+
#
|
|
20863
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SnowflakePropertiesOutput AWS API Documentation
|
|
20864
|
+
#
|
|
20865
|
+
class SnowflakePropertiesOutput < Struct.new(
|
|
20866
|
+
:snowflake_role,
|
|
20867
|
+
:identity_mapping,
|
|
20868
|
+
:lineage_sync,
|
|
20869
|
+
:status,
|
|
20870
|
+
:error_message)
|
|
20871
|
+
SENSITIVE = []
|
|
20872
|
+
include Aws::Structure
|
|
20873
|
+
end
|
|
20874
|
+
|
|
20875
|
+
# Contains the Snowflake-specific settings to update on an existing
|
|
20876
|
+
# connection. Include only the fields you want to change.
|
|
20877
|
+
#
|
|
20878
|
+
# @!attribute [rw] connectivity_properties_patch
|
|
20879
|
+
# The connectivity properties patch of the Snowflake connection.
|
|
20880
|
+
# @return [Types::ConnectivityPropertiesPatch]
|
|
20881
|
+
#
|
|
20882
|
+
# @!attribute [rw] snowflake_role
|
|
20883
|
+
# The Snowflake role used to access Snowflake resources.
|
|
20884
|
+
# @return [String]
|
|
20885
|
+
#
|
|
20886
|
+
# @!attribute [rw] lineage_sync
|
|
20887
|
+
# The lineage sync configuration for the Snowflake connection.
|
|
20888
|
+
# @return [Types::LineageSyncInput]
|
|
20889
|
+
#
|
|
20890
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SnowflakePropertiesPatch AWS API Documentation
|
|
20891
|
+
#
|
|
20892
|
+
class SnowflakePropertiesPatch < Struct.new(
|
|
20893
|
+
:connectivity_properties_patch,
|
|
20894
|
+
:snowflake_role,
|
|
20895
|
+
:lineage_sync)
|
|
20896
|
+
SENSITIVE = []
|
|
20897
|
+
include Aws::Structure
|
|
20898
|
+
end
|
|
20899
|
+
|
|
20575
20900
|
# The source location for a notebook import in Amazon SageMaker Unified
|
|
20576
20901
|
# Studio.
|
|
20577
20902
|
#
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -541,35 +541,7 @@ module Aws
|
|
|
541
541
|
spark_properties: Hash[::String, ::String]?,
|
|
542
542
|
athena_properties: Hash[::String, ::String]?,
|
|
543
543
|
python_properties: Hash[::String, ::String]?,
|
|
544
|
-
authentication_configuration:
|
|
545
|
-
authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
|
|
546
|
-
o_auth_2_properties: {
|
|
547
|
-
o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
|
|
548
|
-
o_auth_2_client_application: {
|
|
549
|
-
user_managed_client_application_client_id: ::String?,
|
|
550
|
-
a_ws_managed_client_application_reference: ::String?
|
|
551
|
-
}?,
|
|
552
|
-
token_url: ::String?,
|
|
553
|
-
token_url_parameters_map: Hash[::String, ::String]?,
|
|
554
|
-
authorization_code_properties: {
|
|
555
|
-
authorization_code: ::String?,
|
|
556
|
-
redirect_uri: ::String?
|
|
557
|
-
}?,
|
|
558
|
-
o_auth_2_credentials: {
|
|
559
|
-
user_managed_client_application_client_secret: ::String?,
|
|
560
|
-
access_token: ::String?,
|
|
561
|
-
refresh_token: ::String?,
|
|
562
|
-
jwt_token: ::String?
|
|
563
|
-
}?
|
|
564
|
-
}?,
|
|
565
|
-
secret_arn: ::String?,
|
|
566
|
-
kms_key_arn: ::String?,
|
|
567
|
-
basic_authentication_credentials: {
|
|
568
|
-
user_name: ::String?,
|
|
569
|
-
password: ::String?
|
|
570
|
-
}?,
|
|
571
|
-
custom_authentication_credentials: Hash[::String, ::String]?
|
|
572
|
-
}?
|
|
544
|
+
authentication_configuration: Params::authentication_configuration_input?
|
|
573
545
|
}?
|
|
574
546
|
}?,
|
|
575
547
|
hyper_pod_properties: {
|
|
@@ -628,6 +600,35 @@ module Aws
|
|
|
628
600
|
s3_access_grant_location_id: ::String?,
|
|
629
601
|
register_s3_access_grant_location: bool?
|
|
630
602
|
}?,
|
|
603
|
+
snowflake_properties: {
|
|
604
|
+
connectivity_properties: {
|
|
605
|
+
connection_properties: Hash[::String, ::String]?,
|
|
606
|
+
physical_connection_requirements: {
|
|
607
|
+
subnet_id: ::String?,
|
|
608
|
+
subnet_id_list: Array[::String]?,
|
|
609
|
+
security_group_id_list: Array[::String]?,
|
|
610
|
+
availability_zone: ::String?
|
|
611
|
+
}?,
|
|
612
|
+
name: ::String?,
|
|
613
|
+
description: ::String?,
|
|
614
|
+
validate_credentials: bool?,
|
|
615
|
+
validate_for_compute_environments: Array[("SPARK" | "ATHENA" | "PYTHON")]?,
|
|
616
|
+
spark_properties: Hash[::String, ::String]?,
|
|
617
|
+
athena_properties: Hash[::String, ::String]?,
|
|
618
|
+
python_properties: Hash[::String, ::String]?,
|
|
619
|
+
authentication_configuration: Params::authentication_configuration_input?
|
|
620
|
+
}?,
|
|
621
|
+
snowflake_role: ::String,
|
|
622
|
+
identity_mapping: {
|
|
623
|
+
username_attribute: ::String,
|
|
624
|
+
prefix: ::String?
|
|
625
|
+
},
|
|
626
|
+
lineage_sync: {
|
|
627
|
+
timezone: ("UTC" | "AFRICA_JOHANNESBURG" | "AMERICA_MONTREAL" | "AMERICA_SAO_PAULO" | "ASIA_BAHRAIN" | "ASIA_BANGKOK" | "ASIA_CALCUTTA" | "ASIA_DUBAI" | "ASIA_HONG_KONG" | "ASIA_JAKARTA" | "ASIA_KUALA_LUMPUR" | "ASIA_SEOUL" | "ASIA_SHANGHAI" | "ASIA_SINGAPORE" | "ASIA_TAIPEI" | "ASIA_TOKYO" | "AUSTRALIA_MELBOURNE" | "AUSTRALIA_SYDNEY" | "CANADA_CENTRAL" | "CET" | "CST6CDT" | "ETC_GMT" | "ETC_GMT0" | "ETC_GMT_ADD_0" | "ETC_GMT_ADD_1" | "ETC_GMT_ADD_10" | "ETC_GMT_ADD_11" | "ETC_GMT_ADD_12" | "ETC_GMT_ADD_2" | "ETC_GMT_ADD_3" | "ETC_GMT_ADD_4" | "ETC_GMT_ADD_5" | "ETC_GMT_ADD_6" | "ETC_GMT_ADD_7" | "ETC_GMT_ADD_8" | "ETC_GMT_ADD_9" | "ETC_GMT_NEG_0" | "ETC_GMT_NEG_1" | "ETC_GMT_NEG_10" | "ETC_GMT_NEG_11" | "ETC_GMT_NEG_12" | "ETC_GMT_NEG_13" | "ETC_GMT_NEG_14" | "ETC_GMT_NEG_2" | "ETC_GMT_NEG_3" | "ETC_GMT_NEG_4" | "ETC_GMT_NEG_5" | "ETC_GMT_NEG_6" | "ETC_GMT_NEG_7" | "ETC_GMT_NEG_8" | "ETC_GMT_NEG_9" | "EUROPE_DUBLIN" | "EUROPE_LONDON" | "EUROPE_PARIS" | "EUROPE_STOCKHOLM" | "EUROPE_ZURICH" | "ISRAEL" | "MEXICO_GENERAL" | "MST7MDT" | "PACIFIC_AUCKLAND" | "US_CENTRAL" | "US_EASTERN" | "US_MOUNTAIN" | "US_PACIFIC")?,
|
|
628
|
+
enabled: bool,
|
|
629
|
+
schedule: ::String?
|
|
630
|
+
}?
|
|
631
|
+
}?,
|
|
631
632
|
amazon_q_properties: {
|
|
632
633
|
is_enabled: bool,
|
|
633
634
|
profile_arn: ::String?,
|
|
@@ -1614,6 +1615,19 @@ module Aws
|
|
|
1614
1615
|
) -> _DeleteGlossaryTermResponseSuccess
|
|
1615
1616
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlossaryTermResponseSuccess
|
|
1616
1617
|
|
|
1618
|
+
interface _DeleteLineageEventResponseSuccess
|
|
1619
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLineageEventOutput]
|
|
1620
|
+
def id: () -> ::String
|
|
1621
|
+
def domain_id: () -> ::String
|
|
1622
|
+
def processing_status: () -> ("REQUESTED" | "PROCESSING" | "SUCCESS" | "FAILED")
|
|
1623
|
+
end
|
|
1624
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_lineage_event-instance_method
|
|
1625
|
+
def delete_lineage_event: (
|
|
1626
|
+
domain_identifier: ::String,
|
|
1627
|
+
identifier: ::String
|
|
1628
|
+
) -> _DeleteLineageEventResponseSuccess
|
|
1629
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLineageEventResponseSuccess
|
|
1630
|
+
|
|
1617
1631
|
interface _DeleteListingResponseSuccess
|
|
1618
1632
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteListingOutput]
|
|
1619
1633
|
end
|
|
@@ -3877,6 +3891,25 @@ module Aws
|
|
|
3877
3891
|
s3_access_grant_location_id: ::String?,
|
|
3878
3892
|
register_s3_access_grant_location: bool?
|
|
3879
3893
|
}?,
|
|
3894
|
+
snowflake_properties: {
|
|
3895
|
+
connectivity_properties_patch: {
|
|
3896
|
+
description: ::String?,
|
|
3897
|
+
connection_properties: Hash[::String, ::String]?,
|
|
3898
|
+
authentication_configuration: {
|
|
3899
|
+
secret_arn: ::String?,
|
|
3900
|
+
basic_authentication_credentials: {
|
|
3901
|
+
user_name: ::String?,
|
|
3902
|
+
password: ::String?
|
|
3903
|
+
}?
|
|
3904
|
+
}?
|
|
3905
|
+
}?,
|
|
3906
|
+
snowflake_role: ::String?,
|
|
3907
|
+
lineage_sync: {
|
|
3908
|
+
timezone: ("UTC" | "AFRICA_JOHANNESBURG" | "AMERICA_MONTREAL" | "AMERICA_SAO_PAULO" | "ASIA_BAHRAIN" | "ASIA_BANGKOK" | "ASIA_CALCUTTA" | "ASIA_DUBAI" | "ASIA_HONG_KONG" | "ASIA_JAKARTA" | "ASIA_KUALA_LUMPUR" | "ASIA_SEOUL" | "ASIA_SHANGHAI" | "ASIA_SINGAPORE" | "ASIA_TAIPEI" | "ASIA_TOKYO" | "AUSTRALIA_MELBOURNE" | "AUSTRALIA_SYDNEY" | "CANADA_CENTRAL" | "CET" | "CST6CDT" | "ETC_GMT" | "ETC_GMT0" | "ETC_GMT_ADD_0" | "ETC_GMT_ADD_1" | "ETC_GMT_ADD_10" | "ETC_GMT_ADD_11" | "ETC_GMT_ADD_12" | "ETC_GMT_ADD_2" | "ETC_GMT_ADD_3" | "ETC_GMT_ADD_4" | "ETC_GMT_ADD_5" | "ETC_GMT_ADD_6" | "ETC_GMT_ADD_7" | "ETC_GMT_ADD_8" | "ETC_GMT_ADD_9" | "ETC_GMT_NEG_0" | "ETC_GMT_NEG_1" | "ETC_GMT_NEG_10" | "ETC_GMT_NEG_11" | "ETC_GMT_NEG_12" | "ETC_GMT_NEG_13" | "ETC_GMT_NEG_14" | "ETC_GMT_NEG_2" | "ETC_GMT_NEG_3" | "ETC_GMT_NEG_4" | "ETC_GMT_NEG_5" | "ETC_GMT_NEG_6" | "ETC_GMT_NEG_7" | "ETC_GMT_NEG_8" | "ETC_GMT_NEG_9" | "EUROPE_DUBLIN" | "EUROPE_LONDON" | "EUROPE_PARIS" | "EUROPE_STOCKHOLM" | "EUROPE_ZURICH" | "ISRAEL" | "MEXICO_GENERAL" | "MST7MDT" | "PACIFIC_AUCKLAND" | "US_CENTRAL" | "US_EASTERN" | "US_MOUNTAIN" | "US_PACIFIC")?,
|
|
3909
|
+
enabled: bool,
|
|
3910
|
+
schedule: ::String?
|
|
3911
|
+
}?
|
|
3912
|
+
}?,
|
|
3880
3913
|
amazon_q_properties: {
|
|
3881
3914
|
is_enabled: bool,
|
|
3882
3915
|
profile_arn: ::String?,
|
data/sig/params.rbs
CHANGED
|
@@ -143,6 +143,38 @@ module Aws
|
|
|
143
143
|
row_configuration: Params::row_filter_configuration?
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
+
type o_auth_2_properties = {
|
|
147
|
+
o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
|
|
148
|
+
o_auth_2_client_application: {
|
|
149
|
+
user_managed_client_application_client_id: ::String?,
|
|
150
|
+
a_ws_managed_client_application_reference: ::String?
|
|
151
|
+
}?,
|
|
152
|
+
token_url: ::String?,
|
|
153
|
+
token_url_parameters_map: Hash[::String, ::String]?,
|
|
154
|
+
authorization_code_properties: {
|
|
155
|
+
authorization_code: ::String?,
|
|
156
|
+
redirect_uri: ::String?
|
|
157
|
+
}?,
|
|
158
|
+
o_auth_2_credentials: {
|
|
159
|
+
user_managed_client_application_client_secret: ::String?,
|
|
160
|
+
access_token: ::String?,
|
|
161
|
+
refresh_token: ::String?,
|
|
162
|
+
jwt_token: ::String?
|
|
163
|
+
}?
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
type authentication_configuration_input = {
|
|
167
|
+
authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
|
|
168
|
+
o_auth_2_properties: Params::o_auth_2_properties?,
|
|
169
|
+
secret_arn: ::String?,
|
|
170
|
+
kms_key_arn: ::String?,
|
|
171
|
+
basic_authentication_credentials: {
|
|
172
|
+
user_name: ::String?,
|
|
173
|
+
password: ::String?
|
|
174
|
+
}?,
|
|
175
|
+
custom_authentication_credentials: Hash[::String, ::String]?
|
|
176
|
+
}
|
|
177
|
+
|
|
146
178
|
type glue_run_configuration_input = {
|
|
147
179
|
data_access_role: ::String?,
|
|
148
180
|
relational_filter_configurations: Array[
|
data/sig/types.rbs
CHANGED
|
@@ -608,6 +608,7 @@ module Aws::DataZone
|
|
|
608
608
|
attr_accessor spark_emr_properties: Types::SparkEmrPropertiesInput
|
|
609
609
|
attr_accessor spark_glue_properties: Types::SparkGluePropertiesInput
|
|
610
610
|
attr_accessor s3_properties: Types::S3PropertiesInput
|
|
611
|
+
attr_accessor snowflake_properties: Types::SnowflakePropertiesInput
|
|
611
612
|
attr_accessor amazon_q_properties: Types::AmazonQPropertiesInput
|
|
612
613
|
attr_accessor mlflow_properties: Types::MlflowPropertiesInput
|
|
613
614
|
attr_accessor workflows_mwaa_properties: Types::WorkflowsMwaaPropertiesInput
|
|
@@ -633,6 +634,8 @@ module Aws::DataZone
|
|
|
633
634
|
end
|
|
634
635
|
class S3Properties < ConnectionPropertiesInput
|
|
635
636
|
end
|
|
637
|
+
class SnowflakeProperties < ConnectionPropertiesInput
|
|
638
|
+
end
|
|
636
639
|
class AmazonQProperties < ConnectionPropertiesInput
|
|
637
640
|
end
|
|
638
641
|
class MlflowProperties < ConnectionPropertiesInput
|
|
@@ -658,6 +661,7 @@ module Aws::DataZone
|
|
|
658
661
|
attr_accessor spark_emr_properties: Types::SparkEmrPropertiesOutput
|
|
659
662
|
attr_accessor spark_glue_properties: Types::SparkGluePropertiesOutput
|
|
660
663
|
attr_accessor s3_properties: Types::S3PropertiesOutput
|
|
664
|
+
attr_accessor snowflake_properties: Types::SnowflakePropertiesOutput
|
|
661
665
|
attr_accessor amazon_q_properties: Types::AmazonQPropertiesOutput
|
|
662
666
|
attr_accessor mlflow_properties: Types::MlflowPropertiesOutput
|
|
663
667
|
attr_accessor workflows_mwaa_properties: Types::WorkflowsMwaaPropertiesOutput
|
|
@@ -683,6 +687,8 @@ module Aws::DataZone
|
|
|
683
687
|
end
|
|
684
688
|
class S3Properties < ConnectionPropertiesOutput
|
|
685
689
|
end
|
|
690
|
+
class SnowflakeProperties < ConnectionPropertiesOutput
|
|
691
|
+
end
|
|
686
692
|
class AmazonQProperties < ConnectionPropertiesOutput
|
|
687
693
|
end
|
|
688
694
|
class MlflowProperties < ConnectionPropertiesOutput
|
|
@@ -706,6 +712,7 @@ module Aws::DataZone
|
|
|
706
712
|
attr_accessor redshift_properties: Types::RedshiftPropertiesPatch
|
|
707
713
|
attr_accessor spark_emr_properties: Types::SparkEmrPropertiesPatch
|
|
708
714
|
attr_accessor s3_properties: Types::S3PropertiesPatch
|
|
715
|
+
attr_accessor snowflake_properties: Types::SnowflakePropertiesPatch
|
|
709
716
|
attr_accessor amazon_q_properties: Types::AmazonQPropertiesPatch
|
|
710
717
|
attr_accessor mlflow_properties: Types::MlflowPropertiesPatch
|
|
711
718
|
attr_accessor lakehouse_properties: Types::LakehousePropertiesPatch
|
|
@@ -725,6 +732,8 @@ module Aws::DataZone
|
|
|
725
732
|
end
|
|
726
733
|
class S3Properties < ConnectionPropertiesPatch
|
|
727
734
|
end
|
|
735
|
+
class SnowflakeProperties < ConnectionPropertiesPatch
|
|
736
|
+
end
|
|
728
737
|
class AmazonQProperties < ConnectionPropertiesPatch
|
|
729
738
|
end
|
|
730
739
|
class MlflowProperties < ConnectionPropertiesPatch
|
|
@@ -752,6 +761,27 @@ module Aws::DataZone
|
|
|
752
761
|
SENSITIVE: []
|
|
753
762
|
end
|
|
754
763
|
|
|
764
|
+
class ConnectivityProperties
|
|
765
|
+
attr_accessor connection_properties: ::Hash[::String, ::String]
|
|
766
|
+
attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
|
|
767
|
+
attr_accessor name: ::String
|
|
768
|
+
attr_accessor description: ::String
|
|
769
|
+
attr_accessor validate_credentials: bool
|
|
770
|
+
attr_accessor validate_for_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
|
771
|
+
attr_accessor spark_properties: ::Hash[::String, ::String]
|
|
772
|
+
attr_accessor athena_properties: ::Hash[::String, ::String]
|
|
773
|
+
attr_accessor python_properties: ::Hash[::String, ::String]
|
|
774
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
|
|
775
|
+
SENSITIVE: []
|
|
776
|
+
end
|
|
777
|
+
|
|
778
|
+
class ConnectivityPropertiesPatch
|
|
779
|
+
attr_accessor description: ::String
|
|
780
|
+
attr_accessor connection_properties: ::Hash[::String, ::String]
|
|
781
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfigurationPatch
|
|
782
|
+
SENSITIVE: []
|
|
783
|
+
end
|
|
784
|
+
|
|
755
785
|
class CreateAccountPoolInput
|
|
756
786
|
attr_accessor domain_identifier: ::String
|
|
757
787
|
attr_accessor name: ::String
|
|
@@ -1948,6 +1978,19 @@ module Aws::DataZone
|
|
|
1948
1978
|
class DeleteGlossaryTermOutput < Aws::EmptyStructure
|
|
1949
1979
|
end
|
|
1950
1980
|
|
|
1981
|
+
class DeleteLineageEventInput
|
|
1982
|
+
attr_accessor domain_identifier: ::String
|
|
1983
|
+
attr_accessor identifier: ::String
|
|
1984
|
+
SENSITIVE: []
|
|
1985
|
+
end
|
|
1986
|
+
|
|
1987
|
+
class DeleteLineageEventOutput
|
|
1988
|
+
attr_accessor id: ::String
|
|
1989
|
+
attr_accessor domain_id: ::String
|
|
1990
|
+
attr_accessor processing_status: ("REQUESTED" | "PROCESSING" | "SUCCESS" | "FAILED")
|
|
1991
|
+
SENSITIVE: []
|
|
1992
|
+
end
|
|
1993
|
+
|
|
1951
1994
|
class DeleteListingInput
|
|
1952
1995
|
attr_accessor domain_identifier: ::String
|
|
1953
1996
|
attr_accessor identifier: ::String
|
|
@@ -3532,6 +3575,12 @@ module Aws::DataZone
|
|
|
3532
3575
|
SENSITIVE: []
|
|
3533
3576
|
end
|
|
3534
3577
|
|
|
3578
|
+
class IdentityMapping
|
|
3579
|
+
attr_accessor username_attribute: ::String
|
|
3580
|
+
attr_accessor prefix: ::String
|
|
3581
|
+
SENSITIVE: []
|
|
3582
|
+
end
|
|
3583
|
+
|
|
3535
3584
|
class Import
|
|
3536
3585
|
attr_accessor name: ::String
|
|
3537
3586
|
attr_accessor revision: ::String
|
|
@@ -3715,6 +3764,21 @@ module Aws::DataZone
|
|
|
3715
3764
|
SENSITIVE: []
|
|
3716
3765
|
end
|
|
3717
3766
|
|
|
3767
|
+
class LineageSyncInput
|
|
3768
|
+
attr_accessor timezone: ("UTC" | "AFRICA_JOHANNESBURG" | "AMERICA_MONTREAL" | "AMERICA_SAO_PAULO" | "ASIA_BAHRAIN" | "ASIA_BANGKOK" | "ASIA_CALCUTTA" | "ASIA_DUBAI" | "ASIA_HONG_KONG" | "ASIA_JAKARTA" | "ASIA_KUALA_LUMPUR" | "ASIA_SEOUL" | "ASIA_SHANGHAI" | "ASIA_SINGAPORE" | "ASIA_TAIPEI" | "ASIA_TOKYO" | "AUSTRALIA_MELBOURNE" | "AUSTRALIA_SYDNEY" | "CANADA_CENTRAL" | "CET" | "CST6CDT" | "ETC_GMT" | "ETC_GMT0" | "ETC_GMT_ADD_0" | "ETC_GMT_ADD_1" | "ETC_GMT_ADD_10" | "ETC_GMT_ADD_11" | "ETC_GMT_ADD_12" | "ETC_GMT_ADD_2" | "ETC_GMT_ADD_3" | "ETC_GMT_ADD_4" | "ETC_GMT_ADD_5" | "ETC_GMT_ADD_6" | "ETC_GMT_ADD_7" | "ETC_GMT_ADD_8" | "ETC_GMT_ADD_9" | "ETC_GMT_NEG_0" | "ETC_GMT_NEG_1" | "ETC_GMT_NEG_10" | "ETC_GMT_NEG_11" | "ETC_GMT_NEG_12" | "ETC_GMT_NEG_13" | "ETC_GMT_NEG_14" | "ETC_GMT_NEG_2" | "ETC_GMT_NEG_3" | "ETC_GMT_NEG_4" | "ETC_GMT_NEG_5" | "ETC_GMT_NEG_6" | "ETC_GMT_NEG_7" | "ETC_GMT_NEG_8" | "ETC_GMT_NEG_9" | "EUROPE_DUBLIN" | "EUROPE_LONDON" | "EUROPE_PARIS" | "EUROPE_STOCKHOLM" | "EUROPE_ZURICH" | "ISRAEL" | "MEXICO_GENERAL" | "MST7MDT" | "PACIFIC_AUCKLAND" | "US_CENTRAL" | "US_EASTERN" | "US_MOUNTAIN" | "US_PACIFIC")
|
|
3769
|
+
attr_accessor enabled: bool
|
|
3770
|
+
attr_accessor schedule: ::String
|
|
3771
|
+
SENSITIVE: []
|
|
3772
|
+
end
|
|
3773
|
+
|
|
3774
|
+
class LineageSyncOutput
|
|
3775
|
+
attr_accessor lineage_job_id: ::String
|
|
3776
|
+
attr_accessor timezone: ("UTC" | "AFRICA_JOHANNESBURG" | "AMERICA_MONTREAL" | "AMERICA_SAO_PAULO" | "ASIA_BAHRAIN" | "ASIA_BANGKOK" | "ASIA_CALCUTTA" | "ASIA_DUBAI" | "ASIA_HONG_KONG" | "ASIA_JAKARTA" | "ASIA_KUALA_LUMPUR" | "ASIA_SEOUL" | "ASIA_SHANGHAI" | "ASIA_SINGAPORE" | "ASIA_TAIPEI" | "ASIA_TOKYO" | "AUSTRALIA_MELBOURNE" | "AUSTRALIA_SYDNEY" | "CANADA_CENTRAL" | "CET" | "CST6CDT" | "ETC_GMT" | "ETC_GMT0" | "ETC_GMT_ADD_0" | "ETC_GMT_ADD_1" | "ETC_GMT_ADD_10" | "ETC_GMT_ADD_11" | "ETC_GMT_ADD_12" | "ETC_GMT_ADD_2" | "ETC_GMT_ADD_3" | "ETC_GMT_ADD_4" | "ETC_GMT_ADD_5" | "ETC_GMT_ADD_6" | "ETC_GMT_ADD_7" | "ETC_GMT_ADD_8" | "ETC_GMT_ADD_9" | "ETC_GMT_NEG_0" | "ETC_GMT_NEG_1" | "ETC_GMT_NEG_10" | "ETC_GMT_NEG_11" | "ETC_GMT_NEG_12" | "ETC_GMT_NEG_13" | "ETC_GMT_NEG_14" | "ETC_GMT_NEG_2" | "ETC_GMT_NEG_3" | "ETC_GMT_NEG_4" | "ETC_GMT_NEG_5" | "ETC_GMT_NEG_6" | "ETC_GMT_NEG_7" | "ETC_GMT_NEG_8" | "ETC_GMT_NEG_9" | "EUROPE_DUBLIN" | "EUROPE_LONDON" | "EUROPE_PARIS" | "EUROPE_STOCKHOLM" | "EUROPE_ZURICH" | "ISRAEL" | "MEXICO_GENERAL" | "MST7MDT" | "PACIFIC_AUCKLAND" | "US_CENTRAL" | "US_EASTERN" | "US_MOUNTAIN" | "US_PACIFIC")
|
|
3777
|
+
attr_accessor enabled: bool
|
|
3778
|
+
attr_accessor schedule: ::String
|
|
3779
|
+
SENSITIVE: []
|
|
3780
|
+
end
|
|
3781
|
+
|
|
3718
3782
|
class LineageSyncSchedule
|
|
3719
3783
|
attr_accessor schedule: ::String
|
|
3720
3784
|
SENSITIVE: []
|
|
@@ -5646,6 +5710,30 @@ module Aws::DataZone
|
|
|
5646
5710
|
SENSITIVE: []
|
|
5647
5711
|
end
|
|
5648
5712
|
|
|
5713
|
+
class SnowflakePropertiesInput
|
|
5714
|
+
attr_accessor connectivity_properties: Types::ConnectivityProperties
|
|
5715
|
+
attr_accessor snowflake_role: ::String
|
|
5716
|
+
attr_accessor identity_mapping: Types::IdentityMapping
|
|
5717
|
+
attr_accessor lineage_sync: Types::LineageSyncInput
|
|
5718
|
+
SENSITIVE: []
|
|
5719
|
+
end
|
|
5720
|
+
|
|
5721
|
+
class SnowflakePropertiesOutput
|
|
5722
|
+
attr_accessor snowflake_role: ::String
|
|
5723
|
+
attr_accessor identity_mapping: Types::IdentityMapping
|
|
5724
|
+
attr_accessor lineage_sync: Types::LineageSyncOutput
|
|
5725
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "READY" | "UPDATING" | "UPDATE_FAILED" | "DELETED")
|
|
5726
|
+
attr_accessor error_message: ::String
|
|
5727
|
+
SENSITIVE: []
|
|
5728
|
+
end
|
|
5729
|
+
|
|
5730
|
+
class SnowflakePropertiesPatch
|
|
5731
|
+
attr_accessor connectivity_properties_patch: Types::ConnectivityPropertiesPatch
|
|
5732
|
+
attr_accessor snowflake_role: ::String
|
|
5733
|
+
attr_accessor lineage_sync: Types::LineageSyncInput
|
|
5734
|
+
SENSITIVE: []
|
|
5735
|
+
end
|
|
5736
|
+
|
|
5649
5737
|
class SourceLocation
|
|
5650
5738
|
attr_accessor s3: ::String
|
|
5651
5739
|
attr_accessor unknown: untyped
|