aws-sdk-datazone 1.58.0 → 1.60.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 +358 -6
- data/lib/aws-sdk-datazone/client_api.rb +192 -3
- data/lib/aws-sdk-datazone/types.rb +466 -17
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +102 -4
- data/sig/types.rbs +145 -5
- metadata +1 -1
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -123,6 +123,14 @@ module Aws
|
|
|
123
123
|
end
|
|
124
124
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#accept_subscription_request-instance_method
|
|
125
125
|
def accept_subscription_request: (
|
|
126
|
+
?asset_permissions: Array[
|
|
127
|
+
{
|
|
128
|
+
asset_id: ::String,
|
|
129
|
+
permissions: {
|
|
130
|
+
s3: Array[("READ" | "WRITE")]?
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
],
|
|
126
134
|
?asset_scopes: Array[
|
|
127
135
|
{
|
|
128
136
|
asset_id: ::String,
|
|
@@ -262,6 +270,48 @@ module Aws
|
|
|
262
270
|
) -> _AssociateGovernedTermsResponseSuccess
|
|
263
271
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateGovernedTermsResponseSuccess
|
|
264
272
|
|
|
273
|
+
interface _BatchGetAttributesMetadataResponseSuccess
|
|
274
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetAttributesMetadataOutput]
|
|
275
|
+
def attributes: () -> ::Array[Types::BatchGetAttributeOutput]
|
|
276
|
+
def errors: () -> ::Array[Types::AttributeError]
|
|
277
|
+
end
|
|
278
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#batch_get_attributes_metadata-instance_method
|
|
279
|
+
def batch_get_attributes_metadata: (
|
|
280
|
+
attribute_identifiers: Array[::String],
|
|
281
|
+
domain_identifier: ::String,
|
|
282
|
+
entity_identifier: ::String,
|
|
283
|
+
?entity_revision: ::String,
|
|
284
|
+
entity_type: ("ASSET" | "LISTING")
|
|
285
|
+
) -> _BatchGetAttributesMetadataResponseSuccess
|
|
286
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetAttributesMetadataResponseSuccess
|
|
287
|
+
|
|
288
|
+
interface _BatchPutAttributesMetadataResponseSuccess
|
|
289
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchPutAttributesMetadataOutput]
|
|
290
|
+
def attributes: () -> ::Array[Types::BatchPutAttributeOutput]
|
|
291
|
+
def errors: () -> ::Array[Types::AttributeError]
|
|
292
|
+
end
|
|
293
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#batch_put_attributes_metadata-instance_method
|
|
294
|
+
def batch_put_attributes_metadata: (
|
|
295
|
+
attributes: Array[
|
|
296
|
+
{
|
|
297
|
+
attribute_identifier: ::String,
|
|
298
|
+
forms: Array[
|
|
299
|
+
{
|
|
300
|
+
content: ::String?,
|
|
301
|
+
form_name: ::String,
|
|
302
|
+
type_identifier: ::String?,
|
|
303
|
+
type_revision: ::String?
|
|
304
|
+
},
|
|
305
|
+
]
|
|
306
|
+
},
|
|
307
|
+
],
|
|
308
|
+
?client_token: ::String,
|
|
309
|
+
domain_identifier: ::String,
|
|
310
|
+
entity_identifier: ::String,
|
|
311
|
+
entity_type: ("ASSET" | "LISTING")
|
|
312
|
+
) -> _BatchPutAttributesMetadataResponseSuccess
|
|
313
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchPutAttributesMetadataResponseSuccess
|
|
314
|
+
|
|
265
315
|
interface _CancelMetadataGenerationRunResponseSuccess
|
|
266
316
|
include ::Seahorse::Client::_ResponseSuccess[Types::CancelMetadataGenerationRunOutput]
|
|
267
317
|
end
|
|
@@ -1325,7 +1375,7 @@ module Aws
|
|
|
1325
1375
|
def detail: () -> Types::RuleDetail
|
|
1326
1376
|
def identifier: () -> ::String
|
|
1327
1377
|
def name: () -> ::String
|
|
1328
|
-
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT")
|
|
1378
|
+
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
1329
1379
|
def scope: () -> Types::RuleScope
|
|
1330
1380
|
def target: () -> Types::RuleTarget
|
|
1331
1381
|
def target_type: () -> ("DOMAIN_UNIT")
|
|
@@ -1336,6 +1386,9 @@ module Aws
|
|
|
1336
1386
|
?client_token: ::String,
|
|
1337
1387
|
?description: ::String,
|
|
1338
1388
|
detail: {
|
|
1389
|
+
glossary_term_enforcement_detail: {
|
|
1390
|
+
required_glossary_term_ids: Array[::String]?
|
|
1391
|
+
}?,
|
|
1339
1392
|
metadata_form_enforcement_detail: {
|
|
1340
1393
|
required_metadata_forms: Array[
|
|
1341
1394
|
{
|
|
@@ -1373,6 +1426,7 @@ module Aws
|
|
|
1373
1426
|
def created_at: () -> ::Time
|
|
1374
1427
|
def created_by: () -> ::String
|
|
1375
1428
|
def domain_id: () -> ::String
|
|
1429
|
+
def environment_id: () -> ::String
|
|
1376
1430
|
def granted_entity: () -> Types::GrantedEntity
|
|
1377
1431
|
def id: () -> ::String
|
|
1378
1432
|
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -1421,6 +1475,20 @@ module Aws
|
|
|
1421
1475
|
end
|
|
1422
1476
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_subscription_request-instance_method
|
|
1423
1477
|
def create_subscription_request: (
|
|
1478
|
+
?asset_permissions: Array[
|
|
1479
|
+
{
|
|
1480
|
+
asset_id: ::String,
|
|
1481
|
+
permissions: {
|
|
1482
|
+
s3: Array[("READ" | "WRITE")]?
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1485
|
+
],
|
|
1486
|
+
?asset_scopes: Array[
|
|
1487
|
+
{
|
|
1488
|
+
asset_id: ::String,
|
|
1489
|
+
filter_ids: Array[::String]
|
|
1490
|
+
},
|
|
1491
|
+
],
|
|
1424
1492
|
?client_token: ::String,
|
|
1425
1493
|
domain_identifier: ::String,
|
|
1426
1494
|
?metadata_forms: Array[
|
|
@@ -1439,8 +1507,14 @@ module Aws
|
|
|
1439
1507
|
],
|
|
1440
1508
|
subscribed_principals: Array[
|
|
1441
1509
|
{
|
|
1510
|
+
group: {
|
|
1511
|
+
identifier: ::String?
|
|
1512
|
+
}?,
|
|
1442
1513
|
project: {
|
|
1443
1514
|
identifier: ::String?
|
|
1515
|
+
}?,
|
|
1516
|
+
user: {
|
|
1517
|
+
identifier: ::String?
|
|
1444
1518
|
}?
|
|
1445
1519
|
},
|
|
1446
1520
|
]
|
|
@@ -1747,6 +1821,7 @@ module Aws
|
|
|
1747
1821
|
def created_at: () -> ::Time
|
|
1748
1822
|
def created_by: () -> ::String
|
|
1749
1823
|
def domain_id: () -> ::String
|
|
1824
|
+
def environment_id: () -> ::String
|
|
1750
1825
|
def granted_entity: () -> Types::GrantedEntity
|
|
1751
1826
|
def id: () -> ::String
|
|
1752
1827
|
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -2439,7 +2514,7 @@ module Aws
|
|
|
2439
2514
|
def last_updated_by: () -> ::String
|
|
2440
2515
|
def name: () -> ::String
|
|
2441
2516
|
def revision: () -> ::String
|
|
2442
|
-
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT")
|
|
2517
|
+
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
2443
2518
|
def scope: () -> Types::RuleScope
|
|
2444
2519
|
def target: () -> Types::RuleTarget
|
|
2445
2520
|
def target_type: () -> ("DOMAIN_UNIT")
|
|
@@ -2480,6 +2555,7 @@ module Aws
|
|
|
2480
2555
|
def created_at: () -> ::Time
|
|
2481
2556
|
def created_by: () -> ::String
|
|
2482
2557
|
def domain_id: () -> ::String
|
|
2558
|
+
def environment_id: () -> ::String
|
|
2483
2559
|
def granted_entity: () -> Types::GrantedEntity
|
|
2484
2560
|
def id: () -> ::String
|
|
2485
2561
|
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -3007,7 +3083,7 @@ module Aws
|
|
|
3007
3083
|
?max_results: ::Integer,
|
|
3008
3084
|
?next_token: ::String,
|
|
3009
3085
|
?project_ids: Array[::String],
|
|
3010
|
-
?rule_type: ("METADATA_FORM_ENFORCEMENT"),
|
|
3086
|
+
?rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT"),
|
|
3011
3087
|
target_identifier: ::String,
|
|
3012
3088
|
target_type: ("DOMAIN_UNIT")
|
|
3013
3089
|
) -> _ListRulesResponseSuccess
|
|
@@ -3024,7 +3100,9 @@ module Aws
|
|
|
3024
3100
|
?environment_id: ::String,
|
|
3025
3101
|
?max_results: ::Integer,
|
|
3026
3102
|
?next_token: ::String,
|
|
3103
|
+
?owning_group_id: ::String,
|
|
3027
3104
|
?owning_project_id: ::String,
|
|
3105
|
+
?owning_user_id: ::String,
|
|
3028
3106
|
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
|
3029
3107
|
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
3030
3108
|
?subscribed_listing_id: ::String,
|
|
@@ -3044,7 +3122,9 @@ module Aws
|
|
|
3044
3122
|
domain_identifier: ::String,
|
|
3045
3123
|
?max_results: ::Integer,
|
|
3046
3124
|
?next_token: ::String,
|
|
3125
|
+
?owning_group_id: ::String,
|
|
3047
3126
|
?owning_project_id: ::String,
|
|
3127
|
+
?owning_user_id: ::String,
|
|
3048
3128
|
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
|
3049
3129
|
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
3050
3130
|
?status: ("PENDING" | "ACCEPTED" | "REJECTED"),
|
|
@@ -3079,7 +3159,9 @@ module Aws
|
|
|
3079
3159
|
domain_identifier: ::String,
|
|
3080
3160
|
?max_results: ::Integer,
|
|
3081
3161
|
?next_token: ::String,
|
|
3162
|
+
?owning_group_id: ::String,
|
|
3082
3163
|
?owning_project_id: ::String,
|
|
3164
|
+
?owning_user_id: ::String,
|
|
3083
3165
|
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
|
3084
3166
|
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
3085
3167
|
?status: ("APPROVED" | "REVOKED" | "CANCELLED"),
|
|
@@ -4237,6 +4319,18 @@ module Aws
|
|
|
4237
4319
|
) -> _UpdateProjectProfileResponseSuccess
|
|
4238
4320
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectProfileResponseSuccess
|
|
4239
4321
|
|
|
4322
|
+
interface _UpdateRootDomainUnitOwnerResponseSuccess
|
|
4323
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRootDomainUnitOwnerOutput]
|
|
4324
|
+
end
|
|
4325
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_root_domain_unit_owner-instance_method
|
|
4326
|
+
def update_root_domain_unit_owner: (
|
|
4327
|
+
?client_token: ::String,
|
|
4328
|
+
current_owner: ::String,
|
|
4329
|
+
domain_identifier: ::String,
|
|
4330
|
+
new_owner: ::String
|
|
4331
|
+
) -> _UpdateRootDomainUnitOwnerResponseSuccess
|
|
4332
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRootDomainUnitOwnerResponseSuccess
|
|
4333
|
+
|
|
4240
4334
|
interface _UpdateRuleResponseSuccess
|
|
4241
4335
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRuleOutput]
|
|
4242
4336
|
def action: () -> ("CREATE_LISTING_CHANGE_SET" | "CREATE_SUBSCRIPTION_REQUEST")
|
|
@@ -4248,7 +4342,7 @@ module Aws
|
|
|
4248
4342
|
def last_updated_by: () -> ::String
|
|
4249
4343
|
def name: () -> ::String
|
|
4250
4344
|
def revision: () -> ::String
|
|
4251
|
-
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT")
|
|
4345
|
+
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
4252
4346
|
def scope: () -> Types::RuleScope
|
|
4253
4347
|
def target: () -> Types::RuleTarget
|
|
4254
4348
|
def updated_at: () -> ::Time
|
|
@@ -4257,6 +4351,9 @@ module Aws
|
|
|
4257
4351
|
def update_rule: (
|
|
4258
4352
|
?description: ::String,
|
|
4259
4353
|
?detail: {
|
|
4354
|
+
glossary_term_enforcement_detail: {
|
|
4355
|
+
required_glossary_term_ids: Array[::String]?
|
|
4356
|
+
}?,
|
|
4260
4357
|
metadata_form_enforcement_detail: {
|
|
4261
4358
|
required_metadata_forms: Array[
|
|
4262
4359
|
{
|
|
@@ -4290,6 +4387,7 @@ module Aws
|
|
|
4290
4387
|
def created_at: () -> ::Time
|
|
4291
4388
|
def created_by: () -> ::String
|
|
4292
4389
|
def domain_id: () -> ::String
|
|
4390
|
+
def environment_id: () -> ::String
|
|
4293
4391
|
def granted_entity: () -> Types::GrantedEntity
|
|
4294
4392
|
def id: () -> ::String
|
|
4295
4393
|
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
data/sig/types.rbs
CHANGED
|
@@ -39,6 +39,7 @@ module Aws::DataZone
|
|
|
39
39
|
end
|
|
40
40
|
|
|
41
41
|
class AcceptSubscriptionRequestInput
|
|
42
|
+
attr_accessor asset_permissions: ::Array[Types::AssetPermission]
|
|
42
43
|
attr_accessor asset_scopes: ::Array[Types::AcceptedAssetScope]
|
|
43
44
|
attr_accessor decision_comment: ::String
|
|
44
45
|
attr_accessor domain_identifier: ::String
|
|
@@ -304,6 +305,12 @@ module Aws::DataZone
|
|
|
304
305
|
SENSITIVE: []
|
|
305
306
|
end
|
|
306
307
|
|
|
308
|
+
class AssetPermission
|
|
309
|
+
attr_accessor asset_id: ::String
|
|
310
|
+
attr_accessor permissions: Types::Permissions
|
|
311
|
+
SENSITIVE: []
|
|
312
|
+
end
|
|
313
|
+
|
|
307
314
|
class AssetRevision
|
|
308
315
|
attr_accessor created_at: ::Time
|
|
309
316
|
attr_accessor created_by: ::String
|
|
@@ -385,6 +392,19 @@ module Aws::DataZone
|
|
|
385
392
|
SENSITIVE: []
|
|
386
393
|
end
|
|
387
394
|
|
|
395
|
+
class AttributeError
|
|
396
|
+
attr_accessor attribute_identifier: ::String
|
|
397
|
+
attr_accessor code: ::String
|
|
398
|
+
attr_accessor message: ::String
|
|
399
|
+
SENSITIVE: []
|
|
400
|
+
end
|
|
401
|
+
|
|
402
|
+
class AttributeInput
|
|
403
|
+
attr_accessor attribute_identifier: ::String
|
|
404
|
+
attr_accessor forms: ::Array[Types::FormInput]
|
|
405
|
+
SENSITIVE: [:forms]
|
|
406
|
+
end
|
|
407
|
+
|
|
388
408
|
class AuthenticationConfiguration
|
|
389
409
|
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
|
390
410
|
attr_accessor o_auth_2_properties: Types::OAuth2Properties
|
|
@@ -447,6 +467,47 @@ module Aws::DataZone
|
|
|
447
467
|
SENSITIVE: []
|
|
448
468
|
end
|
|
449
469
|
|
|
470
|
+
class BatchGetAttributeOutput
|
|
471
|
+
attr_accessor attribute_identifier: ::String
|
|
472
|
+
attr_accessor forms: ::Array[Types::FormOutput]
|
|
473
|
+
SENSITIVE: []
|
|
474
|
+
end
|
|
475
|
+
|
|
476
|
+
class BatchGetAttributesMetadataInput
|
|
477
|
+
attr_accessor attribute_identifiers: ::Array[::String]
|
|
478
|
+
attr_accessor domain_identifier: ::String
|
|
479
|
+
attr_accessor entity_identifier: ::String
|
|
480
|
+
attr_accessor entity_revision: ::String
|
|
481
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
|
482
|
+
SENSITIVE: []
|
|
483
|
+
end
|
|
484
|
+
|
|
485
|
+
class BatchGetAttributesMetadataOutput
|
|
486
|
+
attr_accessor attributes: ::Array[Types::BatchGetAttributeOutput]
|
|
487
|
+
attr_accessor errors: ::Array[Types::AttributeError]
|
|
488
|
+
SENSITIVE: []
|
|
489
|
+
end
|
|
490
|
+
|
|
491
|
+
class BatchPutAttributeOutput
|
|
492
|
+
attr_accessor attribute_identifier: ::String
|
|
493
|
+
SENSITIVE: []
|
|
494
|
+
end
|
|
495
|
+
|
|
496
|
+
class BatchPutAttributesMetadataInput
|
|
497
|
+
attr_accessor attributes: ::Array[Types::AttributeInput]
|
|
498
|
+
attr_accessor client_token: ::String
|
|
499
|
+
attr_accessor domain_identifier: ::String
|
|
500
|
+
attr_accessor entity_identifier: ::String
|
|
501
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
|
502
|
+
SENSITIVE: []
|
|
503
|
+
end
|
|
504
|
+
|
|
505
|
+
class BatchPutAttributesMetadataOutput
|
|
506
|
+
attr_accessor attributes: ::Array[Types::BatchPutAttributeOutput]
|
|
507
|
+
attr_accessor errors: ::Array[Types::AttributeError]
|
|
508
|
+
SENSITIVE: []
|
|
509
|
+
end
|
|
510
|
+
|
|
450
511
|
class BusinessNameGenerationConfiguration
|
|
451
512
|
attr_accessor enabled: bool
|
|
452
513
|
SENSITIVE: []
|
|
@@ -1313,7 +1374,7 @@ module Aws::DataZone
|
|
|
1313
1374
|
attr_accessor detail: Types::RuleDetail
|
|
1314
1375
|
attr_accessor identifier: ::String
|
|
1315
1376
|
attr_accessor name: ::String
|
|
1316
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
1377
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
1317
1378
|
attr_accessor scope: Types::RuleScope
|
|
1318
1379
|
attr_accessor target: Types::RuleTarget
|
|
1319
1380
|
attr_accessor target_type: ("DOMAIN_UNIT")
|
|
@@ -1335,6 +1396,7 @@ module Aws::DataZone
|
|
|
1335
1396
|
attr_accessor created_at: ::Time
|
|
1336
1397
|
attr_accessor created_by: ::String
|
|
1337
1398
|
attr_accessor domain_id: ::String
|
|
1399
|
+
attr_accessor environment_id: ::String
|
|
1338
1400
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
1339
1401
|
attr_accessor id: ::String
|
|
1340
1402
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -1346,6 +1408,8 @@ module Aws::DataZone
|
|
|
1346
1408
|
end
|
|
1347
1409
|
|
|
1348
1410
|
class CreateSubscriptionRequestInput
|
|
1411
|
+
attr_accessor asset_permissions: ::Array[Types::AssetPermission]
|
|
1412
|
+
attr_accessor asset_scopes: ::Array[Types::AcceptedAssetScope]
|
|
1349
1413
|
attr_accessor client_token: ::String
|
|
1350
1414
|
attr_accessor domain_identifier: ::String
|
|
1351
1415
|
attr_accessor metadata_forms: ::Array[Types::FormInput]
|
|
@@ -1835,6 +1899,7 @@ module Aws::DataZone
|
|
|
1835
1899
|
attr_accessor created_at: ::Time
|
|
1836
1900
|
attr_accessor created_by: ::String
|
|
1837
1901
|
attr_accessor domain_id: ::String
|
|
1902
|
+
attr_accessor environment_id: ::String
|
|
1838
1903
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
1839
1904
|
attr_accessor id: ::String
|
|
1840
1905
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -2846,7 +2911,7 @@ module Aws::DataZone
|
|
|
2846
2911
|
attr_accessor last_updated_by: ::String
|
|
2847
2912
|
attr_accessor name: ::String
|
|
2848
2913
|
attr_accessor revision: ::String
|
|
2849
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
2914
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
2850
2915
|
attr_accessor scope: Types::RuleScope
|
|
2851
2916
|
attr_accessor target: Types::RuleTarget
|
|
2852
2917
|
attr_accessor target_type: ("DOMAIN_UNIT")
|
|
@@ -2865,6 +2930,7 @@ module Aws::DataZone
|
|
|
2865
2930
|
attr_accessor created_at: ::Time
|
|
2866
2931
|
attr_accessor created_by: ::String
|
|
2867
2932
|
attr_accessor domain_id: ::String
|
|
2933
|
+
attr_accessor environment_id: ::String
|
|
2868
2934
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
2869
2935
|
attr_accessor id: ::String
|
|
2870
2936
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -3001,6 +3067,11 @@ module Aws::DataZone
|
|
|
3001
3067
|
SENSITIVE: []
|
|
3002
3068
|
end
|
|
3003
3069
|
|
|
3070
|
+
class GlossaryTermEnforcementDetail
|
|
3071
|
+
attr_accessor required_glossary_term_ids: ::Array[::String]
|
|
3072
|
+
SENSITIVE: []
|
|
3073
|
+
end
|
|
3074
|
+
|
|
3004
3075
|
class GlossaryTermItem
|
|
3005
3076
|
attr_accessor additional_attributes: Types::GlossaryTermItemAdditionalAttributes
|
|
3006
3077
|
attr_accessor created_at: ::Time
|
|
@@ -3784,7 +3855,7 @@ module Aws::DataZone
|
|
|
3784
3855
|
attr_accessor max_results: ::Integer
|
|
3785
3856
|
attr_accessor next_token: ::String
|
|
3786
3857
|
attr_accessor project_ids: ::Array[::String]
|
|
3787
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
3858
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
3788
3859
|
attr_accessor target_identifier: ::String
|
|
3789
3860
|
attr_accessor target_type: ("DOMAIN_UNIT")
|
|
3790
3861
|
SENSITIVE: []
|
|
@@ -3801,7 +3872,9 @@ module Aws::DataZone
|
|
|
3801
3872
|
attr_accessor environment_id: ::String
|
|
3802
3873
|
attr_accessor max_results: ::Integer
|
|
3803
3874
|
attr_accessor next_token: ::String
|
|
3875
|
+
attr_accessor owning_group_id: ::String
|
|
3804
3876
|
attr_accessor owning_project_id: ::String
|
|
3877
|
+
attr_accessor owning_user_id: ::String
|
|
3805
3878
|
attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
|
|
3806
3879
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
3807
3880
|
attr_accessor subscribed_listing_id: ::String
|
|
@@ -3821,7 +3894,9 @@ module Aws::DataZone
|
|
|
3821
3894
|
attr_accessor domain_identifier: ::String
|
|
3822
3895
|
attr_accessor max_results: ::Integer
|
|
3823
3896
|
attr_accessor next_token: ::String
|
|
3897
|
+
attr_accessor owning_group_id: ::String
|
|
3824
3898
|
attr_accessor owning_project_id: ::String
|
|
3899
|
+
attr_accessor owning_user_id: ::String
|
|
3825
3900
|
attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
|
|
3826
3901
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
3827
3902
|
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED")
|
|
@@ -3856,7 +3931,9 @@ module Aws::DataZone
|
|
|
3856
3931
|
attr_accessor domain_identifier: ::String
|
|
3857
3932
|
attr_accessor max_results: ::Integer
|
|
3858
3933
|
attr_accessor next_token: ::String
|
|
3934
|
+
attr_accessor owning_group_id: ::String
|
|
3859
3935
|
attr_accessor owning_project_id: ::String
|
|
3936
|
+
attr_accessor owning_user_id: ::String
|
|
3860
3937
|
attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
|
|
3861
3938
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
3862
3939
|
attr_accessor status: ("APPROVED" | "REVOKED" | "CANCELLED")
|
|
@@ -4182,6 +4259,17 @@ module Aws::DataZone
|
|
|
4182
4259
|
SENSITIVE: []
|
|
4183
4260
|
end
|
|
4184
4261
|
|
|
4262
|
+
class Permissions
|
|
4263
|
+
attr_accessor s3: ::Array[("READ" | "WRITE")]
|
|
4264
|
+
attr_accessor unknown: untyped
|
|
4265
|
+
SENSITIVE: []
|
|
4266
|
+
|
|
4267
|
+
class S3 < Permissions
|
|
4268
|
+
end
|
|
4269
|
+
class Unknown < Permissions
|
|
4270
|
+
end
|
|
4271
|
+
end
|
|
4272
|
+
|
|
4185
4273
|
class PhysicalConnectionRequirements
|
|
4186
4274
|
attr_accessor availability_zone: ::String
|
|
4187
4275
|
attr_accessor security_group_id_list: ::Array[::String]
|
|
@@ -4777,10 +4865,13 @@ module Aws::DataZone
|
|
|
4777
4865
|
end
|
|
4778
4866
|
|
|
4779
4867
|
class RuleDetail
|
|
4868
|
+
attr_accessor glossary_term_enforcement_detail: Types::GlossaryTermEnforcementDetail
|
|
4780
4869
|
attr_accessor metadata_form_enforcement_detail: Types::MetadataFormEnforcementDetail
|
|
4781
4870
|
attr_accessor unknown: untyped
|
|
4782
4871
|
SENSITIVE: []
|
|
4783
4872
|
|
|
4873
|
+
class GlossaryTermEnforcementDetail < RuleDetail
|
|
4874
|
+
end
|
|
4784
4875
|
class MetadataFormEnforcementDetail < RuleDetail
|
|
4785
4876
|
end
|
|
4786
4877
|
class Unknown < RuleDetail
|
|
@@ -4800,7 +4891,7 @@ module Aws::DataZone
|
|
|
4800
4891
|
attr_accessor last_updated_by: ::String
|
|
4801
4892
|
attr_accessor name: ::String
|
|
4802
4893
|
attr_accessor revision: ::String
|
|
4803
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
4894
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
4804
4895
|
attr_accessor scope: Types::RuleScope
|
|
4805
4896
|
attr_accessor target: Types::RuleTarget
|
|
4806
4897
|
attr_accessor target_type: ("DOMAIN_UNIT")
|
|
@@ -5183,6 +5274,7 @@ module Aws::DataZone
|
|
|
5183
5274
|
attr_accessor failure_cause: Types::FailureCause
|
|
5184
5275
|
attr_accessor failure_timestamp: ::Time
|
|
5185
5276
|
attr_accessor granted_timestamp: ::Time
|
|
5277
|
+
attr_accessor permissions: Types::Permissions
|
|
5186
5278
|
attr_accessor status: ("GRANT_PENDING" | "REVOKE_PENDING" | "GRANT_IN_PROGRESS" | "REVOKE_IN_PROGRESS" | "GRANTED" | "REVOKED" | "GRANT_FAILED" | "REVOKE_FAILED")
|
|
5187
5279
|
attr_accessor target_name: ::String
|
|
5188
5280
|
SENSITIVE: []
|
|
@@ -5195,6 +5287,18 @@ module Aws::DataZone
|
|
|
5195
5287
|
attr_accessor entity_type: ::String
|
|
5196
5288
|
attr_accessor forms: ::String
|
|
5197
5289
|
attr_accessor glossary_terms: ::Array[Types::DetailedGlossaryTerm]
|
|
5290
|
+
attr_accessor permissions: Types::Permissions
|
|
5291
|
+
SENSITIVE: []
|
|
5292
|
+
end
|
|
5293
|
+
|
|
5294
|
+
class SubscribedGroup
|
|
5295
|
+
attr_accessor id: ::String
|
|
5296
|
+
attr_accessor name: ::String
|
|
5297
|
+
SENSITIVE: [:name]
|
|
5298
|
+
end
|
|
5299
|
+
|
|
5300
|
+
class SubscribedGroupInput
|
|
5301
|
+
attr_accessor identifier: ::String
|
|
5198
5302
|
SENSITIVE: []
|
|
5199
5303
|
end
|
|
5200
5304
|
|
|
@@ -5229,23 +5333,35 @@ module Aws::DataZone
|
|
|
5229
5333
|
end
|
|
5230
5334
|
|
|
5231
5335
|
class SubscribedPrincipal
|
|
5336
|
+
attr_accessor group: Types::SubscribedGroup
|
|
5232
5337
|
attr_accessor project: Types::SubscribedProject
|
|
5338
|
+
attr_accessor user: Types::SubscribedUser
|
|
5233
5339
|
attr_accessor unknown: untyped
|
|
5234
5340
|
SENSITIVE: []
|
|
5235
5341
|
|
|
5342
|
+
class Group < SubscribedPrincipal
|
|
5343
|
+
end
|
|
5236
5344
|
class Project < SubscribedPrincipal
|
|
5237
5345
|
end
|
|
5346
|
+
class User < SubscribedPrincipal
|
|
5347
|
+
end
|
|
5238
5348
|
class Unknown < SubscribedPrincipal
|
|
5239
5349
|
end
|
|
5240
5350
|
end
|
|
5241
5351
|
|
|
5242
5352
|
class SubscribedPrincipalInput
|
|
5353
|
+
attr_accessor group: Types::SubscribedGroupInput
|
|
5243
5354
|
attr_accessor project: Types::SubscribedProjectInput
|
|
5355
|
+
attr_accessor user: Types::SubscribedUserInput
|
|
5244
5356
|
attr_accessor unknown: untyped
|
|
5245
5357
|
SENSITIVE: []
|
|
5246
5358
|
|
|
5359
|
+
class Group < SubscribedPrincipalInput
|
|
5360
|
+
end
|
|
5247
5361
|
class Project < SubscribedPrincipalInput
|
|
5248
5362
|
end
|
|
5363
|
+
class User < SubscribedPrincipalInput
|
|
5364
|
+
end
|
|
5249
5365
|
class Unknown < SubscribedPrincipalInput
|
|
5250
5366
|
end
|
|
5251
5367
|
end
|
|
@@ -5271,11 +5387,23 @@ module Aws::DataZone
|
|
|
5271
5387
|
SENSITIVE: []
|
|
5272
5388
|
end
|
|
5273
5389
|
|
|
5390
|
+
class SubscribedUser
|
|
5391
|
+
attr_accessor details: Types::UserProfileDetails
|
|
5392
|
+
attr_accessor id: ::String
|
|
5393
|
+
SENSITIVE: []
|
|
5394
|
+
end
|
|
5395
|
+
|
|
5396
|
+
class SubscribedUserInput
|
|
5397
|
+
attr_accessor identifier: ::String
|
|
5398
|
+
SENSITIVE: []
|
|
5399
|
+
end
|
|
5400
|
+
|
|
5274
5401
|
class SubscriptionGrantSummary
|
|
5275
5402
|
attr_accessor assets: ::Array[Types::SubscribedAsset]
|
|
5276
5403
|
attr_accessor created_at: ::Time
|
|
5277
5404
|
attr_accessor created_by: ::String
|
|
5278
5405
|
attr_accessor domain_id: ::String
|
|
5406
|
+
attr_accessor environment_id: ::String
|
|
5279
5407
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
5280
5408
|
attr_accessor id: ::String
|
|
5281
5409
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -5817,6 +5945,17 @@ module Aws::DataZone
|
|
|
5817
5945
|
SENSITIVE: [:description, :name, :project_resource_tags_description]
|
|
5818
5946
|
end
|
|
5819
5947
|
|
|
5948
|
+
class UpdateRootDomainUnitOwnerInput
|
|
5949
|
+
attr_accessor client_token: ::String
|
|
5950
|
+
attr_accessor current_owner: ::String
|
|
5951
|
+
attr_accessor domain_identifier: ::String
|
|
5952
|
+
attr_accessor new_owner: ::String
|
|
5953
|
+
SENSITIVE: []
|
|
5954
|
+
end
|
|
5955
|
+
|
|
5956
|
+
class UpdateRootDomainUnitOwnerOutput < Aws::EmptyStructure
|
|
5957
|
+
end
|
|
5958
|
+
|
|
5820
5959
|
class UpdateRuleInput
|
|
5821
5960
|
attr_accessor description: ::String
|
|
5822
5961
|
attr_accessor detail: Types::RuleDetail
|
|
@@ -5838,7 +5977,7 @@ module Aws::DataZone
|
|
|
5838
5977
|
attr_accessor last_updated_by: ::String
|
|
5839
5978
|
attr_accessor name: ::String
|
|
5840
5979
|
attr_accessor revision: ::String
|
|
5841
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
5980
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
5842
5981
|
attr_accessor scope: Types::RuleScope
|
|
5843
5982
|
attr_accessor target: Types::RuleTarget
|
|
5844
5983
|
attr_accessor updated_at: ::Time
|
|
@@ -5860,6 +5999,7 @@ module Aws::DataZone
|
|
|
5860
5999
|
attr_accessor created_at: ::Time
|
|
5861
6000
|
attr_accessor created_by: ::String
|
|
5862
6001
|
attr_accessor domain_id: ::String
|
|
6002
|
+
attr_accessor environment_id: ::String
|
|
5863
6003
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
5864
6004
|
attr_accessor id: ::String
|
|
5865
6005
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|