aws-sdk-datazone 1.28.0 → 1.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/client.rbs CHANGED
@@ -170,6 +170,8 @@ module Aws
170
170
  }?,
171
171
  create_environment: {
172
172
  }?,
173
+ create_environment_from_blueprint: {
174
+ }?,
173
175
  create_environment_profile: {
174
176
  domain_unit_id: ::String?
175
177
  }?,
@@ -182,6 +184,10 @@ module Aws
182
184
  create_project: {
183
185
  include_child_domain_units: bool?
184
186
  }?,
187
+ create_project_from_project_profile: {
188
+ include_child_domain_units: bool?,
189
+ project_profiles: Array[::String]?
190
+ }?,
185
191
  delegate_create_environment_profile: {
186
192
  }?,
187
193
  override_domain_unit_owners: {
@@ -194,7 +200,7 @@ module Aws
194
200
  domain_identifier: ::String,
195
201
  entity_identifier: ::String,
196
202
  entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
197
- policy_type: ("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"),
203
+ policy_type: ("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"),
198
204
  principal: {
199
205
  domain_unit: {
200
206
  domain_unit_designation: ("OWNER"),
@@ -481,6 +487,138 @@ module Aws
481
487
  ) -> _CreateAssetTypeResponseSuccess
482
488
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetTypeResponseSuccess
483
489
 
490
+ interface _CreateConnectionResponseSuccess
491
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionOutput]
492
+ def connection_id: () -> ::String
493
+ def description: () -> ::String
494
+ def domain_id: () -> ::String
495
+ def domain_unit_id: () -> ::String
496
+ def environment_id: () -> ::String
497
+ def name: () -> ::String
498
+ def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
499
+ def project_id: () -> ::String
500
+ def props: () -> Types::ConnectionPropertiesOutput
501
+ def type: () -> ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
502
+ end
503
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_connection-instance_method
504
+ def create_connection: (
505
+ ?aws_location: {
506
+ access_role: ::String?,
507
+ aws_account_id: ::String?,
508
+ aws_region: ::String?,
509
+ iam_connection_id: ::String?
510
+ },
511
+ ?client_token: ::String,
512
+ ?description: ::String,
513
+ domain_identifier: ::String,
514
+ environment_identifier: ::String,
515
+ name: ::String,
516
+ ?props: {
517
+ athena_properties: {
518
+ workgroup_name: ::String?
519
+ }?,
520
+ glue_properties: {
521
+ glue_connection_input: {
522
+ athena_properties: Hash[::String, ::String]?,
523
+ authentication_configuration: {
524
+ authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
525
+ basic_authentication_credentials: {
526
+ password: ::String?,
527
+ user_name: ::String?
528
+ }?,
529
+ custom_authentication_credentials: Hash[::String, ::String]?,
530
+ kms_key_arn: ::String?,
531
+ o_auth_2_properties: {
532
+ authorization_code_properties: {
533
+ authorization_code: ::String?,
534
+ redirect_uri: ::String?
535
+ }?,
536
+ o_auth_2_client_application: {
537
+ a_ws_managed_client_application_reference: ::String?,
538
+ user_managed_client_application_client_id: ::String?
539
+ }?,
540
+ o_auth_2_credentials: {
541
+ access_token: ::String?,
542
+ jwt_token: ::String?,
543
+ refresh_token: ::String?,
544
+ user_managed_client_application_client_secret: ::String?
545
+ }?,
546
+ o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
547
+ token_url: ::String?,
548
+ token_url_parameters_map: Hash[::String, ::String]?
549
+ }?,
550
+ secret_arn: ::String?
551
+ }?,
552
+ connection_properties: Hash[::String, ::String]?,
553
+ connection_type: ("SNOWFLAKE" | "BIGQUERY" | "DOCUMENTDB" | "DYNAMODB" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SQLSERVER" | "TERADATA" | "VERTICA")?,
554
+ description: ::String?,
555
+ match_criteria: ::String?,
556
+ name: ::String?,
557
+ physical_connection_requirements: {
558
+ availability_zone: ::String?,
559
+ security_group_id_list: Array[::String]?,
560
+ subnet_id: ::String?,
561
+ subnet_id_list: Array[::String]?
562
+ }?,
563
+ python_properties: Hash[::String, ::String]?,
564
+ spark_properties: Hash[::String, ::String]?,
565
+ validate_credentials: bool?,
566
+ validate_for_compute_environments: Array[("SPARK" | "ATHENA" | "PYTHON")]?
567
+ }?
568
+ }?,
569
+ hyper_pod_properties: {
570
+ cluster_name: ::String
571
+ }?,
572
+ iam_properties: {
573
+ glue_lineage_sync_enabled: bool?
574
+ }?,
575
+ redshift_properties: {
576
+ credentials: {
577
+ secret_arn: ::String?,
578
+ username_password: {
579
+ password: ::String,
580
+ username: ::String
581
+ }?
582
+ }?,
583
+ database_name: ::String?,
584
+ host: ::String?,
585
+ lineage_sync: {
586
+ enabled: bool?,
587
+ schedule: {
588
+ schedule: ::String?
589
+ }?
590
+ }?,
591
+ port: ::Integer?,
592
+ storage: {
593
+ cluster_name: ::String?,
594
+ workgroup_name: ::String?
595
+ }?
596
+ }?,
597
+ spark_emr_properties: {
598
+ compute_arn: ::String?,
599
+ instance_profile_arn: ::String?,
600
+ java_virtual_env: ::String?,
601
+ log_uri: ::String?,
602
+ python_virtual_env: ::String?,
603
+ runtime_role: ::String?,
604
+ trusted_certificates_s3_uri: ::String?
605
+ }?,
606
+ spark_glue_properties: {
607
+ additional_args: {
608
+ connection: ::String?
609
+ }?,
610
+ glue_connection_name: ::String?,
611
+ glue_version: ::String?,
612
+ idle_timeout: ::Integer?,
613
+ java_virtual_env: ::String?,
614
+ number_of_workers: ::Integer?,
615
+ python_virtual_env: ::String?,
616
+ worker_type: ::String?
617
+ }?
618
+ }
619
+ ) -> _CreateConnectionResponseSuccess
620
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionResponseSuccess
621
+
484
622
  interface _CreateDataProductResponseSuccess
485
623
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataProductOutput]
486
624
  def created_at: () -> ::Time
@@ -573,6 +711,7 @@ module Aws
573
711
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataSourceOutput]
574
712
  def asset_forms_output: () -> ::Array[Types::FormOutput]
