aws-sdk-datazone 1.28.0 → 1.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +1743 -23
- data/lib/aws-sdk-datazone/client_api.rb +1242 -19
- data/lib/aws-sdk-datazone/types.rb +3652 -272
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +574 -10
- data/sig/types.rbs +967 -10
- metadata +2 -2
@@ -722,6 +722,8 @@ module Aws::DataZone
|
|
722
722
|
# },
|
723
723
|
# create_environment: {
|
724
724
|
# },
|
725
|
+
# create_environment_from_blueprint: {
|
726
|
+
# },
|
725
727
|
# create_environment_profile: {
|
726
728
|
# domain_unit_id: "DomainUnitId",
|
727
729
|
# },
|
@@ -734,6 +736,10 @@ module Aws::DataZone
|
|
734
736
|
# create_project: {
|
735
737
|
# include_child_domain_units: false,
|
736
738
|
# },
|
739
|
+
# create_project_from_project_profile: {
|
740
|
+
# include_child_domain_units: false,
|
741
|
+
# project_profiles: ["String"],
|
742
|
+
# },
|
737
743
|
# delegate_create_environment_profile: {
|
738
744
|
# },
|
739
745
|
# override_domain_unit_owners: {
|
@@ -746,7 +752,7 @@ module Aws::DataZone
|
|
746
752
|
# domain_identifier: "DomainId", # required
|
747
753
|
# entity_identifier: "String", # required
|
748
754
|
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE
|
749
|
-
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT
|
755
|
+
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE
|
750
756
|
# principal: { # required
|
751
757
|
# domain_unit: {
|
752
758
|
# domain_unit_designation: "OWNER", # required, accepts OWNER
|
@@ -1439,6 +1445,293 @@ module Aws::DataZone
|
|
1439
1445
|
req.send_request(options)
|
1440
1446
|
end
|
1441
1447
|
|
1448
|
+
# Creates a new connection. In Amazon DataZone, a connection enables you
|
1449
|
+
# to connect your resources (domains, projects, and environments) to
|
1450
|
+
# external resources and services.
|
1451
|
+
#
|
1452
|
+
# @option params [Types::AwsLocation] :aws_location
|
1453
|
+
# The location where the connection is created.
|
1454
|
+
#
|
1455
|
+
# @option params [String] :client_token
|
1456
|
+
# A unique, case-sensitive identifier that is provided to ensure the
|
1457
|
+
# idempotency of the request.
|
1458
|
+
#
|
1459
|
+
# **A suitable default value is auto-generated.** You should normally
|
1460
|
+
# not need to pass this option.**
|
1461
|
+
#
|
1462
|
+
# @option params [String] :description
|
1463
|
+
# A connection description.
|
1464
|
+
#
|
1465
|
+
# @option params [required, String] :domain_identifier
|
1466
|
+
# The ID of the domain where the connection is created.
|
1467
|
+
#
|
1468
|
+
# @option params [required, String] :environment_identifier
|
1469
|
+
# The ID of the environment where the connection is created.
|
1470
|
+
#
|
1471
|
+
# @option params [required, String] :name
|
1472
|
+
# The connection name.
|
1473
|
+
#
|
1474
|
+
# @option params [Types::ConnectionPropertiesInput] :props
|
1475
|
+
# The connection props.
|
1476
|
+
#
|
1477
|
+
# @return [Types::CreateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1478
|
+
#
|
1479
|
+
# * {Types::CreateConnectionOutput#connection_id #connection_id} => String
|
1480
|
+
# * {Types::CreateConnectionOutput#description #description} => String
|
1481
|
+
# * {Types::CreateConnectionOutput#domain_id #domain_id} => String
|
1482
|
+
# * {Types::CreateConnectionOutput#domain_unit_id #domain_unit_id} => String
|
1483
|
+
# * {Types::CreateConnectionOutput#environment_id #environment_id} => String
|
1484
|
+
# * {Types::CreateConnectionOutput#name #name} => String
|
1485
|
+
# * {Types::CreateConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
1486
|
+
# * {Types::CreateConnectionOutput#project_id #project_id} => String
|
1487
|
+
# * {Types::CreateConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
1488
|
+
# * {Types::CreateConnectionOutput#type #type} => String
|
1489
|
+
#
|
1490
|
+
# @example Request syntax with placeholder values
|
1491
|
+
#
|
1492
|
+
# resp = client.create_connection({
|
1493
|
+
# aws_location: {
|
1494
|
+
# access_role: "AwsLocationAccessRoleString",
|
1495
|
+
# aws_account_id: "AwsAccountId",
|
1496
|
+
# aws_region: "AwsRegion",
|
1497
|
+
# iam_connection_id: "ConnectionId",
|
1498
|
+
# },
|
1499
|
+
# client_token: "String",
|
1500
|
+
# description: "CreateConnectionInputDescriptionString",
|
1501
|
+
# domain_identifier: "DomainId", # required
|
1502
|
+
# environment_identifier: "EnvironmentId", # required
|
1503
|
+
# name: "ConnectionName", # required
|
1504
|
+
# props: {
|
1505
|
+
# athena_properties: {
|
1506
|
+
# workgroup_name: "AthenaPropertiesInputWorkgroupNameString",
|
1507
|
+
# },
|
1508
|
+
# glue_properties: {
|
1509
|
+
# glue_connection_input: {
|
1510
|
+
# athena_properties: {
|
1511
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
1512
|
+
# },
|
1513
|
+
# authentication_configuration: {
|
1514
|
+
# authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
|
1515
|
+
# basic_authentication_credentials: {
|
1516
|
+
# password: "BasicAuthenticationCredentialsPasswordString",
|
1517
|
+
# user_name: "BasicAuthenticationCredentialsUserNameString",
|
1518
|
+
# },
|
1519
|
+
# custom_authentication_credentials: {
|
1520
|
+
# "CredentialMapKeyString" => "CredentialMapValueString",
|
1521
|
+
# },
|
1522
|
+
# kms_key_arn: "AuthenticationConfigurationInputKmsKeyArnString",
|
1523
|
+
# o_auth_2_properties: {
|
1524
|
+
# authorization_code_properties: {
|
1525
|
+
# authorization_code: "AuthorizationCodePropertiesAuthorizationCodeString",
|
1526
|
+
# redirect_uri: "AuthorizationCodePropertiesRedirectUriString",
|
1527
|
+
# },
|
1528
|
+
# o_auth_2_client_application: {
|
1529
|
+
# a_ws_managed_client_application_reference: "OAuth2ClientApplicationAWSManagedClientApplicationReferenceString",
|
1530
|
+
# user_managed_client_application_client_id: "OAuth2ClientApplicationUserManagedClientApplicationClientIdString",
|
1531
|
+
# },
|
1532
|
+
# o_auth_2_credentials: {
|
1533
|
+
# access_token: "GlueOAuth2CredentialsAccessTokenString",
|
1534
|
+
# jwt_token: "GlueOAuth2CredentialsJwtTokenString",
|
1535
|
+
# refresh_token: "GlueOAuth2CredentialsRefreshTokenString",
|
1536
|
+
# user_managed_client_application_client_secret: "GlueOAuth2CredentialsUserManagedClientApplicationClientSecretString",
|
1537
|
+
# },
|
1538
|
+
# o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
|
1539
|
+
# token_url: "OAuth2PropertiesTokenUrlString",
|
1540
|
+
# token_url_parameters_map: {
|
1541
|
+
# "TokenUrlParametersMapKeyString" => "TokenUrlParametersMapValueString",
|
1542
|
+
# },
|
1543
|
+
# },
|
1544
|
+
# secret_arn: "AuthenticationConfigurationInputSecretArnString",
|
1545
|
+
# },
|
1546
|
+
# connection_properties: {
|
1547
|
+
# "String" => "ConnectionPropertiesValueString",
|
1548
|
+
# },
|
1549
|
+
# connection_type: "SNOWFLAKE", # accepts SNOWFLAKE, BIGQUERY, DOCUMENTDB, DYNAMODB, MYSQL, OPENSEARCH, ORACLE, POSTGRESQL, REDSHIFT, SAPHANA, SQLSERVER, TERADATA, VERTICA
|
1550
|
+
# description: "String",
|
1551
|
+
# match_criteria: "GlueConnectionInputMatchCriteriaString",
|
1552
|
+
# name: "GlueConnectionInputNameString",
|
1553
|
+
# physical_connection_requirements: {
|
1554
|
+
# availability_zone: "PhysicalConnectionRequirementsAvailabilityZoneString",
|
1555
|
+
# security_group_id_list: ["SecurityGroupIdListMemberString"],
|
1556
|
+
# subnet_id: "SubnetId",
|
1557
|
+
# subnet_id_list: ["SubnetId"],
|
1558
|
+
# },
|
1559
|
+
# python_properties: {
|
1560
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
1561
|
+
# },
|
1562
|
+
# spark_properties: {
|
1563
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
1564
|
+
# },
|
1565
|
+
# validate_credentials: false,
|
1566
|
+
# validate_for_compute_environments: ["SPARK"], # accepts SPARK, ATHENA, PYTHON
|
1567
|
+
# },
|
1568
|
+
# },
|
1569
|
+
# hyper_pod_properties: {
|
1570
|
+
# cluster_name: "HyperPodPropertiesInputClusterNameString", # required
|
1571
|
+
# },
|
1572
|
+
# iam_properties: {
|
1573
|
+
# glue_lineage_sync_enabled: false,
|
1574
|
+
# },
|
1575
|
+
# redshift_properties: {
|
1576
|
+
# credentials: {
|
1577
|
+
# secret_arn: "RedshiftCredentialsSecretArnString",
|
1578
|
+
# username_password: {
|
1579
|
+
# password: "Password", # required
|
1580
|
+
# username: "Username", # required
|
1581
|
+
# },
|
1582
|
+
# },
|
1583
|
+
# database_name: "RedshiftPropertiesInputDatabaseNameString",
|
1584
|
+
# host: "RedshiftPropertiesInputHostString",
|
1585
|
+
# lineage_sync: {
|
1586
|
+
# enabled: false,
|
1587
|
+
# schedule: {
|
1588
|
+
# schedule: "LineageSyncScheduleScheduleString",
|
1589
|
+
# },
|
1590
|
+
# },
|
1591
|
+
# port: 1,
|
1592
|
+
# storage: {
|
1593
|
+
# cluster_name: "RedshiftStoragePropertiesClusterNameString",
|
1594
|
+
# workgroup_name: "RedshiftStoragePropertiesWorkgroupNameString",
|
1595
|
+
# },
|
1596
|
+
# },
|
1597
|
+
# spark_emr_properties: {
|
1598
|
+
# compute_arn: "SparkEmrPropertiesInputComputeArnString",
|
1599
|
+
# instance_profile_arn: "SparkEmrPropertiesInputInstanceProfileArnString",
|
1600
|
+
# java_virtual_env: "SparkEmrPropertiesInputJavaVirtualEnvString",
|
1601
|
+
# log_uri: "SparkEmrPropertiesInputLogUriString",
|
1602
|
+
# python_virtual_env: "SparkEmrPropertiesInputPythonVirtualEnvString",
|
1603
|
+
# runtime_role: "SparkEmrPropertiesInputRuntimeRoleString",
|
1604
|
+
# trusted_certificates_s3_uri: "SparkEmrPropertiesInputTrustedCertificatesS3UriString",
|
1605
|
+
# },
|
1606
|
+
# spark_glue_properties: {
|
1607
|
+
# additional_args: {
|
1608
|
+
# connection: "String",
|
1609
|
+
# },
|
1610
|
+
# glue_connection_name: "SparkGluePropertiesInputGlueConnectionNameString",
|
1611
|
+
# glue_version: "SparkGluePropertiesInputGlueVersionString",
|
1612
|
+
# idle_timeout: 1,
|
1613
|
+
# java_virtual_env: "SparkGluePropertiesInputJavaVirtualEnvString",
|
1614
|
+
# number_of_workers: 1,
|
1615
|
+
# python_virtual_env: "SparkGluePropertiesInputPythonVirtualEnvString",
|
1616
|
+
# worker_type: "SparkGluePropertiesInputWorkerTypeString",
|
1617
|
+
# },
|
1618
|
+
# },
|
1619
|
+
# })
|
1620
|
+
#
|
1621
|
+
# @example Response structure
|
1622
|
+
#
|
1623
|
+
# resp.connection_id #=> String
|
1624
|
+
# resp.description #=> String
|
1625
|
+
# resp.domain_id #=> String
|
1626
|
+
# resp.domain_unit_id #=> String
|
1627
|
+
# resp.environment_id #=> String
|
1628
|
+
# resp.name #=> String
|
1629
|
+
# resp.physical_endpoints #=> Array
|
1630
|
+
# resp.physical_endpoints[0].aws_location.access_role #=> String
|
1631
|
+
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
1632
|
+
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
1633
|
+
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
1634
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
1635
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
1636
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
1637
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.authorization_code #=> String
|
1638
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.redirect_uri #=> String
|
1639
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.a_ws_managed_client_application_reference #=> String
|
1640
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
|
1641
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.access_token #=> String
|
1642
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.jwt_token #=> String
|
1643
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.refresh_token #=> String
|
1644
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.user_managed_client_application_client_secret #=> String
|
1645
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
|
1646
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url #=> String
|
1647
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
|
1648
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParametersMapKeyString"] #=> String
|
1649
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.secret_arn #=> String
|
1650
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments #=> Array
|
1651
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
1652
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
1653
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
1654
|
+
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
1655
|
+
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
1656
|
+
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
1657
|
+
# resp.physical_endpoints[0].glue_connection.description #=> String
|
1658
|
+
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
1659
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_by #=> String
|
1660
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_time #=> Time
|
1661
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
1662
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
1663
|
+
# resp.physical_endpoints[0].glue_connection.name #=> String
|
1664
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.availability_zone #=> String
|
1665
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list #=> Array
|
1666
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list[0] #=> String
|
1667
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id #=> String
|
1668
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list #=> Array
|
1669
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list[0] #=> String
|
1670
|
+
# resp.physical_endpoints[0].glue_connection.python_properties #=> Hash
|
1671
|
+
# resp.physical_endpoints[0].glue_connection.python_properties["PropertyMapKeyString"] #=> String
|
1672
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties #=> Hash
|
1673
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties["PropertyMapKeyString"] #=> String
|
1674
|
+
# resp.physical_endpoints[0].glue_connection.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
1675
|
+
# resp.physical_endpoints[0].glue_connection.status_reason #=> String
|
1676
|
+
# resp.physical_endpoints[0].glue_connection_name #=> String
|
1677
|
+
# resp.physical_endpoints[0].host #=> String
|
1678
|
+
# resp.physical_endpoints[0].port #=> Integer
|
1679
|
+
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
1680
|
+
# resp.physical_endpoints[0].stage #=> String
|
1681
|
+
# resp.project_id #=> String
|
1682
|
+
# resp.props.athena_properties.workgroup_name #=> String
|
1683
|
+
# resp.props.glue_properties.error_message #=> String
|
1684
|
+
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
1685
|
+
# resp.props.hyper_pod_properties.cluster_arn #=> String
|
1686
|
+
# resp.props.hyper_pod_properties.cluster_name #=> String
|
1687
|
+
# resp.props.hyper_pod_properties.orchestrator #=> String, one of "EKS", "SLURM"
|
1688
|
+
# resp.props.iam_properties.environment_id #=> String
|
1689
|
+
# resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
1690
|
+
# resp.props.redshift_properties.credentials.secret_arn #=> String
|
1691
|
+
# resp.props.redshift_properties.credentials.username_password.password #=> String
|
1692
|
+
# resp.props.redshift_properties.credentials.username_password.username #=> String
|
1693
|
+
# resp.props.redshift_properties.database_name #=> String
|
1694
|
+
# resp.props.redshift_properties.is_provisioned_secret #=> Boolean
|
1695
|
+
# resp.props.redshift_properties.jdbc_iam_url #=> String
|
1696
|
+
# resp.props.redshift_properties.jdbc_url #=> String
|
1697
|
+
# resp.props.redshift_properties.lineage_sync.enabled #=> Boolean
|
1698
|
+
# resp.props.redshift_properties.lineage_sync.lineage_job_id #=> String
|
1699
|
+
# resp.props.redshift_properties.lineage_sync.schedule.schedule #=> String
|
1700
|
+
# resp.props.redshift_properties.redshift_temp_dir #=> String
|
1701
|
+
# resp.props.redshift_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
1702
|
+
# resp.props.redshift_properties.storage.cluster_name #=> String
|
1703
|
+
# resp.props.redshift_properties.storage.workgroup_name #=> String
|
1704
|
+
# resp.props.spark_emr_properties.compute_arn #=> String
|
1705
|
+
# resp.props.spark_emr_properties.credentials.password #=> String
|
1706
|
+
# resp.props.spark_emr_properties.credentials.username #=> String
|
1707
|
+
# resp.props.spark_emr_properties.credentials_expiration #=> Time
|
1708
|
+
# resp.props.spark_emr_properties.governance_type #=> String, one of "AWS_MANAGED", "USER_MANAGED"
|
1709
|
+
# resp.props.spark_emr_properties.instance_profile_arn #=> String
|
1710
|
+
# resp.props.spark_emr_properties.java_virtual_env #=> String
|
1711
|
+
# resp.props.spark_emr_properties.livy_endpoint #=> String
|
1712
|
+
# resp.props.spark_emr_properties.log_uri #=> String
|
1713
|
+
# resp.props.spark_emr_properties.python_virtual_env #=> String
|
1714
|
+
# resp.props.spark_emr_properties.runtime_role #=> String
|
1715
|
+
# resp.props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
1716
|
+
# resp.props.spark_glue_properties.additional_args.connection #=> String
|
1717
|
+
# resp.props.spark_glue_properties.glue_connection_name #=> String
|
1718
|
+
# resp.props.spark_glue_properties.glue_version #=> String
|
1719
|
+
# resp.props.spark_glue_properties.idle_timeout #=> Integer
|
1720
|
+
# resp.props.spark_glue_properties.java_virtual_env #=> String
|
1721
|
+
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
1722
|
+
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
1723
|
+
# resp.props.spark_glue_properties.worker_type #=> String
|
1724
|
+
# resp.type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
1725
|
+
#
|
1726
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateConnection AWS API Documentation
|
1727
|
+
#
|
1728
|
+
# @overload create_connection(params = {})
|
1729
|
+
# @param [Hash] params ({})
|
1730
|
+
def create_connection(params = {}, options = {})
|
1731
|
+
req = build_request(:create_connection, params)
|
1732
|
+
req.send_request(options)
|
1733
|
+
end
|
1734
|
+
|
1442
1735
|
# Creates a data product.
|
1443
1736
|
#
|
1444
1737
|
# @option params [String] :client_token
|
@@ -1676,6 +1969,9 @@ module Aws::DataZone
|
|
1676
1969
|
# Specifies the configuration of the data source. It can be set to
|
1677
1970
|
# either `glueRunConfiguration` or `redshiftRunConfiguration`.
|
1678
1971
|
#
|
1972
|
+
# @option params [String] :connection_identifier
|
1973
|
+
# The ID of the connection.
|
1974
|
+
#
|
1679
1975
|
# @option params [String] :description
|
1680
1976
|
# The description of the data source.
|
1681
1977
|
#
|
@@ -1685,7 +1981,7 @@ module Aws::DataZone
|
|
1685
1981
|
# @option params [String] :enable_setting
|
1686
1982
|
# Specifies whether the data source is enabled.
|
1687
1983
|
#
|
1688
|
-
# @option params [
|
1984
|
+
# @option params [String] :environment_identifier
|
1689
1985
|
# The unique identifier of the Amazon DataZone environment to which the
|
1690
1986
|
# data source publishes assets.
|
1691
1987
|
#
|
@@ -1714,6 +2010,7 @@ module Aws::DataZone
|
|
1714
2010
|
#
|
1715
2011
|
# * {Types::CreateDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
1716
2012
|
# * {Types::CreateDataSourceOutput#configuration #configuration} => Types::DataSourceConfigurationOutput
|
2013
|
+
# * {Types::CreateDataSourceOutput#connection_id #connection_id} => String
|
1717
2014
|
# * {Types::CreateDataSourceOutput#created_at #created_at} => Time
|
1718
2015
|
# * {Types::CreateDataSourceOutput#description #description} => String
|
1719
2016
|
# * {Types::CreateDataSourceOutput#domain_id #domain_id} => String
|
@@ -1748,6 +2045,7 @@ module Aws::DataZone
|
|
1748
2045
|
# configuration: {
|
1749
2046
|
# glue_run_configuration: {
|
1750
2047
|
# auto_import_data_quality_result: false,
|
2048
|
+
# catalog_name: "GlueRunConfigurationInputCatalogNameString",
|
1751
2049
|
# data_access_role: "GlueRunConfigurationInputDataAccessRoleString",
|
1752
2050
|
# relational_filter_configurations: [ # required
|
1753
2051
|
# {
|
@@ -1764,10 +2062,10 @@ module Aws::DataZone
|
|
1764
2062
|
# },
|
1765
2063
|
# redshift_run_configuration: {
|
1766
2064
|
# data_access_role: "RedshiftRunConfigurationInputDataAccessRoleString",
|
1767
|
-
# redshift_credential_configuration: {
|
2065
|
+
# redshift_credential_configuration: {
|
1768
2066
|
# secret_manager_arn: "RedshiftCredentialConfigurationSecretManagerArnString", # required
|
1769
2067
|
# },
|
1770
|
-
# redshift_storage: {
|
2068
|
+
# redshift_storage: {
|
1771
2069
|
# redshift_cluster_source: {
|
1772
2070
|
# cluster_name: "RedshiftClusterStorageClusterNameString", # required
|
1773
2071
|
# },
|
@@ -1788,13 +2086,19 @@ module Aws::DataZone
|
|
1788
2086
|
# },
|
1789
2087
|
# ],
|
1790
2088
|
# },
|
2089
|
+
# sage_maker_run_configuration: {
|
2090
|
+
# tracking_assets: { # required
|
2091
|
+
# "SageMakerAssetType" => ["SageMakerResourceArn"],
|
2092
|
+
# },
|
2093
|
+
# },
|
1791
2094
|
# },
|
2095
|
+
# connection_identifier: "CreateDataSourceInputConnectionIdentifierString",
|
1792
2096
|
# description: "Description",
|
1793
2097
|
# domain_identifier: "DomainId", # required
|
1794
2098
|
# enable_setting: "ENABLED", # accepts ENABLED, DISABLED
|
1795
|
-
# environment_identifier: "
|
2099
|
+
# environment_identifier: "CreateDataSourceInputEnvironmentIdentifierString",
|
1796
2100
|
# name: "Name", # required
|
1797
|
-
# project_identifier: "
|
2101
|
+
# project_identifier: "CreateDataSourceInputProjectIdentifierString", # required
|
1798
2102
|
# publish_on_import: false,
|
1799
2103
|
# recommendation: {
|
1800
2104
|
# enable_business_name_generation: false,
|
@@ -1815,6 +2119,7 @@ module Aws::DataZone
|
|
1815
2119
|
# resp.asset_forms_output[0].type_revision #=> String
|
1816
2120
|
# resp.configuration.glue_run_configuration.account_id #=> String
|
1817
2121
|
# resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
|
2122
|
+
# resp.configuration.glue_run_configuration.catalog_name #=> String
|
1818
2123
|
# resp.configuration.glue_run_configuration.data_access_role #=> String
|
1819
2124
|
# resp.configuration.glue_run_configuration.region #=> String
|
1820
2125
|
# resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
|
@@ -1835,6 +2140,12 @@ module Aws::DataZone
|
|
1835
2140
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].expression #=> String
|
1836
2141
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].type #=> String, one of "INCLUDE", "EXCLUDE"
|
1837
2142
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].schema_name #=> String
|
2143
|
+
# resp.configuration.sage_maker_run_configuration.account_id #=> String
|
2144
|
+
# resp.configuration.sage_maker_run_configuration.region #=> String
|
2145
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets #=> Hash
|
2146
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"] #=> Array
|
2147
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"][0] #=> String
|
2148
|
+
# resp.connection_id #=> String
|
1838
2149
|
# resp.created_at #=> Time
|
1839
2150
|
# resp.description #=> String
|
1840
2151
|
# resp.domain_id #=> String
|
@@ -1883,6 +2194,9 @@ module Aws::DataZone
|
|
1883
2194
|
# domain is created. The domain execution role is created in the Amazon
|
1884
2195
|
# Web Services account that houses the Amazon DataZone domain.
|
1885
2196
|
#
|
2197
|
+
# @option params [String] :domain_version
|
2198
|
+
# The version of the domain that is created.
|
2199
|
+
#
|
1886
2200
|
# @option params [String] :kms_key_identifier
|
1887
2201
|
# The identifier of the Amazon Web Services Key Management Service (KMS)
|
1888
2202
|
# key that is used to encrypt the Amazon DataZone domain, metadata, and
|
@@ -1891,6 +2205,9 @@ module Aws::DataZone
|
|
1891
2205
|
# @option params [required, String] :name
|
1892
2206
|
# The name of the Amazon DataZone domain.
|
1893
2207
|
#
|
2208
|
+
# @option params [String] :service_role
|
2209
|
+
# The service role of the domain that is created.
|
2210
|
+
#
|
1894
2211
|
# @option params [Types::SingleSignOn] :single_sign_on
|
1895
2212
|
# The single-sign on configuration of the Amazon DataZone domain.
|
1896
2213
|
#
|
@@ -1902,11 +2219,13 @@ module Aws::DataZone
|
|
1902
2219
|
# * {Types::CreateDomainOutput#arn #arn} => String
|
1903
2220
|
# * {Types::CreateDomainOutput#description #description} => String
|
1904
2221
|
# * {Types::CreateDomainOutput#domain_execution_role #domain_execution_role} => String
|
2222
|
+
# * {Types::CreateDomainOutput#domain_version #domain_version} => String
|
1905
2223
|
# * {Types::CreateDomainOutput#id #id} => String
|
1906
2224
|
# * {Types::CreateDomainOutput#kms_key_identifier #kms_key_identifier} => String
|
1907
2225
|
# * {Types::CreateDomainOutput#name #name} => String
|
1908
2226
|
# * {Types::CreateDomainOutput#portal_url #portal_url} => String
|
1909
2227
|
# * {Types::CreateDomainOutput#root_domain_unit_id #root_domain_unit_id} => String
|
2228
|
+
# * {Types::CreateDomainOutput#service_role #service_role} => String
|
1910
2229
|
# * {Types::CreateDomainOutput#single_sign_on #single_sign_on} => Types::SingleSignOn
|
1911
2230
|
# * {Types::CreateDomainOutput#status #status} => String
|
1912
2231
|
# * {Types::CreateDomainOutput#tags #tags} => Hash<String,String>
|
@@ -1917,8 +2236,10 @@ module Aws::DataZone
|
|
1917
2236
|
# client_token: "String",
|
1918
2237
|
# description: "String",
|
1919
2238
|
# domain_execution_role: "RoleArn", # required
|
2239
|
+
# domain_version: "V1", # accepts V1, V2
|
1920
2240
|
# kms_key_identifier: "KmsKeyArn",
|
1921
2241
|
# name: "String", # required
|
2242
|
+
# service_role: "RoleArn",
|
1922
2243
|
# single_sign_on: {
|
1923
2244
|
# type: "IAM_IDC", # accepts IAM_IDC, DISABLED
|
1924
2245
|
# user_assignment: "AUTOMATIC", # accepts AUTOMATIC, MANUAL
|
@@ -1933,11 +2254,13 @@ module Aws::DataZone
|
|
1933
2254
|
# resp.arn #=> String
|
1934
2255
|
# resp.description #=> String
|
1935
2256
|
# resp.domain_execution_role #=> String
|
2257
|
+
# resp.domain_version #=> String, one of "V1", "V2"
|
1936
2258
|
# resp.id #=> String
|
1937
2259
|
# resp.kms_key_identifier #=> String
|
1938
2260
|
# resp.name #=> String
|
1939
2261
|
# resp.portal_url #=> String
|
1940
2262
|
# resp.root_domain_unit_id #=> String
|
2263
|
+
# resp.service_role #=> String
|
1941
2264
|
# resp.single_sign_on.type #=> String, one of "IAM_IDC", "DISABLED"
|
1942
2265
|
# resp.single_sign_on.user_assignment #=> String, one of "AUTOMATIC", "MANUAL"
|
1943
2266
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "CREATION_FAILED", "DELETING", "DELETED", "DELETION_FAILED"
|
@@ -2022,6 +2345,9 @@ module Aws::DataZone
|
|
2022
2345
|
|
2023
2346
|
# Create an Amazon DataZone environment.
|
2024
2347
|
#
|
2348
|
+
# @option params [Integer] :deployment_order
|
2349
|
+
# The deployment order of the environment.
|
2350
|
+
#
|
2025
2351
|
# @option params [String] :description
|
2026
2352
|
# The description of the Amazon DataZone environment.
|
2027
2353
|
#
|
@@ -2038,6 +2364,9 @@ module Aws::DataZone
|
|
2038
2364
|
# @option params [String] :environment_blueprint_identifier
|
2039
2365
|
# The ID of the blueprint with which the environment is being created.
|
2040
2366
|
#
|
2367
|
+
# @option params [String] :environment_configuration_id
|
2368
|
+
# The configuration ID of the environment.
|
2369
|
+
#
|
2041
2370
|
# @option params [required, String] :environment_profile_identifier
|
2042
2371
|
# The identifier of the environment profile that is used to create this
|
2043
2372
|
# Amazon DataZone environment.
|
@@ -2083,11 +2412,13 @@ module Aws::DataZone
|
|
2083
2412
|
# @example Request syntax with placeholder values
|
2084
2413
|
#
|
2085
2414
|
# resp = client.create_environment({
|
2415
|
+
# deployment_order: 1,
|
2086
2416
|
# description: "String",
|
2087
2417
|
# domain_identifier: "DomainId", # required
|
2088
2418
|
# environment_account_identifier: "String",
|
2089
2419
|
# environment_account_region: "String",
|
2090
2420
|
# environment_blueprint_identifier: "String",
|
2421
|
+
# environment_configuration_id: "String",
|
2091
2422
|
# environment_profile_identifier: "EnvironmentProfileId", # required
|
2092
2423
|
# glossary_terms: ["GlossaryTermId"],
|
2093
2424
|
# name: "String", # required
|
@@ -2643,6 +2974,12 @@ module Aws::DataZone
|
|
2643
2974
|
# @option params [required, String] :name
|
2644
2975
|
# The name of the Amazon DataZone project.
|
2645
2976
|
#
|
2977
|
+
# @option params [String] :project_profile_id
|
2978
|
+
# The ID of the project profile.
|
2979
|
+
#
|
2980
|
+
# @option params [Array<Types::EnvironmentConfigurationUserParameter>] :user_parameters
|
2981
|
+
# The user parameters of the project.
|
2982
|
+
#
|
2646
2983
|
# @return [Types::CreateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2647
2984
|
#
|
2648
2985
|
# * {Types::CreateProjectOutput#created_at #created_at} => Time
|
@@ -2650,12 +2987,15 @@ module Aws::DataZone
|
|
2650
2987
|
# * {Types::CreateProjectOutput#description #description} => String
|
2651
2988
|
# * {Types::CreateProjectOutput#domain_id #domain_id} => String
|
2652
2989
|
# * {Types::CreateProjectOutput#domain_unit_id #domain_unit_id} => String
|
2990
|
+
# * {Types::CreateProjectOutput#environment_deployment_details #environment_deployment_details} => Types::EnvironmentDeploymentDetails
|
2653
2991
|
# * {Types::CreateProjectOutput#failure_reasons #failure_reasons} => Array<Types::ProjectDeletionError>
|
2654
2992
|
# * {Types::CreateProjectOutput#glossary_terms #glossary_terms} => Array<String>
|
2655
2993
|
# * {Types::CreateProjectOutput#id #id} => String
|
2656
2994
|
# * {Types::CreateProjectOutput#last_updated_at #last_updated_at} => Time
|
2657
2995
|
# * {Types::CreateProjectOutput#name #name} => String
|
2996
|
+
# * {Types::CreateProjectOutput#project_profile_id #project_profile_id} => String
|
2658
2997
|
# * {Types::CreateProjectOutput#project_status #project_status} => String
|
2998
|
+
# * {Types::CreateProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
2659
2999
|
#
|
2660
3000
|
# @example Request syntax with placeholder values
|
2661
3001
|
#
|
@@ -2665,6 +3005,18 @@ module Aws::DataZone
|
|
2665
3005
|
# domain_unit_id: "DomainUnitId",
|
2666
3006
|
# glossary_terms: ["GlossaryTermId"],
|
2667
3007
|
# name: "ProjectName", # required
|
3008
|
+
# project_profile_id: "ProjectProfileId",
|
3009
|
+
# user_parameters: [
|
3010
|
+
# {
|
3011
|
+
# environment_configuration_name: "EnvironmentConfigurationName",
|
3012
|
+
# environment_parameters: [
|
3013
|
+
# {
|
3014
|
+
# name: "String",
|
3015
|
+
# value: "String",
|
3016
|
+
# },
|
3017
|
+
# ],
|
3018
|
+
# },
|
3019
|
+
# ],
|
2668
3020
|
# })
|
2669
3021
|
#
|
2670
3022
|
# @example Response structure
|
@@ -2674,6 +3026,11 @@ module Aws::DataZone
|
|
2674
3026
|
# resp.description #=> String
|
2675
3027
|
# resp.domain_id #=> String
|
2676
3028
|
# resp.domain_unit_id #=> String
|
3029
|
+
# resp.environment_deployment_details.environment_failure_reasons #=> Hash
|
3030
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"] #=> Array
|
3031
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].code #=> String
|
3032
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].message #=> String
|
3033
|
+
# resp.environment_deployment_details.overall_deployment_status #=> String, one of "PENDING_DEPLOYMENT", "IN_PROGRESS", "SUCCESSFUL", "FAILED_VALIDATION", "FAILED_DEPLOYMENT"
|
2677
3034
|
# resp.failure_reasons #=> Array
|
2678
3035
|
# resp.failure_reasons[0].code #=> String
|
2679
3036
|
# resp.failure_reasons[0].message #=> String
|
@@ -2682,7 +3039,13 @@ module Aws::DataZone
|
|
2682
3039
|
# resp.id #=> String
|
2683
3040
|
# resp.last_updated_at #=> Time
|
2684
3041
|
# resp.name #=> String
|
3042
|
+
# resp.project_profile_id #=> String
|
2685
3043
|
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED"
|
3044
|
+
# resp.user_parameters #=> Array
|
3045
|
+
# resp.user_parameters[0].environment_configuration_name #=> String
|
3046
|
+
# resp.user_parameters[0].environment_parameters #=> Array
|
3047
|
+
# resp.user_parameters[0].environment_parameters[0].name #=> String
|
3048
|
+
# resp.user_parameters[0].environment_parameters[0].value #=> String
|
2686
3049
|
#
|
2687
3050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProject AWS API Documentation
|
2688
3051
|
#
|
@@ -2731,6 +3094,125 @@ module Aws::DataZone
|
|
2731
3094
|
req.send_request(options)
|
2732
3095
|
end
|
2733
3096
|
|
3097
|
+
# Creates a project profile.
|
3098
|
+
#
|
3099
|
+
# @option params [String] :description
|
3100
|
+
# A description of a project profile.
|
3101
|
+
#
|
3102
|
+
# @option params [required, String] :domain_identifier
|
3103
|
+
# A domain ID of the project profile.
|
3104
|
+
#
|
3105
|
+
# @option params [String] :domain_unit_identifier
|
3106
|
+
# A domain unit ID of the project profile.
|
3107
|
+
#
|
3108
|
+
# @option params [Array<Types::EnvironmentConfiguration>] :environment_configurations
|
3109
|
+
# Environment configurations of the project profile.
|
3110
|
+
#
|
3111
|
+
# @option params [required, String] :name
|
3112
|
+
# Project profile name.
|
3113
|
+
#
|
3114
|
+
# @option params [String] :status
|
3115
|
+
# Project profile status.
|
3116
|
+
#
|
3117
|
+
# @return [Types::CreateProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3118
|
+
#
|
3119
|
+
# * {Types::CreateProjectProfileOutput#created_at #created_at} => Time
|
3120
|
+
# * {Types::CreateProjectProfileOutput#created_by #created_by} => String
|
3121
|
+
# * {Types::CreateProjectProfileOutput#description #description} => String
|
3122
|
+
# * {Types::CreateProjectProfileOutput#domain_id #domain_id} => String
|
3123
|
+
# * {Types::CreateProjectProfileOutput#domain_unit_id #domain_unit_id} => String
|
3124
|
+
# * {Types::CreateProjectProfileOutput#environment_configurations #environment_configurations} => Array<Types::EnvironmentConfiguration>
|
3125
|
+
# * {Types::CreateProjectProfileOutput#id #id} => String
|
3126
|
+
# * {Types::CreateProjectProfileOutput#last_updated_at #last_updated_at} => Time
|
3127
|
+
# * {Types::CreateProjectProfileOutput#name #name} => String
|
3128
|
+
# * {Types::CreateProjectProfileOutput#status #status} => String
|
3129
|
+
#
|
3130
|
+
# @example Request syntax with placeholder values
|
3131
|
+
#
|
3132
|
+
# resp = client.create_project_profile({
|
3133
|
+
# description: "Description",
|
3134
|
+
# domain_identifier: "DomainId", # required
|
3135
|
+
# domain_unit_identifier: "DomainUnitId",
|
3136
|
+
# environment_configurations: [
|
3137
|
+
# {
|
3138
|
+
# aws_account: { # required
|
3139
|
+
# aws_account_id: "AwsAccountId",
|
3140
|
+
# aws_account_id_path: "ParameterStorePath",
|
3141
|
+
# },
|
3142
|
+
# aws_region: { # required
|
3143
|
+
# region_name: "RegionName",
|
3144
|
+
# region_name_path: "ParameterStorePath",
|
3145
|
+
# },
|
3146
|
+
# configuration_parameters: {
|
3147
|
+
# parameter_overrides: [
|
3148
|
+
# {
|
3149
|
+
# is_editable: false,
|
3150
|
+
# name: "EnvironmentConfigurationParameterName",
|
3151
|
+
# value: "String",
|
3152
|
+
# },
|
3153
|
+
# ],
|
3154
|
+
# resolved_parameters: [
|
3155
|
+
# {
|
3156
|
+
# is_editable: false,
|
3157
|
+
# name: "EnvironmentConfigurationParameterName",
|
3158
|
+
# value: "String",
|
3159
|
+
# },
|
3160
|
+
# ],
|
3161
|
+
# ssm_path: "ParameterStorePath",
|
3162
|
+
# },
|
3163
|
+
# deployment_mode: "ON_CREATE", # accepts ON_CREATE, ON_DEMAND
|
3164
|
+
# deployment_order: 1,
|
3165
|
+
# description: "Description",
|
3166
|
+
# environment_blueprint_id: "EnvironmentBlueprintId", # required
|
3167
|
+
# id: "EnvironmentConfigurationId",
|
3168
|
+
# name: "EnvironmentConfigurationName", # required
|
3169
|
+
# },
|
3170
|
+
# ],
|
3171
|
+
# name: "ProjectProfileName", # required
|
3172
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
3173
|
+
# })
|
3174
|
+
#
|
3175
|
+
# @example Response structure
|
3176
|
+
#
|
3177
|
+
# resp.created_at #=> Time
|
3178
|
+
# resp.created_by #=> String
|
3179
|
+
# resp.description #=> String
|
3180
|
+
# resp.domain_id #=> String
|
3181
|
+
# resp.domain_unit_id #=> String
|
3182
|
+
# resp.environment_configurations #=> Array
|
3183
|
+
# resp.environment_configurations[0].aws_account.aws_account_id #=> String
|
3184
|
+
# resp.environment_configurations[0].aws_account.aws_account_id_path #=> String
|
3185
|
+
# resp.environment_configurations[0].aws_region.region_name #=> String
|
3186
|
+
# resp.environment_configurations[0].aws_region.region_name_path #=> String
|
3187
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides #=> Array
|
3188
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].is_editable #=> Boolean
|
3189
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].name #=> String
|
3190
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].value #=> String
|
3191
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters #=> Array
|
3192
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].is_editable #=> Boolean
|
3193
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].name #=> String
|
3194
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].value #=> String
|
3195
|
+
# resp.environment_configurations[0].configuration_parameters.ssm_path #=> String
|
3196
|
+
# resp.environment_configurations[0].deployment_mode #=> String, one of "ON_CREATE", "ON_DEMAND"
|
3197
|
+
# resp.environment_configurations[0].deployment_order #=> Integer
|
3198
|
+
# resp.environment_configurations[0].description #=> String
|
3199
|
+
# resp.environment_configurations[0].environment_blueprint_id #=> String
|
3200
|
+
# resp.environment_configurations[0].id #=> String
|
3201
|
+
# resp.environment_configurations[0].name #=> String
|
3202
|
+
# resp.id #=> String
|
3203
|
+
# resp.last_updated_at #=> Time
|
3204
|
+
# resp.name #=> String
|
3205
|
+
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
3206
|
+
#
|
3207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfile AWS API Documentation
|
3208
|
+
#
|
3209
|
+
# @overload create_project_profile(params = {})
|
3210
|
+
# @param [Hash] params ({})
|
3211
|
+
def create_project_profile(params = {}, options = {})
|
3212
|
+
req = build_request(:create_project_profile, params)
|
3213
|
+
req.send_request(options)
|
3214
|
+
end
|
3215
|
+
|
2734
3216
|
# Creates a rule in Amazon DataZone. A rule is a formal agreement that
|
2735
3217
|
# enforces specific requirements across user workflows (e.g., publishing
|
2736
3218
|
# assets to the catalog, requesting subscriptions, creating projects)
|
@@ -2874,7 +3356,7 @@ module Aws::DataZone
|
|
2874
3356
|
# @option params [required, Types::GrantedEntityInput] :granted_entity
|
2875
3357
|
# The entity to which the subscription is to be granted.
|
2876
3358
|
#
|
2877
|
-
# @option params [
|
3359
|
+
# @option params [String] :subscription_target_identifier
|
2878
3360
|
# The ID of the subscription target for which the subscription grant is
|
2879
3361
|
# created.
|
2880
3362
|
#
|
@@ -2910,7 +3392,7 @@ module Aws::DataZone
|
|
2910
3392
|
# revision: "Revision", # required
|
2911
3393
|
# },
|
2912
3394
|
# },
|
2913
|
-
# subscription_target_identifier: "SubscriptionTargetId",
|
3395
|
+
# subscription_target_identifier: "SubscriptionTargetId",
|
2914
3396
|
# })
|
2915
3397
|
#
|
2916
3398
|
# @example Response structure
|
@@ -3144,7 +3626,7 @@ module Aws::DataZone
|
|
3144
3626
|
# client_token: "String",
|
3145
3627
|
# domain_identifier: "DomainId", # required
|
3146
3628
|
# environment_identifier: "EnvironmentId", # required
|
3147
|
-
# manage_access_role: "
|
3629
|
+
# manage_access_role: "IamRoleArn", # required
|
3148
3630
|
# name: "SubscriptionTargetName", # required
|
3149
3631
|
# provider: "String",
|
3150
3632
|
# subscription_target_config: [ # required
|
@@ -3326,6 +3808,40 @@ module Aws::DataZone
|
|
3326
3808
|
req.send_request(options)
|
3327
3809
|
end
|
3328
3810
|
|
3811
|
+
# Deletes and connection. In Amazon DataZone, a connection enables you
|
3812
|
+
# to connect your resources (domains, projects, and environments) to
|
3813
|
+
# external resources and services.
|
3814
|
+
#
|
3815
|
+
# @option params [required, String] :domain_identifier
|
3816
|
+
# The ID of the domain where the connection is deleted.
|
3817
|
+
#
|
3818
|
+
# @option params [required, String] :identifier
|
3819
|
+
# The ID of the connection that is deleted.
|
3820
|
+
#
|
3821
|
+
# @return [Types::DeleteConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3822
|
+
#
|
3823
|
+
# * {Types::DeleteConnectionOutput#status #status} => String
|
3824
|
+
#
|
3825
|
+
# @example Request syntax with placeholder values
|
3826
|
+
#
|
3827
|
+
# resp = client.delete_connection({
|
3828
|
+
# domain_identifier: "DomainId", # required
|
3829
|
+
# identifier: "ConnectionId", # required
|
3830
|
+
# })
|
3831
|
+
#
|
3832
|
+
# @example Response structure
|
3833
|
+
#
|
3834
|
+
# resp.status #=> String
|
3835
|
+
#
|
3836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteConnection AWS API Documentation
|
3837
|
+
#
|
3838
|
+
# @overload delete_connection(params = {})
|
3839
|
+
# @param [Hash] params ({})
|
3840
|
+
def delete_connection(params = {}, options = {})
|
3841
|
+
req = build_request(:delete_connection, params)
|
3842
|
+
req.send_request(options)
|
3843
|
+
end
|
3844
|
+
|
3329
3845
|
# Deletes a data product in Amazon DataZone.
|
3330
3846
|
#
|
3331
3847
|
# @option params [required, String] :domain_identifier
|
@@ -3377,6 +3893,7 @@ module Aws::DataZone
|
|
3377
3893
|
#
|
3378
3894
|
# * {Types::DeleteDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
3379
3895
|
# * {Types::DeleteDataSourceOutput#configuration #configuration} => Types::DataSourceConfigurationOutput
|
3896
|
+
# * {Types::DeleteDataSourceOutput#connection_id #connection_id} => String
|
3380
3897
|
# * {Types::DeleteDataSourceOutput#created_at #created_at} => Time
|
3381
3898
|
# * {Types::DeleteDataSourceOutput#description #description} => String
|
3382
3899
|
# * {Types::DeleteDataSourceOutput#domain_id #domain_id} => String
|
@@ -3415,6 +3932,7 @@ module Aws::DataZone
|
|
3415
3932
|
# resp.asset_forms_output[0].type_revision #=> String
|
3416
3933
|
# resp.configuration.glue_run_configuration.account_id #=> String
|
3417
3934
|
# resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
|
3935
|
+
# resp.configuration.glue_run_configuration.catalog_name #=> String
|
3418
3936
|
# resp.configuration.glue_run_configuration.data_access_role #=> String
|
3419
3937
|
# resp.configuration.glue_run_configuration.region #=> String
|
3420
3938
|
# resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
|
@@ -3435,6 +3953,12 @@ module Aws::DataZone
|
|
3435
3953
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].expression #=> String
|
3436
3954
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].type #=> String, one of "INCLUDE", "EXCLUDE"
|
3437
3955
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].schema_name #=> String
|
3956
|
+
# resp.configuration.sage_maker_run_configuration.account_id #=> String
|
3957
|
+
# resp.configuration.sage_maker_run_configuration.region #=> String
|
3958
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets #=> Hash
|
3959
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"] #=> Array
|
3960
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"][0] #=> String
|
3961
|
+
# resp.connection_id #=> String
|
3438
3962
|
# resp.created_at #=> Time
|
3439
3963
|
# resp.description #=> String
|
3440
3964
|
# resp.domain_id #=> String
|
@@ -3830,6 +4354,32 @@ module Aws::DataZone
|
|
3830
4354
|
req.send_request(options)
|
3831
4355
|
end
|
3832
4356
|
|
4357
|
+
# Deletes a project profile.
|
4358
|
+
#
|
4359
|
+
# @option params [required, String] :domain_identifier
|
4360
|
+
# The ID of the domain where a project profile is deleted.
|
4361
|
+
#
|
4362
|
+
# @option params [required, String] :identifier
|
4363
|
+
# The ID of the project profile that is deleted.
|
4364
|
+
#
|
4365
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4366
|
+
#
|
4367
|
+
# @example Request syntax with placeholder values
|
4368
|
+
#
|
4369
|
+
# resp = client.delete_project_profile({
|
4370
|
+
# domain_identifier: "DomainId", # required
|
4371
|
+
# identifier: "ProjectProfileId", # required
|
4372
|
+
# })
|
4373
|
+
#
|
4374
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteProjectProfile AWS API Documentation
|
4375
|
+
#
|
4376
|
+
# @overload delete_project_profile(params = {})
|
4377
|
+
# @param [Hash] params ({})
|
4378
|
+
def delete_project_profile(params = {}, options = {})
|
4379
|
+
req = build_request(:delete_project_profile, params)
|
4380
|
+
req.send_request(options)
|
4381
|
+
end
|
4382
|
+
|
3833
4383
|
# Deletes a rule in Amazon DataZone. A rule is a formal agreement that
|
3834
4384
|
# enforces specific requirements across user workflows (e.g., publishing
|
3835
4385
|
# assets to the catalog, requesting subscriptions, creating projects)
|
@@ -4297,6 +4847,161 @@ module Aws::DataZone
|
|
4297
4847
|
req.send_request(options)
|
4298
4848
|
end
|
4299
4849
|
|
4850
|
+
# Gets a connection. In Amazon DataZone, a connection enables you to
|
4851
|
+
# connect your resources (domains, projects, and environments) to
|
4852
|
+
# external resources and services.
|
4853
|
+
#
|
4854
|
+
# @option params [required, String] :domain_identifier
|
4855
|
+
# The ID of the domain where we get the connection.
|
4856
|
+
#
|
4857
|
+
# @option params [required, String] :identifier
|
4858
|
+
# The connection ID.
|
4859
|
+
#
|
4860
|
+
# @option params [Boolean] :with_secret
|
4861
|
+
# Specifies whether a connection has a secret.
|
4862
|
+
#
|
4863
|
+
# @return [Types::GetConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4864
|
+
#
|
4865
|
+
# * {Types::GetConnectionOutput#connection_credentials #connection_credentials} => Types::ConnectionCredentials
|
4866
|
+
# * {Types::GetConnectionOutput#connection_id #connection_id} => String
|
4867
|
+
# * {Types::GetConnectionOutput#description #description} => String
|
4868
|
+
# * {Types::GetConnectionOutput#domain_id #domain_id} => String
|
4869
|
+
# * {Types::GetConnectionOutput#domain_unit_id #domain_unit_id} => String
|
4870
|
+
# * {Types::GetConnectionOutput#environment_id #environment_id} => String
|
4871
|
+
# * {Types::GetConnectionOutput#environment_user_role #environment_user_role} => String
|
4872
|
+
# * {Types::GetConnectionOutput#name #name} => String
|
4873
|
+
# * {Types::GetConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
4874
|
+
# * {Types::GetConnectionOutput#project_id #project_id} => String
|
4875
|
+
# * {Types::GetConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
4876
|
+
# * {Types::GetConnectionOutput#type #type} => String
|
4877
|
+
#
|
4878
|
+
# @example Request syntax with placeholder values
|
4879
|
+
#
|
4880
|
+
# resp = client.get_connection({
|
4881
|
+
# domain_identifier: "DomainId", # required
|
4882
|
+
# identifier: "ConnectionId", # required
|
4883
|
+
# with_secret: false,
|
4884
|
+
# })
|
4885
|
+
#
|
4886
|
+
# @example Response structure
|
4887
|
+
#
|
4888
|
+
# resp.connection_credentials.access_key_id #=> String
|
4889
|
+
# resp.connection_credentials.expiration #=> Time
|
4890
|
+
# resp.connection_credentials.secret_access_key #=> String
|
4891
|
+
# resp.connection_credentials.session_token #=> String
|
4892
|
+
# resp.connection_id #=> String
|
4893
|
+
# resp.description #=> String
|
4894
|
+
# resp.domain_id #=> String
|
4895
|
+
# resp.domain_unit_id #=> String
|
4896
|
+
# resp.environment_id #=> String
|
4897
|
+
# resp.environment_user_role #=> String
|
4898
|
+
# resp.name #=> String
|
4899
|
+
# resp.physical_endpoints #=> Array
|
4900
|
+
# resp.physical_endpoints[0].aws_location.access_role #=> String
|
4901
|
+
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
4902
|
+
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
4903
|
+
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
4904
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
4905
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
4906
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
4907
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.authorization_code #=> String
|
4908
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.redirect_uri #=> String
|
4909
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.a_ws_managed_client_application_reference #=> String
|
4910
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
|
4911
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.access_token #=> String
|
4912
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.jwt_token #=> String
|
4913
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.refresh_token #=> String
|
4914
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.user_managed_client_application_client_secret #=> String
|
4915
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
|
4916
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url #=> String
|
4917
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
|
4918
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParametersMapKeyString"] #=> String
|
4919
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.secret_arn #=> String
|
4920
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments #=> Array
|
4921
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
4922
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
4923
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
4924
|
+
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
4925
|
+
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
4926
|
+
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
4927
|
+
# resp.physical_endpoints[0].glue_connection.description #=> String
|
4928
|
+
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
4929
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_by #=> String
|
4930
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_time #=> Time
|
4931
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
4932
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
4933
|
+
# resp.physical_endpoints[0].glue_connection.name #=> String
|
4934
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.availability_zone #=> String
|
4935
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list #=> Array
|
4936
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list[0] #=> String
|
4937
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id #=> String
|
4938
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list #=> Array
|
4939
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list[0] #=> String
|
4940
|
+
# resp.physical_endpoints[0].glue_connection.python_properties #=> Hash
|
4941
|
+
# resp.physical_endpoints[0].glue_connection.python_properties["PropertyMapKeyString"] #=> String
|
4942
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties #=> Hash
|
4943
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties["PropertyMapKeyString"] #=> String
|
4944
|
+
# resp.physical_endpoints[0].glue_connection.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
4945
|
+
# resp.physical_endpoints[0].glue_connection.status_reason #=> String
|
4946
|
+
# resp.physical_endpoints[0].glue_connection_name #=> String
|
4947
|
+
# resp.physical_endpoints[0].host #=> String
|
4948
|
+
# resp.physical_endpoints[0].port #=> Integer
|
4949
|
+
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
4950
|
+
# resp.physical_endpoints[0].stage #=> String
|
4951
|
+
# resp.project_id #=> String
|
4952
|
+
# resp.props.athena_properties.workgroup_name #=> String
|
4953
|
+
# resp.props.glue_properties.error_message #=> String
|
4954
|
+
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
4955
|
+
# resp.props.hyper_pod_properties.cluster_arn #=> String
|
4956
|
+
# resp.props.hyper_pod_properties.cluster_name #=> String
|
4957
|
+
# resp.props.hyper_pod_properties.orchestrator #=> String, one of "EKS", "SLURM"
|
4958
|
+
# resp.props.iam_properties.environment_id #=> String
|
4959
|
+
# resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
4960
|
+
# resp.props.redshift_properties.credentials.secret_arn #=> String
|
4961
|
+
# resp.props.redshift_properties.credentials.username_password.password #=> String
|
4962
|
+
# resp.props.redshift_properties.credentials.username_password.username #=> String
|
4963
|
+
# resp.props.redshift_properties.database_name #=> String
|
4964
|
+
# resp.props.redshift_properties.is_provisioned_secret #=> Boolean
|
4965
|
+
# resp.props.redshift_properties.jdbc_iam_url #=> String
|
4966
|
+
# resp.props.redshift_properties.jdbc_url #=> String
|
4967
|
+
# resp.props.redshift_properties.lineage_sync.enabled #=> Boolean
|
4968
|
+
# resp.props.redshift_properties.lineage_sync.lineage_job_id #=> String
|
4969
|
+
# resp.props.redshift_properties.lineage_sync.schedule.schedule #=> String
|
4970
|
+
# resp.props.redshift_properties.redshift_temp_dir #=> String
|
4971
|
+
# resp.props.redshift_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
4972
|
+
# resp.props.redshift_properties.storage.cluster_name #=> String
|
4973
|
+
# resp.props.redshift_properties.storage.workgroup_name #=> String
|
4974
|
+
# resp.props.spark_emr_properties.compute_arn #=> String
|
4975
|
+
# resp.props.spark_emr_properties.credentials.password #=> String
|
4976
|
+
# resp.props.spark_emr_properties.credentials.username #=> String
|
4977
|
+
# resp.props.spark_emr_properties.credentials_expiration #=> Time
|
4978
|
+
# resp.props.spark_emr_properties.governance_type #=> String, one of "AWS_MANAGED", "USER_MANAGED"
|
4979
|
+
# resp.props.spark_emr_properties.instance_profile_arn #=> String
|
4980
|
+
# resp.props.spark_emr_properties.java_virtual_env #=> String
|
4981
|
+
# resp.props.spark_emr_properties.livy_endpoint #=> String
|
4982
|
+
# resp.props.spark_emr_properties.log_uri #=> String
|
4983
|
+
# resp.props.spark_emr_properties.python_virtual_env #=> String
|
4984
|
+
# resp.props.spark_emr_properties.runtime_role #=> String
|
4985
|
+
# resp.props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
4986
|
+
# resp.props.spark_glue_properties.additional_args.connection #=> String
|
4987
|
+
# resp.props.spark_glue_properties.glue_connection_name #=> String
|
4988
|
+
# resp.props.spark_glue_properties.glue_version #=> String
|
4989
|
+
# resp.props.spark_glue_properties.idle_timeout #=> Integer
|
4990
|
+
# resp.props.spark_glue_properties.java_virtual_env #=> String
|
4991
|
+
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
4992
|
+
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
4993
|
+
# resp.props.spark_glue_properties.worker_type #=> String
|
4994
|
+
# resp.type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
4995
|
+
#
|
4996
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetConnection AWS API Documentation
|
4997
|
+
#
|
4998
|
+
# @overload get_connection(params = {})
|
4999
|
+
# @param [Hash] params ({})
|
5000
|
+
def get_connection(params = {}, options = {})
|
5001
|
+
req = build_request(:get_connection, params)
|
5002
|
+
req.send_request(options)
|
5003
|
+
end
|
5004
|
+
|
4300
5005
|
# Gets the data product.
|
4301
5006
|
#
|
4302
5007
|
# @option params [required, String] :domain_identifier
|
@@ -4381,6 +5086,7 @@ module Aws::DataZone
|
|
4381
5086
|
#
|
4382
5087
|
# * {Types::GetDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
4383
5088
|
# * {Types::GetDataSourceOutput#configuration #configuration} => Types::DataSourceConfigurationOutput
|
5089
|
+
# * {Types::GetDataSourceOutput#connection_id #connection_id} => String
|
4384
5090
|
# * {Types::GetDataSourceOutput#created_at #created_at} => Time
|
4385
5091
|
# * {Types::GetDataSourceOutput#description #description} => String
|
4386
5092
|
# * {Types::GetDataSourceOutput#domain_id #domain_id} => String
|
@@ -4418,6 +5124,7 @@ module Aws::DataZone
|
|
4418
5124
|
# resp.asset_forms_output[0].type_revision #=> String
|
4419
5125
|
# resp.configuration.glue_run_configuration.account_id #=> String
|
4420
5126
|
# resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
|
5127
|
+
# resp.configuration.glue_run_configuration.catalog_name #=> String
|
4421
5128
|
# resp.configuration.glue_run_configuration.data_access_role #=> String
|
4422
5129
|
# resp.configuration.glue_run_configuration.region #=> String
|
4423
5130
|
# resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
|
@@ -4438,6 +5145,12 @@ module Aws::DataZone
|
|
4438
5145
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].expression #=> String
|
4439
5146
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].type #=> String, one of "INCLUDE", "EXCLUDE"
|
4440
5147
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].schema_name #=> String
|
5148
|
+
# resp.configuration.sage_maker_run_configuration.account_id #=> String
|
5149
|
+
# resp.configuration.sage_maker_run_configuration.region #=> String
|
5150
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets #=> Hash
|
5151
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"] #=> Array
|
5152
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"][0] #=> String
|
5153
|
+
# resp.connection_id #=> String
|
4441
5154
|
# resp.created_at #=> Time
|
4442
5155
|
# resp.description #=> String
|
4443
5156
|
# resp.domain_id #=> String
|
@@ -4496,6 +5209,7 @@ module Aws::DataZone
|
|
4496
5209
|
# * {Types::GetDataSourceRunOutput#domain_id #domain_id} => String
|
4497
5210
|
# * {Types::GetDataSourceRunOutput#error_message #error_message} => Types::DataSourceErrorMessage
|
4498
5211
|
# * {Types::GetDataSourceRunOutput#id #id} => String
|
5212
|
+
# * {Types::GetDataSourceRunOutput#lineage_summary #lineage_summary} => Types::DataSourceRunLineageSummary
|
4499
5213
|
# * {Types::GetDataSourceRunOutput#project_id #project_id} => String
|
4500
5214
|
# * {Types::GetDataSourceRunOutput#run_statistics_for_assets #run_statistics_for_assets} => Types::RunStatisticsForAssets
|
4501
5215
|
# * {Types::GetDataSourceRunOutput#started_at #started_at} => Time
|
@@ -4520,6 +5234,7 @@ module Aws::DataZone
|
|
4520
5234
|
# resp.error_message.error_detail #=> String
|
4521
5235
|
# resp.error_message.error_type #=> String, one of "ACCESS_DENIED_EXCEPTION", "CONFLICT_EXCEPTION", "INTERNAL_SERVER_EXCEPTION", "RESOURCE_NOT_FOUND_EXCEPTION", "SERVICE_QUOTA_EXCEEDED_EXCEPTION", "THROTTLING_EXCEPTION", "VALIDATION_EXCEPTION"
|
4522
5236
|
# resp.id #=> String
|
5237
|
+
# resp.lineage_summary.import_status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED", "PARTIALLY_SUCCEEDED"
|
4523
5238
|
# resp.project_id #=> String
|
4524
5239
|
# resp.run_statistics_for_assets.added #=> Integer
|
4525
5240
|
# resp.run_statistics_for_assets.failed #=> Integer
|
@@ -4552,12 +5267,14 @@ module Aws::DataZone
|
|
4552
5267
|
# * {Types::GetDomainOutput#created_at #created_at} => Time
|
4553
5268
|
# * {Types::GetDomainOutput#description #description} => String
|
4554
5269
|
# * {Types::GetDomainOutput#domain_execution_role #domain_execution_role} => String
|
5270
|
+
# * {Types::GetDomainOutput#domain_version #domain_version} => String
|
4555
5271
|
# * {Types::GetDomainOutput#id #id} => String
|
4556
5272
|
# * {Types::GetDomainOutput#kms_key_identifier #kms_key_identifier} => String
|
4557
5273
|
# * {Types::GetDomainOutput#last_updated_at #last_updated_at} => Time
|
4558
5274
|
# * {Types::GetDomainOutput#name #name} => String
|
4559
5275
|
# * {Types::GetDomainOutput#portal_url #portal_url} => String
|
4560
5276
|
# * {Types::GetDomainOutput#root_domain_unit_id #root_domain_unit_id} => String
|
5277
|
+
# * {Types::GetDomainOutput#service_role #service_role} => String
|
4561
5278
|
# * {Types::GetDomainOutput#single_sign_on #single_sign_on} => Types::SingleSignOn
|
4562
5279
|
# * {Types::GetDomainOutput#status #status} => String
|
4563
5280
|
# * {Types::GetDomainOutput#tags #tags} => Hash<String,String>
|
@@ -4574,12 +5291,14 @@ module Aws::DataZone
|
|
4574
5291
|
# resp.created_at #=> Time
|
4575
5292
|
# resp.description #=> String
|
4576
5293
|
# resp.domain_execution_role #=> String
|
5294
|
+
# resp.domain_version #=> String, one of "V1", "V2"
|
4577
5295
|
# resp.id #=> String
|
4578
5296
|
# resp.kms_key_identifier #=> String
|
4579
5297
|
# resp.last_updated_at #=> Time
|
4580
5298
|
# resp.name #=> String
|
4581
5299
|
# resp.portal_url #=> String
|
4582
5300
|
# resp.root_domain_unit_id #=> String
|
5301
|
+
# resp.service_role #=> String
|
4583
5302
|
# resp.single_sign_on.type #=> String, one of "IAM_IDC", "DISABLED"
|
4584
5303
|
# resp.single_sign_on.user_assignment #=> String, one of "AUTOMATIC", "MANUAL"
|
4585
5304
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "CREATION_FAILED", "DELETING", "DELETED", "DELETION_FAILED"
|
@@ -4862,6 +5581,7 @@ module Aws::DataZone
|
|
4862
5581
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#domain_id #domain_id} => String
|
4863
5582
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#enabled_regions #enabled_regions} => Array<String>
|
4864
5583
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#environment_blueprint_id #environment_blueprint_id} => String
|
5584
|
+
# * {Types::GetEnvironmentBlueprintConfigurationOutput#environment_role_permission_boundary #environment_role_permission_boundary} => String
|
4865
5585
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#manage_access_role_arn #manage_access_role_arn} => String
|
4866
5586
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#provisioning_configurations #provisioning_configurations} => Array<Types::ProvisioningConfiguration>
|
4867
5587
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#provisioning_role_arn #provisioning_role_arn} => String
|
@@ -4882,6 +5602,7 @@ module Aws::DataZone
|
|
4882
5602
|
# resp.enabled_regions #=> Array
|
4883
5603
|
# resp.enabled_regions[0] #=> String
|
4884
5604
|
# resp.environment_blueprint_id #=> String
|
5605
|
+
# resp.environment_role_permission_boundary #=> String
|
4885
5606
|
# resp.manage_access_role_arn #=> String
|
4886
5607
|
# resp.provisioning_configurations #=> Array
|
4887
5608
|
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
|
@@ -5242,6 +5963,109 @@ module Aws::DataZone
|
|
5242
5963
|
req.send_request(options)
|
5243
5964
|
end
|
5244
5965
|
|
5966
|
+
# The details of the job run.
|
5967
|
+
#
|
5968
|
+
# @option params [required, String] :domain_identifier
|
5969
|
+
# The ID of the domain.
|
5970
|
+
#
|
5971
|
+
# @option params [required, String] :identifier
|
5972
|
+
# The ID of the job run.
|
5973
|
+
#
|
5974
|
+
# @return [Types::GetJobRunOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5975
|
+
#
|
5976
|
+
# * {Types::GetJobRunOutput#created_at #created_at} => Time
|
5977
|
+
# * {Types::GetJobRunOutput#created_by #created_by} => String
|
5978
|
+
# * {Types::GetJobRunOutput#details #details} => Types::JobRunDetails
|
5979
|
+
# * {Types::GetJobRunOutput#domain_id #domain_id} => String
|
5980
|
+
# * {Types::GetJobRunOutput#end_time #end_time} => Time
|
5981
|
+
# * {Types::GetJobRunOutput#error #error} => Types::JobRunError
|
5982
|
+
# * {Types::GetJobRunOutput#id #id} => String
|
5983
|
+
# * {Types::GetJobRunOutput#job_id #job_id} => String
|
5984
|
+
# * {Types::GetJobRunOutput#job_type #job_type} => String
|
5985
|
+
# * {Types::GetJobRunOutput#run_mode #run_mode} => String
|
5986
|
+
# * {Types::GetJobRunOutput#start_time #start_time} => Time
|
5987
|
+
# * {Types::GetJobRunOutput#status #status} => String
|
5988
|
+
#
|
5989
|
+
# @example Request syntax with placeholder values
|
5990
|
+
#
|
5991
|
+
# resp = client.get_job_run({
|
5992
|
+
# domain_identifier: "DomainId", # required
|
5993
|
+
# identifier: "RunIdentifier", # required
|
5994
|
+
# })
|
5995
|
+
#
|
5996
|
+
# @example Response structure
|
5997
|
+
#
|
5998
|
+
# resp.created_at #=> Time
|
5999
|
+
# resp.created_by #=> String
|
6000
|
+
# resp.details.lineage_run_details.sql_query_run_details.error_messages #=> Array
|
6001
|
+
# resp.details.lineage_run_details.sql_query_run_details.error_messages[0] #=> String
|
6002
|
+
# resp.details.lineage_run_details.sql_query_run_details.num_queries_failed #=> Integer
|
6003
|
+
# resp.details.lineage_run_details.sql_query_run_details.query_end_time #=> Time
|
6004
|
+
# resp.details.lineage_run_details.sql_query_run_details.query_start_time #=> Time
|
6005
|
+
# resp.details.lineage_run_details.sql_query_run_details.total_queries_processed #=> Integer
|
6006
|
+
# resp.domain_id #=> String
|
6007
|
+
# resp.end_time #=> Time
|
6008
|
+
# resp.error.message #=> String
|
6009
|
+
# resp.id #=> String
|
6010
|
+
# resp.job_id #=> String
|
6011
|
+
# resp.job_type #=> String, one of "LINEAGE"
|
6012
|
+
# resp.run_mode #=> String, one of "SCHEDULED", "ON_DEMAND"
|
6013
|
+
# resp.start_time #=> Time
|
6014
|
+
# resp.status #=> String, one of "SCHEDULED", "IN_PROGRESS", "SUCCESS", "PARTIALLY_SUCCEEDED", "FAILED", "ABORTED", "TIMED_OUT", "CANCELED"
|
6015
|
+
#
|
6016
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetJobRun AWS API Documentation
|
6017
|
+
#
|
6018
|
+
# @overload get_job_run(params = {})
|
6019
|
+
# @param [Hash] params ({})
|
6020
|
+
def get_job_run(params = {}, options = {})
|
6021
|
+
req = build_request(:get_job_run, params)
|
6022
|
+
req.send_request(options)
|
6023
|
+
end
|
6024
|
+
|
6025
|
+
# Describes the lineage event.
|
6026
|
+
#
|
6027
|
+
# @option params [required, String] :domain_identifier
|
6028
|
+
# The ID of the domain.
|
6029
|
+
#
|
6030
|
+
# @option params [required, String] :identifier
|
6031
|
+
# The ID of the lineage event.
|
6032
|
+
#
|
6033
|
+
# @return [Types::GetLineageEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6034
|
+
#
|
6035
|
+
# * {Types::GetLineageEventOutput#created_at #created_at} => Time
|
6036
|
+
# * {Types::GetLineageEventOutput#created_by #created_by} => String
|
6037
|
+
# * {Types::GetLineageEventOutput#domain_id #domain_id} => String
|
6038
|
+
# * {Types::GetLineageEventOutput#event #event} => String
|
6039
|
+
# * {Types::GetLineageEventOutput#event_time #event_time} => Time
|
6040
|
+
# * {Types::GetLineageEventOutput#id #id} => String
|
6041
|
+
# * {Types::GetLineageEventOutput#processing_status #processing_status} => String
|
6042
|
+
#
|
6043
|
+
# @example Request syntax with placeholder values
|
6044
|
+
#
|
6045
|
+
# resp = client.get_lineage_event({
|
6046
|
+
# domain_identifier: "DomainId", # required
|
6047
|
+
# identifier: "LineageEventIdentifier", # required
|
6048
|
+
# })
|
6049
|
+
#
|
6050
|
+
# @example Response structure
|
6051
|
+
#
|
6052
|
+
# resp.created_at #=> Time
|
6053
|
+
# resp.created_by #=> String
|
6054
|
+
# resp.domain_id #=> String
|
6055
|
+
# resp.event #=> String
|
6056
|
+
# resp.event_time #=> Time
|
6057
|
+
# resp.id #=> String
|
6058
|
+
# resp.processing_status #=> String, one of "REQUESTED", "PROCESSING", "SUCCESS", "FAILED"
|
6059
|
+
#
|
6060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageEvent AWS API Documentation
|
6061
|
+
#
|
6062
|
+
# @overload get_lineage_event(params = {})
|
6063
|
+
# @param [Hash] params ({})
|
6064
|
+
def get_lineage_event(params = {}, options = {})
|
6065
|
+
req = build_request(:get_lineage_event, params)
|
6066
|
+
req.send_request(options)
|
6067
|
+
end
|
6068
|
+
|
5245
6069
|
# Gets the data lineage node.
|
5246
6070
|
#
|
5247
6071
|
# @option params [required, String] :domain_identifier
|
@@ -5471,12 +6295,15 @@ module Aws::DataZone
|
|
5471
6295
|
# * {Types::GetProjectOutput#description #description} => String
|
5472
6296
|
# * {Types::GetProjectOutput#domain_id #domain_id} => String
|
5473
6297
|
# * {Types::GetProjectOutput#domain_unit_id #domain_unit_id} => String
|
6298
|
+
# * {Types::GetProjectOutput#environment_deployment_details #environment_deployment_details} => Types::EnvironmentDeploymentDetails
|
5474
6299
|
# * {Types::GetProjectOutput#failure_reasons #failure_reasons} => Array<Types::ProjectDeletionError>
|
5475
6300
|
# * {Types::GetProjectOutput#glossary_terms #glossary_terms} => Array<String>
|
5476
6301
|
# * {Types::GetProjectOutput#id #id} => String
|
5477
6302
|
# * {Types::GetProjectOutput#last_updated_at #last_updated_at} => Time
|
5478
6303
|
# * {Types::GetProjectOutput#name #name} => String
|
6304
|
+
# * {Types::GetProjectOutput#project_profile_id #project_profile_id} => String
|
5479
6305
|
# * {Types::GetProjectOutput#project_status #project_status} => String
|
6306
|
+
# * {Types::GetProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
5480
6307
|
#
|
5481
6308
|
# @example Request syntax with placeholder values
|
5482
6309
|
#
|
@@ -5492,6 +6319,11 @@ module Aws::DataZone
|
|
5492
6319
|
# resp.description #=> String
|
5493
6320
|
# resp.domain_id #=> String
|
5494
6321
|
# resp.domain_unit_id #=> String
|
6322
|
+
# resp.environment_deployment_details.environment_failure_reasons #=> Hash
|
6323
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"] #=> Array
|
6324
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].code #=> String
|
6325
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].message #=> String
|
6326
|
+
# resp.environment_deployment_details.overall_deployment_status #=> String, one of "PENDING_DEPLOYMENT", "IN_PROGRESS", "SUCCESSFUL", "FAILED_VALIDATION", "FAILED_DEPLOYMENT"
|
5495
6327
|
# resp.failure_reasons #=> Array
|
5496
6328
|
# resp.failure_reasons[0].code #=> String
|
5497
6329
|
# resp.failure_reasons[0].message #=> String
|
@@ -5500,7 +6332,13 @@ module Aws::DataZone
|
|
5500
6332
|
# resp.id #=> String
|
5501
6333
|
# resp.last_updated_at #=> Time
|
5502
6334
|
# resp.name #=> String
|
6335
|
+
# resp.project_profile_id #=> String
|
5503
6336
|
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED"
|
6337
|
+
# resp.user_parameters #=> Array
|
6338
|
+
# resp.user_parameters[0].environment_configuration_name #=> String
|
6339
|
+
# resp.user_parameters[0].environment_parameters #=> Array
|
6340
|
+
# resp.user_parameters[0].environment_parameters[0].name #=> String
|
6341
|
+
# resp.user_parameters[0].environment_parameters[0].value #=> String
|
5504
6342
|
#
|
5505
6343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProject AWS API Documentation
|
5506
6344
|
#
|
@@ -5511,13 +6349,82 @@ module Aws::DataZone
|
|
5511
6349
|
req.send_request(options)
|
5512
6350
|
end
|
5513
6351
|
|
5514
|
-
#
|
5515
|
-
#
|
5516
|
-
#
|
5517
|
-
#
|
5518
|
-
#
|
5519
|
-
#
|
5520
|
-
#
|
6352
|
+
# The details of the project profile.
|
6353
|
+
#
|
6354
|
+
# @option params [required, String] :domain_identifier
|
6355
|
+
# The ID of the domain.
|
6356
|
+
#
|
6357
|
+
# @option params [required, String] :identifier
|
6358
|
+
# The ID of the project profile.
|
6359
|
+
#
|
6360
|
+
# @return [Types::GetProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6361
|
+
#
|
6362
|
+
# * {Types::GetProjectProfileOutput#created_at #created_at} => Time
|
6363
|
+
# * {Types::GetProjectProfileOutput#created_by #created_by} => String
|
6364
|
+
# * {Types::GetProjectProfileOutput#description #description} => String
|
6365
|
+
# * {Types::GetProjectProfileOutput#domain_id #domain_id} => String
|
6366
|
+
# * {Types::GetProjectProfileOutput#domain_unit_id #domain_unit_id} => String
|
6367
|
+
# * {Types::GetProjectProfileOutput#environment_configurations #environment_configurations} => Array<Types::EnvironmentConfiguration>
|
6368
|
+
# * {Types::GetProjectProfileOutput#id #id} => String
|
6369
|
+
# * {Types::GetProjectProfileOutput#last_updated_at #last_updated_at} => Time
|
6370
|
+
# * {Types::GetProjectProfileOutput#name #name} => String
|
6371
|
+
# * {Types::GetProjectProfileOutput#status #status} => String
|
6372
|
+
#
|
6373
|
+
# @example Request syntax with placeholder values
|
6374
|
+
#
|
6375
|
+
# resp = client.get_project_profile({
|
6376
|
+
# domain_identifier: "DomainId", # required
|
6377
|
+
# identifier: "ProjectProfileId", # required
|
6378
|
+
# })
|
6379
|
+
#
|
6380
|
+
# @example Response structure
|
6381
|
+
#
|
6382
|
+
# resp.created_at #=> Time
|
6383
|
+
# resp.created_by #=> String
|
6384
|
+
# resp.description #=> String
|
6385
|
+
# resp.domain_id #=> String
|
6386
|
+
# resp.domain_unit_id #=> String
|
6387
|
+
# resp.environment_configurations #=> Array
|
6388
|
+
# resp.environment_configurations[0].aws_account.aws_account_id #=> String
|
6389
|
+
# resp.environment_configurations[0].aws_account.aws_account_id_path #=> String
|
6390
|
+
# resp.environment_configurations[0].aws_region.region_name #=> String
|
6391
|
+
# resp.environment_configurations[0].aws_region.region_name_path #=> String
|
6392
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides #=> Array
|
6393
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].is_editable #=> Boolean
|
6394
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].name #=> String
|
6395
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].value #=> String
|
6396
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters #=> Array
|
6397
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].is_editable #=> Boolean
|
6398
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].name #=> String
|
6399
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].value #=> String
|
6400
|
+
# resp.environment_configurations[0].configuration_parameters.ssm_path #=> String
|
6401
|
+
# resp.environment_configurations[0].deployment_mode #=> String, one of "ON_CREATE", "ON_DEMAND"
|
6402
|
+
# resp.environment_configurations[0].deployment_order #=> Integer
|
6403
|
+
# resp.environment_configurations[0].description #=> String
|
6404
|
+
# resp.environment_configurations[0].environment_blueprint_id #=> String
|
6405
|
+
# resp.environment_configurations[0].id #=> String
|
6406
|
+
# resp.environment_configurations[0].name #=> String
|
6407
|
+
# resp.id #=> String
|
6408
|
+
# resp.last_updated_at #=> Time
|
6409
|
+
# resp.name #=> String
|
6410
|
+
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
6411
|
+
#
|
6412
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectProfile AWS API Documentation
|
6413
|
+
#
|
6414
|
+
# @overload get_project_profile(params = {})
|
6415
|
+
# @param [Hash] params ({})
|
6416
|
+
def get_project_profile(params = {}, options = {})
|
6417
|
+
req = build_request(:get_project_profile, params)
|
6418
|
+
req.send_request(options)
|
6419
|
+
end
|
6420
|
+
|
6421
|
+
# Gets the details of a rule in Amazon DataZone. A rule is a formal
|
6422
|
+
# agreement that enforces specific requirements across user workflows
|
6423
|
+
# (e.g., publishing assets to the catalog, requesting subscriptions,
|
6424
|
+
# creating projects) within the Amazon DataZone data portal. These rules
|
6425
|
+
# help maintain consistency, ensure compliance, and uphold governance
|
6426
|
+
# standards in data management processes. For instance, a metadata
|
6427
|
+
# enforcement rule can specify the required information for creating a
|
5521
6428
|
# subscription request or publishing a data asset to the catalog,
|
5522
6429
|
# ensuring alignment with organizational standards.
|
5523
6430
|
#
|
@@ -6134,6 +7041,182 @@ module Aws::DataZone
|
|
6134
7041
|
req.send_request(options)
|
6135
7042
|
end
|
6136
7043
|
|
7044
|
+
# Lists connections. In Amazon DataZone, a connection enables you to
|
7045
|
+
# connect your resources (domains, projects, and environments) to
|
7046
|
+
# external resources and services.
|
7047
|
+
#
|
7048
|
+
# @option params [required, String] :domain_identifier
|
7049
|
+
# The ID of the domain where you want to list connections.
|
7050
|
+
#
|
7051
|
+
# @option params [String] :environment_identifier
|
7052
|
+
# The ID of the environment where you want to list connections.
|
7053
|
+
#
|
7054
|
+
# @option params [Integer] :max_results
|
7055
|
+
# The maximum number of connections to return in a single call to
|
7056
|
+
# ListConnections. When the number of connections to be listed is
|
7057
|
+
# greater than the value of MaxResults, the response contains a
|
7058
|
+
# NextToken value that you can use in a subsequent call to
|
7059
|
+
# ListConnections to list the next set of connections.
|
7060
|
+
#
|
7061
|
+
# @option params [String] :name
|
7062
|
+
# The name of the connection.
|
7063
|
+
#
|
7064
|
+
# @option params [String] :next_token
|
7065
|
+
# When the number of connections is greater than the default value for
|
7066
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
7067
|
+
# MaxResults that is less than the number of connections, the response
|
7068
|
+
# includes a pagination token named NextToken. You can specify this
|
7069
|
+
# NextToken value in a subsequent call to ListConnections to list the
|
7070
|
+
# next set of connections.
|
7071
|
+
#
|
7072
|
+
# @option params [required, String] :project_identifier
|
7073
|
+
# The ID of the project where you want to list connections.
|
7074
|
+
#
|
7075
|
+
# @option params [String] :sort_by
|
7076
|
+
# Specifies how you want to sort the listed connections.
|
7077
|
+
#
|
7078
|
+
# @option params [String] :sort_order
|
7079
|
+
# Specifies the sort order for the listed connections.
|
7080
|
+
#
|
7081
|
+
# @option params [String] :type
|
7082
|
+
# The type of connection.
|
7083
|
+
#
|
7084
|
+
# @return [Types::ListConnectionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7085
|
+
#
|
7086
|
+
# * {Types::ListConnectionsOutput#items #items} => Array<Types::ConnectionSummary>
|
7087
|
+
# * {Types::ListConnectionsOutput#next_token #next_token} => String
|
7088
|
+
#
|
7089
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7090
|
+
#
|
7091
|
+
# @example Request syntax with placeholder values
|
7092
|
+
#
|
7093
|
+
# resp = client.list_connections({
|
7094
|
+
# domain_identifier: "DomainId", # required
|
7095
|
+
# environment_identifier: "EnvironmentId",
|
7096
|
+
# max_results: 1,
|
7097
|
+
# name: "ConnectionName",
|
7098
|
+
# next_token: "PaginationToken",
|
7099
|
+
# project_identifier: "ProjectId", # required
|
7100
|
+
# sort_by: "NAME", # accepts NAME
|
7101
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
7102
|
+
# type: "ATHENA", # accepts ATHENA, BIGQUERY, DATABRICKS, DOCUMENTDB, DYNAMODB, HYPERPOD, IAM, MYSQL, OPENSEARCH, ORACLE, POSTGRESQL, REDSHIFT, SAPHANA, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, VERTICA, WORKFLOWS_MWAA
|
7103
|
+
# })
|
7104
|
+
#
|
7105
|
+
# @example Response structure
|
7106
|
+
#
|
7107
|
+
# resp.items #=> Array
|
7108
|
+
# resp.items[0].connection_id #=> String
|
7109
|
+
# resp.items[0].domain_id #=> String
|
7110
|
+
# resp.items[0].domain_unit_id #=> String
|
7111
|
+
# resp.items[0].environment_id #=> String
|
7112
|
+
# resp.items[0].name #=> String
|
7113
|
+
# resp.items[0].physical_endpoints #=> Array
|
7114
|
+
# resp.items[0].physical_endpoints[0].aws_location.access_role #=> String
|
7115
|
+
# resp.items[0].physical_endpoints[0].aws_location.aws_account_id #=> String
|
7116
|
+
# resp.items[0].physical_endpoints[0].aws_location.aws_region #=> String
|
7117
|
+
# resp.items[0].physical_endpoints[0].aws_location.iam_connection_id #=> String
|
7118
|
+
# resp.items[0].physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
7119
|
+
# resp.items[0].physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
7120
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
7121
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.authorization_code #=> String
|
7122
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.redirect_uri #=> String
|
7123
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.a_ws_managed_client_application_reference #=> String
|
7124
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
|
7125
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.access_token #=> String
|
7126
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.jwt_token #=> String
|
7127
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.refresh_token #=> String
|
7128
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.user_managed_client_application_client_secret #=> String
|
7129
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
|
7130
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url #=> String
|
7131
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
|
7132
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParametersMapKeyString"] #=> String
|
7133
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.secret_arn #=> String
|
7134
|
+
# resp.items[0].physical_endpoints[0].glue_connection.compatible_compute_environments #=> Array
|
7135
|
+
# resp.items[0].physical_endpoints[0].glue_connection.compatible_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
7136
|
+
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
7137
|
+
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
7138
|
+
# resp.items[0].physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
7139
|
+
# resp.items[0].physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
7140
|
+
# resp.items[0].physical_endpoints[0].glue_connection.creation_time #=> Time
|
7141
|
+
# resp.items[0].physical_endpoints[0].glue_connection.description #=> String
|
7142
|
+
# resp.items[0].physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
7143
|
+
# resp.items[0].physical_endpoints[0].glue_connection.last_updated_by #=> String
|
7144
|
+
# resp.items[0].physical_endpoints[0].glue_connection.last_updated_time #=> Time
|
7145
|
+
# resp.items[0].physical_endpoints[0].glue_connection.match_criteria #=> Array
|
7146
|
+
# resp.items[0].physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
7147
|
+
# resp.items[0].physical_endpoints[0].glue_connection.name #=> String
|
7148
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.availability_zone #=> String
|
7149
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list #=> Array
|
7150
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list[0] #=> String
|
7151
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id #=> String
|
7152
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list #=> Array
|
7153
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list[0] #=> String
|
7154
|
+
# resp.items[0].physical_endpoints[0].glue_connection.python_properties #=> Hash
|
7155
|
+
# resp.items[0].physical_endpoints[0].glue_connection.python_properties["PropertyMapKeyString"] #=> String
|
7156
|
+
# resp.items[0].physical_endpoints[0].glue_connection.spark_properties #=> Hash
|
7157
|
+
# resp.items[0].physical_endpoints[0].glue_connection.spark_properties["PropertyMapKeyString"] #=> String
|
7158
|
+
# resp.items[0].physical_endpoints[0].glue_connection.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
7159
|
+
# resp.items[0].physical_endpoints[0].glue_connection.status_reason #=> String
|
7160
|
+
# resp.items[0].physical_endpoints[0].glue_connection_name #=> String
|
7161
|
+
# resp.items[0].physical_endpoints[0].host #=> String
|
7162
|
+
# resp.items[0].physical_endpoints[0].port #=> Integer
|
7163
|
+
# resp.items[0].physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
7164
|
+
# resp.items[0].physical_endpoints[0].stage #=> String
|
7165
|
+
# resp.items[0].project_id #=> String
|
7166
|
+
# resp.items[0].props.athena_properties.workgroup_name #=> String
|
7167
|
+
# resp.items[0].props.glue_properties.error_message #=> String
|
7168
|
+
# resp.items[0].props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
7169
|
+
# resp.items[0].props.hyper_pod_properties.cluster_arn #=> String
|
7170
|
+
# resp.items[0].props.hyper_pod_properties.cluster_name #=> String
|
7171
|
+
# resp.items[0].props.hyper_pod_properties.orchestrator #=> String, one of "EKS", "SLURM"
|
7172
|
+
# resp.items[0].props.iam_properties.environment_id #=> String
|
7173
|
+
# resp.items[0].props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
7174
|
+
# resp.items[0].props.redshift_properties.credentials.secret_arn #=> String
|
7175
|
+
# resp.items[0].props.redshift_properties.credentials.username_password.password #=> String
|
7176
|
+
# resp.items[0].props.redshift_properties.credentials.username_password.username #=> String
|
7177
|
+
# resp.items[0].props.redshift_properties.database_name #=> String
|
7178
|
+
# resp.items[0].props.redshift_properties.is_provisioned_secret #=> Boolean
|
7179
|
+
# resp.items[0].props.redshift_properties.jdbc_iam_url #=> String
|
7180
|
+
# resp.items[0].props.redshift_properties.jdbc_url #=> String
|
7181
|
+
# resp.items[0].props.redshift_properties.lineage_sync.enabled #=> Boolean
|
7182
|
+
# resp.items[0].props.redshift_properties.lineage_sync.lineage_job_id #=> String
|
7183
|
+
# resp.items[0].props.redshift_properties.lineage_sync.schedule.schedule #=> String
|
7184
|
+
# resp.items[0].props.redshift_properties.redshift_temp_dir #=> String
|
7185
|
+
# resp.items[0].props.redshift_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
7186
|
+
# resp.items[0].props.redshift_properties.storage.cluster_name #=> String
|
7187
|
+
# resp.items[0].props.redshift_properties.storage.workgroup_name #=> String
|
7188
|
+
# resp.items[0].props.spark_emr_properties.compute_arn #=> String
|
7189
|
+
# resp.items[0].props.spark_emr_properties.credentials.password #=> String
|
7190
|
+
# resp.items[0].props.spark_emr_properties.credentials.username #=> String
|
7191
|
+
# resp.items[0].props.spark_emr_properties.credentials_expiration #=> Time
|
7192
|
+
# resp.items[0].props.spark_emr_properties.governance_type #=> String, one of "AWS_MANAGED", "USER_MANAGED"
|
7193
|
+
# resp.items[0].props.spark_emr_properties.instance_profile_arn #=> String
|
7194
|
+
# resp.items[0].props.spark_emr_properties.java_virtual_env #=> String
|
7195
|
+
# resp.items[0].props.spark_emr_properties.livy_endpoint #=> String
|
7196
|
+
# resp.items[0].props.spark_emr_properties.log_uri #=> String
|
7197
|
+
# resp.items[0].props.spark_emr_properties.python_virtual_env #=> String
|
7198
|
+
# resp.items[0].props.spark_emr_properties.runtime_role #=> String
|
7199
|
+
# resp.items[0].props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
7200
|
+
# resp.items[0].props.spark_glue_properties.additional_args.connection #=> String
|
7201
|
+
# resp.items[0].props.spark_glue_properties.glue_connection_name #=> String
|
7202
|
+
# resp.items[0].props.spark_glue_properties.glue_version #=> String
|
7203
|
+
# resp.items[0].props.spark_glue_properties.idle_timeout #=> Integer
|
7204
|
+
# resp.items[0].props.spark_glue_properties.java_virtual_env #=> String
|
7205
|
+
# resp.items[0].props.spark_glue_properties.number_of_workers #=> Integer
|
7206
|
+
# resp.items[0].props.spark_glue_properties.python_virtual_env #=> String
|
7207
|
+
# resp.items[0].props.spark_glue_properties.worker_type #=> String
|
7208
|
+
# resp.items[0].type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
7209
|
+
# resp.next_token #=> String
|
7210
|
+
#
|
7211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListConnections AWS API Documentation
|
7212
|
+
#
|
7213
|
+
# @overload list_connections(params = {})
|
7214
|
+
# @param [Hash] params ({})
|
7215
|
+
def list_connections(params = {}, options = {})
|
7216
|
+
req = build_request(:list_connections, params)
|
7217
|
+
req.send_request(options)
|
7218
|
+
end
|
7219
|
+
|
6137
7220
|
# Lists data product revisions.
|
6138
7221
|
#
|
6139
7222
|
# @option params [required, String] :domain_identifier
|
@@ -6249,6 +7332,9 @@ module Aws::DataZone
|
|
6249
7332
|
# resp.items[0].database #=> String
|
6250
7333
|
# resp.items[0].error_message.error_detail #=> String
|
6251
7334
|
# resp.items[0].error_message.error_type #=> String, one of "ACCESS_DENIED_EXCEPTION", "CONFLICT_EXCEPTION", "INTERNAL_SERVER_EXCEPTION", "RESOURCE_NOT_FOUND_EXCEPTION", "SERVICE_QUOTA_EXCEEDED_EXCEPTION", "THROTTLING_EXCEPTION", "VALIDATION_EXCEPTION"
|
7335
|
+
# resp.items[0].lineage_summary.error_message #=> String
|
7336
|
+
# resp.items[0].lineage_summary.event_id #=> String
|
7337
|
+
# resp.items[0].lineage_summary.event_status #=> String, one of "REQUESTED", "PROCESSING", "SUCCESS", "FAILED"
|
6252
7338
|
# resp.items[0].project_id #=> String
|
6253
7339
|
# resp.items[0].technical_description #=> String
|
6254
7340
|
# resp.items[0].technical_name #=> String
|
@@ -6316,6 +7402,7 @@ module Aws::DataZone
|
|
6316
7402
|
# resp.items[0].error_message.error_detail #=> String
|
6317
7403
|
# resp.items[0].error_message.error_type #=> String, one of "ACCESS_DENIED_EXCEPTION", "CONFLICT_EXCEPTION", "INTERNAL_SERVER_EXCEPTION", "RESOURCE_NOT_FOUND_EXCEPTION", "SERVICE_QUOTA_EXCEEDED_EXCEPTION", "THROTTLING_EXCEPTION", "VALIDATION_EXCEPTION"
|
6318
7404
|
# resp.items[0].id #=> String
|
7405
|
+
# resp.items[0].lineage_summary.import_status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED", "PARTIALLY_SUCCEEDED"
|
6319
7406
|
# resp.items[0].project_id #=> String
|
6320
7407
|
# resp.items[0].run_statistics_for_assets.added #=> Integer
|
6321
7408
|
# resp.items[0].run_statistics_for_assets.failed #=> Integer
|
@@ -6340,6 +7427,9 @@ module Aws::DataZone
|
|
6340
7427
|
|
6341
7428
|
# Lists data sources in Amazon DataZone.
|
6342
7429
|
#
|
7430
|
+
# @option params [String] :connection_identifier
|
7431
|
+
# The ID of the connection.
|
7432
|
+
#
|
6343
7433
|
# @option params [required, String] :domain_identifier
|
6344
7434
|
# The identifier of the Amazon DataZone domain in which to list the data
|
6345
7435
|
# sources.
|
@@ -6384,6 +7474,7 @@ module Aws::DataZone
|
|
6384
7474
|
# @example Request syntax with placeholder values
|
6385
7475
|
#
|
6386
7476
|
# resp = client.list_data_sources({
|
7477
|
+
# connection_identifier: "String",
|
6387
7478
|
# domain_identifier: "DomainId", # required
|
6388
7479
|
# environment_identifier: "String",
|
6389
7480
|
# max_results: 1,
|
@@ -6397,8 +7488,10 @@ module Aws::DataZone
|
|
6397
7488
|
# @example Response structure
|
6398
7489
|
#
|
6399
7490
|
# resp.items #=> Array
|
7491
|
+
# resp.items[0].connection_id #=> String
|
6400
7492
|
# resp.items[0].created_at #=> Time
|
6401
7493
|
# resp.items[0].data_source_id #=> String
|
7494
|
+
# resp.items[0].description #=> String
|
6402
7495
|
# resp.items[0].domain_id #=> String
|
6403
7496
|
# resp.items[0].enable_setting #=> String, one of "ENABLED", "DISABLED"
|
6404
7497
|
# resp.items[0].environment_id #=> String
|
@@ -6521,6 +7614,7 @@ module Aws::DataZone
|
|
6521
7614
|
# resp.items[0].arn #=> String
|
6522
7615
|
# resp.items[0].created_at #=> Time
|
6523
7616
|
# resp.items[0].description #=> String
|
7617
|
+
# resp.items[0].domain_version #=> String, one of "V1", "V2"
|
6524
7618
|
# resp.items[0].id #=> String
|
6525
7619
|
# resp.items[0].last_updated_at #=> Time
|
6526
7620
|
# resp.items[0].managed_account_id #=> String
|
@@ -6702,6 +7796,7 @@ module Aws::DataZone
|
|
6702
7796
|
# resp.items[0].enabled_regions #=> Array
|
6703
7797
|
# resp.items[0].enabled_regions[0] #=> String
|
6704
7798
|
# resp.items[0].environment_blueprint_id #=> String
|
7799
|
+
# resp.items[0].environment_role_permission_boundary #=> String
|
6705
7800
|
# resp.items[0].manage_access_role_arn #=> String
|
6706
7801
|
# resp.items[0].provisioning_configurations #=> Array
|
6707
7802
|
# resp.items[0].provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
|
@@ -6968,6 +8063,159 @@ module Aws::DataZone
|
|
6968
8063
|
req.send_request(options)
|
6969
8064
|
end
|
6970
8065
|
|
8066
|
+
# Lists job runs.
|
8067
|
+
#
|
8068
|
+
# @option params [required, String] :domain_identifier
|
8069
|
+
# The ID of the domain where you want to list job runs.
|
8070
|
+
#
|
8071
|
+
# @option params [required, String] :job_identifier
|
8072
|
+
# The ID of the job run.
|
8073
|
+
#
|
8074
|
+
# @option params [Integer] :max_results
|
8075
|
+
# The maximum number of job runs to return in a single call to
|
8076
|
+
# ListJobRuns. When the number of job runs to be listed is greater than
|
8077
|
+
# the value of MaxResults, the response contains a NextToken value that
|
8078
|
+
# you can use in a subsequent call to ListJobRuns to list the next set
|
8079
|
+
# of job runs.
|
8080
|
+
#
|
8081
|
+
# @option params [String] :next_token
|
8082
|
+
# When the number of job runs is greater than the default value for the
|
8083
|
+
# MaxResults parameter, or if you explicitly specify a value for
|
8084
|
+
# MaxResults that is less than the number of job runs, the response
|
8085
|
+
# includes a pagination token named NextToken. You can specify this
|
8086
|
+
# NextToken value in a subsequent call to ListJobRuns to list the next
|
8087
|
+
# set of job runs.
|
8088
|
+
#
|
8089
|
+
# @option params [String] :sort_order
|
8090
|
+
# Specifies the order in which job runs are to be sorted.
|
8091
|
+
#
|
8092
|
+
# @option params [String] :status
|
8093
|
+
# The status of a job run.
|
8094
|
+
#
|
8095
|
+
# @return [Types::ListJobRunsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8096
|
+
#
|
8097
|
+
# * {Types::ListJobRunsOutput#items #items} => Array<Types::JobRunSummary>
|
8098
|
+
# * {Types::ListJobRunsOutput#next_token #next_token} => String
|
8099
|
+
#
|
8100
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8101
|
+
#
|
8102
|
+
# @example Request syntax with placeholder values
|
8103
|
+
#
|
8104
|
+
# resp = client.list_job_runs({
|
8105
|
+
# domain_identifier: "DomainId", # required
|
8106
|
+
# job_identifier: "ListJobRunsInputJobIdentifierString", # required
|
8107
|
+
# max_results: 1,
|
8108
|
+
# next_token: "PaginationToken",
|
8109
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
8110
|
+
# status: "SCHEDULED", # accepts SCHEDULED, IN_PROGRESS, SUCCESS, PARTIALLY_SUCCEEDED, FAILED, ABORTED, TIMED_OUT, CANCELED
|
8111
|
+
# })
|
8112
|
+
#
|
8113
|
+
# @example Response structure
|
8114
|
+
#
|
8115
|
+
# resp.items #=> Array
|
8116
|
+
# resp.items[0].created_at #=> Time
|
8117
|
+
# resp.items[0].created_by #=> String
|
8118
|
+
# resp.items[0].domain_id #=> String
|
8119
|
+
# resp.items[0].end_time #=> Time
|
8120
|
+
# resp.items[0].error.message #=> String
|
8121
|
+
# resp.items[0].job_id #=> String
|
8122
|
+
# resp.items[0].job_type #=> String, one of "LINEAGE"
|
8123
|
+
# resp.items[0].run_id #=> String
|
8124
|
+
# resp.items[0].run_mode #=> String, one of "SCHEDULED", "ON_DEMAND"
|
8125
|
+
# resp.items[0].start_time #=> Time
|
8126
|
+
# resp.items[0].status #=> String, one of "SCHEDULED", "IN_PROGRESS", "SUCCESS", "PARTIALLY_SUCCEEDED", "FAILED", "ABORTED", "TIMED_OUT", "CANCELED"
|
8127
|
+
# resp.next_token #=> String
|
8128
|
+
#
|
8129
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListJobRuns AWS API Documentation
|
8130
|
+
#
|
8131
|
+
# @overload list_job_runs(params = {})
|
8132
|
+
# @param [Hash] params ({})
|
8133
|
+
def list_job_runs(params = {}, options = {})
|
8134
|
+
req = build_request(:list_job_runs, params)
|
8135
|
+
req.send_request(options)
|
8136
|
+
end
|
8137
|
+
|
8138
|
+
# Lists lineage events.
|
8139
|
+
#
|
8140
|
+
# @option params [required, String] :domain_identifier
|
8141
|
+
# The ID of the domain where you want to list lineage events.
|
8142
|
+
#
|
8143
|
+
# @option params [Integer] :max_results
|
8144
|
+
# The maximum number of lineage events to return in a single call to
|
8145
|
+
# ListLineageEvents. When the number of lineage events to be listed is
|
8146
|
+
# greater than the value of MaxResults, the response contains a
|
8147
|
+
# NextToken value that you can use in a subsequent call to
|
8148
|
+
# ListLineageEvents to list the next set of lineage events.
|
8149
|
+
#
|
8150
|
+
# @option params [String] :next_token
|
8151
|
+
# When the number of lineage events is greater than the default value
|
8152
|
+
# for the MaxResults parameter, or if you explicitly specify a value for
|
8153
|
+
# MaxResults that is less than the number of lineage events, the
|
8154
|
+
# response includes a pagination token named NextToken. You can specify
|
8155
|
+
# this NextToken value in a subsequent call to ListLineageEvents to list
|
8156
|
+
# the next set of lineage events.
|
8157
|
+
#
|
8158
|
+
# @option params [String] :processing_status
|
8159
|
+
# The processing status of a lineage event.
|
8160
|
+
#
|
8161
|
+
# @option params [String] :sort_order
|
8162
|
+
# The sort order of the lineage events.
|
8163
|
+
#
|
8164
|
+
# @option params [Time,DateTime,Date,Integer,String] :timestamp_after
|
8165
|
+
# The after timestamp of a lineage event.
|
8166
|
+
#
|
8167
|
+
# @option params [Time,DateTime,Date,Integer,String] :timestamp_before
|
8168
|
+
# The before timestamp of a lineage event.
|
8169
|
+
#
|
8170
|
+
# @return [Types::ListLineageEventsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8171
|
+
#
|
8172
|
+
# * {Types::ListLineageEventsOutput#items #items} => Array<Types::LineageEventSummary>
|
8173
|
+
# * {Types::ListLineageEventsOutput#next_token #next_token} => String
|
8174
|
+
#
|
8175
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8176
|
+
#
|
8177
|
+
# @example Request syntax with placeholder values
|
8178
|
+
#
|
8179
|
+
# resp = client.list_lineage_events({
|
8180
|
+
# domain_identifier: "DomainId", # required
|
8181
|
+
# max_results: 1,
|
8182
|
+
# next_token: "PaginationToken",
|
8183
|
+
# processing_status: "REQUESTED", # accepts REQUESTED, PROCESSING, SUCCESS, FAILED
|
8184
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
8185
|
+
# timestamp_after: Time.now,
|
8186
|
+
# timestamp_before: Time.now,
|
8187
|
+
# })
|
8188
|
+
#
|
8189
|
+
# @example Response structure
|
8190
|
+
#
|
8191
|
+
# resp.items #=> Array
|
8192
|
+
# resp.items[0].created_at #=> Time
|
8193
|
+
# resp.items[0].created_by #=> String
|
8194
|
+
# resp.items[0].domain_id #=> String
|
8195
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.event_type #=> String, one of "START", "RUNNING", "COMPLETE", "ABORT", "FAIL", "OTHER"
|
8196
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.inputs #=> Array
|
8197
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.inputs[0].name #=> String
|
8198
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.inputs[0].namespace #=> String
|
8199
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.job.name #=> String
|
8200
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.job.namespace #=> String
|
8201
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.outputs #=> Array
|
8202
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.outputs[0].name #=> String
|
8203
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.outputs[0].namespace #=> String
|
8204
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.run_id #=> String
|
8205
|
+
# resp.items[0].event_time #=> Time
|
8206
|
+
# resp.items[0].id #=> String
|
8207
|
+
# resp.items[0].processing_status #=> String, one of "REQUESTED", "PROCESSING", "SUCCESS", "FAILED"
|
8208
|
+
# resp.next_token #=> String
|
8209
|
+
#
|
8210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListLineageEvents AWS API Documentation
|
8211
|
+
#
|
8212
|
+
# @overload list_lineage_events(params = {})
|
8213
|
+
# @param [Hash] params ({})
|
8214
|
+
def list_lineage_events(params = {}, options = {})
|
8215
|
+
req = build_request(:list_lineage_events, params)
|
8216
|
+
req.send_request(options)
|
8217
|
+
end
|
8218
|
+
|
6971
8219
|
# Lists the history of the specified data lineage node.
|
6972
8220
|
#
|
6973
8221
|
# @option params [String] :direction
|
@@ -7253,7 +8501,7 @@ module Aws::DataZone
|
|
7253
8501
|
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE
|
7254
8502
|
# max_results: 1,
|
7255
8503
|
# next_token: "PaginationToken",
|
7256
|
-
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT
|
8504
|
+
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE
|
7257
8505
|
# })
|
7258
8506
|
#
|
7259
8507
|
# @example Response structure
|
@@ -7268,6 +8516,9 @@ module Aws::DataZone
|
|
7268
8516
|
# resp.grant_list[0].detail.create_form_type.include_child_domain_units #=> Boolean
|
7269
8517
|
# resp.grant_list[0].detail.create_glossary.include_child_domain_units #=> Boolean
|
7270
8518
|
# resp.grant_list[0].detail.create_project.include_child_domain_units #=> Boolean
|
8519
|
+
# resp.grant_list[0].detail.create_project_from_project_profile.include_child_domain_units #=> Boolean
|
8520
|
+
# resp.grant_list[0].detail.create_project_from_project_profile.project_profiles #=> Array
|
8521
|
+
# resp.grant_list[0].detail.create_project_from_project_profile.project_profiles[0] #=> String
|
7271
8522
|
# resp.grant_list[0].detail.override_domain_unit_owners.include_child_domain_units #=> Boolean
|
7272
8523
|
# resp.grant_list[0].detail.override_project_owners.include_child_domain_units #=> Boolean
|
7273
8524
|
# resp.grant_list[0].principal.domain_unit.domain_unit_designation #=> String, one of "OWNER"
|
@@ -7354,6 +8605,76 @@ module Aws::DataZone
|
|
7354
8605
|
req.send_request(options)
|
7355
8606
|
end
|
7356
8607
|
|
8608
|
+
# Lists project profiles.
|
8609
|
+
#
|
8610
|
+
# @option params [required, String] :domain_identifier
|
8611
|
+
# The ID of the domain where you want to list project profiles.
|
8612
|
+
#
|
8613
|
+
# @option params [Integer] :max_results
|
8614
|
+
# The maximum number of project profiles to return in a single call to
|
8615
|
+
# ListProjectProfiles. When the number of project profiles to be listed
|
8616
|
+
# is greater than the value of MaxResults, the response contains a
|
8617
|
+
# NextToken value that you can use in a subsequent call to
|
8618
|
+
# ListProjectProfiles to list the next set of project profiles.
|
8619
|
+
#
|
8620
|
+
# @option params [String] :name
|
8621
|
+
# The name of a project profile.
|
8622
|
+
#
|
8623
|
+
# @option params [String] :next_token
|
8624
|
+
# When the number of project profiles is greater than the default value
|
8625
|
+
# for the MaxResults parameter, or if you explicitly specify a value for
|
8626
|
+
# MaxResults that is less than the number of project profiles, the
|
8627
|
+
# response includes a pagination token named NextToken. You can specify
|
8628
|
+
# this NextToken value in a subsequent call to ListProjectProfiles to
|
8629
|
+
# list the next set of project profiles.
|
8630
|
+
#
|
8631
|
+
# @option params [String] :sort_by
|
8632
|
+
# Specifies by what to sort project profiles.
|
8633
|
+
#
|
8634
|
+
# @option params [String] :sort_order
|
8635
|
+
# Specifies the sort order of the project profiles.
|
8636
|
+
#
|
8637
|
+
# @return [Types::ListProjectProfilesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8638
|
+
#
|
8639
|
+
# * {Types::ListProjectProfilesOutput#items #items} => Array<Types::ProjectProfileSummary>
|
8640
|
+
# * {Types::ListProjectProfilesOutput#next_token #next_token} => String
|
8641
|
+
#
|
8642
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8643
|
+
#
|
8644
|
+
# @example Request syntax with placeholder values
|
8645
|
+
#
|
8646
|
+
# resp = client.list_project_profiles({
|
8647
|
+
# domain_identifier: "DomainId", # required
|
8648
|
+
# max_results: 1,
|
8649
|
+
# name: "ProjectProfileName",
|
8650
|
+
# next_token: "PaginationToken",
|
8651
|
+
# sort_by: "NAME", # accepts NAME
|
8652
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
8653
|
+
# })
|
8654
|
+
#
|
8655
|
+
# @example Response structure
|
8656
|
+
#
|
8657
|
+
# resp.items #=> Array
|
8658
|
+
# resp.items[0].created_at #=> Time
|
8659
|
+
# resp.items[0].created_by #=> String
|
8660
|
+
# resp.items[0].description #=> String
|
8661
|
+
# resp.items[0].domain_id #=> String
|
8662
|
+
# resp.items[0].domain_unit_id #=> String
|
8663
|
+
# resp.items[0].id #=> String
|
8664
|
+
# resp.items[0].last_updated_at #=> Time
|
8665
|
+
# resp.items[0].name #=> String
|
8666
|
+
# resp.items[0].status #=> String, one of "ENABLED", "DISABLED"
|
8667
|
+
# resp.next_token #=> String
|
8668
|
+
#
|
8669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListProjectProfiles AWS API Documentation
|
8670
|
+
#
|
8671
|
+
# @overload list_project_profiles(params = {})
|
8672
|
+
# @param [Hash] params ({})
|
8673
|
+
def list_project_profiles(params = {}, options = {})
|
8674
|
+
req = build_request(:list_project_profiles, params)
|
8675
|
+
req.send_request(options)
|
8676
|
+
end
|
8677
|
+
|
7357
8678
|
# Lists Amazon DataZone projects.
|
7358
8679
|
#
|
7359
8680
|
# @option params [required, String] :domain_identifier
|
@@ -8092,7 +9413,10 @@ module Aws::DataZone
|
|
8092
9413
|
# The data lineage event that you want to post. Only open-lineage run
|
8093
9414
|
# event are supported as events.
|
8094
9415
|
#
|
8095
|
-
# @return [
|
9416
|
+
# @return [Types::PostLineageEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9417
|
+
#
|
9418
|
+
# * {Types::PostLineageEventOutput#domain_id #domain_id} => String
|
9419
|
+
# * {Types::PostLineageEventOutput#id #id} => String
|
8096
9420
|
#
|
8097
9421
|
# @example Request syntax with placeholder values
|
8098
9422
|
#
|
@@ -8102,6 +9426,11 @@ module Aws::DataZone
|
|
8102
9426
|
# event: "data", # required
|
8103
9427
|
# })
|
8104
9428
|
#
|
9429
|
+
# @example Response structure
|
9430
|
+
#
|
9431
|
+
# resp.domain_id #=> String
|
9432
|
+
# resp.id #=> String
|
9433
|
+
#
|
8105
9434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostLineageEvent AWS API Documentation
|
8106
9435
|
#
|
8107
9436
|
# @overload post_lineage_event(params = {})
|
@@ -8194,6 +9523,9 @@ module Aws::DataZone
|
|
8194
9523
|
# @option params [required, String] :environment_blueprint_identifier
|
8195
9524
|
# The identifier of the environment blueprint.
|
8196
9525
|
#
|
9526
|
+
# @option params [String] :environment_role_permission_boundary
|
9527
|
+
# The environment role permissions boundary.
|
9528
|
+
#
|
8197
9529
|
# @option params [String] :manage_access_role_arn
|
8198
9530
|
# The ARN of the manage access role.
|
8199
9531
|
#
|
@@ -8212,6 +9544,7 @@ module Aws::DataZone
|
|
8212
9544
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#domain_id #domain_id} => String
|
8213
9545
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#enabled_regions #enabled_regions} => Array<String>
|
8214
9546
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#environment_blueprint_id #environment_blueprint_id} => String
|
9547
|
+
# * {Types::PutEnvironmentBlueprintConfigurationOutput#environment_role_permission_boundary #environment_role_permission_boundary} => String
|
8215
9548
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#manage_access_role_arn #manage_access_role_arn} => String
|
8216
9549
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#provisioning_configurations #provisioning_configurations} => Array<Types::ProvisioningConfiguration>
|
8217
9550
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#provisioning_role_arn #provisioning_role_arn} => String
|
@@ -8224,6 +9557,7 @@ module Aws::DataZone
|
|
8224
9557
|
# domain_identifier: "DomainId", # required
|
8225
9558
|
# enabled_regions: ["RegionName"], # required
|
8226
9559
|
# environment_blueprint_identifier: "EnvironmentBlueprintId", # required
|
9560
|
+
# environment_role_permission_boundary: "PolicyArn",
|
8227
9561
|
# manage_access_role_arn: "RoleArn",
|
8228
9562
|
# provisioning_configurations: [
|
8229
9563
|
# {
|
@@ -8248,6 +9582,7 @@ module Aws::DataZone
|
|
8248
9582
|
# resp.enabled_regions #=> Array
|
8249
9583
|
# resp.enabled_regions[0] #=> String
|
8250
9584
|
# resp.environment_blueprint_id #=> String
|
9585
|
+
# resp.environment_role_permission_boundary #=> String
|
8251
9586
|
# resp.manage_access_role_arn #=> String
|
8252
9587
|
# resp.provisioning_configurations #=> Array
|
8253
9588
|
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
|
@@ -8516,7 +9851,7 @@ module Aws::DataZone
|
|
8516
9851
|
# domain_identifier: "DomainId", # required
|
8517
9852
|
# entity_identifier: "String", # required
|
8518
9853
|
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE
|
8519
|
-
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT
|
9854
|
+
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE
|
8520
9855
|
# principal: { # required
|
8521
9856
|
# domain_unit: {
|
8522
9857
|
# domain_unit_designation: "OWNER", # required, accepts OWNER
|
@@ -9569,6 +10904,220 @@ module Aws::DataZone
|
|
9569
10904
|
req.send_request(options)
|
9570
10905
|
end
|
9571
10906
|
|
10907
|
+
# Updates a connection. In Amazon DataZone, a connection enables you to
|
10908
|
+
# connect your resources (domains, projects, and environments) to
|
10909
|
+
# external resources and services.
|
10910
|
+
#
|
10911
|
+
# @option params [Types::AwsLocation] :aws_location
|
10912
|
+
# The location where a connection is to be updated.
|
10913
|
+
#
|
10914
|
+
# @option params [String] :description
|
10915
|
+
# The description of a connection.
|
10916
|
+
#
|
10917
|
+
# @option params [required, String] :domain_identifier
|
10918
|
+
# The ID of the domain where a connection is to be updated.
|
10919
|
+
#
|
10920
|
+
# @option params [required, String] :identifier
|
10921
|
+
# The ID of the connection to be updated.
|
10922
|
+
#
|
10923
|
+
# @option params [Types::ConnectionPropertiesPatch] :props
|
10924
|
+
# The connection props.
|
10925
|
+
#
|
10926
|
+
# @return [Types::UpdateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10927
|
+
#
|
10928
|
+
# * {Types::UpdateConnectionOutput#connection_id #connection_id} => String
|
10929
|
+
# * {Types::UpdateConnectionOutput#description #description} => String
|
10930
|
+
# * {Types::UpdateConnectionOutput#domain_id #domain_id} => String
|
10931
|
+
# * {Types::UpdateConnectionOutput#domain_unit_id #domain_unit_id} => String
|
10932
|
+
# * {Types::UpdateConnectionOutput#environment_id #environment_id} => String
|
10933
|
+
# * {Types::UpdateConnectionOutput#name #name} => String
|
10934
|
+
# * {Types::UpdateConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
10935
|
+
# * {Types::UpdateConnectionOutput#project_id #project_id} => String
|
10936
|
+
# * {Types::UpdateConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
10937
|
+
# * {Types::UpdateConnectionOutput#type #type} => String
|
10938
|
+
#
|
10939
|
+
# @example Request syntax with placeholder values
|
10940
|
+
#
|
10941
|
+
# resp = client.update_connection({
|
10942
|
+
# aws_location: {
|
10943
|
+
# access_role: "AwsLocationAccessRoleString",
|
10944
|
+
# aws_account_id: "AwsAccountId",
|
10945
|
+
# aws_region: "AwsRegion",
|
10946
|
+
# iam_connection_id: "ConnectionId",
|
10947
|
+
# },
|
10948
|
+
# description: "UpdateConnectionInputDescriptionString",
|
10949
|
+
# domain_identifier: "DomainId", # required
|
10950
|
+
# identifier: "ConnectionId", # required
|
10951
|
+
# props: {
|
10952
|
+
# athena_properties: {
|
10953
|
+
# workgroup_name: "AthenaPropertiesPatchWorkgroupNameString",
|
10954
|
+
# },
|
10955
|
+
# glue_properties: {
|
10956
|
+
# glue_connection_input: {
|
10957
|
+
# authentication_configuration: {
|
10958
|
+
# basic_authentication_credentials: {
|
10959
|
+
# password: "BasicAuthenticationCredentialsPasswordString",
|
10960
|
+
# user_name: "BasicAuthenticationCredentialsUserNameString",
|
10961
|
+
# },
|
10962
|
+
# secret_arn: "AuthenticationConfigurationPatchSecretArnString",
|
10963
|
+
# },
|
10964
|
+
# connection_properties: {
|
10965
|
+
# "String" => "ConnectionPropertiesValueString",
|
10966
|
+
# },
|
10967
|
+
# description: "String",
|
10968
|
+
# },
|
10969
|
+
# },
|
10970
|
+
# iam_properties: {
|
10971
|
+
# glue_lineage_sync_enabled: false,
|
10972
|
+
# },
|
10973
|
+
# redshift_properties: {
|
10974
|
+
# credentials: {
|
10975
|
+
# secret_arn: "RedshiftCredentialsSecretArnString",
|
10976
|
+
# username_password: {
|
10977
|
+
# password: "Password", # required
|
10978
|
+
# username: "Username", # required
|
10979
|
+
# },
|
10980
|
+
# },
|
10981
|
+
# database_name: "RedshiftPropertiesPatchDatabaseNameString",
|
10982
|
+
# host: "RedshiftPropertiesPatchHostString",
|
10983
|
+
# lineage_sync: {
|
10984
|
+
# enabled: false,
|
10985
|
+
# schedule: {
|
10986
|
+
# schedule: "LineageSyncScheduleScheduleString",
|
10987
|
+
# },
|
10988
|
+
# },
|
10989
|
+
# port: 1,
|
10990
|
+
# storage: {
|
10991
|
+
# cluster_name: "RedshiftStoragePropertiesClusterNameString",
|
10992
|
+
# workgroup_name: "RedshiftStoragePropertiesWorkgroupNameString",
|
10993
|
+
# },
|
10994
|
+
# },
|
10995
|
+
# spark_emr_properties: {
|
10996
|
+
# compute_arn: "SparkEmrPropertiesPatchComputeArnString",
|
10997
|
+
# instance_profile_arn: "SparkEmrPropertiesPatchInstanceProfileArnString",
|
10998
|
+
# java_virtual_env: "SparkEmrPropertiesPatchJavaVirtualEnvString",
|
10999
|
+
# log_uri: "SparkEmrPropertiesPatchLogUriString",
|
11000
|
+
# python_virtual_env: "SparkEmrPropertiesPatchPythonVirtualEnvString",
|
11001
|
+
# runtime_role: "SparkEmrPropertiesPatchRuntimeRoleString",
|
11002
|
+
# trusted_certificates_s3_uri: "SparkEmrPropertiesPatchTrustedCertificatesS3UriString",
|
11003
|
+
# },
|
11004
|
+
# },
|
11005
|
+
# })
|
11006
|
+
#
|
11007
|
+
# @example Response structure
|
11008
|
+
#
|
11009
|
+
# resp.connection_id #=> String
|
11010
|
+
# resp.description #=> String
|
11011
|
+
# resp.domain_id #=> String
|
11012
|
+
# resp.domain_unit_id #=> String
|
11013
|
+
# resp.environment_id #=> String
|
11014
|
+
# resp.name #=> String
|
11015
|
+
# resp.physical_endpoints #=> Array
|
11016
|
+
# resp.physical_endpoints[0].aws_location.access_role #=> String
|
11017
|
+
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
11018
|
+
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
11019
|
+
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
11020
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
11021
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
11022
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
11023
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.authorization_code #=> String
|
11024
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.redirect_uri #=> String
|
11025
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.a_ws_managed_client_application_reference #=> String
|
11026
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
|
11027
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.access_token #=> String
|
11028
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.jwt_token #=> String
|
11029
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.refresh_token #=> String
|
11030
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.user_managed_client_application_client_secret #=> String
|
11031
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
|
11032
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url #=> String
|
11033
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
|
11034
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParametersMapKeyString"] #=> String
|
11035
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.secret_arn #=> String
|
11036
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments #=> Array
|
11037
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
11038
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
11039
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
11040
|
+
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
11041
|
+
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
11042
|
+
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
11043
|
+
# resp.physical_endpoints[0].glue_connection.description #=> String
|
11044
|
+
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
11045
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_by #=> String
|
11046
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_time #=> Time
|
11047
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
11048
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
11049
|
+
# resp.physical_endpoints[0].glue_connection.name #=> String
|
11050
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.availability_zone #=> String
|
11051
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list #=> Array
|
11052
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list[0] #=> String
|
11053
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id #=> String
|
11054
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list #=> Array
|
11055
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list[0] #=> String
|
11056
|
+
# resp.physical_endpoints[0].glue_connection.python_properties #=> Hash
|
11057
|
+
# resp.physical_endpoints[0].glue_connection.python_properties["PropertyMapKeyString"] #=> String
|
11058
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties #=> Hash
|
11059
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties["PropertyMapKeyString"] #=> String
|
11060
|
+
# resp.physical_endpoints[0].glue_connection.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
11061
|
+
# resp.physical_endpoints[0].glue_connection.status_reason #=> String
|
11062
|
+
# resp.physical_endpoints[0].glue_connection_name #=> String
|
11063
|
+
# resp.physical_endpoints[0].host #=> String
|
11064
|
+
# resp.physical_endpoints[0].port #=> Integer
|
11065
|
+
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
11066
|
+
# resp.physical_endpoints[0].stage #=> String
|
11067
|
+
# resp.project_id #=> String
|
11068
|
+
# resp.props.athena_properties.workgroup_name #=> String
|
11069
|
+
# resp.props.glue_properties.error_message #=> String
|
11070
|
+
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
11071
|
+
# resp.props.hyper_pod_properties.cluster_arn #=> String
|
11072
|
+
# resp.props.hyper_pod_properties.cluster_name #=> String
|
11073
|
+
# resp.props.hyper_pod_properties.orchestrator #=> String, one of "EKS", "SLURM"
|
11074
|
+
# resp.props.iam_properties.environment_id #=> String
|
11075
|
+
# resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
11076
|
+
# resp.props.redshift_properties.credentials.secret_arn #=> String
|
11077
|
+
# resp.props.redshift_properties.credentials.username_password.password #=> String
|
11078
|
+
# resp.props.redshift_properties.credentials.username_password.username #=> String
|
11079
|
+
# resp.props.redshift_properties.database_name #=> String
|
11080
|
+
# resp.props.redshift_properties.is_provisioned_secret #=> Boolean
|
11081
|
+
# resp.props.redshift_properties.jdbc_iam_url #=> String
|
11082
|
+
# resp.props.redshift_properties.jdbc_url #=> String
|
11083
|
+
# resp.props.redshift_properties.lineage_sync.enabled #=> Boolean
|
11084
|
+
# resp.props.redshift_properties.lineage_sync.lineage_job_id #=> String
|
11085
|
+
# resp.props.redshift_properties.lineage_sync.schedule.schedule #=> String
|
11086
|
+
# resp.props.redshift_properties.redshift_temp_dir #=> String
|
11087
|
+
# resp.props.redshift_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
11088
|
+
# resp.props.redshift_properties.storage.cluster_name #=> String
|
11089
|
+
# resp.props.redshift_properties.storage.workgroup_name #=> String
|
11090
|
+
# resp.props.spark_emr_properties.compute_arn #=> String
|
11091
|
+
# resp.props.spark_emr_properties.credentials.password #=> String
|
11092
|
+
# resp.props.spark_emr_properties.credentials.username #=> String
|
11093
|
+
# resp.props.spark_emr_properties.credentials_expiration #=> Time
|
11094
|
+
# resp.props.spark_emr_properties.governance_type #=> String, one of "AWS_MANAGED", "USER_MANAGED"
|
11095
|
+
# resp.props.spark_emr_properties.instance_profile_arn #=> String
|
11096
|
+
# resp.props.spark_emr_properties.java_virtual_env #=> String
|
11097
|
+
# resp.props.spark_emr_properties.livy_endpoint #=> String
|
11098
|
+
# resp.props.spark_emr_properties.log_uri #=> String
|
11099
|
+
# resp.props.spark_emr_properties.python_virtual_env #=> String
|
11100
|
+
# resp.props.spark_emr_properties.runtime_role #=> String
|
11101
|
+
# resp.props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
11102
|
+
# resp.props.spark_glue_properties.additional_args.connection #=> String
|
11103
|
+
# resp.props.spark_glue_properties.glue_connection_name #=> String
|
11104
|
+
# resp.props.spark_glue_properties.glue_version #=> String
|
11105
|
+
# resp.props.spark_glue_properties.idle_timeout #=> Integer
|
11106
|
+
# resp.props.spark_glue_properties.java_virtual_env #=> String
|
11107
|
+
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
11108
|
+
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
11109
|
+
# resp.props.spark_glue_properties.worker_type #=> String
|
11110
|
+
# resp.type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
11111
|
+
#
|
11112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnection AWS API Documentation
|
11113
|
+
#
|
11114
|
+
# @overload update_connection(params = {})
|
11115
|
+
# @param [Hash] params ({})
|
11116
|
+
def update_connection(params = {}, options = {})
|
11117
|
+
req = build_request(:update_connection, params)
|
11118
|
+
req.send_request(options)
|
11119
|
+
end
|
11120
|
+
|
9572
11121
|
# Updates the specified data source in Amazon DataZone.
|
9573
11122
|
#
|
9574
11123
|
# @option params [Array<Types::FormInput>] :asset_forms_input
|
@@ -9615,6 +11164,7 @@ module Aws::DataZone
|
|
9615
11164
|
#
|
9616
11165
|
# * {Types::UpdateDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
9617
11166
|
# * {Types::UpdateDataSourceOutput#configuration #configuration} => Types::DataSourceConfigurationOutput
|
11167
|
+
# * {Types::UpdateDataSourceOutput#connection_id #connection_id} => String
|
9618
11168
|
# * {Types::UpdateDataSourceOutput#created_at #created_at} => Time
|
9619
11169
|
# * {Types::UpdateDataSourceOutput#description #description} => String
|
9620
11170
|
# * {Types::UpdateDataSourceOutput#domain_id #domain_id} => String
|
@@ -9650,6 +11200,7 @@ module Aws::DataZone
|
|
9650
11200
|
# configuration: {
|
9651
11201
|
# glue_run_configuration: {
|
9652
11202
|
# auto_import_data_quality_result: false,
|
11203
|
+
# catalog_name: "GlueRunConfigurationInputCatalogNameString",
|
9653
11204
|
# data_access_role: "GlueRunConfigurationInputDataAccessRoleString",
|
9654
11205
|
# relational_filter_configurations: [ # required
|
9655
11206
|
# {
|
@@ -9666,10 +11217,10 @@ module Aws::DataZone
|
|
9666
11217
|
# },
|
9667
11218
|
# redshift_run_configuration: {
|
9668
11219
|
# data_access_role: "RedshiftRunConfigurationInputDataAccessRoleString",
|
9669
|
-
# redshift_credential_configuration: {
|
11220
|
+
# redshift_credential_configuration: {
|
9670
11221
|
# secret_manager_arn: "RedshiftCredentialConfigurationSecretManagerArnString", # required
|
9671
11222
|
# },
|
9672
|
-
# redshift_storage: {
|
11223
|
+
# redshift_storage: {
|
9673
11224
|
# redshift_cluster_source: {
|
9674
11225
|
# cluster_name: "RedshiftClusterStorageClusterNameString", # required
|
9675
11226
|
# },
|
@@ -9690,6 +11241,11 @@ module Aws::DataZone
|
|
9690
11241
|
# },
|
9691
11242
|
# ],
|
9692
11243
|
# },
|
11244
|
+
# sage_maker_run_configuration: {
|
11245
|
+
# tracking_assets: { # required
|
11246
|
+
# "SageMakerAssetType" => ["SageMakerResourceArn"],
|
11247
|
+
# },
|
11248
|
+
# },
|
9693
11249
|
# },
|
9694
11250
|
# description: "Description",
|
9695
11251
|
# domain_identifier: "DomainId", # required
|
@@ -9716,6 +11272,7 @@ module Aws::DataZone
|
|
9716
11272
|
# resp.asset_forms_output[0].type_revision #=> String
|
9717
11273
|
# resp.configuration.glue_run_configuration.account_id #=> String
|
9718
11274
|
# resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
|
11275
|
+
# resp.configuration.glue_run_configuration.catalog_name #=> String
|
9719
11276
|
# resp.configuration.glue_run_configuration.data_access_role #=> String
|
9720
11277
|
# resp.configuration.glue_run_configuration.region #=> String
|
9721
11278
|
# resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
|
@@ -9736,6 +11293,12 @@ module Aws::DataZone
|
|
9736
11293
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].expression #=> String
|
9737
11294
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].type #=> String, one of "INCLUDE", "EXCLUDE"
|
9738
11295
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].schema_name #=> String
|
11296
|
+
# resp.configuration.sage_maker_run_configuration.account_id #=> String
|
11297
|
+
# resp.configuration.sage_maker_run_configuration.region #=> String
|
11298
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets #=> Hash
|
11299
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"] #=> Array
|
11300
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"][0] #=> String
|
11301
|
+
# resp.connection_id #=> String
|
9739
11302
|
# resp.created_at #=> Time
|
9740
11303
|
# resp.description #=> String
|
9741
11304
|
# resp.domain_id #=> String
|
@@ -9800,6 +11363,9 @@ module Aws::DataZone
|
|
9800
11363
|
# @option params [String] :name
|
9801
11364
|
# The name to be updated as part of the `UpdateDomain` action.
|
9802
11365
|
#
|
11366
|
+
# @option params [String] :service_role
|
11367
|
+
# The service role of the domain.
|
11368
|
+
#
|
9803
11369
|
# @option params [Types::SingleSignOn] :single_sign_on
|
9804
11370
|
# The single sign-on option to be updated as part of the `UpdateDomain`
|
9805
11371
|
# action.
|
@@ -9812,6 +11378,7 @@ module Aws::DataZone
|
|
9812
11378
|
# * {Types::UpdateDomainOutput#last_updated_at #last_updated_at} => Time
|
9813
11379
|
# * {Types::UpdateDomainOutput#name #name} => String
|
9814
11380
|
# * {Types::UpdateDomainOutput#root_domain_unit_id #root_domain_unit_id} => String
|
11381
|
+
# * {Types::UpdateDomainOutput#service_role #service_role} => String
|
9815
11382
|
# * {Types::UpdateDomainOutput#single_sign_on #single_sign_on} => Types::SingleSignOn
|
9816
11383
|
#
|
9817
11384
|
# @example Request syntax with placeholder values
|
@@ -9822,6 +11389,7 @@ module Aws::DataZone
|
|
9822
11389
|
# domain_execution_role: "RoleArn",
|
9823
11390
|
# identifier: "DomainId", # required
|
9824
11391
|
# name: "String",
|
11392
|
+
# service_role: "RoleArn",
|
9825
11393
|
# single_sign_on: {
|
9826
11394
|
# type: "IAM_IDC", # accepts IAM_IDC, DISABLED
|
9827
11395
|
# user_assignment: "AUTOMATIC", # accepts AUTOMATIC, MANUAL
|
@@ -9836,6 +11404,7 @@ module Aws::DataZone
|
|
9836
11404
|
# resp.last_updated_at #=> Time
|
9837
11405
|
# resp.name #=> String
|
9838
11406
|
# resp.root_domain_unit_id #=> String
|
11407
|
+
# resp.service_role #=> String
|
9839
11408
|
# resp.single_sign_on.type #=> String, one of "IAM_IDC", "DISABLED"
|
9840
11409
|
# resp.single_sign_on.user_assignment #=> String, one of "AUTOMATIC", "MANUAL"
|
9841
11410
|
#
|
@@ -10367,6 +11936,9 @@ module Aws::DataZone
|
|
10367
11936
|
# @option params [required, String] :domain_identifier
|
10368
11937
|
# The ID of the Amazon DataZone domain where a project is being updated.
|
10369
11938
|
#
|
11939
|
+
# @option params [Types::EnvironmentDeploymentDetails] :environment_deployment_details
|
11940
|
+
# The environment deployment details of the project.
|
11941
|
+
#
|
10370
11942
|
# @option params [Array<String>] :glossary_terms
|
10371
11943
|
# The glossary terms to be updated as part of the `UpdateProject`
|
10372
11944
|
# action.
|
@@ -10384,18 +11956,32 @@ module Aws::DataZone
|
|
10384
11956
|
# * {Types::UpdateProjectOutput#description #description} => String
|
10385
11957
|
# * {Types::UpdateProjectOutput#domain_id #domain_id} => String
|
10386
11958
|
# * {Types::UpdateProjectOutput#domain_unit_id #domain_unit_id} => String
|
11959
|
+
# * {Types::UpdateProjectOutput#environment_deployment_details #environment_deployment_details} => Types::EnvironmentDeploymentDetails
|
10387
11960
|
# * {Types::UpdateProjectOutput#failure_reasons #failure_reasons} => Array<Types::ProjectDeletionError>
|
10388
11961
|
# * {Types::UpdateProjectOutput#glossary_terms #glossary_terms} => Array<String>
|
10389
11962
|
# * {Types::UpdateProjectOutput#id #id} => String
|
10390
11963
|
# * {Types::UpdateProjectOutput#last_updated_at #last_updated_at} => Time
|
10391
11964
|
# * {Types::UpdateProjectOutput#name #name} => String
|
11965
|
+
# * {Types::UpdateProjectOutput#project_profile_id #project_profile_id} => String
|
10392
11966
|
# * {Types::UpdateProjectOutput#project_status #project_status} => String
|
11967
|
+
# * {Types::UpdateProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
10393
11968
|
#
|
10394
11969
|
# @example Request syntax with placeholder values
|
10395
11970
|
#
|
10396
11971
|
# resp = client.update_project({
|
10397
11972
|
# description: "Description",
|
10398
11973
|
# domain_identifier: "DomainId", # required
|
11974
|
+
# environment_deployment_details: {
|
11975
|
+
# environment_failure_reasons: {
|
11976
|
+
# "String" => [
|
11977
|
+
# {
|
11978
|
+
# code: "String",
|
11979
|
+
# message: "String", # required
|
11980
|
+
# },
|
11981
|
+
# ],
|
11982
|
+
# },
|
11983
|
+
# overall_deployment_status: "PENDING_DEPLOYMENT", # accepts PENDING_DEPLOYMENT, IN_PROGRESS, SUCCESSFUL, FAILED_VALIDATION, FAILED_DEPLOYMENT
|
11984
|
+
# },
|
10399
11985
|
# glossary_terms: ["GlossaryTermId"],
|
10400
11986
|
# identifier: "ProjectId", # required
|
10401
11987
|
# name: "ProjectName",
|
@@ -10408,6 +11994,11 @@ module Aws::DataZone
|
|
10408
11994
|
# resp.description #=> String
|
10409
11995
|
# resp.domain_id #=> String
|
10410
11996
|
# resp.domain_unit_id #=> String
|
11997
|
+
# resp.environment_deployment_details.environment_failure_reasons #=> Hash
|
11998
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"] #=> Array
|
11999
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].code #=> String
|
12000
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].message #=> String
|
12001
|
+
# resp.environment_deployment_details.overall_deployment_status #=> String, one of "PENDING_DEPLOYMENT", "IN_PROGRESS", "SUCCESSFUL", "FAILED_VALIDATION", "FAILED_DEPLOYMENT"
|
10411
12002
|
# resp.failure_reasons #=> Array
|
10412
12003
|
# resp.failure_reasons[0].code #=> String
|
10413
12004
|
# resp.failure_reasons[0].message #=> String
|
@@ -10416,7 +12007,13 @@ module Aws::DataZone
|
|
10416
12007
|
# resp.id #=> String
|
10417
12008
|
# resp.last_updated_at #=> Time
|
10418
12009
|
# resp.name #=> String
|
12010
|
+
# resp.project_profile_id #=> String
|
10419
12011
|
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED"
|
12012
|
+
# resp.user_parameters #=> Array
|
12013
|
+
# resp.user_parameters[0].environment_configuration_name #=> String
|
12014
|
+
# resp.user_parameters[0].environment_parameters #=> Array
|
12015
|
+
# resp.user_parameters[0].environment_parameters[0].name #=> String
|
12016
|
+
# resp.user_parameters[0].environment_parameters[0].value #=> String
|
10420
12017
|
#
|
10421
12018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProject AWS API Documentation
|
10422
12019
|
#
|
@@ -10427,6 +12024,129 @@ module Aws::DataZone
|
|
10427
12024
|
req.send_request(options)
|
10428
12025
|
end
|
10429
12026
|
|
12027
|
+
# Updates a project profile.
|
12028
|
+
#
|
12029
|
+
# @option params [String] :description
|
12030
|
+
# The description of a project profile.
|
12031
|
+
#
|
12032
|
+
# @option params [required, String] :domain_identifier
|
12033
|
+
# The ID of the domain where a project profile is to be updated.
|
12034
|
+
#
|
12035
|
+
# @option params [String] :domain_unit_identifier
|
12036
|
+
# The ID of the domain unit where a project profile is to be updated.
|
12037
|
+
#
|
12038
|
+
# @option params [Array<Types::EnvironmentConfiguration>] :environment_configurations
|
12039
|
+
# The environment configurations of a project profile.
|
12040
|
+
#
|
12041
|
+
# @option params [required, String] :identifier
|
12042
|
+
# The ID of a project profile that is to be updated.
|
12043
|
+
#
|
12044
|
+
# @option params [String] :name
|
12045
|
+
# The name of a project profile.
|
12046
|
+
#
|
12047
|
+
# @option params [String] :status
|
12048
|
+
# The status of a project profile.
|
12049
|
+
#
|
12050
|
+
# @return [Types::UpdateProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12051
|
+
#
|
12052
|
+
# * {Types::UpdateProjectProfileOutput#created_at #created_at} => Time
|
12053
|
+
# * {Types::UpdateProjectProfileOutput#created_by #created_by} => String
|
12054
|
+
# * {Types::UpdateProjectProfileOutput#description #description} => String
|
12055
|
+
# * {Types::UpdateProjectProfileOutput#domain_id #domain_id} => String
|
12056
|
+
# * {Types::UpdateProjectProfileOutput#domain_unit_id #domain_unit_id} => String
|
12057
|
+
# * {Types::UpdateProjectProfileOutput#environment_configurations #environment_configurations} => Array<Types::EnvironmentConfiguration>
|
12058
|
+
# * {Types::UpdateProjectProfileOutput#id #id} => String
|
12059
|
+
# * {Types::UpdateProjectProfileOutput#last_updated_at #last_updated_at} => Time
|
12060
|
+
# * {Types::UpdateProjectProfileOutput#name #name} => String
|
12061
|
+
# * {Types::UpdateProjectProfileOutput#status #status} => String
|
12062
|
+
#
|
12063
|
+
# @example Request syntax with placeholder values
|
12064
|
+
#
|
12065
|
+
# resp = client.update_project_profile({
|
12066
|
+
# description: "Description",
|
12067
|
+
# domain_identifier: "DomainId", # required
|
12068
|
+
# domain_unit_identifier: "DomainUnitId",
|
12069
|
+
# environment_configurations: [
|
12070
|
+
# {
|
12071
|
+
# aws_account: { # required
|
12072
|
+
# aws_account_id: "AwsAccountId",
|
12073
|
+
# aws_account_id_path: "ParameterStorePath",
|
12074
|
+
# },
|
12075
|
+
# aws_region: { # required
|
12076
|
+
# region_name: "RegionName",
|
12077
|
+
# region_name_path: "ParameterStorePath",
|
12078
|
+
# },
|
12079
|
+
# configuration_parameters: {
|
12080
|
+
# parameter_overrides: [
|
12081
|
+
# {
|
12082
|
+
# is_editable: false,
|
12083
|
+
# name: "EnvironmentConfigurationParameterName",
|
12084
|
+
# value: "String",
|
12085
|
+
# },
|
12086
|
+
# ],
|
12087
|
+
# resolved_parameters: [
|
12088
|
+
# {
|
12089
|
+
# is_editable: false,
|
12090
|
+
# name: "EnvironmentConfigurationParameterName",
|
12091
|
+
# value: "String",
|
12092
|
+
# },
|
12093
|
+
# ],
|
12094
|
+
# ssm_path: "ParameterStorePath",
|
12095
|
+
# },
|
12096
|
+
# deployment_mode: "ON_CREATE", # accepts ON_CREATE, ON_DEMAND
|
12097
|
+
# deployment_order: 1,
|
12098
|
+
# description: "Description",
|
12099
|
+
# environment_blueprint_id: "EnvironmentBlueprintId", # required
|
12100
|
+
# id: "EnvironmentConfigurationId",
|
12101
|
+
# name: "EnvironmentConfigurationName", # required
|
12102
|
+
# },
|
12103
|
+
# ],
|
12104
|
+
# identifier: "ProjectProfileId", # required
|
12105
|
+
# name: "ProjectProfileName",
|
12106
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
12107
|
+
# })
|
12108
|
+
#
|
12109
|
+
# @example Response structure
|
12110
|
+
#
|
12111
|
+
# resp.created_at #=> Time
|
12112
|
+
# resp.created_by #=> String
|
12113
|
+
# resp.description #=> String
|
12114
|
+
# resp.domain_id #=> String
|
12115
|
+
# resp.domain_unit_id #=> String
|
12116
|
+
# resp.environment_configurations #=> Array
|
12117
|
+
# resp.environment_configurations[0].aws_account.aws_account_id #=> String
|
12118
|
+
# resp.environment_configurations[0].aws_account.aws_account_id_path #=> String
|
12119
|
+
# resp.environment_configurations[0].aws_region.region_name #=> String
|
12120
|
+
# resp.environment_configurations[0].aws_region.region_name_path #=> String
|
12121
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides #=> Array
|
12122
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].is_editable #=> Boolean
|
12123
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].name #=> String
|
12124
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].value #=> String
|
12125
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters #=> Array
|
12126
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].is_editable #=> Boolean
|
12127
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].name #=> String
|
12128
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].value #=> String
|
12129
|
+
# resp.environment_configurations[0].configuration_parameters.ssm_path #=> String
|
12130
|
+
# resp.environment_configurations[0].deployment_mode #=> String, one of "ON_CREATE", "ON_DEMAND"
|
12131
|
+
# resp.environment_configurations[0].deployment_order #=> Integer
|
12132
|
+
# resp.environment_configurations[0].description #=> String
|
12133
|
+
# resp.environment_configurations[0].environment_blueprint_id #=> String
|
12134
|
+
# resp.environment_configurations[0].id #=> String
|
12135
|
+
# resp.environment_configurations[0].name #=> String
|
12136
|
+
# resp.id #=> String
|
12137
|
+
# resp.last_updated_at #=> Time
|
12138
|
+
# resp.name #=> String
|
12139
|
+
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
12140
|
+
#
|
12141
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfile AWS API Documentation
|
12142
|
+
#
|
12143
|
+
# @overload update_project_profile(params = {})
|
12144
|
+
# @param [Hash] params ({})
|
12145
|
+
def update_project_profile(params = {}, options = {})
|
12146
|
+
req = build_request(:update_project_profile, params)
|
12147
|
+
req.send_request(options)
|
12148
|
+
end
|
12149
|
+
|
10430
12150
|
# Updates a rule. In Amazon DataZone, a rule is a formal agreement that
|
10431
12151
|
# enforces specific requirements across user workflows (e.g., publishing
|
10432
12152
|
# assets to the catalog, requesting subscriptions, creating projects)
|
@@ -10790,7 +12510,7 @@ module Aws::DataZone
|
|
10790
12510
|
# domain_identifier: "DomainId", # required
|
10791
12511
|
# environment_identifier: "EnvironmentId", # required
|
10792
12512
|
# identifier: "SubscriptionTargetId", # required
|
10793
|
-
# manage_access_role: "
|
12513
|
+
# manage_access_role: "IamRoleArn",
|
10794
12514
|
# name: "SubscriptionTargetName",
|
10795
12515
|
# provider: "String",
|
10796
12516
|
# subscription_target_config: [
|
@@ -10902,7 +12622,7 @@ module Aws::DataZone
|
|
10902
12622
|
tracer: tracer
|
10903
12623
|
)
|
10904
12624
|
context[:gem_name] = 'aws-sdk-datazone'
|
10905
|
-
context[:gem_version] = '1.
|
12625
|
+
context[:gem_version] = '1.29.0'
|
10906
12626
|
Seahorse::Client::Request.new(handlers, context)
|
10907
12627
|
end
|
10908
12628
|
|