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