575
713
  def configuration: () -> Types::DataSourceConfigurationOutput
714
+ def connection_id: () -> ::String
576
715
  def created_at: () -> ::Time
577
716
  def description: () -> ::String
578
717
  def domain_id: () -> ::String
@@ -606,6 +745,7 @@ module Aws
606
745
  ?configuration: {
607
746
  glue_run_configuration: {
608
747
  auto_import_data_quality_result: bool?,
748
+ catalog_name: ::String?,
609
749
  data_access_role: ::String?,
610
750
  relational_filter_configurations: Array[
611
751
  {
@@ -624,7 +764,7 @@ module Aws
624
764
  data_access_role: ::String?,
625
765
  redshift_credential_configuration: {
626
766
  secret_manager_arn: ::String
627
- },
767
+ }?,
628
768
  redshift_storage: {
629
769
  redshift_cluster_source: {
630
770
  cluster_name: ::String
@@ -632,7 +772,7 @@ module Aws
632
772
  redshift_serverless_source: {
633
773
  workgroup_name: ::String
634
774
  }?
635
- },
775
+ }?,
636
776
  relational_filter_configurations: Array[
637
777
  {
638
778
  database_name: ::String,
@@ -645,12 +785,16 @@ module Aws
645
785
  schema_name: ::String?
646
786
  },
647
787
  ]
788
+ }?,
789
+ sage_maker_run_configuration: {
790
+ tracking_assets: Hash[::String, Array[::String]]
648
791
  }?
649
792
  },
793
+ ?connection_identifier: ::String,
650
794
  ?description: ::String,
651
795
  domain_identifier: ::String,
652
796
  ?enable_setting: ("ENABLED" | "DISABLED"),
653
- environment_identifier: ::String,
797
+ ?environment_identifier: ::String,
654
798
  name: ::String,
655
799
  project_identifier: ::String,
656
800
  ?publish_on_import: bool,
@@ -670,11 +814,13 @@ module Aws
670
814
  def arn: () -> ::String
671
815
  def description: () -> ::String
672
816
  def domain_execution_role: () -> ::String
817
+ def domain_version: () -> ("V1" | "V2")
673
818
  def id: () -> ::String
674
819
  def kms_key_identifier: () -> ::String
675
820
  def name: () -> ::String
676
821
  def portal_url: () -> ::String
677
822
  def root_domain_unit_id: () -> ::String
823
+ def service_role: () -> ::String
678
824
  def single_sign_on: () -> Types::SingleSignOn
679
825
  def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
680
826
  def tags: () -> ::Hash[::String, ::String]
@@ -684,8 +830,10 @@ module Aws
684
830
  ?client_token: ::String,
685
831
  ?description: ::String,
686
832
  domain_execution_role: ::String,
833
+ ?domain_version: ("V1" | "V2"),
687
834
  ?kms_key_identifier: ::String,
688
835
  name: ::String,
836
+ ?service_role: ::String,
689
837
  ?single_sign_on: {
690
838
  type: ("IAM_IDC" | "DISABLED")?,
691
839
  user_assignment: ("AUTOMATIC" | "MANUAL")?
@@ -742,11 +890,13 @@ module Aws
742
890
  end
743
891
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_environment-instance_method
744
892
  def create_environment: (
893
+ ?deployment_order: ::Integer,
745
894
  ?description: ::String,
746
895
  domain_identifier: ::String,
747
896
  ?environment_account_identifier: ::String,
748
897
  ?environment_account_region: ::String,
749
898
  ?environment_blueprint_identifier: ::String,
899
+ ?environment_configuration_id: ::String,
750
900
  environment_profile_identifier: ::String,
751
901
  ?glossary_terms: Array[::String],
752
902
  name: ::String,
@@ -925,12 +1075,15 @@ module Aws
925
1075
  def description: () -> ::String
926
1076
  def domain_id: () -> ::String
927
1077
  def domain_unit_id: () -> ::String
1078
+ def environment_deployment_details: () -> Types::EnvironmentDeploymentDetails
928
1079
  def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
929
1080
  def glossary_terms: () -> ::Array[::String]
930
1081
  def id: () -> ::String
931
1082
  def last_updated_at: () -> ::Time
932
1083
  def name: () -> ::String
1084
+ def project_profile_id: () -> ::String
933
1085
  def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
1086
+ def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
934
1087
  end
935
1088
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project-instance_method
936
1089
  def create_project: (
@@ -938,7 +1091,19 @@ module Aws
938
1091
  domain_identifier: ::String,
939
1092
  ?domain_unit_id: ::String,
940
1093
  ?glossary_terms: Array[::String],
941
- name: ::String
1094
+ name: ::String,
1095
+ ?project_profile_id: ::String,
1096
+ ?user_parameters: Array[
1097
+ {
1098
+ environment_configuration_name: ::String?,
1099
+ environment_parameters: Array[
1100
+ {
1101
+ name: ::String?,
1102
+ value: ::String?
1103
+ },
1104
+ ]?
1105
+ },
1106
+ ]
942
1107
  ) -> _CreateProjectResponseSuccess
943
1108
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
944
1109
 
@@ -957,6 +1122,64 @@ module Aws
957
1122
  ) -> _CreateProjectMembershipResponseSuccess
958
1123
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectMembershipResponseSuccess
959
1124
 
1125
+ interface _CreateProjectProfileResponseSuccess
1126
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectProfileOutput]
1127
+ def created_at: () -> ::Time
1128
+ def created_by: () -> ::String
1129
+ def description: () -> ::String
1130
+ def domain_id: () -> ::String
1131
+ def domain_unit_id: () -> ::String
1132
+ def environment_configurations: () -> ::Array[Types::EnvironmentConfiguration]
1133
+ def id: () -> ::String
1134
+ def last_updated_at: () -> ::Time
1135
+ def name: () -> ::String
1136
+ def status: () -> ("ENABLED" | "DISABLED")
1137
+ end
1138
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project_profile-instance_method
1139
+ def create_project_profile: (
1140
+ ?description: ::String,
1141
+ domain_identifier: ::String,
1142
+ ?domain_unit_identifier: ::String,
1143
+ ?environment_configurations: Array[
1144
+ {
1145
+ aws_account: {
1146
+ aws_account_id: ::String?,
1147
+ aws_account_id_path: ::String?
1148
+ },
1149
+ aws_region: {
1150
+ region_name: ::String?,
1151
+ region_name_path: ::String?
1152
+ },
1153
+ configuration_parameters: {
1154
+ parameter_overrides: Array[
1155
+ {
1156
+ is_editable: bool?,
1157
+ name: ::String?,
1158
+ value: ::String?
1159
+ },
1160
+ ]?,
1161
+ resolved_parameters: Array[
1162
+ {
1163
+ is_editable: bool?,
1164
+ name: ::String?,
1165
+ value: ::String?
1166
+ },
1167
+ ]?,
1168
+ ssm_path: ::String?
1169
+ }?,
1170
+ deployment_mode: ("ON_CREATE" | "ON_DEMAND")?,
1171
+ deployment_order: ::Integer?,
1172
+ description: ::String?,
1173
+ environment_blueprint_id: ::String,
1174
+ id: ::String?,
1175
+ name: ::String
1176
+ },
1177
+ ],
1178
+ name: ::String,
1179
+ ?status: ("ENABLED" | "DISABLED")
1180
+ ) -> _CreateProjectProfileResponseSuccess
1181
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectProfileResponseSuccess
1182
+
960
1183
  interface _CreateRuleResponseSuccess
961
1184
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateRuleOutput]
962
1185
  def action: () -> ("CREATE_SUBSCRIPTION_REQUEST")
