aws-sdk-datazone 1.76.0 → 1.78.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 +654 -16
- data/lib/aws-sdk-datazone/client_api.rb +353 -0
- data/lib/aws-sdk-datazone/types.rb +1104 -149
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +262 -581
- data/sig/params.rbs +318 -0
- data/sig/types.rbs +242 -0
- metadata +2 -1
data/sig/client.rbs
CHANGED
|
@@ -98,7 +98,7 @@ module Aws
|
|
|
98
98
|
prediction_target: ::String,
|
|
99
99
|
prediction_choice: ::Integer?,
|
|
100
100
|
edited_value: ::String?
|
|
101
|
-
}
|
|
101
|
+
}
|
|
102
102
|
],
|
|
103
103
|
?client_token: ::String
|
|
104
104
|
) -> _AcceptPredictionsResponseSuccess
|
|
@@ -130,7 +130,7 @@ module Aws
|
|
|
130
130
|
{
|
|
131
131
|
asset_id: ::String,
|
|
132
132
|
filter_ids: Array[::String]
|
|
133
|
-
}
|
|
133
|
+
}
|
|
134
134
|
],
|
|
135
135
|
?asset_permissions: Array[
|
|
136
136
|
{
|
|
@@ -138,7 +138,7 @@ module Aws
|
|
|
138
138
|
permissions: {
|
|
139
139
|
s3: Array[("READ" | "WRITE")]?
|
|
140
140
|
}
|
|
141
|
-
}
|
|
141
|
+
}
|
|
142
142
|
]
|
|
143
143
|
) -> _AcceptSubscriptionRequestResponseSuccess
|
|
144
144
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptSubscriptionRequestResponseSuccess
|
|
@@ -151,14 +151,7 @@ module Aws
|
|
|
151
151
|
domain_identifier: ::String,
|
|
152
152
|
entity_type: ("DOMAIN_UNIT"),
|
|
153
153
|
entity_identifier: ::String,
|
|
154
|
-
owner:
|
|
155
|
-
user: {
|
|
156
|
-
user_identifier: ::String
|
|
157
|
-
}?,
|
|
158
|
-
group: {
|
|
159
|
-
group_identifier: ::String
|
|
160
|
-
}?
|
|
161
|
-
},
|
|
154
|
+
owner: Params::owner_properties,
|
|
162
155
|
?client_token: ::String
|
|
163
156
|
) -> _AddEntityOwnerResponseSuccess
|
|
164
157
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddEntityOwnerResponseSuccess
|
|
@@ -173,34 +166,7 @@ module Aws
|
|
|
173
166
|
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE"),
|
|
174
167
|
entity_identifier: ::String,
|
|
175
168
|
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" | "USE_ASSET_TYPE"),
|
|
176
|
-
principal:
|
|
177
|
-
user: {
|
|
178
|
-
user_identifier: ::String?,
|
|
179
|
-
all_users_grant_filter: {
|
|
180
|
-
}?
|
|
181
|
-
}?,
|
|
182
|
-
group: {
|
|
183
|
-
group_identifier: ::String?
|
|
184
|
-
}?,
|
|
185
|
-
project: {
|
|
186
|
-
project_designation: ("OWNER" | "CONTRIBUTOR" | "PROJECT_CATALOG_STEWARD"),
|
|
187
|
-
project_identifier: ::String?,
|
|
188
|
-
project_grant_filter: {
|
|
189
|
-
domain_unit_filter: {
|
|
190
|
-
domain_unit: ::String,
|
|
191
|
-
include_child_domain_units: bool?
|
|
192
|
-
}?
|
|
193
|
-
}?
|
|
194
|
-
}?,
|
|
195
|
-
domain_unit: {
|
|
196
|
-
domain_unit_designation: ("OWNER"),
|
|
197
|
-
domain_unit_identifier: ::String?,
|
|
198
|
-
domain_unit_grant_filter: {
|
|
199
|
-
all_domain_units_grant_filter: {
|
|
200
|
-
}?
|
|
201
|
-
}?
|
|
202
|
-
}?
|
|
203
|
-
},
|
|
169
|
+
principal: Params::policy_grant_principal,
|
|
204
170
|
detail: {
|
|
205
171
|
create_domain_unit: {
|
|
206
172
|
include_child_domain_units: bool?
|
|
@@ -305,9 +271,9 @@ module Aws
|
|
|
305
271
|
type_identifier: ::String?,
|
|
306
272
|
type_revision: ::String?,
|
|
307
273
|
content: ::String?
|
|
308
|
-
}
|
|
274
|
+
}
|
|
309
275
|
]
|
|
310
|
-
}
|
|
276
|
+
}
|
|
311
277
|
]
|
|
312
278
|
) -> _BatchPutAttributesMetadataResponseSuccess
|
|
313
279
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchPutAttributesMetadataResponseSuccess
|
|
@@ -363,19 +329,7 @@ module Aws
|
|
|
363
329
|
name: ::String,
|
|
364
330
|
?description: ::String,
|
|
365
331
|
resolution_strategy: ("MANUAL"),
|
|
366
|
-
account_source:
|
|
367
|
-
accounts: Array[
|
|
368
|
-
{
|
|
369
|
-
aws_account_id: ::String,
|
|
370
|
-
supported_regions: Array[::String],
|
|
371
|
-
aws_account_name: ::String?
|
|
372
|
-
},
|
|
373
|
-
]?,
|
|
374
|
-
custom_account_pool_handler: {
|
|
375
|
-
lambda_function_arn: ::String,
|
|
376
|
-
lambda_execution_role_arn: ::String?
|
|
377
|
-
}?
|
|
378
|
-
}
|
|
332
|
+
account_source: Params::account_source
|
|
379
333
|
) -> _CreateAccountPoolResponseSuccess
|
|
380
334
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccountPoolResponseSuccess
|
|
381
335
|
|
|
@@ -417,7 +371,7 @@ module Aws
|
|
|
417
371
|
type_identifier: ::String?,
|
|
418
372
|
type_revision: ::String?,
|
|
419
373
|
content: ::String?
|
|
420
|
-
}
|
|
374
|
+
}
|
|
421
375
|
],
|
|
422
376
|
owning_project_identifier: ::String,
|
|
423
377
|
?prediction_configuration: {
|
|
@@ -449,70 +403,7 @@ module Aws
|
|
|
449
403
|
asset_identifier: ::String,
|
|
450
404
|
name: ::String,
|
|
451
405
|
?description: ::String,
|
|
452
|
-
configuration:
|
|
453
|
-
column_configuration: {
|
|
454
|
-
included_column_names: Array[::String]?
|
|
455
|
-
}?,
|
|
456
|
-
row_configuration: {
|
|
457
|
-
row_filter: {
|
|
458
|
-
expression: {
|
|
459
|
-
equal_to: {
|
|
460
|
-
column_name: ::String,
|
|
461
|
-
value: ::String
|
|
462
|
-
}?,
|
|
463
|
-
not_equal_to: {
|
|
464
|
-
column_name: ::String,
|
|
465
|
-
value: ::String
|
|
466
|
-
}?,
|
|
467
|
-
greater_than: {
|
|
468
|
-
column_name: ::String,
|
|
469
|
-
value: ::String
|
|
470
|
-
}?,
|
|
471
|
-
less_than: {
|
|
472
|
-
column_name: ::String,
|
|
473
|
-
value: ::String
|
|
474
|
-
}?,
|
|
475
|
-
greater_than_or_equal_to: {
|
|
476
|
-
column_name: ::String,
|
|
477
|
-
value: ::String
|
|
478
|
-
}?,
|
|
479
|
-
less_than_or_equal_to: {
|
|
480
|
-
column_name: ::String,
|
|
481
|
-
value: ::String
|
|
482
|
-
}?,
|
|
483
|
-
is_null: {
|
|
484
|
-
column_name: ::String
|
|
485
|
-
}?,
|
|
486
|
-
is_not_null: {
|
|
487
|
-
column_name: ::String
|
|
488
|
-
}?,
|
|
489
|
-
in: {
|
|
490
|
-
column_name: ::String,
|
|
491
|
-
values: Array[::String]
|
|
492
|
-
}?,
|
|
493
|
-
not_in: {
|
|
494
|
-
column_name: ::String,
|
|
495
|
-
values: Array[::String]
|
|
496
|
-
}?,
|
|
497
|
-
like: {
|
|
498
|
-
column_name: ::String,
|
|
499
|
-
value: ::String
|
|
500
|
-
}?,
|
|
501
|
-
not_like: {
|
|
502
|
-
column_name: ::String,
|
|
503
|
-
value: ::String
|
|
504
|
-
}?
|
|
505
|
-
}?,
|
|
506
|
-
and: Array[
|
|
507
|
-
untyped,
|
|
508
|
-
]?,
|
|
509
|
-
or: Array[
|
|
510
|
-
untyped,
|
|
511
|
-
]?
|
|
512
|
-
},
|
|
513
|
-
sensitive: bool?
|
|
514
|
-
}?
|
|
515
|
-
},
|
|
406
|
+
configuration: Params::asset_filter_configuration,
|
|
516
407
|
?client_token: ::String
|
|
517
408
|
) -> _CreateAssetFilterResponseSuccess
|
|
518
409
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetFilterResponseSuccess
|
|
@@ -554,7 +445,7 @@ module Aws
|
|
|
554
445
|
type_identifier: ::String?,
|
|
555
446
|
type_revision: ::String?,
|
|
556
447
|
content: ::String?
|
|
557
|
-
}
|
|
448
|
+
}
|
|
558
449
|
],
|
|
559
450
|
?prediction_configuration: {
|
|
560
451
|
business_name_generation: {
|
|
@@ -622,7 +513,7 @@ module Aws
|
|
|
622
513
|
{
|
|
623
514
|
classification: ::String?,
|
|
624
515
|
properties: Hash[::String, ::String]?
|
|
625
|
-
}
|
|
516
|
+
}
|
|
626
517
|
],
|
|
627
518
|
?description: ::String,
|
|
628
519
|
domain_identifier: ::String,
|
|
@@ -789,7 +680,7 @@ module Aws
|
|
|
789
680
|
type_identifier: ::String?,
|
|
790
681
|
type_revision: ::String?,
|
|
791
682
|
content: ::String?
|
|
792
|
-
}
|
|
683
|
+
}
|
|
793
684
|
],
|
|
794
685
|
?items: Array[
|
|
795
686
|
{
|
|
@@ -797,7 +688,7 @@ module Aws
|
|
|
797
688
|
identifier: ::String,
|
|
798
689
|
revision: ::String?,
|
|
799
690
|
glossary_terms: Array[::String]?
|
|
800
|
-
}
|
|
691
|
+
}
|
|
801
692
|
],
|
|
802
693
|
?client_token: ::String
|
|
803
694
|
) -> _CreateDataProductResponseSuccess
|
|
@@ -833,7 +724,7 @@ module Aws
|
|
|
833
724
|
identifier: ::String,
|
|
834
725
|
revision: ::String?,
|
|
835
726
|
glossary_terms: Array[::String]?
|
|
836
|
-
}
|
|
727
|
+
}
|
|
837
728
|
],
|
|
838
729
|
?forms_input: Array[
|
|
839
730
|
{
|
|
@@ -841,7 +732,7 @@ module Aws
|
|
|
841
732
|
type_identifier: ::String?,
|
|
842
733
|
type_revision: ::String?,
|
|
843
734
|
content: ::String?
|
|
844
|
-
}
|
|
735
|
+
}
|
|
845
736
|
],
|
|
846
737
|
?client_token: ::String
|
|
847
738
|
) -> _CreateDataProductRevisionResponseSuccess
|
|
@@ -880,54 +771,7 @@ module Aws
|
|
|
880
771
|
?environment_identifier: ::String,
|
|
881
772
|
?connection_identifier: ::String,
|
|
882
773
|
type: ::String,
|
|
883
|
-
?configuration:
|
|
884
|
-
glue_run_configuration: {
|
|
885
|
-
data_access_role: ::String?,
|
|
886
|
-
relational_filter_configurations: Array[
|
|
887
|
-
{
|
|
888
|
-
database_name: ::String,
|
|
889
|
-
schema_name: ::String?,
|
|
890
|
-
filter_expressions: Array[
|
|
891
|
-
{
|
|
892
|
-
type: ("INCLUDE" | "EXCLUDE"),
|
|
893
|
-
expression: ::String
|
|
894
|
-
},
|
|
895
|
-
]?
|
|
896
|
-
},
|
|
897
|
-
],
|
|
898
|
-
auto_import_data_quality_result: bool?,
|
|
899
|
-
catalog_name: ::String?
|
|
900
|
-
}?,
|
|
901
|
-
redshift_run_configuration: {
|
|
902
|
-
data_access_role: ::String?,
|
|
903
|
-
relational_filter_configurations: Array[
|
|
904
|
-
{
|
|
905
|
-
database_name: ::String,
|
|
906
|
-
schema_name: ::String?,
|
|
907
|
-
filter_expressions: Array[
|
|
908
|
-
{
|
|
909
|
-
type: ("INCLUDE" | "EXCLUDE"),
|
|
910
|
-
expression: ::String
|
|
911
|
-
},
|
|
912
|
-
]?
|
|
913
|
-
},
|
|
914
|
-
],
|
|
915
|
-
redshift_credential_configuration: {
|
|
916
|
-
secret_manager_arn: ::String
|
|
917
|
-
}?,
|
|
918
|
-
redshift_storage: {
|
|
919
|
-
redshift_cluster_source: {
|
|
920
|
-
cluster_name: ::String
|
|
921
|
-
}?,
|
|
922
|
-
redshift_serverless_source: {
|
|
923
|
-
workgroup_name: ::String
|
|
924
|
-
}?
|
|
925
|
-
}?
|
|
926
|
-
}?,
|
|
927
|
-
sage_maker_run_configuration: {
|
|
928
|
-
tracking_assets: Hash[::String, Array[::String]]
|
|
929
|
-
}?
|
|
930
|
-
},
|
|
774
|
+
?configuration: Params::data_source_configuration_input,
|
|
931
775
|
?recommendation: {
|
|
932
776
|
enable_business_name_generation: bool?
|
|
933
777
|
},
|
|
@@ -943,7 +787,7 @@ module Aws
|
|
|
943
787
|
type_identifier: ::String?,
|
|
944
788
|
type_revision: ::String?,
|
|
945
789
|
content: ::String?
|
|
946
|
-
}
|
|
790
|
+
}
|
|
947
791
|
],
|
|
948
792
|
?client_token: ::String
|
|
949
793
|
) -> _CreateDataSourceResponseSuccess
|
|
@@ -1042,7 +886,7 @@ module Aws
|
|
|
1042
886
|
{
|
|
1043
887
|
name: ::String?,
|
|
1044
888
|
value: ::String?
|
|
1045
|
-
}
|
|
889
|
+
}
|
|
1046
890
|
],
|
|
1047
891
|
?glossary_terms: Array[::String],
|
|
1048
892
|
?environment_account_identifier: ::String,
|
|
@@ -1101,15 +945,7 @@ module Aws
|
|
|
1101
945
|
}?
|
|
1102
946
|
},
|
|
1103
947
|
?user_parameters: Array[
|
|
1104
|
-
|
|
1105
|
-
key_name: ::String,
|
|
1106
|
-
description: ::String?,
|
|
1107
|
-
field_type: ::String,
|
|
1108
|
-
default_value: ::String?,
|
|
1109
|
-
is_editable: bool?,
|
|
1110
|
-
is_optional: bool?,
|
|
1111
|
-
is_update_supported: bool?
|
|
1112
|
-
},
|
|
948
|
+
Params::custom_parameter
|
|
1113
949
|
]
|
|
1114
950
|
) -> _CreateEnvironmentBlueprintResponseSuccess
|
|
1115
951
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentBlueprintResponseSuccess
|
|
@@ -1140,7 +976,7 @@ module Aws
|
|
|
1140
976
|
{
|
|
1141
977
|
name: ::String?,
|
|
1142
978
|
value: ::String?
|
|
1143
|
-
}
|
|
979
|
+
}
|
|
1144
980
|
],
|
|
1145
981
|
?aws_account_id: ::String,
|
|
1146
982
|
?aws_account_region: ::String
|
|
@@ -1255,6 +1091,39 @@ module Aws
|
|
|
1255
1091
|
) -> _CreateListingChangeSetResponseSuccess
|
|
1256
1092
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateListingChangeSetResponseSuccess
|
|
1257
1093
|
|
|
1094
|
+
interface _CreateNotebookResponseSuccess
|
|
1095
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateNotebookOutput]
|
|
1096
|
+
def id: () -> ::String
|
|
1097
|
+
def name: () -> ::String
|
|
1098
|
+
def owning_project_id: () -> ::String
|
|
1099
|
+
def domain_id: () -> ::String
|
|
1100
|
+
def cell_order: () -> ::Array[Types::CellInformation]
|
|
1101
|
+
def status: () -> ("ACTIVE" | "ARCHIVED")
|
|
1102
|
+
def description: () -> ::String
|
|
1103
|
+
def created_at: () -> ::Time
|
|
1104
|
+
def created_by: () -> ::String
|
|
1105
|
+
def updated_at: () -> ::Time
|
|
1106
|
+
def updated_by: () -> ::String
|
|
1107
|
+
def locked_by: () -> ::String
|
|
1108
|
+
def locked_at: () -> ::Time
|
|
1109
|
+
def lock_expires_at: () -> ::Time
|
|
1110
|
+
def compute_id: () -> ::String
|
|
1111
|
+
def metadata: () -> ::Hash[::String, ::String]
|
|
1112
|
+
def parameters: () -> ::Hash[::String, ::String]
|
|
1113
|
+
def environment_configuration: () -> Types::EnvironmentConfig
|
|
1114
|
+
end
|
|
1115
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_notebook-instance_method
|
|
1116
|
+
def create_notebook: (
|
|
1117
|
+
domain_identifier: ::String,
|
|
1118
|
+
owning_project_identifier: ::String,
|
|
1119
|
+
name: ::String,
|
|
1120
|
+
?description: ::String,
|
|
1121
|
+
?metadata: Hash[::String, ::String],
|
|
1122
|
+
?parameters: Hash[::String, ::String],
|
|
1123
|
+
?client_token: ::String
|
|
1124
|
+
) -> _CreateNotebookResponseSuccess
|
|
1125
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNotebookResponseSuccess
|
|
1126
|
+
|
|
1258
1127
|
interface _CreateProjectResponseSuccess
|
|
1259
1128
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectOutput]
|
|
1260
1129
|
def domain_id: () -> ::String
|
|
@@ -1284,21 +1153,7 @@ module Aws
|
|
|
1284
1153
|
?domain_unit_id: ::String,
|
|
1285
1154
|
?project_profile_id: ::String,
|
|
1286
1155
|
?user_parameters: Array[
|
|
1287
|
-
|
|
1288
|
-
environment_id: ::String?,
|
|
1289
|
-
environment_resolved_account: {
|
|
1290
|
-
aws_account_id: ::String,
|
|
1291
|
-
region_name: ::String,
|
|
1292
|
-
source_account_pool_id: ::String?
|
|
1293
|
-
}?,
|
|
1294
|
-
environment_configuration_name: ::String?,
|
|
1295
|
-
environment_parameters: Array[
|
|
1296
|
-
{
|
|
1297
|
-
name: ::String?,
|
|
1298
|
-
value: ::String?
|
|
1299
|
-
},
|
|
1300
|
-
]?
|
|
1301
|
-
},
|
|
1156
|
+
Params::environment_configuration_user_parameter
|
|
1302
1157
|
],
|
|
1303
1158
|
?project_category: ::String,
|
|
1304
1159
|
?project_execution_role: ::String,
|
|
@@ -1309,7 +1164,7 @@ module Aws
|
|
|
1309
1164
|
group_identifier: ::String?
|
|
1310
1165
|
},
|
|
1311
1166
|
designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT_CATALOG_VIEWER" | "PROJECT_CATALOG_CONSUMER" | "PROJECT_CATALOG_STEWARD")
|
|
1312
|
-
}
|
|
1167
|
+
}
|
|
1313
1168
|
]
|
|
1314
1169
|
) -> _CreateProjectResponseSuccess
|
|
1315
1170
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
|
|
@@ -1356,45 +1211,12 @@ module Aws
|
|
|
1356
1211
|
key: ::String,
|
|
1357
1212
|
value: ::String,
|
|
1358
1213
|
is_value_editable: bool
|
|
1359
|
-
}
|
|
1214
|
+
}
|
|
1360
1215
|
],
|
|
1361
1216
|
?allow_custom_project_resource_tags: bool,
|
|
1362
1217
|
?project_resource_tags_description: ::String,
|
|
1363
1218
|
?environment_configurations: Array[
|
|
1364
|
-
|
|
1365
|
-
name: ::String,
|
|
1366
|
-
id: ::String?,
|
|
1367
|
-
environment_blueprint_id: ::String,
|
|
1368
|
-
description: ::String?,
|
|
1369
|
-
deployment_mode: ("ON_CREATE" | "ON_DEMAND")?,
|
|
1370
|
-
configuration_parameters: {
|
|
1371
|
-
ssm_path: ::String?,
|
|
1372
|
-
parameter_overrides: Array[
|
|
1373
|
-
{
|
|
1374
|
-
name: ::String?,
|
|
1375
|
-
value: ::String?,
|
|
1376
|
-
is_editable: bool?
|
|
1377
|
-
},
|
|
1378
|
-
]?,
|
|
1379
|
-
resolved_parameters: Array[
|
|
1380
|
-
{
|
|
1381
|
-
name: ::String?,
|
|
1382
|
-
value: ::String?,
|
|
1383
|
-
is_editable: bool?
|
|
1384
|
-
},
|
|
1385
|
-
]?
|
|
1386
|
-
}?,
|
|
1387
|
-
aws_account: {
|
|
1388
|
-
aws_account_id: ::String?,
|
|
1389
|
-
aws_account_id_path: ::String?
|
|
1390
|
-
}?,
|
|
1391
|
-
account_pools: Array[::String]?,
|
|
1392
|
-
aws_region: {
|
|
1393
|
-
region_name: ::String?,
|
|
1394
|
-
region_name_path: ::String?
|
|
1395
|
-
}?,
|
|
1396
|
-
deployment_order: ::Integer?
|
|
1397
|
-
},
|
|
1219
|
+
Params::environment_configuration
|
|
1398
1220
|
],
|
|
1399
1221
|
?domain_unit_identifier: ::String
|
|
1400
1222
|
) -> _CreateProjectProfileResponseSuccess
|
|
@@ -1425,30 +1247,8 @@ module Aws
|
|
|
1425
1247
|
}?
|
|
1426
1248
|
},
|
|
1427
1249
|
action: ("CREATE_LISTING_CHANGE_SET" | "CREATE_SUBSCRIPTION_REQUEST"),
|
|
1428
|
-
scope:
|
|
1429
|
-
|
|
1430
|
-
selection_mode: ("ALL" | "SPECIFIC"),
|
|
1431
|
-
specific_asset_types: Array[::String]?
|
|
1432
|
-
}?,
|
|
1433
|
-
data_product: bool?,
|
|
1434
|
-
project: {
|
|
1435
|
-
selection_mode: ("ALL" | "SPECIFIC"),
|
|
1436
|
-
specific_projects: Array[::String]?
|
|
1437
|
-
}?
|
|
1438
|
-
},
|
|
1439
|
-
detail: {
|
|
1440
|
-
metadata_form_enforcement_detail: {
|
|
1441
|
-
required_metadata_forms: Array[
|
|
1442
|
-
{
|
|
1443
|
-
type_identifier: ::String,
|
|
1444
|
-
type_revision: ::String
|
|
1445
|
-
},
|
|
1446
|
-
]?
|
|
1447
|
-
}?,
|
|
1448
|
-
glossary_term_enforcement_detail: {
|
|
1449
|
-
required_glossary_term_ids: Array[::String]?
|
|
1450
|
-
}?
|
|
1451
|
-
},
|
|
1250
|
+
scope: Params::rule_scope,
|
|
1251
|
+
detail: Params::rule_detail,
|
|
1452
1252
|
?description: ::String,
|
|
1453
1253
|
?client_token: ::String
|
|
1454
1254
|
) -> _CreateRuleResponseSuccess
|
|
@@ -1484,7 +1284,7 @@ module Aws
|
|
|
1484
1284
|
{
|
|
1485
1285
|
asset_id: ::String,
|
|
1486
1286
|
target_name: ::String
|
|
1487
|
-
}
|
|
1287
|
+
}
|
|
1488
1288
|
],
|
|
1489
1289
|
?client_token: ::String
|
|
1490
1290
|
) -> _CreateSubscriptionGrantResponseSuccess
|
|
@@ -1524,12 +1324,12 @@ module Aws
|
|
|
1524
1324
|
iam: {
|
|
1525
1325
|
identifier: ::String?
|
|
1526
1326
|
}?
|
|
1527
|
-
}
|
|
1327
|
+
}
|
|
1528
1328
|
],
|
|
1529
1329
|
subscribed_listings: Array[
|
|
1530
1330
|
{
|
|
1531
1331
|
identifier: ::String
|
|
1532
|
-
}
|
|
1332
|
+
}
|
|
1533
1333
|
],
|
|
1534
1334
|
request_reason: ::String,
|
|
1535
1335
|
?client_token: ::String,
|
|
@@ -1539,7 +1339,7 @@ module Aws
|
|
|
1539
1339
|
type_identifier: ::String?,
|
|
1540
1340
|
type_revision: ::String?,
|
|
1541
1341
|
content: ::String?
|
|
1542
|
-
}
|
|
1342
|
+
}
|
|
1543
1343
|
],
|
|
1544
1344
|
?asset_permissions: Array[
|
|
1545
1345
|
{
|
|
@@ -1547,13 +1347,13 @@ module Aws
|
|
|
1547
1347
|
permissions: {
|
|
1548
1348
|
s3: Array[("READ" | "WRITE")]?
|
|
1549
1349
|
}
|
|
1550
|
-
}
|
|
1350
|
+
}
|
|
1551
1351
|
],
|
|
1552
1352
|
?asset_scopes: Array[
|
|
1553
1353
|
{
|
|
1554
1354
|
asset_id: ::String,
|
|
1555
1355
|
filter_ids: Array[::String]
|
|
1556
|
-
}
|
|
1356
|
+
}
|
|
1557
1357
|
]
|
|
1558
1358
|
) -> _CreateSubscriptionRequestResponseSuccess
|
|
1559
1359
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionRequestResponseSuccess
|
|
@@ -1587,7 +1387,7 @@ module Aws
|
|
|
1587
1387
|
{
|
|
1588
1388
|
form_name: ::String,
|
|
1589
1389
|
content: ::String
|
|
1590
|
-
}
|
|
1390
|
+
}
|
|
1591
1391
|
],
|
|
1592
1392
|
authorized_principals: Array[::String],
|
|
1593
1393
|
manage_access_role: ::String,
|
|
@@ -1819,6 +1619,16 @@ module Aws
|
|
|
1819
1619
|
) -> _DeleteListingResponseSuccess
|
|
1820
1620
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteListingResponseSuccess
|
|
1821
1621
|
|
|
1622
|
+
interface _DeleteNotebookResponseSuccess
|
|
1623
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteNotebookOutput]
|
|
1624
|
+
end
|
|
1625
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_notebook-instance_method
|
|
1626
|
+
def delete_notebook: (
|
|
1627
|
+
domain_identifier: ::String,
|
|
1628
|
+
identifier: ::String
|
|
1629
|
+
) -> _DeleteNotebookResponseSuccess
|
|
1630
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteNotebookResponseSuccess
|
|
1631
|
+
|
|
1822
1632
|
interface _DeleteProjectResponseSuccess
|
|
1823
1633
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectOutput]
|
|
1824
1634
|
end
|
|
@@ -2526,6 +2336,54 @@ module Aws
|
|
|
2526
2336
|
) -> _GetMetadataGenerationRunResponseSuccess
|
|
2527
2337
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMetadataGenerationRunResponseSuccess
|
|
2528
2338
|
|
|
2339
|
+
interface _GetNotebookResponseSuccess
|
|
2340
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotebookOutput]
|
|
2341
|
+
def id: () -> ::String
|
|
2342
|
+
def name: () -> ::String
|
|
2343
|
+
def owning_project_id: () -> ::String
|
|
2344
|
+
def domain_id: () -> ::String
|
|
2345
|
+
def cell_order: () -> ::Array[Types::CellInformation]
|
|
2346
|
+
def status: () -> ("ACTIVE" | "ARCHIVED")
|
|
2347
|
+
def description: () -> ::String
|
|
2348
|
+
def created_at: () -> ::Time
|
|
2349
|
+
def created_by: () -> ::String
|
|
2350
|
+
def updated_at: () -> ::Time
|
|
2351
|
+
def updated_by: () -> ::String
|
|
2352
|
+
def locked_by: () -> ::String
|
|
2353
|
+
def locked_at: () -> ::Time
|
|
2354
|
+
def lock_expires_at: () -> ::Time
|
|
2355
|
+
def compute_id: () -> ::String
|
|
2356
|
+
def metadata: () -> ::Hash[::String, ::String]
|
|
2357
|
+
def parameters: () -> ::Hash[::String, ::String]
|
|
2358
|
+
def environment_configuration: () -> Types::EnvironmentConfig
|
|
2359
|
+
end
|
|
2360
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_notebook-instance_method
|
|
2361
|
+
def get_notebook: (
|
|
2362
|
+
domain_identifier: ::String,
|
|
2363
|
+
identifier: ::String
|
|
2364
|
+
) -> _GetNotebookResponseSuccess
|
|
2365
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotebookResponseSuccess
|
|
2366
|
+
|
|
2367
|
+
interface _GetNotebookExportResponseSuccess
|
|
2368
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotebookExportOutput]
|
|
2369
|
+
def id: () -> ::String
|
|
2370
|
+
def domain_id: () -> ::String
|
|
2371
|
+
def owning_project_id: () -> ::String
|
|
2372
|
+
def notebook_id: () -> ::String
|
|
2373
|
+
def file_format: () -> ("PDF" | "IPYNB")
|
|
2374
|
+
def status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
|
2375
|
+
def output_location: () -> Types::OutputLocation
|
|
2376
|
+
def completed_at: () -> ::Time
|
|
2377
|
+
def created_at: () -> ::Time
|
|
2378
|
+
def created_by: () -> ::String
|
|
2379
|
+
end
|
|
2380
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_notebook_export-instance_method
|
|
2381
|
+
def get_notebook_export: (
|
|
2382
|
+
domain_identifier: ::String,
|
|
2383
|
+
identifier: ::String
|
|
2384
|
+
) -> _GetNotebookExportResponseSuccess
|
|
2385
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotebookExportResponseSuccess
|
|
2386
|
+
|
|
2529
2387
|
interface _GetNotebookRunResponseSuccess
|
|
2530
2388
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotebookRunOutput]
|
|
2531
2389
|
def id: () -> ::String
|
|
@@ -3110,6 +2968,23 @@ module Aws
|
|
|
3110
2968
|
) -> _ListNotebookRunsResponseSuccess
|
|
3111
2969
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotebookRunsResponseSuccess
|
|
3112
2970
|
|
|
2971
|
+
interface _ListNotebooksResponseSuccess
|
|
2972
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotebooksOutput]
|
|
2973
|
+
def items: () -> ::Array[Types::NotebookSummary]
|
|
2974
|
+
def next_token: () -> ::String
|
|
2975
|
+
end
|
|
2976
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_notebooks-instance_method
|
|
2977
|
+
def list_notebooks: (
|
|
2978
|
+
domain_identifier: ::String,
|
|
2979
|
+
owning_project_identifier: ::String,
|
|
2980
|
+
?max_results: ::Integer,
|
|
2981
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
2982
|
+
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
|
2983
|
+
?status: ("ACTIVE" | "ARCHIVED"),
|
|
2984
|
+
?next_token: ::String
|
|
2985
|
+
) -> _ListNotebooksResponseSuccess
|
|
2986
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotebooksResponseSuccess
|
|
2987
|
+
|
|
3113
2988
|
interface _ListNotificationsResponseSuccess
|
|
3114
2989
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
|
|
3115
2990
|
def notifications: () -> ::Array[Types::NotificationOutput]
|
|
@@ -3358,7 +3233,7 @@ module Aws
|
|
|
3358
3233
|
type_revision: ::String?,
|
|
3359
3234
|
timestamp: ::Time,
|
|
3360
3235
|
content: ::String?
|
|
3361
|
-
}
|
|
3236
|
+
}
|
|
3362
3237
|
],
|
|
3363
3238
|
?client_token: ::String
|
|
3364
3239
|
) -> _PostTimeSeriesDataPointsResponseSuccess
|
|
@@ -3408,7 +3283,7 @@ module Aws
|
|
|
3408
3283
|
location_registration_role: ::String?,
|
|
3409
3284
|
location_registration_exclude_s3_locations: Array[::String]?
|
|
3410
3285
|
}?
|
|
3411
|
-
}
|
|
3286
|
+
}
|
|
3412
3287
|
]
|
|
3413
3288
|
) -> _PutEnvironmentBlueprintConfigurationResponseSuccess
|
|
3414
3289
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEnvironmentBlueprintConfigurationResponseSuccess
|
|
@@ -3431,22 +3306,9 @@ module Aws
|
|
|
3431
3306
|
entity_pattern: {
|
|
3432
3307
|
entity_type: ("LINEAGE_NODE"),
|
|
3433
3308
|
identifier: ::String,
|
|
3434
|
-
filters:
|
|
3435
|
-
filter: {
|
|
3436
|
-
attribute: ::String,
|
|
3437
|
-
value: ::String?,
|
|
3438
|
-
int_value: ::Integer?,
|
|
3439
|
-
operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
|
|
3440
|
-
}?,
|
|
3441
|
-
and: Array[
|
|
3442
|
-
untyped,
|
|
3443
|
-
]?,
|
|
3444
|
-
or: Array[
|
|
3445
|
-
untyped,
|
|
3446
|
-
]?
|
|
3447
|
-
}?
|
|
3309
|
+
filters: Params::filter_clause?
|
|
3448
3310
|
}?
|
|
3449
|
-
}
|
|
3311
|
+
}
|
|
3450
3312
|
],
|
|
3451
3313
|
?max_results: ::Integer,
|
|
3452
3314
|
?next_token: ::String,
|
|
@@ -3475,7 +3337,7 @@ module Aws
|
|
|
3475
3337
|
{
|
|
3476
3338
|
prediction_target: ::String,
|
|
3477
3339
|
prediction_choices: Array[::Integer]?
|
|
3478
|
-
}
|
|
3340
|
+
}
|
|
3479
3341
|
],
|
|
3480
3342
|
?client_token: ::String
|
|
3481
3343
|
) -> _RejectPredictionsResponseSuccess
|
|
@@ -3514,14 +3376,7 @@ module Aws
|
|
|
3514
3376
|
domain_identifier: ::String,
|
|
3515
3377
|
entity_type: ("DOMAIN_UNIT"),
|
|
3516
3378
|
entity_identifier: ::String,
|
|
3517
|
-
owner:
|
|
3518
|
-
user: {
|
|
3519
|
-
user_identifier: ::String
|
|
3520
|
-
}?,
|
|
3521
|
-
group: {
|
|
3522
|
-
group_identifier: ::String
|
|
3523
|
-
}?
|
|
3524
|
-
},
|
|
3379
|
+
owner: Params::owner_properties,
|
|
3525
3380
|
?client_token: ::String
|
|
3526
3381
|
) -> _RemoveEntityOwnerResponseSuccess
|
|
3527
3382
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveEntityOwnerResponseSuccess
|
|
@@ -3535,34 +3390,7 @@ module Aws
|
|
|
3535
3390
|
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE"),
|
|
3536
3391
|
entity_identifier: ::String,
|
|
3537
3392
|
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" | "USE_ASSET_TYPE"),
|
|
3538
|
-
principal:
|
|
3539
|
-
user: {
|
|
3540
|
-
user_identifier: ::String?,
|
|
3541
|
-
all_users_grant_filter: {
|
|
3542
|
-
}?
|
|
3543
|
-
}?,
|
|
3544
|
-
group: {
|
|
3545
|
-
group_identifier: ::String?
|
|
3546
|
-
}?,
|
|
3547
|
-
project: {
|
|
3548
|
-
project_designation: ("OWNER" | "CONTRIBUTOR" | "PROJECT_CATALOG_STEWARD"),
|
|
3549
|
-
project_identifier: ::String?,
|
|
3550
|
-
project_grant_filter: {
|
|
3551
|
-
domain_unit_filter: {
|
|
3552
|
-
domain_unit: ::String,
|
|
3553
|
-
include_child_domain_units: bool?
|
|
3554
|
-
}?
|
|
3555
|
-
}?
|
|
3556
|
-
}?,
|
|
3557
|
-
domain_unit: {
|
|
3558
|
-
domain_unit_designation: ("OWNER"),
|
|
3559
|
-
domain_unit_identifier: ::String?,
|
|
3560
|
-
domain_unit_grant_filter: {
|
|
3561
|
-
all_domain_units_grant_filter: {
|
|
3562
|
-
}?
|
|
3563
|
-
}?
|
|
3564
|
-
}?
|
|
3565
|
-
},
|
|
3393
|
+
principal: Params::policy_grant_principal,
|
|
3566
3394
|
?grant_identifier: ::String,
|
|
3567
3395
|
?client_token: ::String
|
|
3568
3396
|
) -> _RemovePolicyGrantResponseSuccess
|
|
@@ -3607,22 +3435,9 @@ module Aws
|
|
|
3607
3435
|
?search_in: Array[
|
|
3608
3436
|
{
|
|
3609
3437
|
attribute: ::String
|
|
3610
|
-
}
|
|
3438
|
+
}
|
|
3611
3439
|
],
|
|
3612
|
-
?filters:
|
|
3613
|
-
filter: {
|
|
3614
|
-
attribute: ::String,
|
|
3615
|
-
value: ::String?,
|
|
3616
|
-
int_value: ::Integer?,
|
|
3617
|
-
operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
|
|
3618
|
-
}?,
|
|
3619
|
-
and: Array[
|
|
3620
|
-
untyped,
|
|
3621
|
-
]?,
|
|
3622
|
-
or: Array[
|
|
3623
|
-
untyped,
|
|
3624
|
-
]?
|
|
3625
|
-
},
|
|
3440
|
+
?filters: Params::filter_clause,
|
|
3626
3441
|
?sort: {
|
|
3627
3442
|
attribute: ::String,
|
|
3628
3443
|
order: ("ASCENDING" | "DESCENDING")?
|
|
@@ -3660,29 +3475,16 @@ module Aws
|
|
|
3660
3475
|
?search_in: Array[
|
|
3661
3476
|
{
|
|
3662
3477
|
attribute: ::String
|
|
3663
|
-
}
|
|
3478
|
+
}
|
|
3664
3479
|
],
|
|
3665
3480
|
?max_results: ::Integer,
|
|
3666
3481
|
?next_token: ::String,
|
|
3667
|
-
?filters:
|
|
3668
|
-
filter: {
|
|
3669
|
-
attribute: ::String,
|
|
3670
|
-
value: ::String?,
|
|
3671
|
-
int_value: ::Integer?,
|
|
3672
|
-
operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
|
|
3673
|
-
}?,
|
|
3674
|
-
and: Array[
|
|
3675
|
-
untyped,
|
|
3676
|
-
]?,
|
|
3677
|
-
or: Array[
|
|
3678
|
-
untyped,
|
|
3679
|
-
]?
|
|
3680
|
-
},
|
|
3482
|
+
?filters: Params::filter_clause,
|
|
3681
3483
|
?aggregations: Array[
|
|
3682
3484
|
{
|
|
3683
3485
|
attribute: ::String,
|
|
3684
3486
|
display_value: ::String?
|
|
3685
|
-
}
|
|
3487
|
+
}
|
|
3686
3488
|
],
|
|
3687
3489
|
?sort: {
|
|
3688
3490
|
attribute: ::String,
|
|
@@ -3708,22 +3510,9 @@ module Aws
|
|
|
3708
3510
|
?search_in: Array[
|
|
3709
3511
|
{
|
|
3710
3512
|
attribute: ::String
|
|
3711
|
-
}
|
|
3513
|
+
}
|
|
3712
3514
|
],
|
|
3713
|
-
?filters:
|
|
3714
|
-
filter: {
|
|
3715
|
-
attribute: ::String,
|
|
3716
|
-
value: ::String?,
|
|
3717
|
-
int_value: ::Integer?,
|
|
3718
|
-
operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
|
|
3719
|
-
}?,
|
|
3720
|
-
and: Array[
|
|
3721
|
-
untyped,
|
|
3722
|
-
]?,
|
|
3723
|
-
or: Array[
|
|
3724
|
-
untyped,
|
|
3725
|
-
]?
|
|
3726
|
-
},
|
|
3515
|
+
?filters: Params::filter_clause,
|
|
3727
3516
|
?sort: {
|
|
3728
3517
|
attribute: ::String,
|
|
3729
3518
|
order: ("ASCENDING" | "DESCENDING")?
|
|
@@ -3797,6 +3586,52 @@ module Aws
|
|
|
3797
3586
|
) -> _StartMetadataGenerationRunResponseSuccess
|
|
3798
3587
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataGenerationRunResponseSuccess
|
|
3799
3588
|
|
|
3589
|
+
interface _StartNotebookExportResponseSuccess
|
|
3590
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartNotebookExportOutput]
|
|
3591
|
+
def id: () -> ::String
|
|
3592
|
+
def domain_id: () -> ::String
|
|
3593
|
+
def owning_project_id: () -> ::String
|
|
3594
|
+
def notebook_id: () -> ::String
|
|
3595
|
+
def file_format: () -> ("PDF" | "IPYNB")
|
|
3596
|
+
def status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
|
3597
|
+
def created_at: () -> ::Time
|
|
3598
|
+
def created_by: () -> ::String
|
|
3599
|
+
end
|
|
3600
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_notebook_export-instance_method
|
|
3601
|
+
def start_notebook_export: (
|
|
3602
|
+
domain_identifier: ::String,
|
|
3603
|
+
notebook_identifier: ::String,
|
|
3604
|
+
owning_project_identifier: ::String,
|
|
3605
|
+
file_format: ("PDF" | "IPYNB"),
|
|
3606
|
+
?client_token: ::String
|
|
3607
|
+
) -> _StartNotebookExportResponseSuccess
|
|
3608
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartNotebookExportResponseSuccess
|
|
3609
|
+
|
|
3610
|
+
interface _StartNotebookImportResponseSuccess
|
|
3611
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartNotebookImportOutput]
|
|
3612
|
+
def notebook_id: () -> ::String
|
|
3613
|
+
def status: () -> ("ACTIVE" | "ARCHIVED")
|
|
3614
|
+
def domain_id: () -> ::String
|
|
3615
|
+
def owning_project_id: () -> ::String
|
|
3616
|
+
def name: () -> ::String
|
|
3617
|
+
def description: () -> ::String
|
|
3618
|
+
def source_location: () -> Types::SourceLocation
|
|
3619
|
+
def created_at: () -> ::Time
|
|
3620
|
+
def created_by: () -> ::String
|
|
3621
|
+
end
|
|
3622
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_notebook_import-instance_method
|
|
3623
|
+
def start_notebook_import: (
|
|
3624
|
+
domain_identifier: ::String,
|
|
3625
|
+
owning_project_identifier: ::String,
|
|
3626
|
+
source_location: {
|
|
3627
|
+
s3: ::String?
|
|
3628
|
+
},
|
|
3629
|
+
name: ::String,
|
|
3630
|
+
?description: ::String,
|
|
3631
|
+
?client_token: ::String
|
|
3632
|
+
) -> _StartNotebookImportResponseSuccess
|
|
3633
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartNotebookImportResponseSuccess
|
|
3634
|
+
|
|
3800
3635
|
interface _StartNotebookRunResponseSuccess
|
|
3801
3636
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartNotebookRunOutput]
|
|
3802
3637
|
def id: () -> ::String
|
|
@@ -3906,19 +3741,7 @@ module Aws
|
|
|
3906
3741
|
?name: ::String,
|
|
3907
3742
|
?description: ::String,
|
|
3908
3743
|
?resolution_strategy: ("MANUAL"),
|
|
3909
|
-
?account_source:
|
|
3910
|
-
accounts: Array[
|
|
3911
|
-
{
|
|
3912
|
-
aws_account_id: ::String,
|
|
3913
|
-
supported_regions: Array[::String],
|
|
3914
|
-
aws_account_name: ::String?
|
|
3915
|
-
},
|
|
3916
|
-
]?,
|
|
3917
|
-
custom_account_pool_handler: {
|
|
3918
|
-
lambda_function_arn: ::String,
|
|
3919
|
-
lambda_execution_role_arn: ::String?
|
|
3920
|
-
}?
|
|
3921
|
-
}
|
|
3744
|
+
?account_source: Params::account_source
|
|
3922
3745
|
) -> _UpdateAccountPoolResponseSuccess
|
|
3923
3746
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccountPoolResponseSuccess
|
|
3924
3747
|
|
|
@@ -3943,70 +3766,7 @@ module Aws
|
|
|
3943
3766
|
identifier: ::String,
|
|
3944
3767
|
?name: ::String,
|
|
3945
3768
|
?description: ::String,
|
|
3946
|
-
?configuration:
|
|
3947
|
-
column_configuration: {
|
|
3948
|
-
included_column_names: Array[::String]?
|
|
3949
|
-
}?,
|
|
3950
|
-
row_configuration: {
|
|
3951
|
-
row_filter: {
|
|
3952
|
-
expression: {
|
|
3953
|
-
equal_to: {
|
|
3954
|
-
column_name: ::String,
|
|
3955
|
-
value: ::String
|
|
3956
|
-
}?,
|
|
3957
|
-
not_equal_to: {
|
|
3958
|
-
column_name: ::String,
|
|
3959
|
-
value: ::String
|
|
3960
|
-
}?,
|
|
3961
|
-
greater_than: {
|
|
3962
|
-
column_name: ::String,
|
|
3963
|
-
value: ::String
|
|
3964
|
-
}?,
|
|
3965
|
-
less_than: {
|
|
3966
|
-
column_name: ::String,
|
|
3967
|
-
value: ::String
|
|
3968
|
-
}?,
|
|
3969
|
-
greater_than_or_equal_to: {
|
|
3970
|
-
column_name: ::String,
|
|
3971
|
-
value: ::String
|
|
3972
|
-
}?,
|
|
3973
|
-
less_than_or_equal_to: {
|
|
3974
|
-
column_name: ::String,
|
|
3975
|
-
value: ::String
|
|
3976
|
-
}?,
|
|
3977
|
-
is_null: {
|
|
3978
|
-
column_name: ::String
|
|
3979
|
-
}?,
|
|
3980
|
-
is_not_null: {
|
|
3981
|
-
column_name: ::String
|
|
3982
|
-
}?,
|
|
3983
|
-
in: {
|
|
3984
|
-
column_name: ::String,
|
|
3985
|
-
values: Array[::String]
|
|
3986
|
-
}?,
|
|
3987
|
-
not_in: {
|
|
3988
|
-
column_name: ::String,
|
|
3989
|
-
values: Array[::String]
|
|
3990
|
-
}?,
|
|
3991
|
-
like: {
|
|
3992
|
-
column_name: ::String,
|
|
3993
|
-
value: ::String
|
|
3994
|
-
}?,
|
|
3995
|
-
not_like: {
|
|
3996
|
-
column_name: ::String,
|
|
3997
|
-
value: ::String
|
|
3998
|
-
}?
|
|
3999
|
-
}?,
|
|
4000
|
-
and: Array[
|
|
4001
|
-
untyped,
|
|
4002
|
-
]?,
|
|
4003
|
-
or: Array[
|
|
4004
|
-
untyped,
|
|
4005
|
-
]?
|
|
4006
|
-
},
|
|
4007
|
-
sensitive: bool?
|
|
4008
|
-
}?
|
|
4009
|
-
}
|
|
3769
|
+
?configuration: Params::asset_filter_configuration
|
|
4010
3770
|
) -> _UpdateAssetFilterResponseSuccess
|
|
4011
3771
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssetFilterResponseSuccess
|
|
4012
3772
|
|
|
@@ -4031,7 +3791,7 @@ module Aws
|
|
|
4031
3791
|
{
|
|
4032
3792
|
classification: ::String?,
|
|
4033
3793
|
properties: Hash[::String, ::String]?
|
|
4034
|
-
}
|
|
3794
|
+
}
|
|
4035
3795
|
],
|
|
4036
3796
|
domain_identifier: ::String,
|
|
4037
3797
|
identifier: ::String,
|
|
@@ -4154,60 +3914,13 @@ module Aws
|
|
|
4154
3914
|
type_identifier: ::String?,
|
|
4155
3915
|
type_revision: ::String?,
|
|
4156
3916
|
content: ::String?
|
|
4157
|
-
}
|
|
3917
|
+
}
|
|
4158
3918
|
],
|
|
4159
3919
|
?schedule: {
|
|
4160
3920
|
timezone: ("UTC" | "AFRICA_JOHANNESBURG" | "AMERICA_MONTREAL" | "AMERICA_SAO_PAULO" | "ASIA_BAHRAIN" | "ASIA_BANGKOK" | "ASIA_CALCUTTA" | "ASIA_DUBAI" | "ASIA_HONG_KONG" | "ASIA_JAKARTA" | "ASIA_KUALA_LUMPUR" | "ASIA_SEOUL" | "ASIA_SHANGHAI" | "ASIA_SINGAPORE" | "ASIA_TAIPEI" | "ASIA_TOKYO" | "AUSTRALIA_MELBOURNE" | "AUSTRALIA_SYDNEY" | "CANADA_CENTRAL" | "CET" | "CST6CDT" | "ETC_GMT" | "ETC_GMT0" | "ETC_GMT_ADD_0" | "ETC_GMT_ADD_1" | "ETC_GMT_ADD_10" | "ETC_GMT_ADD_11" | "ETC_GMT_ADD_12" | "ETC_GMT_ADD_2" | "ETC_GMT_ADD_3" | "ETC_GMT_ADD_4" | "ETC_GMT_ADD_5" | "ETC_GMT_ADD_6" | "ETC_GMT_ADD_7" | "ETC_GMT_ADD_8" | "ETC_GMT_ADD_9" | "ETC_GMT_NEG_0" | "ETC_GMT_NEG_1" | "ETC_GMT_NEG_10" | "ETC_GMT_NEG_11" | "ETC_GMT_NEG_12" | "ETC_GMT_NEG_13" | "ETC_GMT_NEG_14" | "ETC_GMT_NEG_2" | "ETC_GMT_NEG_3" | "ETC_GMT_NEG_4" | "ETC_GMT_NEG_5" | "ETC_GMT_NEG_6" | "ETC_GMT_NEG_7" | "ETC_GMT_NEG_8" | "ETC_GMT_NEG_9" | "EUROPE_DUBLIN" | "EUROPE_LONDON" | "EUROPE_PARIS" | "EUROPE_STOCKHOLM" | "EUROPE_ZURICH" | "ISRAEL" | "MEXICO_GENERAL" | "MST7MDT" | "PACIFIC_AUCKLAND" | "US_CENTRAL" | "US_EASTERN" | "US_MOUNTAIN" | "US_PACIFIC")?,
|
|
4161
3921
|
schedule: ::String?
|
|
4162
3922
|
},
|
|
4163
|
-
?configuration:
|
|
4164
|
-
glue_run_configuration: {
|
|
4165
|
-
data_access_role: ::String?,
|
|
4166
|
-
relational_filter_configurations: Array[
|
|
4167
|
-
{
|
|
4168
|
-
database_name: ::String,
|
|
4169
|
-
schema_name: ::String?,
|
|
4170
|
-
filter_expressions: Array[
|
|
4171
|
-
{
|
|
4172
|
-
type: ("INCLUDE" | "EXCLUDE"),
|
|
4173
|
-
expression: ::String
|
|
4174
|
-
},
|
|
4175
|
-
]?
|
|
4176
|
-
},
|
|
4177
|
-
],
|
|
4178
|
-
auto_import_data_quality_result: bool?,
|
|
4179
|
-
catalog_name: ::String?
|
|
4180
|
-
}?,
|
|
4181
|
-
redshift_run_configuration: {
|
|
4182
|
-
data_access_role: ::String?,
|
|
4183
|
-
relational_filter_configurations: Array[
|
|
4184
|
-
{
|
|
4185
|
-
database_name: ::String,
|
|
4186
|
-
schema_name: ::String?,
|
|
4187
|
-
filter_expressions: Array[
|
|
4188
|
-
{
|
|
4189
|
-
type: ("INCLUDE" | "EXCLUDE"),
|
|
4190
|
-
expression: ::String
|
|
4191
|
-
},
|
|
4192
|
-
]?
|
|
4193
|
-
},
|
|
4194
|
-
],
|
|
4195
|
-
redshift_credential_configuration: {
|
|
4196
|
-
secret_manager_arn: ::String
|
|
4197
|
-
}?,
|
|
4198
|
-
redshift_storage: {
|
|
4199
|
-
redshift_cluster_source: {
|
|
4200
|
-
cluster_name: ::String
|
|
4201
|
-
}?,
|
|
4202
|
-
redshift_serverless_source: {
|
|
4203
|
-
workgroup_name: ::String
|
|
4204
|
-
}?
|
|
4205
|
-
}?
|
|
4206
|
-
}?,
|
|
4207
|
-
sage_maker_run_configuration: {
|
|
4208
|
-
tracking_assets: Hash[::String, Array[::String]]
|
|
4209
|
-
}?
|
|
4210
|
-
},
|
|
3923
|
+
?configuration: Params::data_source_configuration_input,
|
|
4211
3924
|
?recommendation: {
|
|
4212
3925
|
enable_business_name_generation: bool?
|
|
4213
3926
|
},
|
|
@@ -4302,7 +4015,7 @@ module Aws
|
|
|
4302
4015
|
{
|
|
4303
4016
|
name: ::String?,
|
|
4304
4017
|
value: ::String?
|
|
4305
|
-
}
|
|
4018
|
+
}
|
|
4306
4019
|
],
|
|
4307
4020
|
?environment_configuration_name: ::String
|
|
4308
4021
|
) -> _UpdateEnvironmentResponseSuccess
|
|
@@ -4356,15 +4069,7 @@ module Aws
|
|
|
4356
4069
|
}?
|
|
4357
4070
|
},
|
|
4358
4071
|
?user_parameters: Array[
|
|
4359
|
-
|
|
4360
|
-
key_name: ::String,
|
|
4361
|
-
description: ::String?,
|
|
4362
|
-
field_type: ::String,
|
|
4363
|
-
default_value: ::String?,
|
|
4364
|
-
is_editable: bool?,
|
|
4365
|
-
is_optional: bool?,
|
|
4366
|
-
is_update_supported: bool?
|
|
4367
|
-
},
|
|
4072
|
+
Params::custom_parameter
|
|
4368
4073
|
]
|
|
4369
4074
|
) -> _UpdateEnvironmentBlueprintResponseSuccess
|
|
4370
4075
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentBlueprintResponseSuccess
|
|
@@ -4394,7 +4099,7 @@ module Aws
|
|
|
4394
4099
|
{
|
|
4395
4100
|
name: ::String?,
|
|
4396
4101
|
value: ::String?
|
|
4397
|
-
}
|
|
4102
|
+
}
|
|
4398
4103
|
],
|
|
4399
4104
|
?aws_account_id: ::String,
|
|
4400
4105
|
?aws_account_region: ::String
|
|
@@ -4467,6 +4172,51 @@ module Aws
|
|
|
4467
4172
|
) -> _UpdateGroupProfileResponseSuccess
|
|
4468
4173
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGroupProfileResponseSuccess
|
|
4469
4174
|
|
|
4175
|
+
interface _UpdateNotebookResponseSuccess
|
|
4176
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNotebookOutput]
|
|
4177
|
+
def id: () -> ::String
|
|
4178
|
+
def name: () -> ::String
|
|
4179
|
+
def owning_project_id: () -> ::String
|
|
4180
|
+
def domain_id: () -> ::String
|
|
4181
|
+
def cell_order: () -> ::Array[Types::CellInformation]
|
|
4182
|
+
def status: () -> ("ACTIVE" | "ARCHIVED")
|
|
4183
|
+
def description: () -> ::String
|
|
4184
|
+
def created_at: () -> ::Time
|
|
4185
|
+
def created_by: () -> ::String
|
|
4186
|
+
def updated_at: () -> ::Time
|
|
4187
|
+
def updated_by: () -> ::String
|
|
4188
|
+
def locked_by: () -> ::String
|
|
4189
|
+
def locked_at: () -> ::Time
|
|
4190
|
+
def lock_expires_at: () -> ::Time
|
|
4191
|
+
def compute_id: () -> ::String
|
|
4192
|
+
def metadata: () -> ::Hash[::String, ::String]
|
|
4193
|
+
def parameters: () -> ::Hash[::String, ::String]
|
|
4194
|
+
def environment_configuration: () -> Types::EnvironmentConfig
|
|
4195
|
+
end
|
|
4196
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_notebook-instance_method
|
|
4197
|
+
def update_notebook: (
|
|
4198
|
+
domain_identifier: ::String,
|
|
4199
|
+
identifier: ::String,
|
|
4200
|
+
?description: ::String,
|
|
4201
|
+
?status: ("ACTIVE" | "ARCHIVED"),
|
|
4202
|
+
?name: ::String,
|
|
4203
|
+
?cell_order: Array[
|
|
4204
|
+
{
|
|
4205
|
+
}
|
|
4206
|
+
],
|
|
4207
|
+
?metadata: Hash[::String, ::String],
|
|
4208
|
+
?parameters: Hash[::String, ::String],
|
|
4209
|
+
?environment_configuration: {
|
|
4210
|
+
image_version: ::String?,
|
|
4211
|
+
package_config: {
|
|
4212
|
+
package_manager: ("UV"),
|
|
4213
|
+
package_specification: ::String?
|
|
4214
|
+
}?
|
|
4215
|
+
},
|
|
4216
|
+
?client_token: ::String
|
|
4217
|
+
) -> _UpdateNotebookResponseSuccess
|
|
4218
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNotebookResponseSuccess
|
|
4219
|
+
|
|
4470
4220
|
interface _UpdateProjectResponseSuccess
|
|
4471
4221
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectOutput]
|
|
4472
4222
|
def domain_id: () -> ::String
|
|
@@ -4501,25 +4251,11 @@ module Aws
|
|
|
4501
4251
|
{
|
|
4502
4252
|
code: ::String?,
|
|
4503
4253
|
message: ::String
|
|
4504
|
-
}
|
|
4254
|
+
}
|
|
4505
4255
|
]]?
|
|
4506
4256
|
},
|
|
4507
4257
|
?user_parameters: Array[
|
|
4508
|
-
|
|
4509
|
-
environment_id: ::String?,
|
|
4510
|
-
environment_resolved_account: {
|
|
4511
|
-
aws_account_id: ::String,
|
|
4512
|
-
region_name: ::String,
|
|
4513
|
-
source_account_pool_id: ::String?
|
|
4514
|
-
}?,
|
|
4515
|
-
environment_configuration_name: ::String?,
|
|
4516
|
-
environment_parameters: Array[
|
|
4517
|
-
{
|
|
4518
|
-
name: ::String?,
|
|
4519
|
-
value: ::String?
|
|
4520
|
-
},
|
|
4521
|
-
]?
|
|
4522
|
-
},
|
|
4258
|
+
Params::environment_configuration_user_parameter
|
|
4523
4259
|
],
|
|
4524
4260
|
?project_profile_version: ::String
|
|
4525
4261
|
) -> _UpdateProjectResponseSuccess
|
|
@@ -4553,45 +4289,12 @@ module Aws
|
|
|
4553
4289
|
key: ::String,
|
|
4554
4290
|
value: ::String,
|
|
4555
4291
|
is_value_editable: bool
|
|
4556
|
-
}
|
|
4292
|
+
}
|
|
4557
4293
|
],
|
|
4558
4294
|
?allow_custom_project_resource_tags: bool,
|
|
4559
4295
|
?project_resource_tags_description: ::String,
|
|
4560
4296
|
?environment_configurations: Array[
|
|
4561
|
-
|
|
4562
|
-
name: ::String,
|
|
4563
|
-
id: ::String?,
|
|
4564
|
-
environment_blueprint_id: ::String,
|
|
4565
|
-
description: ::String?,
|
|
4566
|
-
deployment_mode: ("ON_CREATE" | "ON_DEMAND")?,
|
|
4567
|
-
configuration_parameters: {
|
|
4568
|
-
ssm_path: ::String?,
|
|
4569
|
-
parameter_overrides: Array[
|
|
4570
|
-
{
|
|
4571
|
-
name: ::String?,
|
|
4572
|
-
value: ::String?,
|
|
4573
|
-
is_editable: bool?
|
|
4574
|
-
},
|
|
4575
|
-
]?,
|
|
4576
|
-
resolved_parameters: Array[
|
|
4577
|
-
{
|
|
4578
|
-
name: ::String?,
|
|
4579
|
-
value: ::String?,
|
|
4580
|
-
is_editable: bool?
|
|
4581
|
-
},
|
|
4582
|
-
]?
|
|
4583
|
-
}?,
|
|
4584
|
-
aws_account: {
|
|
4585
|
-
aws_account_id: ::String?,
|
|
4586
|
-
aws_account_id_path: ::String?
|
|
4587
|
-
}?,
|
|
4588
|
-
account_pools: Array[::String]?,
|
|
4589
|
-
aws_region: {
|
|
4590
|
-
region_name: ::String?,
|
|
4591
|
-
region_name_path: ::String?
|
|
4592
|
-
}?,
|
|
4593
|
-
deployment_order: ::Integer?
|
|
4594
|
-
},
|
|
4297
|
+
Params::environment_configuration
|
|
4595
4298
|
],
|
|
4596
4299
|
?domain_unit_identifier: ::String
|
|
4597
4300
|
) -> _UpdateProjectProfileResponseSuccess
|
|
@@ -4631,30 +4334,8 @@ module Aws
|
|
|
4631
4334
|
identifier: ::String,
|
|
4632
4335
|
?name: ::String,
|
|
4633
4336
|
?description: ::String,
|
|
4634
|
-
?scope:
|
|
4635
|
-
|
|
4636
|
-
selection_mode: ("ALL" | "SPECIFIC"),
|
|
4637
|
-
specific_asset_types: Array[::String]?
|
|
4638
|
-
}?,
|
|
4639
|
-
data_product: bool?,
|
|
4640
|
-
project: {
|
|
4641
|
-
selection_mode: ("ALL" | "SPECIFIC"),
|
|
4642
|
-
specific_projects: Array[::String]?
|
|
4643
|
-
}?
|
|
4644
|
-
},
|
|
4645
|
-
?detail: {
|
|
4646
|
-
metadata_form_enforcement_detail: {
|
|
4647
|
-
required_metadata_forms: Array[
|
|
4648
|
-
{
|
|
4649
|
-
type_identifier: ::String,
|
|
4650
|
-
type_revision: ::String
|
|
4651
|
-
},
|
|
4652
|
-
]?
|
|
4653
|
-
}?,
|
|
4654
|
-
glossary_term_enforcement_detail: {
|
|
4655
|
-
required_glossary_term_ids: Array[::String]?
|
|
4656
|
-
}?
|
|
4657
|
-
},
|
|
4337
|
+
?scope: Params::rule_scope,
|
|
4338
|
+
?detail: Params::rule_detail,
|
|
4658
4339
|
?include_child_domain_units: bool
|
|
4659
4340
|
) -> _UpdateRuleResponseSuccess
|
|
4660
4341
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRuleResponseSuccess
|
|
@@ -4743,7 +4424,7 @@ module Aws
|
|
|
4743
4424
|
{
|
|
4744
4425
|
form_name: ::String,
|
|
4745
4426
|
content: ::String
|
|
4746
|
-
}
|
|
4427
|
+
}
|
|
4747
4428
|
],
|
|
4748
4429
|
?manage_access_role: ::String,
|
|
4749
4430
|
?provider: ::String,
|