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
|
@@ -547,6 +547,9 @@ module Aws::DataZone
|
|
|
547
547
|
|
|
548
548
|
# Accepts a subscription request to a specific asset.
|
|
549
549
|
#
|
|
550
|
+
# @option params [Array<Types::AssetPermission>] :asset_permissions
|
|
551
|
+
# The asset permissions of the accept subscription request.
|
|
552
|
+
#
|
|
550
553
|
# @option params [Array<Types::AcceptedAssetScope>] :asset_scopes
|
|
551
554
|
# The asset scopes of the accept subscription request.
|
|
552
555
|
#
|
|
@@ -582,6 +585,14 @@ module Aws::DataZone
|
|
|
582
585
|
# @example Request syntax with placeholder values
|
|
583
586
|
#
|
|
584
587
|
# resp = client.accept_subscription_request({
|
|
588
|
+
# asset_permissions: [
|
|
589
|
+
# {
|
|
590
|
+
# asset_id: "AssetId", # required
|
|
591
|
+
# permissions: { # required
|
|
592
|
+
# s3: ["READ"], # accepts READ, WRITE
|
|
593
|
+
# },
|
|
594
|
+
# },
|
|
595
|
+
# ],
|
|
585
596
|
# asset_scopes: [
|
|
586
597
|
# {
|
|
587
598
|
# asset_id: "AssetId", # required
|
|
@@ -624,6 +635,8 @@ module Aws::DataZone
|
|
|
624
635
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
|
|
625
636
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
|
|
626
637
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
|
|
638
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
|
|
639
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
627
640
|
# resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
|
|
628
641
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
|
|
629
642
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -640,8 +653,16 @@ module Aws::DataZone
|
|
|
640
653
|
# resp.subscribed_listings[0].owner_project_name #=> String
|
|
641
654
|
# resp.subscribed_listings[0].revision #=> String
|
|
642
655
|
# resp.subscribed_principals #=> Array
|
|
656
|
+
# resp.subscribed_principals[0].group.id #=> String
|
|
657
|
+
# resp.subscribed_principals[0].group.name #=> String
|
|
643
658
|
# resp.subscribed_principals[0].project.id #=> String
|
|
644
659
|
# resp.subscribed_principals[0].project.name #=> String
|
|
660
|
+
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
661
|
+
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
662
|
+
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
663
|
+
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
664
|
+
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
665
|
+
# resp.subscribed_principals[0].user.id #=> String
|
|
645
666
|
# resp.updated_at #=> Time
|
|
646
667
|
# resp.updated_by #=> String
|
|
647
668
|
#
|
|
@@ -897,6 +918,127 @@ module Aws::DataZone
|
|
|
897
918
|
req.send_request(options)
|
|
898
919
|
end
|
|
899
920
|
|
|
921
|
+
# Gets the attribute metadata.
|
|
922
|
+
#
|
|
923
|
+
# @option params [required, Array<String>] :attribute_identifiers
|
|
924
|
+
# The attribute identifier.
|
|
925
|
+
#
|
|
926
|
+
# @option params [required, String] :domain_identifier
|
|
927
|
+
# The domain ID where you want to get the attribute metadata.
|
|
928
|
+
#
|
|
929
|
+
# @option params [required, String] :entity_identifier
|
|
930
|
+
# The entity ID for which you want to get attribute metadata.
|
|
931
|
+
#
|
|
932
|
+
# @option params [String] :entity_revision
|
|
933
|
+
# The entity revision for which you want to get attribute metadata.
|
|
934
|
+
#
|
|
935
|
+
# @option params [required, String] :entity_type
|
|
936
|
+
# The entity type for which you want to get attribute metadata.
|
|
937
|
+
#
|
|
938
|
+
# @return [Types::BatchGetAttributesMetadataOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
939
|
+
#
|
|
940
|
+
# * {Types::BatchGetAttributesMetadataOutput#attributes #attributes} => Array<Types::BatchGetAttributeOutput>
|
|
941
|
+
# * {Types::BatchGetAttributesMetadataOutput#errors #errors} => Array<Types::AttributeError>
|
|
942
|
+
#
|
|
943
|
+
# @example Request syntax with placeholder values
|
|
944
|
+
#
|
|
945
|
+
# resp = client.batch_get_attributes_metadata({
|
|
946
|
+
# attribute_identifiers: ["AttributeIdentifier"], # required
|
|
947
|
+
# domain_identifier: "DomainId", # required
|
|
948
|
+
# entity_identifier: "EntityId", # required
|
|
949
|
+
# entity_revision: "Revision",
|
|
950
|
+
# entity_type: "ASSET", # required, accepts ASSET, LISTING
|
|
951
|
+
# })
|
|
952
|
+
#
|
|
953
|
+
# @example Response structure
|
|
954
|
+
#
|
|
955
|
+
# resp.attributes #=> Array
|
|
956
|
+
# resp.attributes[0].attribute_identifier #=> String
|
|
957
|
+
# resp.attributes[0].forms #=> Array
|
|
958
|
+
# resp.attributes[0].forms[0].content #=> String
|
|
959
|
+
# resp.attributes[0].forms[0].form_name #=> String
|
|
960
|
+
# resp.attributes[0].forms[0].type_name #=> String
|
|
961
|
+
# resp.attributes[0].forms[0].type_revision #=> String
|
|
962
|
+
# resp.errors #=> Array
|
|
963
|
+
# resp.errors[0].attribute_identifier #=> String
|
|
964
|
+
# resp.errors[0].code #=> String
|
|
965
|
+
# resp.errors[0].message #=> String
|
|
966
|
+
#
|
|
967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchGetAttributesMetadata AWS API Documentation
|
|
968
|
+
#
|
|
969
|
+
# @overload batch_get_attributes_metadata(params = {})
|
|
970
|
+
# @param [Hash] params ({})
|
|
971
|
+
def batch_get_attributes_metadata(params = {}, options = {})
|
|
972
|
+
req = build_request(:batch_get_attributes_metadata, params)
|
|
973
|
+
req.send_request(options)
|
|
974
|
+
end
|
|
975
|
+
|
|
976
|
+
# Writes the attribute metadata.
|
|
977
|
+
#
|
|
978
|
+
# @option params [required, Array<Types::AttributeInput>] :attributes
|
|
979
|
+
# The attributes of the metadata.
|
|
980
|
+
#
|
|
981
|
+
# @option params [String] :client_token
|
|
982
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
983
|
+
# request. This field is automatically populated if not provided.
|
|
984
|
+
#
|
|
985
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
986
|
+
# not need to pass this option.**
|
|
987
|
+
#
|
|
988
|
+
# @option params [required, String] :domain_identifier
|
|
989
|
+
# The domain ID where you want to write the attribute metadata.
|
|
990
|
+
#
|
|
991
|
+
# @option params [required, String] :entity_identifier
|
|
992
|
+
# The entity ID for which you want to write the attribute metadata.
|
|
993
|
+
#
|
|
994
|
+
# @option params [required, String] :entity_type
|
|
995
|
+
# The entity type for which you want to write the attribute metadata.
|
|
996
|
+
#
|
|
997
|
+
# @return [Types::BatchPutAttributesMetadataOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
998
|
+
#
|
|
999
|
+
# * {Types::BatchPutAttributesMetadataOutput#attributes #attributes} => Array<Types::BatchPutAttributeOutput>
|
|
1000
|
+
# * {Types::BatchPutAttributesMetadataOutput#errors #errors} => Array<Types::AttributeError>
|
|
1001
|
+
#
|
|
1002
|
+
# @example Request syntax with placeholder values
|
|
1003
|
+
#
|
|
1004
|
+
# resp = client.batch_put_attributes_metadata({
|
|
1005
|
+
# attributes: [ # required
|
|
1006
|
+
# {
|
|
1007
|
+
# attribute_identifier: "AttributeIdentifier", # required
|
|
1008
|
+
# forms: [ # required
|
|
1009
|
+
# {
|
|
1010
|
+
# content: "FormInputContentString",
|
|
1011
|
+
# form_name: "FormName", # required
|
|
1012
|
+
# type_identifier: "FormTypeIdentifier",
|
|
1013
|
+
# type_revision: "RevisionInput",
|
|
1014
|
+
# },
|
|
1015
|
+
# ],
|
|
1016
|
+
# },
|
|
1017
|
+
# ],
|
|
1018
|
+
# client_token: "ClientToken",
|
|
1019
|
+
# domain_identifier: "DomainId", # required
|
|
1020
|
+
# entity_identifier: "EntityId", # required
|
|
1021
|
+
# entity_type: "ASSET", # required, accepts ASSET, LISTING
|
|
1022
|
+
# })
|
|
1023
|
+
#
|
|
1024
|
+
# @example Response structure
|
|
1025
|
+
#
|
|
1026
|
+
# resp.attributes #=> Array
|
|
1027
|
+
# resp.attributes[0].attribute_identifier #=> String
|
|
1028
|
+
# resp.errors #=> Array
|
|
1029
|
+
# resp.errors[0].attribute_identifier #=> String
|
|
1030
|
+
# resp.errors[0].code #=> String
|
|
1031
|
+
# resp.errors[0].message #=> String
|
|
1032
|
+
#
|
|
1033
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchPutAttributesMetadata AWS API Documentation
|
|
1034
|
+
#
|
|
1035
|
+
# @overload batch_put_attributes_metadata(params = {})
|
|
1036
|
+
# @param [Hash] params ({})
|
|
1037
|
+
def batch_put_attributes_metadata(params = {}, options = {})
|
|
1038
|
+
req = build_request(:batch_put_attributes_metadata, params)
|
|
1039
|
+
req.send_request(options)
|
|
1040
|
+
end
|
|
1041
|
+
|
|
900
1042
|
# Cancels the metadata generation run.
|
|
901
1043
|
#
|
|
902
1044
|
# Prerequisites:
|
|
@@ -985,6 +1127,8 @@ module Aws::DataZone
|
|
|
985
1127
|
# resp.subscribed_listing.item.asset_listing.glossary_terms #=> Array
|
|
986
1128
|
# resp.subscribed_listing.item.asset_listing.glossary_terms[0].name #=> String
|
|
987
1129
|
# resp.subscribed_listing.item.asset_listing.glossary_terms[0].short_description #=> String
|
|
1130
|
+
# resp.subscribed_listing.item.asset_listing.permissions.s3 #=> Array
|
|
1131
|
+
# resp.subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
988
1132
|
# resp.subscribed_listing.item.product_listing.asset_listings #=> Array
|
|
989
1133
|
# resp.subscribed_listing.item.product_listing.asset_listings[0].entity_id #=> String
|
|
990
1134
|
# resp.subscribed_listing.item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -1000,8 +1144,16 @@ module Aws::DataZone
|
|
|
1000
1144
|
# resp.subscribed_listing.owner_project_id #=> String
|
|
1001
1145
|
# resp.subscribed_listing.owner_project_name #=> String
|
|
1002
1146
|
# resp.subscribed_listing.revision #=> String
|
|
1147
|
+
# resp.subscribed_principal.group.id #=> String
|
|
1148
|
+
# resp.subscribed_principal.group.name #=> String
|
|
1003
1149
|
# resp.subscribed_principal.project.id #=> String
|
|
1004
1150
|
# resp.subscribed_principal.project.name #=> String
|
|
1151
|
+
# resp.subscribed_principal.user.details.iam.arn #=> String
|
|
1152
|
+
# resp.subscribed_principal.user.details.iam.principal_id #=> String
|
|
1153
|
+
# resp.subscribed_principal.user.details.sso.first_name #=> String
|
|
1154
|
+
# resp.subscribed_principal.user.details.sso.last_name #=> String
|
|
1155
|
+
# resp.subscribed_principal.user.details.sso.username #=> String
|
|
1156
|
+
# resp.subscribed_principal.user.id #=> String
|
|
1005
1157
|
# resp.subscription_request_id #=> String
|
|
1006
1158
|
# resp.updated_at #=> Time
|
|
1007
1159
|
# resp.updated_by #=> String
|
|
@@ -3838,6 +3990,9 @@ module Aws::DataZone
|
|
|
3838
3990
|
# client_token: "ClientToken",
|
|
3839
3991
|
# description: "Description",
|
|
3840
3992
|
# detail: { # required
|
|
3993
|
+
# glossary_term_enforcement_detail: {
|
|
3994
|
+
# required_glossary_term_ids: ["GlossaryTermId"],
|
|
3995
|
+
# },
|
|
3841
3996
|
# metadata_form_enforcement_detail: {
|
|
3842
3997
|
# required_metadata_forms: [
|
|
3843
3998
|
# {
|
|
@@ -3874,12 +4029,14 @@ module Aws::DataZone
|
|
|
3874
4029
|
# resp.created_at #=> Time
|
|
3875
4030
|
# resp.created_by #=> String
|
|
3876
4031
|
# resp.description #=> String
|
|
4032
|
+
# resp.detail.glossary_term_enforcement_detail.required_glossary_term_ids #=> Array
|
|
4033
|
+
# resp.detail.glossary_term_enforcement_detail.required_glossary_term_ids[0] #=> String
|
|
3877
4034
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms #=> Array
|
|
3878
4035
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_identifier #=> String
|
|
3879
4036
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_revision #=> String
|
|
3880
4037
|
# resp.identifier #=> String
|
|
3881
4038
|
# resp.name #=> String
|
|
3882
|
-
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT"
|
|
4039
|
+
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT", "GLOSSARY_TERM_ENFORCEMENT"
|
|
3883
4040
|
# resp.scope.asset_type.selection_mode #=> String, one of "ALL", "SPECIFIC"
|
|
3884
4041
|
# resp.scope.asset_type.specific_asset_types #=> Array
|
|
3885
4042
|
# resp.scope.asset_type.specific_asset_types[0] #=> String
|
|
@@ -3932,6 +4089,7 @@ module Aws::DataZone
|
|
|
3932
4089
|
# * {Types::CreateSubscriptionGrantOutput#created_at #created_at} => Time
|
|
3933
4090
|
# * {Types::CreateSubscriptionGrantOutput#created_by #created_by} => String
|
|
3934
4091
|
# * {Types::CreateSubscriptionGrantOutput#domain_id #domain_id} => String
|
|
4092
|
+
# * {Types::CreateSubscriptionGrantOutput#environment_id #environment_id} => String
|
|
3935
4093
|
# * {Types::CreateSubscriptionGrantOutput#granted_entity #granted_entity} => Types::GrantedEntity
|
|
3936
4094
|
# * {Types::CreateSubscriptionGrantOutput#id #id} => String
|
|
3937
4095
|
# * {Types::CreateSubscriptionGrantOutput#status #status} => String
|
|
@@ -3974,11 +4132,14 @@ module Aws::DataZone
|
|
|
3974
4132
|
# resp.assets[0].failure_cause.message #=> String
|
|
3975
4133
|
# resp.assets[0].failure_timestamp #=> Time
|
|
3976
4134
|
# resp.assets[0].granted_timestamp #=> Time
|
|
4135
|
+
# resp.assets[0].permissions.s3 #=> Array
|
|
4136
|
+
# resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
3977
4137
|
# resp.assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
|
|
3978
4138
|
# resp.assets[0].target_name #=> String
|
|
3979
4139
|
# resp.created_at #=> Time
|
|
3980
4140
|
# resp.created_by #=> String
|
|
3981
4141
|
# resp.domain_id #=> String
|
|
4142
|
+
# resp.environment_id #=> String
|
|
3982
4143
|
# resp.granted_entity.listing.id #=> String
|
|
3983
4144
|
# resp.granted_entity.listing.revision #=> String
|
|
3984
4145
|
# resp.id #=> String
|
|
@@ -3999,6 +4160,12 @@ module Aws::DataZone
|
|
|
3999
4160
|
|
|
4000
4161
|
# Creates a subscription request in Amazon DataZone.
|
|
4001
4162
|
#
|
|
4163
|
+
# @option params [Array<Types::AssetPermission>] :asset_permissions
|
|
4164
|
+
# The asset permissions of the subscription request.
|
|
4165
|
+
#
|
|
4166
|
+
# @option params [Array<Types::AcceptedAssetScope>] :asset_scopes
|
|
4167
|
+
# The asset scopes of the subscription request.
|
|
4168
|
+
#
|
|
4002
4169
|
# @option params [String] :client_token
|
|
4003
4170
|
# A unique, case-sensitive identifier that is provided to ensure the
|
|
4004
4171
|
# idempotency of the request.
|
|
@@ -4043,6 +4210,20 @@ module Aws::DataZone
|
|
|
4043
4210
|
# @example Request syntax with placeholder values
|
|
4044
4211
|
#
|
|
4045
4212
|
# resp = client.create_subscription_request({
|
|
4213
|
+
# asset_permissions: [
|
|
4214
|
+
# {
|
|
4215
|
+
# asset_id: "AssetId", # required
|
|
4216
|
+
# permissions: { # required
|
|
4217
|
+
# s3: ["READ"], # accepts READ, WRITE
|
|
4218
|
+
# },
|
|
4219
|
+
# },
|
|
4220
|
+
# ],
|
|
4221
|
+
# asset_scopes: [
|
|
4222
|
+
# {
|
|
4223
|
+
# asset_id: "AssetId", # required
|
|
4224
|
+
# filter_ids: ["FilterId"], # required
|
|
4225
|
+
# },
|
|
4226
|
+
# ],
|
|
4046
4227
|
# client_token: "String",
|
|
4047
4228
|
# domain_identifier: "DomainId", # required
|
|
4048
4229
|
# metadata_forms: [
|
|
@@ -4061,9 +4242,15 @@ module Aws::DataZone
|
|
|
4061
4242
|
# ],
|
|
4062
4243
|
# subscribed_principals: [ # required
|
|
4063
4244
|
# {
|
|
4245
|
+
# group: {
|
|
4246
|
+
# identifier: "GroupProfileId",
|
|
4247
|
+
# },
|
|
4064
4248
|
# project: {
|
|
4065
4249
|
# identifier: "ProjectId",
|
|
4066
4250
|
# },
|
|
4251
|
+
# user: {
|
|
4252
|
+
# identifier: "UserProfileId",
|
|
4253
|
+
# },
|
|
4067
4254
|
# },
|
|
4068
4255
|
# ],
|
|
4069
4256
|
# })
|
|
@@ -4099,6 +4286,8 @@ module Aws::DataZone
|
|
|
4099
4286
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
|
|
4100
4287
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
|
|
4101
4288
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
|
|
4289
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
|
|
4290
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
4102
4291
|
# resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
|
|
4103
4292
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
|
|
4104
4293
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -4115,8 +4304,16 @@ module Aws::DataZone
|
|
|
4115
4304
|
# resp.subscribed_listings[0].owner_project_name #=> String
|
|
4116
4305
|
# resp.subscribed_listings[0].revision #=> String
|
|
4117
4306
|
# resp.subscribed_principals #=> Array
|
|
4307
|
+
# resp.subscribed_principals[0].group.id #=> String
|
|
4308
|
+
# resp.subscribed_principals[0].group.name #=> String
|
|
4118
4309
|
# resp.subscribed_principals[0].project.id #=> String
|
|
4119
4310
|
# resp.subscribed_principals[0].project.name #=> String
|
|
4311
|
+
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
4312
|
+
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
4313
|
+
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
4314
|
+
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
4315
|
+
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
4316
|
+
# resp.subscribed_principals[0].user.id #=> String
|
|
4120
4317
|
# resp.updated_at #=> Time
|
|
4121
4318
|
# resp.updated_by #=> String
|
|
4122
4319
|
#
|
|
@@ -5124,6 +5321,7 @@ module Aws::DataZone
|
|
|
5124
5321
|
# * {Types::DeleteSubscriptionGrantOutput#created_at #created_at} => Time
|
|
5125
5322
|
# * {Types::DeleteSubscriptionGrantOutput#created_by #created_by} => String
|
|
5126
5323
|
# * {Types::DeleteSubscriptionGrantOutput#domain_id #domain_id} => String
|
|
5324
|
+
# * {Types::DeleteSubscriptionGrantOutput#environment_id #environment_id} => String
|
|
5127
5325
|
# * {Types::DeleteSubscriptionGrantOutput#granted_entity #granted_entity} => Types::GrantedEntity
|
|
5128
5326
|
# * {Types::DeleteSubscriptionGrantOutput#id #id} => String
|
|
5129
5327
|
# * {Types::DeleteSubscriptionGrantOutput#status #status} => String
|
|
@@ -5152,11 +5350,14 @@ module Aws::DataZone
|
|
|
5152
5350
|
# resp.assets[0].failure_cause.message #=> String
|
|
5153
5351
|
# resp.assets[0].failure_timestamp #=> Time
|
|
5154
5352
|
# resp.assets[0].granted_timestamp #=> Time
|
|
5353
|
+
# resp.assets[0].permissions.s3 #=> Array
|
|
5354
|
+
# resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
5155
5355
|
# resp.assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
|
|
5156
5356
|
# resp.assets[0].target_name #=> String
|
|
5157
5357
|
# resp.created_at #=> Time
|
|
5158
5358
|
# resp.created_by #=> String
|
|
5159
5359
|
# resp.domain_id #=> String
|
|
5360
|
+
# resp.environment_id #=> String
|
|
5160
5361
|
# resp.granted_entity.listing.id #=> String
|
|
5161
5362
|
# resp.granted_entity.listing.revision #=> String
|
|
5162
5363
|
# resp.id #=> String
|
|
@@ -7428,6 +7629,8 @@ module Aws::DataZone
|
|
|
7428
7629
|
# resp.created_at #=> Time
|
|
7429
7630
|
# resp.created_by #=> String
|
|
7430
7631
|
# resp.description #=> String
|
|
7632
|
+
# resp.detail.glossary_term_enforcement_detail.required_glossary_term_ids #=> Array
|
|
7633
|
+
# resp.detail.glossary_term_enforcement_detail.required_glossary_term_ids[0] #=> String
|
|
7431
7634
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms #=> Array
|
|
7432
7635
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_identifier #=> String
|
|
7433
7636
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_revision #=> String
|
|
@@ -7435,7 +7638,7 @@ module Aws::DataZone
|
|
|
7435
7638
|
# resp.last_updated_by #=> String
|
|
7436
7639
|
# resp.name #=> String
|
|
7437
7640
|
# resp.revision #=> String
|
|
7438
|
-
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT"
|
|
7641
|
+
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT", "GLOSSARY_TERM_ENFORCEMENT"
|
|
7439
7642
|
# resp.scope.asset_type.selection_mode #=> String, one of "ALL", "SPECIFIC"
|
|
7440
7643
|
# resp.scope.asset_type.specific_asset_types #=> Array
|
|
7441
7644
|
# resp.scope.asset_type.specific_asset_types[0] #=> String
|
|
@@ -7508,6 +7711,8 @@ module Aws::DataZone
|
|
|
7508
7711
|
# resp.subscribed_listing.item.asset_listing.glossary_terms #=> Array
|
|
7509
7712
|
# resp.subscribed_listing.item.asset_listing.glossary_terms[0].name #=> String
|
|
7510
7713
|
# resp.subscribed_listing.item.asset_listing.glossary_terms[0].short_description #=> String
|
|
7714
|
+
# resp.subscribed_listing.item.asset_listing.permissions.s3 #=> Array
|
|
7715
|
+
# resp.subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
7511
7716
|
# resp.subscribed_listing.item.product_listing.asset_listings #=> Array
|
|
7512
7717
|
# resp.subscribed_listing.item.product_listing.asset_listings[0].entity_id #=> String
|
|
7513
7718
|
# resp.subscribed_listing.item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -7523,8 +7728,16 @@ module Aws::DataZone
|
|
|
7523
7728
|
# resp.subscribed_listing.owner_project_id #=> String
|
|
7524
7729
|
# resp.subscribed_listing.owner_project_name #=> String
|
|
7525
7730
|
# resp.subscribed_listing.revision #=> String
|
|
7731
|
+
# resp.subscribed_principal.group.id #=> String
|
|
7732
|
+
# resp.subscribed_principal.group.name #=> String
|
|
7526
7733
|
# resp.subscribed_principal.project.id #=> String
|
|
7527
7734
|
# resp.subscribed_principal.project.name #=> String
|
|
7735
|
+
# resp.subscribed_principal.user.details.iam.arn #=> String
|
|
7736
|
+
# resp.subscribed_principal.user.details.iam.principal_id #=> String
|
|
7737
|
+
# resp.subscribed_principal.user.details.sso.first_name #=> String
|
|
7738
|
+
# resp.subscribed_principal.user.details.sso.last_name #=> String
|
|
7739
|
+
# resp.subscribed_principal.user.details.sso.username #=> String
|
|
7740
|
+
# resp.subscribed_principal.user.id #=> String
|
|
7528
7741
|
# resp.subscription_request_id #=> String
|
|
7529
7742
|
# resp.updated_at #=> Time
|
|
7530
7743
|
# resp.updated_by #=> String
|
|
@@ -7553,6 +7766,7 @@ module Aws::DataZone
|
|
|
7553
7766
|
# * {Types::GetSubscriptionGrantOutput#created_at #created_at} => Time
|
|
7554
7767
|
# * {Types::GetSubscriptionGrantOutput#created_by #created_by} => String
|
|
7555
7768
|
# * {Types::GetSubscriptionGrantOutput#domain_id #domain_id} => String
|
|
7769
|
+
# * {Types::GetSubscriptionGrantOutput#environment_id #environment_id} => String
|
|
7556
7770
|
# * {Types::GetSubscriptionGrantOutput#granted_entity #granted_entity} => Types::GrantedEntity
|
|
7557
7771
|
# * {Types::GetSubscriptionGrantOutput#id #id} => String
|
|
7558
7772
|
# * {Types::GetSubscriptionGrantOutput#status #status} => String
|
|
@@ -7581,11 +7795,14 @@ module Aws::DataZone
|
|
|
7581
7795
|
# resp.assets[0].failure_cause.message #=> String
|
|
7582
7796
|
# resp.assets[0].failure_timestamp #=> Time
|
|
7583
7797
|
# resp.assets[0].granted_timestamp #=> Time
|
|
7798
|
+
# resp.assets[0].permissions.s3 #=> Array
|
|
7799
|
+
# resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
7584
7800
|
# resp.assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
|
|
7585
7801
|
# resp.assets[0].target_name #=> String
|
|
7586
7802
|
# resp.created_at #=> Time
|
|
7587
7803
|
# resp.created_by #=> String
|
|
7588
7804
|
# resp.domain_id #=> String
|
|
7805
|
+
# resp.environment_id #=> String
|
|
7589
7806
|
# resp.granted_entity.listing.id #=> String
|
|
7590
7807
|
# resp.granted_entity.listing.revision #=> String
|
|
7591
7808
|
# resp.id #=> String
|
|
@@ -7669,6 +7886,8 @@ module Aws::DataZone
|
|
|
7669
7886
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
|
|
7670
7887
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
|
|
7671
7888
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
|
|
7889
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
|
|
7890
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
7672
7891
|
# resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
|
|
7673
7892
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
|
|
7674
7893
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -7685,8 +7904,16 @@ module Aws::DataZone
|
|
|
7685
7904
|
# resp.subscribed_listings[0].owner_project_name #=> String
|
|
7686
7905
|
# resp.subscribed_listings[0].revision #=> String
|
|
7687
7906
|
# resp.subscribed_principals #=> Array
|
|
7907
|
+
# resp.subscribed_principals[0].group.id #=> String
|
|
7908
|
+
# resp.subscribed_principals[0].group.name #=> String
|
|
7688
7909
|
# resp.subscribed_principals[0].project.id #=> String
|
|
7689
7910
|
# resp.subscribed_principals[0].project.name #=> String
|
|
7911
|
+
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
7912
|
+
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
7913
|
+
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
7914
|
+
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
7915
|
+
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
7916
|
+
# resp.subscribed_principals[0].user.id #=> String
|
|
7690
7917
|
# resp.updated_at #=> Time
|
|
7691
7918
|
# resp.updated_by #=> String
|
|
7692
7919
|
#
|
|
@@ -9965,7 +10192,7 @@ module Aws::DataZone
|
|
|
9965
10192
|
# max_results: 1,
|
|
9966
10193
|
# next_token: "PaginationToken",
|
|
9967
10194
|
# project_ids: ["ProjectId"],
|
|
9968
|
-
# rule_type: "METADATA_FORM_ENFORCEMENT", # accepts METADATA_FORM_ENFORCEMENT
|
|
10195
|
+
# rule_type: "METADATA_FORM_ENFORCEMENT", # accepts METADATA_FORM_ENFORCEMENT, GLOSSARY_TERM_ENFORCEMENT
|
|
9969
10196
|
# target_identifier: "String", # required
|
|
9970
10197
|
# target_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT
|
|
9971
10198
|
# })
|
|
@@ -9978,7 +10205,7 @@ module Aws::DataZone
|
|
|
9978
10205
|
# resp.items[0].last_updated_by #=> String
|
|
9979
10206
|
# resp.items[0].name #=> String
|
|
9980
10207
|
# resp.items[0].revision #=> String
|
|
9981
|
-
# resp.items[0].rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT"
|
|
10208
|
+
# resp.items[0].rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT", "GLOSSARY_TERM_ENFORCEMENT"
|
|
9982
10209
|
# resp.items[0].scope.asset_type.selection_mode #=> String, one of "ALL", "SPECIFIC"
|
|
9983
10210
|
# resp.items[0].scope.asset_type.specific_asset_types #=> Array
|
|
9984
10211
|
# resp.items[0].scope.asset_type.specific_asset_types[0] #=> String
|
|
@@ -10024,9 +10251,15 @@ module Aws::DataZone
|
|
|
10024
10251
|
# You can specify this `NextToken` value in a subsequent call to
|
|
10025
10252
|
# `ListSubscriptionGrants` to list the next set of subscription grants.
|
|
10026
10253
|
#
|
|
10254
|
+
# @option params [String] :owning_group_id
|
|
10255
|
+
# The ID of the owning group.
|
|
10256
|
+
#
|
|
10027
10257
|
# @option params [String] :owning_project_id
|
|
10028
10258
|
# The ID of the owning project of the subscription grants.
|
|
10029
10259
|
#
|
|
10260
|
+
# @option params [String] :owning_user_id
|
|
10261
|
+
# The ID of the owning user.
|
|
10262
|
+
#
|
|
10030
10263
|
# @option params [String] :sort_by
|
|
10031
10264
|
# Specifies the way of sorting the results of this action.
|
|
10032
10265
|
#
|
|
@@ -10056,7 +10289,9 @@ module Aws::DataZone
|
|
|
10056
10289
|
# environment_id: "EnvironmentId",
|
|
10057
10290
|
# max_results: 1,
|
|
10058
10291
|
# next_token: "PaginationToken",
|
|
10292
|
+
# owning_group_id: "GroupProfileId",
|
|
10059
10293
|
# owning_project_id: "ProjectId",
|
|
10294
|
+
# owning_user_id: "UserProfileId",
|
|
10060
10295
|
# sort_by: "CREATED_AT", # accepts CREATED_AT, UPDATED_AT
|
|
10061
10296
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
10062
10297
|
# subscribed_listing_id: "ListingId",
|
|
@@ -10078,11 +10313,14 @@ module Aws::DataZone
|
|
|
10078
10313
|
# resp.items[0].assets[0].failure_cause.message #=> String
|
|
10079
10314
|
# resp.items[0].assets[0].failure_timestamp #=> Time
|
|
10080
10315
|
# resp.items[0].assets[0].granted_timestamp #=> Time
|
|
10316
|
+
# resp.items[0].assets[0].permissions.s3 #=> Array
|
|
10317
|
+
# resp.items[0].assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
10081
10318
|
# resp.items[0].assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
|
|
10082
10319
|
# resp.items[0].assets[0].target_name #=> String
|
|
10083
10320
|
# resp.items[0].created_at #=> Time
|
|
10084
10321
|
# resp.items[0].created_by #=> String
|
|
10085
10322
|
# resp.items[0].domain_id #=> String
|
|
10323
|
+
# resp.items[0].environment_id #=> String
|
|
10086
10324
|
# resp.items[0].granted_entity.listing.id #=> String
|
|
10087
10325
|
# resp.items[0].granted_entity.listing.revision #=> String
|
|
10088
10326
|
# resp.items[0].id #=> String
|
|
@@ -10127,9 +10365,15 @@ module Aws::DataZone
|
|
|
10127
10365
|
# `ListSubscriptionRequests` to list the next set of subscription
|
|
10128
10366
|
# requests.
|
|
10129
10367
|
#
|
|
10368
|
+
# @option params [String] :owning_group_id
|
|
10369
|
+
# The ID of the owning group.
|
|
10370
|
+
#
|
|
10130
10371
|
# @option params [String] :owning_project_id
|
|
10131
10372
|
# The identifier of the project for the subscription requests.
|
|
10132
10373
|
#
|
|
10374
|
+
# @option params [String] :owning_user_id
|
|
10375
|
+
# The ID of the owning user.
|
|
10376
|
+
#
|
|
10133
10377
|
# @option params [String] :sort_by
|
|
10134
10378
|
# Specifies the way to sort the results of this action.
|
|
10135
10379
|
#
|
|
@@ -10161,7 +10405,9 @@ module Aws::DataZone
|
|
|
10161
10405
|
# domain_identifier: "DomainId", # required
|
|
10162
10406
|
# max_results: 1,
|
|
10163
10407
|
# next_token: "PaginationToken",
|
|
10408
|
+
# owning_group_id: "GroupProfileId",
|
|
10164
10409
|
# owning_project_id: "ProjectId",
|
|
10410
|
+
# owning_user_id: "UserProfileId",
|
|
10165
10411
|
# sort_by: "CREATED_AT", # accepts CREATED_AT, UPDATED_AT
|
|
10166
10412
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
10167
10413
|
# status: "PENDING", # accepts PENDING, ACCEPTED, REJECTED
|
|
@@ -10199,6 +10445,8 @@ module Aws::DataZone
|
|
|
10199
10445
|
# resp.items[0].subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
|
|
10200
10446
|
# resp.items[0].subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
|
|
10201
10447
|
# resp.items[0].subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
|
|
10448
|
+
# resp.items[0].subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
|
|
10449
|
+
# resp.items[0].subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
10202
10450
|
# resp.items[0].subscribed_listings[0].item.product_listing.asset_listings #=> Array
|
|
10203
10451
|
# resp.items[0].subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
|
|
10204
10452
|
# resp.items[0].subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -10215,8 +10463,16 @@ module Aws::DataZone
|
|
|
10215
10463
|
# resp.items[0].subscribed_listings[0].owner_project_name #=> String
|
|
10216
10464
|
# resp.items[0].subscribed_listings[0].revision #=> String
|
|
10217
10465
|
# resp.items[0].subscribed_principals #=> Array
|
|
10466
|
+
# resp.items[0].subscribed_principals[0].group.id #=> String
|
|
10467
|
+
# resp.items[0].subscribed_principals[0].group.name #=> String
|
|
10218
10468
|
# resp.items[0].subscribed_principals[0].project.id #=> String
|
|
10219
10469
|
# resp.items[0].subscribed_principals[0].project.name #=> String
|
|
10470
|
+
# resp.items[0].subscribed_principals[0].user.details.iam.arn #=> String
|
|
10471
|
+
# resp.items[0].subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
10472
|
+
# resp.items[0].subscribed_principals[0].user.details.sso.first_name #=> String
|
|
10473
|
+
# resp.items[0].subscribed_principals[0].user.details.sso.last_name #=> String
|
|
10474
|
+
# resp.items[0].subscribed_principals[0].user.details.sso.username #=> String
|
|
10475
|
+
# resp.items[0].subscribed_principals[0].user.id #=> String
|
|
10220
10476
|
# resp.items[0].updated_at #=> Time
|
|
10221
10477
|
# resp.items[0].updated_by #=> String
|
|
10222
10478
|
# resp.next_token #=> String
|
|
@@ -10338,9 +10594,15 @@ module Aws::DataZone
|
|
|
10338
10594
|
# specify this `NextToken` value in a subsequent call to
|
|
10339
10595
|
# `ListSubscriptions` to list the next set of subscriptions.
|
|
10340
10596
|
#
|
|
10597
|
+
# @option params [String] :owning_group_id
|
|
10598
|
+
# The ID of the owning group.
|
|
10599
|
+
#
|
|
10341
10600
|
# @option params [String] :owning_project_id
|
|
10342
10601
|
# The identifier of the owning project.
|
|
10343
10602
|
#
|
|
10603
|
+
# @option params [String] :owning_user_id
|
|
10604
|
+
# The ID of the owning user.
|
|
10605
|
+
#
|
|
10344
10606
|
# @option params [String] :sort_by
|
|
10345
10607
|
# Specifies the way in which the results of this action are to be
|
|
10346
10608
|
# sorted.
|
|
@@ -10378,7 +10640,9 @@ module Aws::DataZone
|
|
|
10378
10640
|
# domain_identifier: "DomainId", # required
|
|
10379
10641
|
# max_results: 1,
|
|
10380
10642
|
# next_token: "PaginationToken",
|
|
10643
|
+
# owning_group_id: "GroupProfileId",
|
|
10381
10644
|
# owning_project_id: "ProjectId",
|
|
10645
|
+
# owning_user_id: "UserProfileId",
|
|
10382
10646
|
# sort_by: "CREATED_AT", # accepts CREATED_AT, UPDATED_AT
|
|
10383
10647
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
10384
10648
|
# status: "APPROVED", # accepts APPROVED, REVOKED, CANCELLED
|
|
@@ -10409,6 +10673,8 @@ module Aws::DataZone
|
|
|
10409
10673
|
# resp.items[0].subscribed_listing.item.asset_listing.glossary_terms #=> Array
|
|
10410
10674
|
# resp.items[0].subscribed_listing.item.asset_listing.glossary_terms[0].name #=> String
|
|
10411
10675
|
# resp.items[0].subscribed_listing.item.asset_listing.glossary_terms[0].short_description #=> String
|
|
10676
|
+
# resp.items[0].subscribed_listing.item.asset_listing.permissions.s3 #=> Array
|
|
10677
|
+
# resp.items[0].subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
10412
10678
|
# resp.items[0].subscribed_listing.item.product_listing.asset_listings #=> Array
|
|
10413
10679
|
# resp.items[0].subscribed_listing.item.product_listing.asset_listings[0].entity_id #=> String
|
|
10414
10680
|
# resp.items[0].subscribed_listing.item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -10424,8 +10690,16 @@ module Aws::DataZone
|
|
|
10424
10690
|
# resp.items[0].subscribed_listing.owner_project_id #=> String
|
|
10425
10691
|
# resp.items[0].subscribed_listing.owner_project_name #=> String
|
|
10426
10692
|
# resp.items[0].subscribed_listing.revision #=> String
|
|
10693
|
+
# resp.items[0].subscribed_principal.group.id #=> String
|
|
10694
|
+
# resp.items[0].subscribed_principal.group.name #=> String
|
|
10427
10695
|
# resp.items[0].subscribed_principal.project.id #=> String
|
|
10428
10696
|
# resp.items[0].subscribed_principal.project.name #=> String
|
|
10697
|
+
# resp.items[0].subscribed_principal.user.details.iam.arn #=> String
|
|
10698
|
+
# resp.items[0].subscribed_principal.user.details.iam.principal_id #=> String
|
|
10699
|
+
# resp.items[0].subscribed_principal.user.details.sso.first_name #=> String
|
|
10700
|
+
# resp.items[0].subscribed_principal.user.details.sso.last_name #=> String
|
|
10701
|
+
# resp.items[0].subscribed_principal.user.details.sso.username #=> String
|
|
10702
|
+
# resp.items[0].subscribed_principal.user.id #=> String
|
|
10429
10703
|
# resp.items[0].subscription_request_id #=> String
|
|
10430
10704
|
# resp.items[0].updated_at #=> Time
|
|
10431
10705
|
# resp.items[0].updated_by #=> String
|
|
@@ -10893,6 +11167,8 @@ module Aws::DataZone
|
|
|
10893
11167
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
|
|
10894
11168
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
|
|
10895
11169
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
|
|
11170
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
|
|
11171
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
10896
11172
|
# resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
|
|
10897
11173
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
|
|
10898
11174
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -10909,8 +11185,16 @@ module Aws::DataZone
|
|
|
10909
11185
|
# resp.subscribed_listings[0].owner_project_name #=> String
|
|
10910
11186
|
# resp.subscribed_listings[0].revision #=> String
|
|
10911
11187
|
# resp.subscribed_principals #=> Array
|
|
11188
|
+
# resp.subscribed_principals[0].group.id #=> String
|
|
11189
|
+
# resp.subscribed_principals[0].group.name #=> String
|
|
10912
11190
|
# resp.subscribed_principals[0].project.id #=> String
|
|
10913
11191
|
# resp.subscribed_principals[0].project.name #=> String
|
|
11192
|
+
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
11193
|
+
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
11194
|
+
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
11195
|
+
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
11196
|
+
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
11197
|
+
# resp.subscribed_principals[0].user.id #=> String
|
|
10914
11198
|
# resp.updated_at #=> Time
|
|
10915
11199
|
# resp.updated_by #=> String
|
|
10916
11200
|
#
|
|
@@ -11107,6 +11391,8 @@ module Aws::DataZone
|
|
|
11107
11391
|
# resp.subscribed_listing.item.asset_listing.glossary_terms #=> Array
|
|
11108
11392
|
# resp.subscribed_listing.item.asset_listing.glossary_terms[0].name #=> String
|
|
11109
11393
|
# resp.subscribed_listing.item.asset_listing.glossary_terms[0].short_description #=> String
|
|
11394
|
+
# resp.subscribed_listing.item.asset_listing.permissions.s3 #=> Array
|
|
11395
|
+
# resp.subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
11110
11396
|
# resp.subscribed_listing.item.product_listing.asset_listings #=> Array
|
|
11111
11397
|
# resp.subscribed_listing.item.product_listing.asset_listings[0].entity_id #=> String
|
|
11112
11398
|
# resp.subscribed_listing.item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -11122,8 +11408,16 @@ module Aws::DataZone
|
|
|
11122
11408
|
# resp.subscribed_listing.owner_project_id #=> String
|
|
11123
11409
|
# resp.subscribed_listing.owner_project_name #=> String
|
|
11124
11410
|
# resp.subscribed_listing.revision #=> String
|
|
11411
|
+
# resp.subscribed_principal.group.id #=> String
|
|
11412
|
+
# resp.subscribed_principal.group.name #=> String
|
|
11125
11413
|
# resp.subscribed_principal.project.id #=> String
|
|
11126
11414
|
# resp.subscribed_principal.project.name #=> String
|
|
11415
|
+
# resp.subscribed_principal.user.details.iam.arn #=> String
|
|
11416
|
+
# resp.subscribed_principal.user.details.iam.principal_id #=> String
|
|
11417
|
+
# resp.subscribed_principal.user.details.sso.first_name #=> String
|
|
11418
|
+
# resp.subscribed_principal.user.details.sso.last_name #=> String
|
|
11419
|
+
# resp.subscribed_principal.user.details.sso.username #=> String
|
|
11420
|
+
# resp.subscribed_principal.user.id #=> String
|
|
11127
11421
|
# resp.subscription_request_id #=> String
|
|
11128
11422
|
# resp.updated_at #=> Time
|
|
11129
11423
|
# resp.updated_by #=> String
|
|
@@ -13820,6 +14114,45 @@ module Aws::DataZone
|
|
|
13820
14114
|
req.send_request(options)
|
|
13821
14115
|
end
|
|
13822
14116
|
|
|
14117
|
+
# Updates the owner of the root domain unit.
|
|
14118
|
+
#
|
|
14119
|
+
# @option params [String] :client_token
|
|
14120
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
14121
|
+
# request. This field is automatically populated if not provided.
|
|
14122
|
+
#
|
|
14123
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
14124
|
+
# not need to pass this option.**
|
|
14125
|
+
#
|
|
14126
|
+
# @option params [required, String] :current_owner
|
|
14127
|
+
# The current owner of the root domain unit.
|
|
14128
|
+
#
|
|
14129
|
+
# @option params [required, String] :domain_identifier
|
|
14130
|
+
# The ID of the domain where the root domain unit owner is to be
|
|
14131
|
+
# updated.
|
|
14132
|
+
#
|
|
14133
|
+
# @option params [required, String] :new_owner
|
|
14134
|
+
# The new owner of the root domain unit.
|
|
14135
|
+
#
|
|
14136
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
14137
|
+
#
|
|
14138
|
+
# @example Request syntax with placeholder values
|
|
14139
|
+
#
|
|
14140
|
+
# resp = client.update_root_domain_unit_owner({
|
|
14141
|
+
# client_token: "ClientToken",
|
|
14142
|
+
# current_owner: "UserIdentifier", # required
|
|
14143
|
+
# domain_identifier: "DomainId", # required
|
|
14144
|
+
# new_owner: "String", # required
|
|
14145
|
+
# })
|
|
14146
|
+
#
|
|
14147
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateRootDomainUnitOwner AWS API Documentation
|
|
14148
|
+
#
|
|
14149
|
+
# @overload update_root_domain_unit_owner(params = {})
|
|
14150
|
+
# @param [Hash] params ({})
|
|
14151
|
+
def update_root_domain_unit_owner(params = {}, options = {})
|
|
14152
|
+
req = build_request(:update_root_domain_unit_owner, params)
|
|
14153
|
+
req.send_request(options)
|
|
14154
|
+
end
|
|
14155
|
+
|
|
13823
14156
|
# Updates a rule. In Amazon DataZone, a rule is a formal agreement that
|
|
13824
14157
|
# enforces specific requirements across user workflows (e.g., publishing
|
|
13825
14158
|
# assets to the catalog, requesting subscriptions, creating projects)
|
|
@@ -13872,6 +14205,9 @@ module Aws::DataZone
|
|
|
13872
14205
|
# resp = client.update_rule({
|
|
13873
14206
|
# description: "Description",
|
|
13874
14207
|
# detail: {
|
|
14208
|
+
# glossary_term_enforcement_detail: {
|
|
14209
|
+
# required_glossary_term_ids: ["GlossaryTermId"],
|
|
14210
|
+
# },
|
|
13875
14211
|
# metadata_form_enforcement_detail: {
|
|
13876
14212
|
# required_metadata_forms: [
|
|
13877
14213
|
# {
|
|
@@ -13904,6 +14240,8 @@ module Aws::DataZone
|
|
|
13904
14240
|
# resp.created_at #=> Time
|
|
13905
14241
|
# resp.created_by #=> String
|
|
13906
14242
|
# resp.description #=> String
|
|
14243
|
+
# resp.detail.glossary_term_enforcement_detail.required_glossary_term_ids #=> Array
|
|
14244
|
+
# resp.detail.glossary_term_enforcement_detail.required_glossary_term_ids[0] #=> String
|
|
13907
14245
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms #=> Array
|
|
13908
14246
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_identifier #=> String
|
|
13909
14247
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_revision #=> String
|
|
@@ -13911,7 +14249,7 @@ module Aws::DataZone
|
|
|
13911
14249
|
# resp.last_updated_by #=> String
|
|
13912
14250
|
# resp.name #=> String
|
|
13913
14251
|
# resp.revision #=> String
|
|
13914
|
-
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT"
|
|
14252
|
+
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT", "GLOSSARY_TERM_ENFORCEMENT"
|
|
13915
14253
|
# resp.scope.asset_type.selection_mode #=> String, one of "ALL", "SPECIFIC"
|
|
13916
14254
|
# resp.scope.asset_type.specific_asset_types #=> Array
|
|
13917
14255
|
# resp.scope.asset_type.specific_asset_types[0] #=> String
|
|
@@ -13965,6 +14303,7 @@ module Aws::DataZone
|
|
|
13965
14303
|
# * {Types::UpdateSubscriptionGrantStatusOutput#created_at #created_at} => Time
|
|
13966
14304
|
# * {Types::UpdateSubscriptionGrantStatusOutput#created_by #created_by} => String
|
|
13967
14305
|
# * {Types::UpdateSubscriptionGrantStatusOutput#domain_id #domain_id} => String
|
|
14306
|
+
# * {Types::UpdateSubscriptionGrantStatusOutput#environment_id #environment_id} => String
|
|
13968
14307
|
# * {Types::UpdateSubscriptionGrantStatusOutput#granted_entity #granted_entity} => Types::GrantedEntity
|
|
13969
14308
|
# * {Types::UpdateSubscriptionGrantStatusOutput#id #id} => String
|
|
13970
14309
|
# * {Types::UpdateSubscriptionGrantStatusOutput#status #status} => String
|
|
@@ -13999,11 +14338,14 @@ module Aws::DataZone
|
|
|
13999
14338
|
# resp.assets[0].failure_cause.message #=> String
|
|
14000
14339
|
# resp.assets[0].failure_timestamp #=> Time
|
|
14001
14340
|
# resp.assets[0].granted_timestamp #=> Time
|
|
14341
|
+
# resp.assets[0].permissions.s3 #=> Array
|
|
14342
|
+
# resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
14002
14343
|
# resp.assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
|
|
14003
14344
|
# resp.assets[0].target_name #=> String
|
|
14004
14345
|
# resp.created_at #=> Time
|
|
14005
14346
|
# resp.created_by #=> String
|
|
14006
14347
|
# resp.domain_id #=> String
|
|
14348
|
+
# resp.environment_id #=> String
|
|
14007
14349
|
# resp.granted_entity.listing.id #=> String
|
|
14008
14350
|
# resp.granted_entity.listing.revision #=> String
|
|
14009
14351
|
# resp.id #=> String
|
|
@@ -14090,6 +14432,8 @@ module Aws::DataZone
|
|
|
14090
14432
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
|
|
14091
14433
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
|
|
14092
14434
|
# resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
|
|
14435
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
|
|
14436
|
+
# resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
|
|
14093
14437
|
# resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
|
|
14094
14438
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
|
|
14095
14439
|
# resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
|
|
@@ -14106,8 +14450,16 @@ module Aws::DataZone
|
|
|
14106
14450
|
# resp.subscribed_listings[0].owner_project_name #=> String
|
|
14107
14451
|
# resp.subscribed_listings[0].revision #=> String
|
|
14108
14452
|
# resp.subscribed_principals #=> Array
|
|
14453
|
+
# resp.subscribed_principals[0].group.id #=> String
|
|
14454
|
+
# resp.subscribed_principals[0].group.name #=> String
|
|
14109
14455
|
# resp.subscribed_principals[0].project.id #=> String
|
|
14110
14456
|
# resp.subscribed_principals[0].project.name #=> String
|
|
14457
|
+
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
14458
|
+
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
14459
|
+
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
14460
|
+
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
14461
|
+
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
14462
|
+
# resp.subscribed_principals[0].user.id #=> String
|
|
14111
14463
|
# resp.updated_at #=> Time
|
|
14112
14464
|
# resp.updated_by #=> String
|
|
14113
14465
|
#
|
|
@@ -14296,7 +14648,7 @@ module Aws::DataZone
|
|
|
14296
14648
|
tracer: tracer
|
|
14297
14649
|
)
|
|
14298
14650
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
14299
|
-
context[:gem_version] = '1.
|
|
14651
|
+
context[:gem_version] = '1.60.0'
|
|
14300
14652
|
Seahorse::Client::Request.new(handlers, context)
|
|
14301
14653
|
end
|
|
14302
14654
|
|