@@ -1039,7 +1262,7 @@ module Aws
1039
1262
  revision: ::String
1040
1263
  }?
1041
1264
  },
1042
- subscription_target_identifier: ::String
1265
+ ?subscription_target_identifier: ::String
1043
1266
  ) -> _CreateSubscriptionGrantResponseSuccess
1044
1267
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionGrantResponseSuccess
1045
1268
 
@@ -1171,6 +1394,17 @@ module Aws
1171
1394
  ) -> _DeleteAssetTypeResponseSuccess
1172
1395
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetTypeResponseSuccess
1173
1396
 
1397
+ interface _DeleteConnectionResponseSuccess
1398
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectionOutput]
1399
+ def status: () -> ::String
1400
+ end
1401
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_connection-instance_method
1402
+ def delete_connection: (
1403
+ domain_identifier: ::String,
1404
+ identifier: ::String
1405
+ ) -> _DeleteConnectionResponseSuccess
1406
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionResponseSuccess
1407
+
1174
1408
  interface _DeleteDataProductResponseSuccess
1175
1409
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataProductOutput]
1176
1410
  end
@@ -1185,6 +1419,7 @@ module Aws
1185
1419
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataSourceOutput]
1186
1420
  def asset_forms_output: () -> ::Array[Types::FormOutput]
