aws-sdk-datazone 1.27.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +2289 -62
- data/lib/aws-sdk-datazone/client_api.rb +1536 -20
- data/lib/aws-sdk-datazone/types.rb +4396 -268
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +746 -10
- data/sig/types.rbs +1173 -14
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -107,7 +107,9 @@ module Aws
|
|
107
107
|
def created_by: () -> ::String
|
108
108
|
def decision_comment: () -> ::String
|
109
109
|
def domain_id: () -> ::String
|
110
|
+
def existing_subscription_id: () -> ::String
|
110
111
|
def id: () -> ::String
|
112
|
+
def metadata_forms: () -> ::Array[Types::FormOutput]
|
111
113
|
def request_reason: () -> ::String
|
112
114
|
def reviewer_id: () -> ::String
|
113
115
|
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -168,6 +170,8 @@ module Aws
|
|
168
170
|
}?,
|
169
171
|
create_environment: {
|
170
172
|
}?,
|
173
|
+
create_environment_from_blueprint: {
|
174
|
+
}?,
|
171
175
|
create_environment_profile: {
|
172
176
|
domain_unit_id: ::String?
|
173
177
|
}?,
|
@@ -180,6 +184,10 @@ module Aws
|
|
180
184
|
create_project: {
|
181
185
|
include_child_domain_units: bool?
|
182
186
|
}?,
|
187
|
+
create_project_from_project_profile: {
|
188
|
+
include_child_domain_units: bool?,
|
189
|
+
project_profiles: Array[::String]?
|
190
|
+
}?,
|
183
191
|
delegate_create_environment_profile: {
|
184
192
|
}?,
|
185
193
|
override_domain_unit_owners: {
|
@@ -192,7 +200,7 @@ module Aws
|
|
192
200
|
domain_identifier: ::String,
|
193
201
|
entity_identifier: ::String,
|
194
202
|
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
|
195
|
-
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"),
|
196
204
|
principal: {
|
197
205
|
domain_unit: {
|
198
206
|
domain_unit_designation: ("OWNER"),
|
@@ -479,6 +487,138 @@ module Aws
|
|
479
487
|
) -> _CreateAssetTypeResponseSuccess
|
480
488
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetTypeResponseSuccess
|
481
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
|
+
|
482
622
|
interface _CreateDataProductResponseSuccess
|
483
623
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataProductOutput]
|
484
624
|
def created_at: () -> ::Time
|
@@ -571,6 +711,7 @@ module Aws
|
|
571
711
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataSourceOutput]
|
572
712
|
def asset_forms_output: () -> ::Array[Types::FormOutput]
|
573
713
|
def configuration: () -> Types::DataSourceConfigurationOutput
|
714
|
+
def connection_id: () -> ::String
|
574
715
|
def created_at: () -> ::Time
|
575
716
|
def description: () -> ::String
|
576
717
|
def domain_id: () -> ::String
|
@@ -604,6 +745,7 @@ module Aws
|
|
604
745
|
?configuration: {
|
605
746
|
glue_run_configuration: {
|
606
747
|
auto_import_data_quality_result: bool?,
|
748
|
+
catalog_name: ::String?,
|
607
749
|
data_access_role: ::String?,
|
608
750
|
relational_filter_configurations: Array[
|
609
751
|
{
|
@@ -622,7 +764,7 @@ module Aws
|
|
622
764
|
data_access_role: ::String?,
|
623
765
|
redshift_credential_configuration: {
|
624
766
|
secret_manager_arn: ::String
|
625
|
-
}
|
767
|
+
}?,
|
626
768
|
redshift_storage: {
|
627
769
|
redshift_cluster_source: {
|
628
770
|
cluster_name: ::String
|
@@ -630,7 +772,7 @@ module Aws
|
|
630
772
|
redshift_serverless_source: {
|
631
773
|
workgroup_name: ::String
|
632
774
|
}?
|
633
|
-
}
|
775
|
+
}?,
|
634
776
|
relational_filter_configurations: Array[
|
635
777
|
{
|
636
778
|
database_name: ::String,
|
@@ -643,12 +785,16 @@ module Aws
|
|
643
785
|
schema_name: ::String?
|
644
786
|
},
|
645
787
|
]
|
788
|
+
}?,
|
789
|
+
sage_maker_run_configuration: {
|
790
|
+
tracking_assets: Hash[::String, Array[::String]]
|
646
791
|
}?
|
647
792
|
},
|
793
|
+
?connection_identifier: ::String,
|
648
794
|
?description: ::String,
|
649
795
|
domain_identifier: ::String,
|
650
796
|
?enable_setting: ("ENABLED" | "DISABLED"),
|
651
|
-
environment_identifier: ::String,
|
797
|
+
?environment_identifier: ::String,
|
652
798
|
name: ::String,
|
653
799
|
project_identifier: ::String,
|
654
800
|
?publish_on_import: bool,
|
@@ -668,11 +814,13 @@ module Aws
|
|
668
814
|
def arn: () -> ::String
|
669
815
|
def description: () -> ::String
|
670
816
|
def domain_execution_role: () -> ::String
|
817
|
+
def domain_version: () -> ("V1" | "V2")
|
671
818
|
def id: () -> ::String
|
672
819
|
def kms_key_identifier: () -> ::String
|
673
820
|
def name: () -> ::String
|
674
821
|
def portal_url: () -> ::String
|
675
822
|
def root_domain_unit_id: () -> ::String
|
823
|
+
def service_role: () -> ::String
|
676
824
|
def single_sign_on: () -> Types::SingleSignOn
|
677
825
|
def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
678
826
|
def tags: () -> ::Hash[::String, ::String]
|
@@ -682,8 +830,10 @@ module Aws
|
|
682
830
|
?client_token: ::String,
|
683
831
|
?description: ::String,
|
684
832
|
domain_execution_role: ::String,
|
833
|
+
?domain_version: ("V1" | "V2"),
|
685
834
|
?kms_key_identifier: ::String,
|
686
835
|
name: ::String,
|
836
|
+
?service_role: ::String,
|
687
837
|
?single_sign_on: {
|
688
838
|
type: ("IAM_IDC" | "DISABLED")?,
|
689
839
|
user_assignment: ("AUTOMATIC" | "MANUAL")?
|
@@ -740,11 +890,13 @@ module Aws
|
|
740
890
|
end
|
741
891
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_environment-instance_method
|
742
892
|
def create_environment: (
|
893
|
+
?deployment_order: ::Integer,
|
743
894
|
?description: ::String,
|
744
895
|
domain_identifier: ::String,
|
745
896
|
?environment_account_identifier: ::String,
|
746
897
|
?environment_account_region: ::String,
|
747
898
|
?environment_blueprint_identifier: ::String,
|
899
|
+
?environment_configuration_id: ::String,
|
748
900
|
environment_profile_identifier: ::String,
|
749
901
|
?glossary_terms: Array[::String],
|
750
902
|
name: ::String,
|
@@ -923,12 +1075,15 @@ module Aws
|
|
923
1075
|
def description: () -> ::String
|
924
1076
|
def domain_id: () -> ::String
|
925
1077
|
def domain_unit_id: () -> ::String
|
1078
|
+
def environment_deployment_details: () -> Types::EnvironmentDeploymentDetails
|
926
1079
|
def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
|
927
1080
|
def glossary_terms: () -> ::Array[::String]
|
928
1081
|
def id: () -> ::String
|
929
1082
|
def last_updated_at: () -> ::Time
|
930
1083
|
def name: () -> ::String
|
1084
|
+
def project_profile_id: () -> ::String
|
931
1085
|
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
1086
|
+
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
932
1087
|
end
|
933
1088
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project-instance_method
|
934
1089
|
def create_project: (
|
@@ -936,7 +1091,19 @@ module Aws
|
|
936
1091
|
domain_identifier: ::String,
|
937
1092
|
?domain_unit_id: ::String,
|
938
1093
|
?glossary_terms: Array[::String],
|
939
|
-
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
|
+
]
|
940
1107
|
) -> _CreateProjectResponseSuccess
|
941
1108
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
|
942
1109
|
|
@@ -955,6 +1122,115 @@ module Aws
|
|
955
1122
|
) -> _CreateProjectMembershipResponseSuccess
|
956
1123
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectMembershipResponseSuccess
|
957
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
|
+
|
1183
|
+
interface _CreateRuleResponseSuccess
|
1184
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRuleOutput]
|
1185
|
+
def action: () -> ("CREATE_SUBSCRIPTION_REQUEST")
|
1186
|
+
def created_at: () -> ::Time
|
1187
|
+
def created_by: () -> ::String
|
1188
|
+
def description: () -> ::String
|
1189
|
+
def detail: () -> Types::RuleDetail
|
1190
|
+
def identifier: () -> ::String
|
1191
|
+
def name: () -> ::String
|
1192
|
+
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT")
|
1193
|
+
def scope: () -> Types::RuleScope
|
1194
|
+
def target: () -> Types::RuleTarget
|
1195
|
+
def target_type: () -> ("DOMAIN_UNIT")
|
1196
|
+
end
|
1197
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_rule-instance_method
|
1198
|
+
def create_rule: (
|
1199
|
+
action: ("CREATE_SUBSCRIPTION_REQUEST"),
|
1200
|
+
?client_token: ::String,
|
1201
|
+
?description: ::String,
|
1202
|
+
detail: {
|
1203
|
+
metadata_form_enforcement_detail: {
|
1204
|
+
required_metadata_forms: Array[
|
1205
|
+
{
|
1206
|
+
type_identifier: ::String,
|
1207
|
+
type_revision: ::String
|
1208
|
+
},
|
1209
|
+
]?
|
1210
|
+
}?
|
1211
|
+
},
|
1212
|
+
domain_identifier: ::String,
|
1213
|
+
name: ::String,
|
1214
|
+
scope: {
|
1215
|
+
asset_type: {
|
1216
|
+
selection_mode: ("ALL" | "SPECIFIC"),
|
1217
|
+
specific_asset_types: Array[::String]?
|
1218
|
+
}?,
|
1219
|
+
data_product: bool?,
|
1220
|
+
project: {
|
1221
|
+
selection_mode: ("ALL" | "SPECIFIC"),
|
1222
|
+
specific_projects: Array[::String]?
|
1223
|
+
}?
|
1224
|
+
},
|
1225
|
+
target: {
|
1226
|
+
domain_unit_target: {
|
1227
|
+
domain_unit_id: ::String,
|
1228
|
+
include_child_domain_units: bool?
|
1229
|
+
}?
|
1230
|
+
}
|
1231
|
+
) -> _CreateRuleResponseSuccess
|
1232
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRuleResponseSuccess
|
1233
|
+
|
958
1234
|
interface _CreateSubscriptionGrantResponseSuccess
|
959
1235
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSubscriptionGrantOutput]
|
960
1236
|
def assets: () -> ::Array[Types::SubscribedAsset]
|
@@ -986,7 +1262,7 @@ module Aws
|
|
986
1262
|
revision: ::String
|
987
1263
|
}?
|
988
1264
|
},
|
989
|
-
subscription_target_identifier: ::String
|
1265
|
+
?subscription_target_identifier: ::String
|
990
1266
|
) -> _CreateSubscriptionGrantResponseSuccess
|
991
1267
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionGrantResponseSuccess
|
992
1268
|
|
@@ -996,7 +1272,9 @@ module Aws
|
|
996
1272
|
def created_by: () -> ::String
|
997
1273
|
def decision_comment: () -> ::String
|
998
1274
|
def domain_id: () -> ::String
|
1275
|
+
def existing_subscription_id: () -> ::String
|
999
1276
|
def id: () -> ::String
|
1277
|
+
def metadata_forms: () -> ::Array[Types::FormOutput]
|
1000
1278
|
def request_reason: () -> ::String
|
1001
1279
|
def reviewer_id: () -> ::String
|
1002
1280
|
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -1009,6 +1287,14 @@ module Aws
|
|
1009
1287
|
def create_subscription_request: (
|
1010
1288
|
?client_token: ::String,
|
1011
1289
|
domain_identifier: ::String,
|
1290
|
+
?metadata_forms: Array[
|
1291
|
+
{
|
1292
|
+
content: ::String?,
|
1293
|
+
form_name: ::String,
|
1294
|
+
type_identifier: ::String?,
|
1295
|
+
type_revision: ::String?
|
1296
|
+
},
|
1297
|
+
],
|
1012
1298
|
request_reason: ::String,
|
1013
1299
|
subscribed_listings: Array[
|
1014
1300
|
{
|
@@ -1108,6 +1394,17 @@ module Aws
|
|
1108
1394
|
) -> _DeleteAssetTypeResponseSuccess
|
1109
1395
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetTypeResponseSuccess
|
1110
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
|
+
|
1111
1408
|
interface _DeleteDataProductResponseSuccess
|
1112
1409
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataProductOutput]
|
1113
1410
|
end
|
@@ -1122,6 +1419,7 @@ module Aws
|
|
1122
1419
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataSourceOutput]
|
1123
1420
|
def asset_forms_output: () -> ::Array[Types::FormOutput]
|
1124
1421
|
def configuration: () -> Types::DataSourceConfigurationOutput
|
1422
|
+
def connection_id: () -> ::String
|
1125
1423
|
def created_at: () -> ::Time
|
1126
1424
|
def description: () -> ::String
|
1127
1425
|
def domain_id: () -> ::String
|
@@ -1270,6 +1568,26 @@ module Aws
|
|
1270
1568
|
) -> _DeleteProjectMembershipResponseSuccess
|
1271
1569
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectMembershipResponseSuccess
|
1272
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
|
+
|
1581
|
+
interface _DeleteRuleResponseSuccess
|
1582
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRuleOutput]
|
1583
|
+
end
|
1584
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_rule-instance_method
|
1585
|
+
def delete_rule: (
|
1586
|
+
domain_identifier: ::String,
|
1587
|
+
identifier: ::String
|
1588
|
+
) -> _DeleteRuleResponseSuccess
|
1589
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRuleResponseSuccess
|
1590
|
+
|
1273
1591
|
interface _DeleteSubscriptionGrantResponseSuccess
|
1274
1592
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSubscriptionGrantOutput]
|
1275
1593
|
def assets: () -> ::Array[Types::SubscribedAsset]
|
@@ -1404,6 +1722,29 @@ module Aws
|
|
1404
1722
|
) -> _GetAssetTypeResponseSuccess
|
1405
1723
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetTypeResponseSuccess
|
1406
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
|
+
|
1407
1748
|
interface _GetDataProductResponseSuccess
|
1408
1749
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataProductOutput]
|
1409
1750
|
def created_at: () -> ::Time
|
@@ -1433,6 +1774,7 @@ module Aws
|
|
1433
1774
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceOutput]
|
1434
1775
|
def asset_forms_output: () -> ::Array[Types::FormOutput]
|
1435
1776
|
def configuration: () -> Types::DataSourceConfigurationOutput
|
1777
|
+
def connection_id: () -> ::String
|
1436
1778
|
def created_at: () -> ::Time
|
1437
1779
|
def description: () -> ::String
|
1438
1780
|
def domain_id: () -> ::String
|
@@ -1469,6 +1811,7 @@ module Aws
|
|
1469
1811
|
def domain_id: () -> ::String
|
1470
1812
|
def error_message: () -> Types::DataSourceErrorMessage
|
1471
1813
|
def id: () -> ::String
|
1814
|
+
def lineage_summary: () -> Types::DataSourceRunLineageSummary
|
1472
1815
|
def project_id: () -> ::String
|
1473
1816
|
def run_statistics_for_assets: () -> Types::RunStatisticsForAssets
|
1474
1817
|
def started_at: () -> ::Time
|
@@ -1490,12 +1833,14 @@ module Aws
|
|
1490
1833
|
def created_at: () -> ::Time
|
1491
1834
|
def description: () -> ::String
|
1492
1835
|
def domain_execution_role: () -> ::String
|
1836
|
+
def domain_version: () -> ("V1" | "V2")
|
1493
1837
|
def id: () -> ::String
|
1494
1838
|
def kms_key_identifier: () -> ::String
|
1495
1839
|
def last_updated_at: () -> ::Time
|
1496
1840
|
def name: () -> ::String
|
1497
1841
|
def portal_url: () -> ::String
|
1498
1842
|
def root_domain_unit_id: () -> ::String
|
1843
|
+
def service_role: () -> ::String
|
1499
1844
|
def single_sign_on: () -> Types::SingleSignOn
|
1500
1845
|
def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
1501
1846
|
def tags: () -> ::Hash[::String, ::String]
|
@@ -1600,6 +1945,7 @@ module Aws
|
|
1600
1945
|
def domain_id: () -> ::String
|
1601
1946
|
def enabled_regions: () -> ::Array[::String]
|
1602
1947
|
def environment_blueprint_id: () -> ::String
|
1948
|
+
def environment_role_permission_boundary: () -> ::String
|
1603
1949
|
def manage_access_role_arn: () -> ::String
|
1604
1950
|
def provisioning_configurations: () -> ::Array[Types::ProvisioningConfiguration]
|
1605
1951
|
def provisioning_role_arn: () -> ::String
|
@@ -1739,6 +2085,44 @@ module Aws
|
|
1739
2085
|
) -> _GetIamPortalLoginUrlResponseSuccess
|
1740
2086
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIamPortalLoginUrlResponseSuccess
|
1741
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
|
+
|
1742
2126
|
interface _GetLineageNodeResponseSuccess
|
1743
2127
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetLineageNodeOutput]
|
1744
2128
|
def created_at: () -> ::Time
|
@@ -1812,12 +2196,15 @@ module Aws
|
|
1812
2196
|
def description: () -> ::String
|
1813
2197
|
def domain_id: () -> ::String
|
1814
2198
|
def domain_unit_id: () -> ::String
|
2199
|
+
def environment_deployment_details: () -> Types::EnvironmentDeploymentDetails
|
1815
2200
|
def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
|
1816
2201
|
def glossary_terms: () -> ::Array[::String]
|
1817
2202
|
def id: () -> ::String
|
1818
2203
|
def last_updated_at: () -> ::Time
|
1819
2204
|
def name: () -> ::String
|
2205
|
+
def project_profile_id: () -> ::String
|
1820
2206
|
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
2207
|
+
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
1821
2208
|
end
|
1822
2209
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project-instance_method
|
1823
2210
|
def get_project: (
|
@@ -1826,6 +2213,51 @@ module Aws
|
|
1826
2213
|
) -> _GetProjectResponseSuccess
|
1827
2214
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProjectResponseSuccess
|
1828
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
|
+
|
2236
|
+
interface _GetRuleResponseSuccess
|
2237
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetRuleOutput]
|
2238
|
+
def action: () -> ("CREATE_SUBSCRIPTION_REQUEST")
|
2239
|
+
def created_at: () -> ::Time
|
2240
|
+
def created_by: () -> ::String
|
2241
|
+
def description: () -> ::String
|
2242
|
+
def detail: () -> Types::RuleDetail
|
2243
|
+
def identifier: () -> ::String
|
2244
|
+
def last_updated_by: () -> ::String
|
2245
|
+
def name: () -> ::String
|
2246
|
+
def revision: () -> ::String
|
2247
|
+
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT")
|
2248
|
+
def scope: () -> Types::RuleScope
|
2249
|
+
def target: () -> Types::RuleTarget
|
2250
|
+
def target_type: () -> ("DOMAIN_UNIT")
|
2251
|
+
def updated_at: () -> ::Time
|
2252
|
+
end
|
2253
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_rule-instance_method
|
2254
|
+
def get_rule: (
|
2255
|
+
domain_identifier: ::String,
|
2256
|
+
identifier: ::String,
|
2257
|
+
?revision: ::String
|
2258
|
+
) -> _GetRuleResponseSuccess
|
2259
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRuleResponseSuccess
|
2260
|
+
|
1829
2261
|
interface _GetSubscriptionResponseSuccess
|
1830
2262
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetSubscriptionOutput]
|
1831
2263
|
def created_at: () -> ::Time
|
@@ -1874,7 +2306,9 @@ module Aws
|
|
1874
2306
|
def created_by: () -> ::String
|
1875
2307
|
def decision_comment: () -> ::String
|
1876
2308
|
def domain_id: () -> ::String
|
2309
|
+
def existing_subscription_id: () -> ::String
|
1877
2310
|
def id: () -> ::String
|
2311
|
+
def metadata_forms: () -> ::Array[Types::FormOutput]
|
1878
2312
|
def request_reason: () -> ::String
|
1879
2313
|
def reviewer_id: () -> ::String
|
1880
2314
|
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -1979,6 +2413,25 @@ module Aws
|
|
1979
2413
|
) -> _ListAssetRevisionsResponseSuccess
|
1980
2414
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetRevisionsResponseSuccess
|
1981
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
|
+
|
1982
2435
|
interface _ListDataProductRevisionsResponseSuccess
|
1983
2436
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataProductRevisionsOutput]
|
1984
2437
|
def items: () -> ::Array[Types::DataProductRevision]
|
@@ -2030,6 +2483,7 @@ module Aws
|
|
2030
2483
|
end
|
2031
2484
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_data_sources-instance_method
|
2032
2485
|
def list_data_sources: (
|
2486
|
+
?connection_identifier: ::String,
|
2033
2487
|
domain_identifier: ::String,
|
2034
2488
|
?environment_identifier: ::String,
|
2035
2489
|
?max_results: ::Integer,
|
@@ -2164,6 +2618,39 @@ module Aws
|
|
2164
2618
|
) -> _ListEnvironmentsResponseSuccess
|
2165
2619
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
|
2166
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
|
+
|
2167
2654
|
interface _ListLineageNodeHistoryResponseSuccess
|
2168
2655
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListLineageNodeHistoryOutput]
|
2169
2656
|
def next_token: () -> ::String
|
@@ -2227,7 +2714,7 @@ module Aws
|
|
2227
2714
|
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
|
2228
2715
|
?max_results: ::Integer,
|
2229
2716
|
?next_token: ::String,
|
2230
|
-
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")
|
2231
2718
|
) -> _ListPolicyGrantsResponseSuccess
|
2232
2719
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGrantsResponseSuccess
|
2233
2720
|
|
@@ -2247,6 +2734,22 @@ module Aws
|
|
2247
2734
|
) -> _ListProjectMembershipsResponseSuccess
|
2248
2735
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectMembershipsResponseSuccess
|
2249
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
|
+
|
2250
2753
|
interface _ListProjectsResponseSuccess
|
2251
2754
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsOutput]
|
2252
2755
|
def items: () -> ::Array[Types::ProjectSummary]
|
@@ -2263,6 +2766,27 @@ module Aws
|
|
2263
2766
|
) -> _ListProjectsResponseSuccess
|
2264
2767
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectsResponseSuccess
|
2265
2768
|
|
2769
|
+
interface _ListRulesResponseSuccess
|
2770
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRulesOutput]
|
2771
|
+
def items: () -> ::Array[Types::RuleSummary]
|
2772
|
+
def next_token: () -> ::String
|
2773
|
+
end
|
2774
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_rules-instance_method
|
2775
|
+
def list_rules: (
|
2776
|
+
?action: ("CREATE_SUBSCRIPTION_REQUEST"),
|
2777
|
+
?asset_types: Array[::String],
|
2778
|
+
?data_product: bool,
|
2779
|
+
domain_identifier: ::String,
|
2780
|
+
?include_cascaded: bool,
|
2781
|
+
?max_results: ::Integer,
|
2782
|
+
?next_token: ::String,
|
2783
|
+
?project_ids: Array[::String],
|
2784
|
+
?rule_type: ("METADATA_FORM_ENFORCEMENT"),
|
2785
|
+
target_identifier: ::String,
|
2786
|
+
target_type: ("DOMAIN_UNIT")
|
2787
|
+
) -> _ListRulesResponseSuccess
|
2788
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRulesResponseSuccess
|
2789
|
+
|
2266
2790
|
interface _ListSubscriptionGrantsResponseSuccess
|
2267
2791
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListSubscriptionGrantsOutput]
|
2268
2792
|
def items: () -> ::Array[Types::SubscriptionGrantSummary]
|
@@ -2368,6 +2892,8 @@ module Aws
|
|
2368
2892
|
|
2369
2893
|
interface _PostLineageEventResponseSuccess
|
2370
2894
|
include ::Seahorse::Client::_ResponseSuccess[Types::PostLineageEventOutput]
|
2895
|
+
def domain_id: () -> ::String
|
2896
|
+
def id: () -> ::String
|
2371
2897
|
end
|
2372
2898
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#post_lineage_event-instance_method
|
2373
2899
|
def post_lineage_event: (
|
@@ -2408,6 +2934,7 @@ module Aws
|
|
2408
2934
|
def domain_id: () -> ::String
|
2409
2935
|
def enabled_regions: () -> ::Array[::String]
|
2410
2936
|
def environment_blueprint_id: () -> ::String
|
2937
|
+
def environment_role_permission_boundary: () -> ::String
|
2411
2938
|
def manage_access_role_arn: () -> ::String
|
2412
2939
|
def provisioning_configurations: () -> ::Array[Types::ProvisioningConfiguration]
|
2413
2940
|
def provisioning_role_arn: () -> ::String
|
@@ -2419,6 +2946,7 @@ module Aws
|
|
2419
2946
|
domain_identifier: ::String,
|
2420
2947
|
enabled_regions: Array[::String],
|
2421
2948
|
environment_blueprint_identifier: ::String,
|
2949
|
+
?environment_role_permission_boundary: ::String,
|
2422
2950
|
?manage_access_role_arn: ::String,
|
2423
2951
|
?provisioning_configurations: Array[
|
2424
2952
|
{
|
@@ -2464,7 +2992,9 @@ module Aws
|
|
2464
2992
|
def created_by: () -> ::String
|
2465
2993
|
def decision_comment: () -> ::String
|
2466
2994
|
def domain_id: () -> ::String
|
2995
|
+
def existing_subscription_id: () -> ::String
|
2467
2996
|
def id: () -> ::String
|
2997
|
+
def metadata_forms: () -> ::Array[Types::FormOutput]
|
2468
2998
|
def request_reason: () -> ::String
|
2469
2999
|
def reviewer_id: () -> ::String
|
2470
3000
|
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -2510,7 +3040,7 @@ module Aws
|
|
2510
3040
|
domain_identifier: ::String,
|
2511
3041
|
entity_identifier: ::String,
|
2512
3042
|
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
|
2513
|
-
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"),
|
2514
3044
|
principal: {
|
2515
3045
|
domain_unit: {
|
2516
3046
|
domain_unit_designation: ("OWNER"),
|
@@ -2864,10 +3394,90 @@ module Aws
|
|
2864
3394
|
) -> _UpdateAssetFilterResponseSuccess
|
2865
3395
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssetFilterResponseSuccess
|
2866
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
|
+
|
2867
3476
|
interface _UpdateDataSourceResponseSuccess
|
2868
3477
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataSourceOutput]
|
2869
3478
|
def asset_forms_output: () -> ::Array[Types::FormOutput]
|
2870
3479
|
def configuration: () -> Types::DataSourceConfigurationOutput
|
3480
|
+
def connection_id: () -> ::String
|
2871
3481
|
def created_at: () -> ::Time
|
2872
3482
|
def description: () -> ::String
|
2873
3483
|
def domain_id: () -> ::String
|
@@ -2902,6 +3512,7 @@ module Aws
|
|
2902
3512
|
?configuration: {
|
2903
3513
|
glue_run_configuration: {
|
2904
3514
|
auto_import_data_quality_result: bool?,
|
3515
|
+
catalog_name: ::String?,
|
2905
3516
|
data_access_role: ::String?,
|
2906
3517
|
relational_filter_configurations: Array[
|
2907
3518
|
{
|
@@ -2920,7 +3531,7 @@ module Aws
|
|
2920
3531
|
data_access_role: ::String?,
|
2921
3532
|
redshift_credential_configuration: {
|
2922
3533
|
secret_manager_arn: ::String
|
2923
|
-
}
|
3534
|
+
}?,
|
2924
3535
|
redshift_storage: {
|
2925
3536
|
redshift_cluster_source: {
|
2926
3537
|
cluster_name: ::String
|
@@ -2928,7 +3539,7 @@ module Aws
|
|
2928
3539
|
redshift_serverless_source: {
|
2929
3540
|
workgroup_name: ::String
|
2930
3541
|
}?
|
2931
|
-
}
|
3542
|
+
}?,
|
2932
3543
|
relational_filter_configurations: Array[
|
2933
3544
|
{
|
2934
3545
|
database_name: ::String,
|
@@ -2941,6 +3552,9 @@ module Aws
|
|
2941
3552
|
schema_name: ::String?
|
2942
3553
|
},
|
2943
3554
|
]
|
3555
|
+
}?,
|
3556
|
+
sage_maker_run_configuration: {
|
3557
|
+
tracking_assets: Hash[::String, Array[::String]]
|
2944
3558
|
}?
|
2945
3559
|
},
|
2946
3560
|
?description: ::String,
|
@@ -2968,6 +3582,7 @@ module Aws
|
|
2968
3582
|
def last_updated_at: () -> ::Time
|
2969
3583
|
def name: () -> ::String
|
2970
3584
|
def root_domain_unit_id: () -> ::String
|
3585
|
+
def service_role: () -> ::String
|
2971
3586
|
def single_sign_on: () -> Types::SingleSignOn
|
2972
3587
|
end
|
2973
3588
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_domain-instance_method
|
@@ -2977,6 +3592,7 @@ module Aws
|
|
2977
3592
|
?domain_execution_role: ::String,
|
2978
3593
|
identifier: ::String,
|
2979
3594
|
?name: ::String,
|
3595
|
+
?service_role: ::String,
|
2980
3596
|
?single_sign_on: {
|
2981
3597
|
type: ("IAM_IDC" | "DISABLED")?,
|
2982
3598
|
user_assignment: ("AUTOMATIC" | "MANUAL")?
|
@@ -3165,23 +3781,141 @@ module Aws
|
|
3165
3781
|
def description: () -> ::String
|
3166
3782
|
def domain_id: () -> ::String
|
3167
3783
|
def domain_unit_id: () -> ::String
|
3784
|
+
def environment_deployment_details: () -> Types::EnvironmentDeploymentDetails
|
3168
3785
|
def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
|
3169
3786
|
def glossary_terms: () -> ::Array[::String]
|
3170
3787
|
def id: () -> ::String
|
3171
3788
|
def last_updated_at: () -> ::Time
|
3172
3789
|
def name: () -> ::String
|
3790
|
+
def project_profile_id: () -> ::String
|
3173
3791
|
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
3792
|
+
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
3174
3793
|
end
|
3175
3794
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project-instance_method
|
3176
3795
|
def update_project: (
|
3177
3796
|
?description: ::String,
|
3178
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
|
+
},
|
3179
3807
|
?glossary_terms: Array[::String],
|
3180
3808
|
identifier: ::String,
|
3181
3809
|
?name: ::String
|
3182
3810
|
) -> _UpdateProjectResponseSuccess
|
3183
3811
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess
|
3184
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
|
+
|
3872
|
+
interface _UpdateRuleResponseSuccess
|
3873
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRuleOutput]
|
3874
|
+
def action: () -> ("CREATE_SUBSCRIPTION_REQUEST")
|
3875
|
+
def created_at: () -> ::Time
|
3876
|
+
def created_by: () -> ::String
|
3877
|
+
def description: () -> ::String
|
3878
|
+
def detail: () -> Types::RuleDetail
|
3879
|
+
def identifier: () -> ::String
|
3880
|
+
def last_updated_by: () -> ::String
|
3881
|
+
def name: () -> ::String
|
3882
|
+
def revision: () -> ::String
|
3883
|
+
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT")
|
3884
|
+
def scope: () -> Types::RuleScope
|
3885
|
+
def target: () -> Types::RuleTarget
|
3886
|
+
def updated_at: () -> ::Time
|
3887
|
+
end
|
3888
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_rule-instance_method
|
3889
|
+
def update_rule: (
|
3890
|
+
?description: ::String,
|
3891
|
+
?detail: {
|
3892
|
+
metadata_form_enforcement_detail: {
|
3893
|
+
required_metadata_forms: Array[
|
3894
|
+
{
|
3895
|
+
type_identifier: ::String,
|
3896
|
+
type_revision: ::String
|
3897
|
+
},
|
3898
|
+
]?
|
3899
|
+
}?
|
3900
|
+
},
|
3901
|
+
domain_identifier: ::String,
|
3902
|
+
identifier: ::String,
|
3903
|
+
?include_child_domain_units: bool,
|
3904
|
+
?name: ::String,
|
3905
|
+
?scope: {
|
3906
|
+
asset_type: {
|
3907
|
+
selection_mode: ("ALL" | "SPECIFIC"),
|
3908
|
+
specific_asset_types: Array[::String]?
|
3909
|
+
}?,
|
3910
|
+
data_product: bool?,
|
3911
|
+
project: {
|
3912
|
+
selection_mode: ("ALL" | "SPECIFIC"),
|
3913
|
+
specific_projects: Array[::String]?
|
3914
|
+
}?
|
3915
|
+
}
|
3916
|
+
) -> _UpdateRuleResponseSuccess
|
3917
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRuleResponseSuccess
|
3918
|
+
|
3185
3919
|
interface _UpdateSubscriptionGrantStatusResponseSuccess
|
3186
3920
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSubscriptionGrantStatusOutput]
|
3187
3921
|
def assets: () -> ::Array[Types::SubscribedAsset]
|
@@ -3215,7 +3949,9 @@ module Aws
|
|
3215
3949
|
def created_by: () -> ::String
|
3216
3950
|
def decision_comment: () -> ::String
|
3217
3951
|
def domain_id: () -> ::String
|
3952
|
+
def existing_subscription_id: () -> ::String
|
3218
3953
|
def id: () -> ::String
|
3954
|
+
def metadata_forms: () -> ::Array[Types::FormOutput]
|
3219
3955
|
def request_reason: () -> ::String
|
3220
3956
|
def reviewer_id: () -> ::String
|
3221
3957
|
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED")
|