1187
1421
  def configuration: () -> Types::DataSourceConfigurationOutput
1422
+ def connection_id: () -> ::String
1188
1423
  def created_at: () -> ::Time
1189
1424
  def description: () -> ::String
1190
1425
  def domain_id: () -> ::String
@@ -1333,6 +1568,16 @@ module Aws
1333
1568
  ) -> _DeleteProjectMembershipResponseSuccess
1334
1569
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectMembershipResponseSuccess
1335
1570
 
1571
+ interface _DeleteProjectProfileResponseSuccess
1572
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectProfileOutput]
1573
+ end
1574
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_project_profile-instance_method
1575
+ def delete_project_profile: (
1576
+ domain_identifier: ::String,
1577
+ identifier: ::String
1578
+ ) -> _DeleteProjectProfileResponseSuccess
1579
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectProfileResponseSuccess
1580
+
1336
1581
  interface _DeleteRuleResponseSuccess
1337
1582
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRuleOutput]
1338
1583
  end
@@ -1477,6 +1722,29 @@ module Aws
1477
1722
  ) -> _GetAssetTypeResponseSuccess
1478
1723
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetTypeResponseSuccess
1479
1724
 
1725
+ interface _GetConnectionResponseSuccess
1726
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionOutput]
1727
+ def connection_credentials: () -> Types::ConnectionCredentials
1728
+ def connection_id: () -> ::String
1729
+ def description: () -> ::String
1730
+ def domain_id: () -> ::String
1731
+ def domain_unit_id: () -> ::String
1732
+ def environment_id: () -> ::String
1733
+ def environment_user_role: () -> ::String
1734
+ def name: () -> ::String
1735
+ def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
1736
+ def project_id: () -> ::String
1737
+ def props: () -> Types::ConnectionPropertiesOutput
1738
+ def type: () -> ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
1739
+ end
1740
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_connection-instance_method
1741
+ def get_connection: (
1742
+ domain_identifier: ::String,
1743
+ identifier: ::String,
1744
+ ?with_secret: bool
1745
+ ) -> _GetConnectionResponseSuccess
1746
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionResponseSuccess
1747
+
1480
1748
  interface _GetDataProductResponseSuccess
1481
1749
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDataProductOutput]
1482
1750
  def created_at: () -> ::Time
@@ -1506,6 +1774,7 @@ module Aws
1506
1774
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceOutput]
1507
1775
  def asset_forms_output: () -> ::Array[Types::FormOutput]
1508
1776
  def configuration: () -> Types::DataSourceConfigurationOutput
1777
+ def connection_id: () -> ::String
1509
1778
  def created_at: () -> ::Time
1510
1779
  def description: () -> ::String
1511
1780
  def domain_id: () -> ::String
@@ -1542,6 +1811,7 @@ module Aws
1542
1811
  def domain_id: () -> ::String
1543
1812
  def error_message: () -> Types::DataSourceErrorMessage
1544
1813
  def id: () -> ::String
1814
+ def lineage_summary: () -> Types::DataSourceRunLineageSummary
1545
1815
  def project_id: () -> ::String
1546
1816
  def run_statistics_for_assets: () -> Types::RunStatisticsForAssets
1547
1817
  def started_at: () -> ::Time
@@ -1563,12 +1833,14 @@ module Aws
1563
1833
  def created_at: () -> ::Time
1564
1834
  def description: () -> ::String
1565
1835
  def domain_execution_role: () -> ::String
1836
+ def domain_version: () -> ("V1" | "V2")
1566
1837
  def id: () -> ::String
1567
1838
  def kms_key_identifier: () -> ::String
1568
1839
  def last_updated_at: () -> ::Time
1569
1840
  def name: () -> ::String
1570
1841
  def portal_url: () -> ::String
1571
1842
  def root_domain_unit_id: () -> ::String
1843
+ def service_role: () -> ::String
1572
1844
  def single_sign_on: () -> Types::SingleSignOn
1573
1845
  def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
1574
1846
  def tags: () -> ::Hash[::String, ::String]
@@ -1673,6 +1945,7 @@ module Aws
1673
1945
  def domain_id: () -> ::String
1674
1946
  def enabled_regions: () -> ::Array[::String]
1675
1947
  def environment_blueprint_id: () -> ::String
1948
+ def environment_role_permission_boundary: () -> ::String
1676
1949
  def manage_access_role_arn: () -> ::String
1677
1950
  def provisioning_configurations: () -> ::Array[Types::ProvisioningConfiguration]
1678
1951
  def provisioning_role_arn: () -> ::String
@@ -1812,6 +2085,44 @@ module Aws
1812
2085
  ) -> _GetIamPortalLoginUrlResponseSuccess
1813
2086
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIamPortalLoginUrlResponseSuccess
1814
2087
 
2088
+ interface _GetJobRunResponseSuccess
2089
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetJobRunOutput]
2090
+ def created_at: () -> ::Time
2091
+ def created_by: () -> ::String
2092
+ def details: () -> Types::JobRunDetails
2093
+ def domain_id: () -> ::String
2094
+ def end_time: () -> ::Time
2095
+ def id: () -> ::String
2096
+ def job_id: () -> ::String
2097
+ def job_type: () -> ("LINEAGE")
2098
+ def run_mode: () -> ("SCHEDULED" | "ON_DEMAND")
2099
+ def start_time: () -> ::Time
2100
+ def status: () -> ("SCHEDULED" | "IN_PROGRESS" | "SUCCESS" | "PARTIALLY_SUCCEEDED" | "FAILED" | "ABORTED" | "TIMED_OUT" | "CANCELED")
2101
+ end
2102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_job_run-instance_method
2103
+ def get_job_run: (
2104
+ domain_identifier: ::String,
2105
+ identifier: ::String
2106
+ ) -> _GetJobRunResponseSuccess
2107
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetJobRunResponseSuccess
2108
+
2109
+ interface _GetLineageEventResponseSuccess
2110
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLineageEventOutput]
2111
+ def created_at: () -> ::Time
2112
+ def created_by: () -> ::String
2113
+ def domain_id: () -> ::String
2114
+ def event: () -> ::String
2115
+ def event_time: () -> ::Time
2116
+ def id: () -> ::String
2117
+ def processing_status: () -> ("REQUESTED" | "PROCESSING" | "SUCCESS" | "FAILED")
2118
+ end
2119
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_lineage_event-instance_method
2120
+ def get_lineage_event: (
2121
+ domain_identifier: ::String,
2122
+ identifier: ::String
2123
+ ) -> _GetLineageEventResponseSuccess
2124
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLineageEventResponseSuccess
2125
+
1815
2126
  interface _GetLineageNodeResponseSuccess
1816
2127
  include ::Seahorse::Client::_ResponseSuccess[Types::GetLineageNodeOutput]
1817
2128
  def created_at: () -> ::Time
@@ -1885,12 +2196,15 @@ module Aws
1885
2196
  def description: () -> ::String
1886
2197
  def domain_id: () -> ::String
1887
2198
  def domain_unit_id: () -> ::String
2199
+ def environment_deployment_details: () -> Types::EnvironmentDeploymentDetails
1888
2200
  def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
1889
2201
  def glossary_terms: () -> ::Array[::String]
1890
2202
  def id: () -> ::String
1891
2203
  def last_updated_at: () -> ::Time
1892
2204
  def name: () -> ::String
2205
+ def project_profile_id: () -> ::String
1893
2206
  def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
2207
+ def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
1894
2208
  end
1895
2209
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project-instance_method
1896
2210
  def get_project: (
@@ -1899,6 +2213,26 @@ module Aws
1899
2213
  ) -> _GetProjectResponseSuccess
1900
2214
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProjectResponseSuccess
1901
2215
 
2216
+ interface _GetProjectProfileResponseSuccess
2217
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectProfileOutput]
2218
+ def created_at: () -> ::Time
2219
+ def created_by: () -> ::String
2220
+ def description: () -> ::String
2221
+ def domain_id: () -> ::String
2222
+ def domain_unit_id: () -> ::String
2223
+ def environment_configurations: () -> ::Array[Types::EnvironmentConfiguration]
2224
+ def id: () -> ::String
2225
+ def last_updated_at: () -> ::Time
2226
+ def name: () -> ::String
2227
+ def status: () -> ("ENABLED" | "DISABLED")
2228
+ end
2229
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project_profile-instance_method
2230
+ def get_project_profile: (
2231
+ domain_identifier: ::String,
2232
+ identifier: ::String
2233
+ ) -> _GetProjectProfileResponseSuccess
2234
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProjectProfileResponseSuccess
2235
+
1902
2236
  interface _GetRuleResponseSuccess
1903
2237
  include ::Seahorse::Client::_ResponseSuccess[Types::GetRuleOutput]
1904
2238
  def action: () -> ("CREATE_SUBSCRIPTION_REQUEST")
@@ -2079,6 +2413,25 @@ module Aws
2079
2413
  ) -> _ListAssetRevisionsResponseSuccess
2080
2414
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetRevisionsResponseSuccess
2081
2415
 
2416
+ interface _ListConnectionsResponseSuccess
2417
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectionsOutput]
2418
+ def items: () -> ::Array[Types::ConnectionSummary]
2419
+ def next_token: () -> ::String
2420
+ end
2421
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_connections-instance_method
2422
+ def list_connections: (
2423
+ domain_identifier: ::String,
2424
+ ?environment_identifier: ::String,
2425
+ ?max_results: ::Integer,
2426
+ ?name: ::String,
2427
+ ?next_token: ::String,
2428
+ project_identifier: ::String,
2429
+ ?sort_by: ("NAME"),
2430
+ ?sort_order: ("ASCENDING" | "DESCENDING"),
2431
+ ?type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
2432
+ ) -> _ListConnectionsResponseSuccess
2433
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionsResponseSuccess
2434
+
2082
2435
  interface _ListDataProductRevisionsResponseSuccess
2083
2436
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDataProductRevisionsOutput]
2084
2437
  def items: () -> ::Array[Types::DataProductRevision]
@@ -2130,6 +2483,7 @@ module Aws
2130
2483
  end
2131
2484
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_data_sources-instance_method
2132
2485
  def list_data_sources: (
2486
+ ?connection_identifier: ::String,
2133
2487
  domain_identifier: ::String,
2134
2488
  ?environment_identifier: ::String,
2135
2489
  ?max_results: ::Integer,
@@ -2264,6 +2618,39 @@ module Aws
2264
2618
  ) -> _ListEnvironmentsResponseSuccess
2265
2619
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
2266
2620
 
2621
+ interface _ListJobRunsResponseSuccess
2622
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListJobRunsOutput]
2623
+ def items: () -> ::Array[Types::JobRunSummary]
2624
+ def next_token: () -> ::String
2625
+ end
2626
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_job_runs-instance_method
2627
+ def list_job_runs: (
2628
+ domain_identifier: ::String,
2629
+ job_identifier: ::String,
2630
+ ?max_results: ::Integer,
2631
+ ?next_token: ::String,
2632
+ ?sort_order: ("ASCENDING" | "DESCENDING"),
2633
+ ?status: ("SCHEDULED" | "IN_PROGRESS" | "SUCCESS" | "PARTIALLY_SUCCEEDED" | "FAILED" | "ABORTED" | "TIMED_OUT" | "CANCELED")
2634
+ ) -> _ListJobRunsResponseSuccess
2635
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobRunsResponseSuccess
2636
+
2637
+ interface _ListLineageEventsResponseSuccess
2638
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLineageEventsOutput]
2639
+ def items: () -> ::Array[Types::LineageEventSummary]
2640
+ def next_token: () -> ::String
2641
+ end
2642
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_lineage_events-instance_method
2643
+ def list_lineage_events: (
2644
+ domain_identifier: ::String,
2645
+ ?max_results: ::Integer,
2646
+ ?next_token: ::String,
2647
+ ?processing_status: ("REQUESTED" | "PROCESSING" | "SUCCESS" | "FAILED"),
2648
+ ?sort_order: ("ASCENDING" | "DESCENDING"),
2649
+ ?timestamp_after: ::Time,
2650
+ ?timestamp_before: ::Time
2651
+ ) -> _ListLineageEventsResponseSuccess
2652
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLineageEventsResponseSuccess
2653
+
2267
2654
  interface _ListLineageNodeHistoryResponseSuccess
2268
2655
  include ::Seahorse::Client::_ResponseSuccess[Types::ListLineageNodeHistoryOutput]
2269
2656
  def next_token: () -> ::String
@@ -2327,7 +2714,7 @@ module Aws
2327
2714
  entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
2328
2715
  ?max_results: ::Integer,
2329
2716
  ?next_token: ::String,
2330
- policy_type: ("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")
2717
+ policy_type: ("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")
2331
2718
  ) -> _ListPolicyGrantsResponseSuccess
2332
2719
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGrantsResponseSuccess
2333
2720
 
@@ -2347,6 +2734,22 @@ module Aws
2347
2734
  ) -> _ListProjectMembershipsResponseSuccess
2348
2735
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectMembershipsResponseSuccess
2349
2736
 
2737
+ interface _ListProjectProfilesResponseSuccess
2738
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectProfilesOutput]
2739
+ def items: () -> ::Array[Types::ProjectProfileSummary]
2740
+ def next_token: () -> ::String
2741
+ end
2742
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_project_profiles-instance_method
2743
+ def list_project_profiles: (
2744
+ domain_identifier: ::String,
2745
+ ?max_results: ::Integer,
2746
+ ?name: ::String,
2747
+ ?next_token: ::String,
2748
+ ?sort_by: ("NAME"),
2749
+ ?sort_order: ("ASCENDING" | "DESCENDING")
2750
+ ) -> _ListProjectProfilesResponseSuccess
2751
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectProfilesResponseSuccess
2752
+
2350
2753
  interface _ListProjectsResponseSuccess
2351
2754
  include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsOutput]
2352
2755
  def items: () -> ::Array[Types::ProjectSummary]
@@ -2489,6 +2892,8 @@ module Aws
2489
2892
 
2490
2893
  interface _PostLineageEventResponseSuccess
2491
2894
  include ::Seahorse::Client::_ResponseSuccess[Types::PostLineageEventOutput]
2895
+ def domain_id: () -> ::String
2896
+ def id: () -> ::String
2492
2897
  end
2493
2898
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#post_lineage_event-instance_method
2494
2899
  def post_lineage_event: (
@@ -2529,6 +2934,7 @@ module Aws
2529
2934
  def domain_id: () -> ::String
2530
2935
  def enabled_regions: () -> ::Array[::String]
2531
2936
  def environment_blueprint_id: () -> ::String
2937
+ def environment_role_permission_boundary: () -> ::String
2532
2938
  def manage_access_role_arn: () -> ::String
2533
2939
  def provisioning_configurations: () -> ::Array[Types::ProvisioningConfiguration]
2534
2940
  def provisioning_role_arn: () -> ::String
@@ -2540,6 +2946,7 @@ module Aws
2540
2946
  domain_identifier: ::String,
2541
2947
  enabled_regions: Array[::String],
2542
2948
  environment_blueprint_identifier: ::String,
2949
+ ?environment_role_permission_boundary: ::String,
2543
2950
  ?manage_access_role_arn: ::String,
2544
2951
  ?provisioning_configurations: Array[
2545
2952
  {
@@ -2633,7 +3040,7 @@ module Aws
2633
3040
  domain_identifier: ::String,
2634
3041
  entity_identifier: ::String,
2635
3042
  entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
2636
- policy_type: ("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"),
3043
+ policy_type: ("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"),
2637
3044
  principal: {
2638
3045
  domain_unit: {
2639
3046
  domain_unit_designation: ("OWNER"),
@@ -2987,10 +3394,90 @@ module Aws
2987
3394
  ) -> _UpdateAssetFilterResponseSuccess
2988
3395
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssetFilterResponseSuccess
2989
3396
 
3397
+ interface _UpdateConnectionResponseSuccess
3398
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectionOutput]
3399
+ def connection_id: () -> ::String
3400
+ def description: () -> ::String
3401
+ def domain_id: () -> ::String
3402
+ def domain_unit_id: () -> ::String
3403
+ def environment_id: () -> ::String
3404
+ def name: () -> ::String
3405
+ def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
3406
+ def project_id: () -> ::String
3407
+ def props: () -> Types::ConnectionPropertiesOutput
3408
+ def type: () -> ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
3409
+ end
3410
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_connection-instance_method
3411
+ def update_connection: (
3412
+ ?aws_location: {
3413
+ access_role: ::String?,
3414
+ aws_account_id: ::String?,
3415
+ aws_region: ::String?,
3416
+ iam_connection_id: ::String?
3417
+ },
3418
+ ?description: ::String,
3419
+ domain_identifier: ::String,
3420
+ identifier: ::String,
3421
+ ?props: {
3422
+ athena_properties: {
3423
+ workgroup_name: ::String?
3424
+ }?,
3425
+ glue_properties: {
3426
+ glue_connection_input: {
3427
+ authentication_configuration: {
3428
+ basic_authentication_credentials: {
3429
+ password: ::String?,
3430
+ user_name: ::String?
3431
+ }?,
3432
+ secret_arn: ::String?
3433
+ }?,
3434
+ connection_properties: Hash[::String, ::String]?,
3435
+ description: ::String?
3436
+ }?
3437
+ }?,
3438
+ iam_properties: {
3439
+ glue_lineage_sync_enabled: bool?
3440
+ }?,
3441
+ redshift_properties: {
3442
+ credentials: {
3443
+ secret_arn: ::String?,
3444
+ username_password: {
3445
+ password: ::String,
3446
+ username: ::String
3447
+ }?
3448
+ }?,
3449
+ database_name: ::String?,
3450
+ host: ::String?,
3451
+ lineage_sync: {
3452
+ enabled: bool?,
3453
+ schedule: {
3454
+ schedule: ::String?
3455
+ }?
3456
+ }?,
3457
+ port: ::Integer?,
3458
+ storage: {
3459
+ cluster_name: ::String?,
3460
+ workgroup_name: ::String?
3461
+ }?
3462
+ }?,
3463
+ spark_emr_properties: {
3464
+ compute_arn: ::String?,
3465
+ instance_profile_arn: ::String?,
3466
+ java_virtual_env: ::String?,
3467
+ log_uri: ::String?,
3468
+ python_virtual_env: ::String?,
3469
+ runtime_role: ::String?,
3470
+ trusted_certificates_s3_uri: ::String?
3471
+ }?
3472
+ }
3473
+ ) -> _UpdateConnectionResponseSuccess
3474
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionResponseSuccess
3475
+
2990
3476
  interface _UpdateDataSourceResponseSuccess
2991
3477
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataSourceOutput]
2992
3478
  def asset_forms_output: () -> ::Array[Types::FormOutput]
2993
3479
  def configuration: () -> Types::DataSourceConfigurationOutput
3480
+ def connection_id: () -> ::String
2994
3481
  def created_at: () -> ::Time
2995
3482
  def description: () -> ::String
2996
3483
  def domain_id: () -> ::String
@@ -3025,6 +3512,7 @@ module Aws
3025
3512
  ?configuration: {
3026
3513
  glue_run_configuration: {
3027
3514
  auto_import_data_quality_result: bool?,
3515
+ catalog_name: ::String?,
3028
3516
  data_access_role: ::String?,
3029
3517
  relational_filter_configurations: Array[
3030
3518
  {
@@ -3043,7 +3531,7 @@ module Aws
3043
3531
  data_access_role: ::String?,
3044
3532
  redshift_credential_configuration: {
3045
3533
  secret_manager_arn: ::String
3046
- },
3534
+ }?,
3047
3535
  redshift_storage: {
3048
3536
  redshift_cluster_source: {
3049
3537
  cluster_name: ::String
@@ -3051,7 +3539,7 @@ module Aws
3051
3539
  redshift_serverless_source: {
3052
3540
  workgroup_name: ::String
3053
3541
  }?
3054
- },
3542
+ }?,
3055
3543
  relational_filter_configurations: Array[
3056
3544
  {
3057
3545
  database_name: ::String,
@@ -3064,6 +3552,9 @@ module Aws
3064
3552
  schema_name: ::String?
3065
3553
  },
3066
3554
  ]
3555
+ }?,
3556
+ sage_maker_run_configuration: {
3557
+ tracking_assets: Hash[::String, Array[::String]]
3067
3558
  }?
3068
3559
  },
3069
3560
  ?description: ::String,
@@ -3091,6 +3582,7 @@ module Aws
3091
3582
  def last_updated_at: () -> ::Time
3092
3583
  def name: () -> ::String
3093
3584
  def root_domain_unit_id: () -> ::String
3585
+ def service_role: () -> ::String
3094
3586
  def single_sign_on: () -> Types::SingleSignOn
3095
3587
  end
3096
3588
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_domain-instance_method
@@ -3100,6 +3592,7 @@ module Aws
3100
3592
  ?domain_execution_role: ::String,
3101
3593
  identifier: ::String,
3102
3594
  ?name: ::String,
3595
+ ?service_role: ::String,
3103
3596
  ?single_sign_on: {
3104
3597
  type: ("IAM_IDC" | "DISABLED")?,
3105
3598
  user_assignment: ("AUTOMATIC" | "MANUAL")?
@@ -3288,23 +3781,94 @@ module Aws
3288
3781
  def description: () -> ::String
3289
3782
  def domain_id: () -> ::String
3290
3783
  def domain_unit_id: () -> ::String
3784
+ def environment_deployment_details: () -> Types::EnvironmentDeploymentDetails
3291
3785
  def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
3292
3786
  def glossary_terms: () -> ::Array[::String]
3293
3787
  def id: () -> ::String
3294
3788
  def last_updated_at: () -> ::Time
3295
3789
  def name: () -> ::String
3790
+ def project_profile_id: () -> ::String
3296
3791
  def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
3792
+ def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
3297
3793
  end
3298
3794
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project-instance_method
3299
3795
  def update_project: (
3300
3796
  ?description: ::String,
3301
3797
  domain_identifier: ::String,
3798
+ ?environment_deployment_details: {
3799
+ environment_failure_reasons: Hash[::String, Array[
3800
+ {
3801
+ code: ::String?,
3802
+ message: ::String
3803
+ },
3804
+ ]]?,
3805
+ overall_deployment_status: ("PENDING_DEPLOYMENT" | "IN_PROGRESS" | "SUCCESSFUL" | "FAILED_VALIDATION" | "FAILED_DEPLOYMENT")?
3806
+ },
3302
3807
  ?glossary_terms: Array[::String],
3303
3808
  identifier: ::String,
3304
3809
  ?name: ::String
3305
3810
  ) -> _UpdateProjectResponseSuccess
3306
3811
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess
3307
3812
 
3813
+ interface _UpdateProjectProfileResponseSuccess
3814
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectProfileOutput]
3815
+ def created_at: () -> ::Time
3816
+ def created_by: () -> ::String
3817
+ def description: () -> ::String
3818
+ def domain_id: () -> ::String
3819
+ def domain_unit_id: () -> ::String
3820
+ def environment_configurations: () -> ::Array[Types::EnvironmentConfiguration]
3821
+ def id: () -> ::String
3822
+ def last_updated_at: () -> ::Time
3823
+ def name: () -> ::String
3824
+ def status: () -> ("ENABLED" | "DISABLED")
3825
+ end
3826
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project_profile-instance_method
3827
+ def update_project_profile: (
3828
+ ?description: ::String,
3829
+ domain_identifier: ::String,
3830
+ ?domain_unit_identifier: ::String,
3831
+ ?environment_configurations: Array[
3832
+ {
3833
+ aws_account: {
3834
+ aws_account_id: ::String?,
3835
+ aws_account_id_path: ::String?
3836
+ },
3837
+ aws_region: {
3838
+ region_name: ::String?,
3839
+ region_name_path: ::String?
3840
+ },
3841
+ configuration_parameters: {
3842
+ parameter_overrides: Array[
3843
+ {
3844
+ is_editable: bool?,
3845
+ name: ::String?,
3846
+ value: ::String?
3847
+ },
3848
+ ]?,
3849
+ resolved_parameters: Array[
3850
+ {
3851
+ is_editable: bool?,
3852
+ name: ::String?,
3853
+ value: ::String?
3854
+ },
3855
+ ]?,
3856
+ ssm_path: ::String?
3857
+ }?,
3858
+ deployment_mode: ("ON_CREATE" | "ON_DEMAND")?,
3859
+ deployment_order: ::Integer?,
3860
+ description: ::String?,
3861
+ environment_blueprint_id: ::String,
3862
+ id: ::String?,
3863
+ name: ::String
3864
+ },
3865
+ ],
3866
+ identifier: ::String,
3867
+ ?name: ::String,
3868
+ ?status: ("ENABLED" | "DISABLED")
3869
+ ) -> _UpdateProjectProfileResponseSuccess
3870
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectProfileResponseSuccess
3871
+
3308
3872
  interface _UpdateRuleResponseSuccess
3309
3873
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRuleOutput]
3310
3874
  def action: () -> ("CREATE_SUBSCRIPTION_REQUEST")