aws-sdk-datazone 1.59.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +178 -6
- data/lib/aws-sdk-datazone/client_api.rb +126 -0
- data/lib/aws-sdk-datazone/types.rb +240 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +64 -4
- data/sig/types.rbs +78 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1030e9071951a87b082f37066956ea44bda2509fd0f450187f09798d1bc1974b
|
|
4
|
+
data.tar.gz: e71db8bf17e5e90f3bf3858c8fe117d1c1a2a90ed14f728c6d7cf0364f3f95b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5d5c3c28ee9747805a87f92bf338180fec1aea81dcf79f41d8562e8a68057177b93f1b3885947ca6a4ace1068b2acb59cbdbe29186e925dfd63cc81a66849bb
|
|
7
|
+
data.tar.gz: cc1f5ad9aa15f734f79df808ec04a02a0616f0eb66e2e616ad59cbcfa9e94d257c68b87da0561c119bd99d1ecece3f1bc0fe81d3bed09a7c966bc023a49883cf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.60.0 (2025-11-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon DataZone now supports business metadata (readme and metadata forms) at the individual attribute (column) level, a new rule type for glossary terms, and the ability to update the owner of the root domain unit.
|
|
8
|
+
|
|
4
9
|
1.59.0 (2025-11-14)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.60.0
|
|
@@ -918,6 +918,127 @@ module Aws::DataZone
|
|
|
918
918
|
req.send_request(options)
|
|
919
919
|
end
|
|
920
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
|
+
|
|
921
1042
|
# Cancels the metadata generation run.
|
|
922
1043
|
#
|
|
923
1044
|
# Prerequisites:
|
|
@@ -3869,6 +3990,9 @@ module Aws::DataZone
|
|
|
3869
3990
|
# client_token: "ClientToken",
|
|
3870
3991
|
# description: "Description",
|
|
3871
3992
|
# detail: { # required
|
|
3993
|
+
# glossary_term_enforcement_detail: {
|
|
3994
|
+
# required_glossary_term_ids: ["GlossaryTermId"],
|
|
3995
|
+
# },
|
|
3872
3996
|
# metadata_form_enforcement_detail: {
|
|
3873
3997
|
# required_metadata_forms: [
|
|
3874
3998
|
# {
|
|
@@ -3905,12 +4029,14 @@ module Aws::DataZone
|
|
|
3905
4029
|
# resp.created_at #=> Time
|
|
3906
4030
|
# resp.created_by #=> String
|
|
3907
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
|
|
3908
4034
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms #=> Array
|
|
3909
4035
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_identifier #=> String
|
|
3910
4036
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_revision #=> String
|
|
3911
4037
|
# resp.identifier #=> String
|
|
3912
4038
|
# resp.name #=> String
|
|
3913
|
-
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT"
|
|
4039
|
+
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT", "GLOSSARY_TERM_ENFORCEMENT"
|
|
3914
4040
|
# resp.scope.asset_type.selection_mode #=> String, one of "ALL", "SPECIFIC"
|
|
3915
4041
|
# resp.scope.asset_type.specific_asset_types #=> Array
|
|
3916
4042
|
# resp.scope.asset_type.specific_asset_types[0] #=> String
|
|
@@ -7503,6 +7629,8 @@ module Aws::DataZone
|
|
|
7503
7629
|
# resp.created_at #=> Time
|
|
7504
7630
|
# resp.created_by #=> String
|
|
7505
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
|
|
7506
7634
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms #=> Array
|
|
7507
7635
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_identifier #=> String
|
|
7508
7636
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_revision #=> String
|
|
@@ -7510,7 +7638,7 @@ module Aws::DataZone
|
|
|
7510
7638
|
# resp.last_updated_by #=> String
|
|
7511
7639
|
# resp.name #=> String
|
|
7512
7640
|
# resp.revision #=> String
|
|
7513
|
-
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT"
|
|
7641
|
+
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT", "GLOSSARY_TERM_ENFORCEMENT"
|
|
7514
7642
|
# resp.scope.asset_type.selection_mode #=> String, one of "ALL", "SPECIFIC"
|
|
7515
7643
|
# resp.scope.asset_type.specific_asset_types #=> Array
|
|
7516
7644
|
# resp.scope.asset_type.specific_asset_types[0] #=> String
|
|
@@ -10064,7 +10192,7 @@ module Aws::DataZone
|
|
|
10064
10192
|
# max_results: 1,
|
|
10065
10193
|
# next_token: "PaginationToken",
|
|
10066
10194
|
# project_ids: ["ProjectId"],
|
|
10067
|
-
# rule_type: "METADATA_FORM_ENFORCEMENT", # accepts METADATA_FORM_ENFORCEMENT
|
|
10195
|
+
# rule_type: "METADATA_FORM_ENFORCEMENT", # accepts METADATA_FORM_ENFORCEMENT, GLOSSARY_TERM_ENFORCEMENT
|
|
10068
10196
|
# target_identifier: "String", # required
|
|
10069
10197
|
# target_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT
|
|
10070
10198
|
# })
|
|
@@ -10077,7 +10205,7 @@ module Aws::DataZone
|
|
|
10077
10205
|
# resp.items[0].last_updated_by #=> String
|
|
10078
10206
|
# resp.items[0].name #=> String
|
|
10079
10207
|
# resp.items[0].revision #=> String
|
|
10080
|
-
# 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"
|
|
10081
10209
|
# resp.items[0].scope.asset_type.selection_mode #=> String, one of "ALL", "SPECIFIC"
|
|
10082
10210
|
# resp.items[0].scope.asset_type.specific_asset_types #=> Array
|
|
10083
10211
|
# resp.items[0].scope.asset_type.specific_asset_types[0] #=> String
|
|
@@ -13986,6 +14114,45 @@ module Aws::DataZone
|
|
|
13986
14114
|
req.send_request(options)
|
|
13987
14115
|
end
|
|
13988
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
|
+
|
|
13989
14156
|
# Updates a rule. In Amazon DataZone, a rule is a formal agreement that
|
|
13990
14157
|
# enforces specific requirements across user workflows (e.g., publishing
|
|
13991
14158
|
# assets to the catalog, requesting subscriptions, creating projects)
|
|
@@ -14038,6 +14205,9 @@ module Aws::DataZone
|
|
|
14038
14205
|
# resp = client.update_rule({
|
|
14039
14206
|
# description: "Description",
|
|
14040
14207
|
# detail: {
|
|
14208
|
+
# glossary_term_enforcement_detail: {
|
|
14209
|
+
# required_glossary_term_ids: ["GlossaryTermId"],
|
|
14210
|
+
# },
|
|
14041
14211
|
# metadata_form_enforcement_detail: {
|
|
14042
14212
|
# required_metadata_forms: [
|
|
14043
14213
|
# {
|
|
@@ -14070,6 +14240,8 @@ module Aws::DataZone
|
|
|
14070
14240
|
# resp.created_at #=> Time
|
|
14071
14241
|
# resp.created_by #=> String
|
|
14072
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
|
|
14073
14245
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms #=> Array
|
|
14074
14246
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_identifier #=> String
|
|
14075
14247
|
# resp.detail.metadata_form_enforcement_detail.required_metadata_forms[0].type_revision #=> String
|
|
@@ -14077,7 +14249,7 @@ module Aws::DataZone
|
|
|
14077
14249
|
# resp.last_updated_by #=> String
|
|
14078
14250
|
# resp.name #=> String
|
|
14079
14251
|
# resp.revision #=> String
|
|
14080
|
-
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT"
|
|
14252
|
+
# resp.rule_type #=> String, one of "METADATA_FORM_ENFORCEMENT", "GLOSSARY_TERM_ENFORCEMENT"
|
|
14081
14253
|
# resp.scope.asset_type.selection_mode #=> String, one of "ALL", "SPECIFIC"
|
|
14082
14254
|
# resp.scope.asset_type.specific_asset_types #=> Array
|
|
14083
14255
|
# resp.scope.asset_type.specific_asset_types[0] #=> String
|
|
@@ -14476,7 +14648,7 @@ module Aws::DataZone
|
|
|
14476
14648
|
tracer: tracer
|
|
14477
14649
|
)
|
|
14478
14650
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
14479
|
-
context[:gem_version] = '1.
|
|
14651
|
+
context[:gem_version] = '1.60.0'
|
|
14480
14652
|
Seahorse::Client::Request.new(handlers, context)
|
|
14481
14653
|
end
|
|
14482
14654
|
|
|
@@ -103,6 +103,13 @@ module Aws::DataZone
|
|
|
103
103
|
AthenaPropertiesPatch = Shapes::StructureShape.new(name: 'AthenaPropertiesPatch')
|
|
104
104
|
AthenaPropertiesPatchWorkgroupNameString = Shapes::StringShape.new(name: 'AthenaPropertiesPatchWorkgroupNameString')
|
|
105
105
|
Attribute = Shapes::StringShape.new(name: 'Attribute')
|
|
106
|
+
AttributeEntityType = Shapes::StringShape.new(name: 'AttributeEntityType')
|
|
107
|
+
AttributeError = Shapes::StructureShape.new(name: 'AttributeError')
|
|
108
|
+
AttributeIdentifier = Shapes::StringShape.new(name: 'AttributeIdentifier')
|
|
109
|
+
AttributeInput = Shapes::StructureShape.new(name: 'AttributeInput')
|
|
110
|
+
Attributes = Shapes::ListShape.new(name: 'Attributes')
|
|
111
|
+
AttributesErrors = Shapes::ListShape.new(name: 'AttributesErrors')
|
|
112
|
+
AttributesList = Shapes::ListShape.new(name: 'AttributesList')
|
|
106
113
|
AuthType = Shapes::StringShape.new(name: 'AuthType')
|
|
107
114
|
AuthenticationConfiguration = Shapes::StructureShape.new(name: 'AuthenticationConfiguration')
|
|
108
115
|
AuthenticationConfigurationInput = Shapes::StructureShape.new(name: 'AuthenticationConfigurationInput')
|
|
@@ -128,6 +135,14 @@ module Aws::DataZone
|
|
|
128
135
|
BasicAuthenticationCredentials = Shapes::StructureShape.new(name: 'BasicAuthenticationCredentials')
|
|
129
136
|
BasicAuthenticationCredentialsPasswordString = Shapes::StringShape.new(name: 'BasicAuthenticationCredentialsPasswordString')
|
|
130
137
|
BasicAuthenticationCredentialsUserNameString = Shapes::StringShape.new(name: 'BasicAuthenticationCredentialsUserNameString')
|
|
138
|
+
BatchGetAttributeItems = Shapes::ListShape.new(name: 'BatchGetAttributeItems')
|
|
139
|
+
BatchGetAttributeOutput = Shapes::StructureShape.new(name: 'BatchGetAttributeOutput')
|
|
140
|
+
BatchGetAttributesMetadataInput = Shapes::StructureShape.new(name: 'BatchGetAttributesMetadataInput')
|
|
141
|
+
BatchGetAttributesMetadataOutput = Shapes::StructureShape.new(name: 'BatchGetAttributesMetadataOutput')
|
|
142
|
+
BatchPutAttributeItems = Shapes::ListShape.new(name: 'BatchPutAttributeItems')
|
|
143
|
+
BatchPutAttributeOutput = Shapes::StructureShape.new(name: 'BatchPutAttributeOutput')
|
|
144
|
+
BatchPutAttributesMetadataInput = Shapes::StructureShape.new(name: 'BatchPutAttributesMetadataInput')
|
|
145
|
+
BatchPutAttributesMetadataOutput = Shapes::StructureShape.new(name: 'BatchPutAttributesMetadataOutput')
|
|
131
146
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
132
147
|
BusinessNameGenerationConfiguration = Shapes::StructureShape.new(name: 'BusinessNameGenerationConfiguration')
|
|
133
148
|
CancelMetadataGenerationRunInput = Shapes::StructureShape.new(name: 'CancelMetadataGenerationRunInput')
|
|
@@ -521,7 +536,9 @@ module Aws::DataZone
|
|
|
521
536
|
GlossaryItemAdditionalAttributes = Shapes::StructureShape.new(name: 'GlossaryItemAdditionalAttributes')
|
|
522
537
|
GlossaryName = Shapes::StringShape.new(name: 'GlossaryName')
|
|
523
538
|
GlossaryStatus = Shapes::StringShape.new(name: 'GlossaryStatus')
|
|
539
|
+
GlossaryTermEnforcementDetail = Shapes::StructureShape.new(name: 'GlossaryTermEnforcementDetail')
|
|
524
540
|
GlossaryTermId = Shapes::StringShape.new(name: 'GlossaryTermId')
|
|
541
|
+
GlossaryTermIdentifiers = Shapes::ListShape.new(name: 'GlossaryTermIdentifiers')
|
|
525
542
|
GlossaryTermItem = Shapes::StructureShape.new(name: 'GlossaryTermItem')
|
|
526
543
|
GlossaryTermItemAdditionalAttributes = Shapes::StructureShape.new(name: 'GlossaryTermItemAdditionalAttributes')
|
|
527
544
|
GlossaryTermName = Shapes::StringShape.new(name: 'GlossaryTermName')
|
|
@@ -1105,6 +1122,8 @@ module Aws::DataZone
|
|
|
1105
1122
|
UpdateProjectOutput = Shapes::StructureShape.new(name: 'UpdateProjectOutput')
|
|
1106
1123
|
UpdateProjectProfileInput = Shapes::StructureShape.new(name: 'UpdateProjectProfileInput')
|
|
1107
1124
|
UpdateProjectProfileOutput = Shapes::StructureShape.new(name: 'UpdateProjectProfileOutput')
|
|
1125
|
+
UpdateRootDomainUnitOwnerInput = Shapes::StructureShape.new(name: 'UpdateRootDomainUnitOwnerInput')
|
|
1126
|
+
UpdateRootDomainUnitOwnerOutput = Shapes::StructureShape.new(name: 'UpdateRootDomainUnitOwnerOutput')
|
|
1108
1127
|
UpdateRuleInput = Shapes::StructureShape.new(name: 'UpdateRuleInput')
|
|
1109
1128
|
UpdateRuleOutput = Shapes::StructureShape.new(name: 'UpdateRuleOutput')
|
|
1110
1129
|
UpdateSubscriptionGrantStatusInput = Shapes::StructureShape.new(name: 'UpdateSubscriptionGrantStatusInput')
|
|
@@ -1465,6 +1484,21 @@ module Aws::DataZone
|
|
|
1465
1484
|
AthenaPropertiesPatch.add_member(:workgroup_name, Shapes::ShapeRef.new(shape: AthenaPropertiesPatchWorkgroupNameString, location_name: "workgroupName"))
|
|
1466
1485
|
AthenaPropertiesPatch.struct_class = Types::AthenaPropertiesPatch
|
|
1467
1486
|
|
|
1487
|
+
AttributeError.add_member(:attribute_identifier, Shapes::ShapeRef.new(shape: AttributeIdentifier, required: true, location_name: "attributeIdentifier"))
|
|
1488
|
+
AttributeError.add_member(:code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "code"))
|
|
1489
|
+
AttributeError.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
1490
|
+
AttributeError.struct_class = Types::AttributeError
|
|
1491
|
+
|
|
1492
|
+
AttributeInput.add_member(:attribute_identifier, Shapes::ShapeRef.new(shape: AttributeIdentifier, required: true, location_name: "attributeIdentifier"))
|
|
1493
|
+
AttributeInput.add_member(:forms, Shapes::ShapeRef.new(shape: FormInputList, required: true, location_name: "forms"))
|
|
1494
|
+
AttributeInput.struct_class = Types::AttributeInput
|
|
1495
|
+
|
|
1496
|
+
Attributes.member = Shapes::ShapeRef.new(shape: AttributeInput)
|
|
1497
|
+
|
|
1498
|
+
AttributesErrors.member = Shapes::ShapeRef.new(shape: AttributeError)
|
|
1499
|
+
|
|
1500
|
+
AttributesList.member = Shapes::ShapeRef.new(shape: AttributeIdentifier)
|
|
1501
|
+
|
|
1468
1502
|
AuthenticationConfiguration.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
|
|
1469
1503
|
AuthenticationConfiguration.add_member(:o_auth_2_properties, Shapes::ShapeRef.new(shape: OAuth2Properties, location_name: "oAuth2Properties"))
|
|
1470
1504
|
AuthenticationConfiguration.add_member(:secret_arn, Shapes::ShapeRef.new(shape: AuthenticationConfigurationSecretArnString, location_name: "secretArn"))
|
|
@@ -1511,6 +1545,39 @@ module Aws::DataZone
|
|
|
1511
1545
|
BasicAuthenticationCredentials.add_member(:user_name, Shapes::ShapeRef.new(shape: BasicAuthenticationCredentialsUserNameString, location_name: "userName"))
|
|
1512
1546
|
BasicAuthenticationCredentials.struct_class = Types::BasicAuthenticationCredentials
|
|
1513
1547
|
|
|
1548
|
+
BatchGetAttributeItems.member = Shapes::ShapeRef.new(shape: BatchGetAttributeOutput)
|
|
1549
|
+
|
|
1550
|
+
BatchGetAttributeOutput.add_member(:attribute_identifier, Shapes::ShapeRef.new(shape: AttributeIdentifier, required: true, location_name: "attributeIdentifier"))
|
|
1551
|
+
BatchGetAttributeOutput.add_member(:forms, Shapes::ShapeRef.new(shape: FormOutputList, location_name: "forms"))
|
|
1552
|
+
BatchGetAttributeOutput.struct_class = Types::BatchGetAttributeOutput
|
|
1553
|
+
|
|
1554
|
+
BatchGetAttributesMetadataInput.add_member(:attribute_identifiers, Shapes::ShapeRef.new(shape: AttributesList, required: true, location: "querystring", location_name: "attributeIdentifier"))
|
|
1555
|
+
BatchGetAttributesMetadataInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
1556
|
+
BatchGetAttributesMetadataInput.add_member(:entity_identifier, Shapes::ShapeRef.new(shape: EntityId, required: true, location: "uri", location_name: "entityIdentifier"))
|
|
1557
|
+
BatchGetAttributesMetadataInput.add_member(:entity_revision, Shapes::ShapeRef.new(shape: Revision, location: "querystring", location_name: "entityRevision"))
|
|
1558
|
+
BatchGetAttributesMetadataInput.add_member(:entity_type, Shapes::ShapeRef.new(shape: AttributeEntityType, required: true, location: "uri", location_name: "entityType"))
|
|
1559
|
+
BatchGetAttributesMetadataInput.struct_class = Types::BatchGetAttributesMetadataInput
|
|
1560
|
+
|
|
1561
|
+
BatchGetAttributesMetadataOutput.add_member(:attributes, Shapes::ShapeRef.new(shape: BatchGetAttributeItems, location_name: "attributes"))
|
|
1562
|
+
BatchGetAttributesMetadataOutput.add_member(:errors, Shapes::ShapeRef.new(shape: AttributesErrors, required: true, location_name: "errors"))
|
|
1563
|
+
BatchGetAttributesMetadataOutput.struct_class = Types::BatchGetAttributesMetadataOutput
|
|
1564
|
+
|
|
1565
|
+
BatchPutAttributeItems.member = Shapes::ShapeRef.new(shape: BatchPutAttributeOutput)
|
|
1566
|
+
|
|
1567
|
+
BatchPutAttributeOutput.add_member(:attribute_identifier, Shapes::ShapeRef.new(shape: AttributeIdentifier, required: true, location_name: "attributeIdentifier"))
|
|
1568
|
+
BatchPutAttributeOutput.struct_class = Types::BatchPutAttributeOutput
|
|
1569
|
+
|
|
1570
|
+
BatchPutAttributesMetadataInput.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "attributes"))
|
|
1571
|
+
BatchPutAttributesMetadataInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1572
|
+
BatchPutAttributesMetadataInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
1573
|
+
BatchPutAttributesMetadataInput.add_member(:entity_identifier, Shapes::ShapeRef.new(shape: EntityId, required: true, location: "uri", location_name: "entityIdentifier"))
|
|
1574
|
+
BatchPutAttributesMetadataInput.add_member(:entity_type, Shapes::ShapeRef.new(shape: AttributeEntityType, required: true, location: "uri", location_name: "entityType"))
|
|
1575
|
+
BatchPutAttributesMetadataInput.struct_class = Types::BatchPutAttributesMetadataInput
|
|
1576
|
+
|
|
1577
|
+
BatchPutAttributesMetadataOutput.add_member(:attributes, Shapes::ShapeRef.new(shape: BatchPutAttributeItems, location_name: "attributes"))
|
|
1578
|
+
BatchPutAttributesMetadataOutput.add_member(:errors, Shapes::ShapeRef.new(shape: AttributesErrors, location_name: "errors"))
|
|
1579
|
+
BatchPutAttributesMetadataOutput.struct_class = Types::BatchPutAttributesMetadataOutput
|
|
1580
|
+
|
|
1514
1581
|
BusinessNameGenerationConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
1515
1582
|
BusinessNameGenerationConfiguration.struct_class = Types::BusinessNameGenerationConfiguration
|
|
1516
1583
|
|
|
@@ -3637,6 +3704,11 @@ module Aws::DataZone
|
|
|
3637
3704
|
GlossaryItemAdditionalAttributes.add_member(:match_rationale, Shapes::ShapeRef.new(shape: MatchRationale, location_name: "matchRationale"))
|
|
3638
3705
|
GlossaryItemAdditionalAttributes.struct_class = Types::GlossaryItemAdditionalAttributes
|
|
3639
3706
|
|
|
3707
|
+
GlossaryTermEnforcementDetail.add_member(:required_glossary_term_ids, Shapes::ShapeRef.new(shape: GlossaryTermIdentifiers, location_name: "requiredGlossaryTermIds"))
|
|
3708
|
+
GlossaryTermEnforcementDetail.struct_class = Types::GlossaryTermEnforcementDetail
|
|
3709
|
+
|
|
3710
|
+
GlossaryTermIdentifiers.member = Shapes::ShapeRef.new(shape: GlossaryTermId)
|
|
3711
|
+
|
|
3640
3712
|
GlossaryTermItem.add_member(:additional_attributes, Shapes::ShapeRef.new(shape: GlossaryTermItemAdditionalAttributes, location_name: "additionalAttributes"))
|
|
3641
3713
|
GlossaryTermItem.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
3642
3714
|
GlossaryTermItem.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
|
@@ -5010,8 +5082,10 @@ module Aws::DataZone
|
|
|
5010
5082
|
|
|
5011
5083
|
RuleAssetTypeList.member = Shapes::ShapeRef.new(shape: AssetTypeIdentifier)
|
|
5012
5084
|
|
|
5085
|
+
RuleDetail.add_member(:glossary_term_enforcement_detail, Shapes::ShapeRef.new(shape: GlossaryTermEnforcementDetail, location_name: "glossaryTermEnforcementDetail"))
|
|
5013
5086
|
RuleDetail.add_member(:metadata_form_enforcement_detail, Shapes::ShapeRef.new(shape: MetadataFormEnforcementDetail, location_name: "metadataFormEnforcementDetail"))
|
|
5014
5087
|
RuleDetail.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
5088
|
+
RuleDetail.add_member_subclass(:glossary_term_enforcement_detail, Types::RuleDetail::GlossaryTermEnforcementDetail)
|
|
5015
5089
|
RuleDetail.add_member_subclass(:metadata_form_enforcement_detail, Types::RuleDetail::MetadataFormEnforcementDetail)
|
|
5016
5090
|
RuleDetail.add_member_subclass(:unknown, Types::RuleDetail::Unknown)
|
|
5017
5091
|
RuleDetail.struct_class = Types::RuleDetail
|
|
@@ -5920,6 +5994,14 @@ module Aws::DataZone
|
|
|
5920
5994
|
UpdateProjectProfileOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
5921
5995
|
UpdateProjectProfileOutput.struct_class = Types::UpdateProjectProfileOutput
|
|
5922
5996
|
|
|
5997
|
+
UpdateRootDomainUnitOwnerInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
5998
|
+
UpdateRootDomainUnitOwnerInput.add_member(:current_owner, Shapes::ShapeRef.new(shape: UserIdentifier, required: true, location_name: "currentOwner"))
|
|
5999
|
+
UpdateRootDomainUnitOwnerInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
6000
|
+
UpdateRootDomainUnitOwnerInput.add_member(:new_owner, Shapes::ShapeRef.new(shape: String, required: true, location_name: "newOwner"))
|
|
6001
|
+
UpdateRootDomainUnitOwnerInput.struct_class = Types::UpdateRootDomainUnitOwnerInput
|
|
6002
|
+
|
|
6003
|
+
UpdateRootDomainUnitOwnerOutput.struct_class = Types::UpdateRootDomainUnitOwnerOutput
|
|
6004
|
+
|
|
5923
6005
|
UpdateRuleInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
5924
6006
|
UpdateRuleInput.add_member(:detail, Shapes::ShapeRef.new(shape: RuleDetail, location_name: "detail"))
|
|
5925
6007
|
UpdateRuleInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
@@ -6182,6 +6264,35 @@ module Aws::DataZone
|
|
|
6182
6264
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
6183
6265
|
end)
|
|
6184
6266
|
|
|
6267
|
+
api.add_operation(:batch_get_attributes_metadata, Seahorse::Model::Operation.new.tap do |o|
|
|
6268
|
+
o.name = "BatchGetAttributesMetadata"
|
|
6269
|
+
o.http_method = "GET"
|
|
6270
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/attributes-metadata"
|
|
6271
|
+
o.input = Shapes::ShapeRef.new(shape: BatchGetAttributesMetadataInput)
|
|
6272
|
+
o.output = Shapes::ShapeRef.new(shape: BatchGetAttributesMetadataOutput)
|
|
6273
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6274
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6275
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6276
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6277
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6278
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
6279
|
+
end)
|
|
6280
|
+
|
|
6281
|
+
api.add_operation(:batch_put_attributes_metadata, Seahorse::Model::Operation.new.tap do |o|
|
|
6282
|
+
o.name = "BatchPutAttributesMetadata"
|
|
6283
|
+
o.http_method = "PUT"
|
|
6284
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/attributes-metadata"
|
|
6285
|
+
o.input = Shapes::ShapeRef.new(shape: BatchPutAttributesMetadataInput)
|
|
6286
|
+
o.output = Shapes::ShapeRef.new(shape: BatchPutAttributesMetadataOutput)
|
|
6287
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6288
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6289
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6290
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6291
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
6292
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6293
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
6294
|
+
end)
|
|
6295
|
+
|
|
6185
6296
|
api.add_operation(:cancel_metadata_generation_run, Seahorse::Model::Operation.new.tap do |o|
|
|
6186
6297
|
o.name = "CancelMetadataGenerationRun"
|
|
6187
6298
|
o.http_method = "POST"
|
|
@@ -8710,6 +8821,21 @@ module Aws::DataZone
|
|
|
8710
8821
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
8711
8822
|
end)
|
|
8712
8823
|
|
|
8824
|
+
api.add_operation(:update_root_domain_unit_owner, Seahorse::Model::Operation.new.tap do |o|
|
|
8825
|
+
o.name = "UpdateRootDomainUnitOwner"
|
|
8826
|
+
o.http_method = "PATCH"
|
|
8827
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/root-domain-unit-owner"
|
|
8828
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateRootDomainUnitOwnerInput)
|
|
8829
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateRootDomainUnitOwnerOutput)
|
|
8830
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
8831
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
8832
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
8833
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
8834
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
8835
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
8836
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
8837
|
+
end)
|
|
8838
|
+
|
|
8713
8839
|
api.add_operation(:update_rule, Seahorse::Model::Operation.new.tap do |o|
|
|
8714
8840
|
o.name = "UpdateRule"
|
|
8715
8841
|
o.http_method = "PATCH"
|
|
@@ -1388,6 +1388,49 @@ module Aws::DataZone
|
|
|
1388
1388
|
include Aws::Structure
|
|
1389
1389
|
end
|
|
1390
1390
|
|
|
1391
|
+
# The attribute error.
|
|
1392
|
+
#
|
|
1393
|
+
# @!attribute [rw] attribute_identifier
|
|
1394
|
+
# The attribute ID as part of the attribute error.
|
|
1395
|
+
# @return [String]
|
|
1396
|
+
#
|
|
1397
|
+
# @!attribute [rw] code
|
|
1398
|
+
# The code generated as part of the attribute error.
|
|
1399
|
+
# @return [String]
|
|
1400
|
+
#
|
|
1401
|
+
# @!attribute [rw] message
|
|
1402
|
+
# The message generated as part of the attribute error.
|
|
1403
|
+
# @return [String]
|
|
1404
|
+
#
|
|
1405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AttributeError AWS API Documentation
|
|
1406
|
+
#
|
|
1407
|
+
class AttributeError < Struct.new(
|
|
1408
|
+
:attribute_identifier,
|
|
1409
|
+
:code,
|
|
1410
|
+
:message)
|
|
1411
|
+
SENSITIVE = []
|
|
1412
|
+
include Aws::Structure
|
|
1413
|
+
end
|
|
1414
|
+
|
|
1415
|
+
# The attribute input.
|
|
1416
|
+
#
|
|
1417
|
+
# @!attribute [rw] attribute_identifier
|
|
1418
|
+
# The ID of the attribute.
|
|
1419
|
+
# @return [String]
|
|
1420
|
+
#
|
|
1421
|
+
# @!attribute [rw] forms
|
|
1422
|
+
# The metadata forms as part of the attribute input.
|
|
1423
|
+
# @return [Array<Types::FormInput>]
|
|
1424
|
+
#
|
|
1425
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AttributeInput AWS API Documentation
|
|
1426
|
+
#
|
|
1427
|
+
class AttributeInput < Struct.new(
|
|
1428
|
+
:attribute_identifier,
|
|
1429
|
+
:forms)
|
|
1430
|
+
SENSITIVE = [:forms]
|
|
1431
|
+
include Aws::Structure
|
|
1432
|
+
end
|
|
1433
|
+
|
|
1391
1434
|
# The authentication configuration of a connection.
|
|
1392
1435
|
#
|
|
1393
1436
|
# @!attribute [rw] authentication_type
|
|
@@ -1582,6 +1625,144 @@ module Aws::DataZone
|
|
|
1582
1625
|
include Aws::Structure
|
|
1583
1626
|
end
|
|
1584
1627
|
|
|
1628
|
+
# The results of the BatchGetAttribute action.
|
|
1629
|
+
#
|
|
1630
|
+
# @!attribute [rw] attribute_identifier
|
|
1631
|
+
# The attribute ID.
|
|
1632
|
+
# @return [String]
|
|
1633
|
+
#
|
|
1634
|
+
# @!attribute [rw] forms
|
|
1635
|
+
# The metadata forms that are part of the results of the
|
|
1636
|
+
# BatchGetAttribute action.
|
|
1637
|
+
# @return [Array<Types::FormOutput>]
|
|
1638
|
+
#
|
|
1639
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchGetAttributeOutput AWS API Documentation
|
|
1640
|
+
#
|
|
1641
|
+
class BatchGetAttributeOutput < Struct.new(
|
|
1642
|
+
:attribute_identifier,
|
|
1643
|
+
:forms)
|
|
1644
|
+
SENSITIVE = []
|
|
1645
|
+
include Aws::Structure
|
|
1646
|
+
end
|
|
1647
|
+
|
|
1648
|
+
# @!attribute [rw] attribute_identifiers
|
|
1649
|
+
# The attribute identifier.
|
|
1650
|
+
# @return [Array<String>]
|
|
1651
|
+
#
|
|
1652
|
+
# @!attribute [rw] domain_identifier
|
|
1653
|
+
# The domain ID where you want to get the attribute metadata.
|
|
1654
|
+
# @return [String]
|
|
1655
|
+
#
|
|
1656
|
+
# @!attribute [rw] entity_identifier
|
|
1657
|
+
# The entity ID for which you want to get attribute metadata.
|
|
1658
|
+
# @return [String]
|
|
1659
|
+
#
|
|
1660
|
+
# @!attribute [rw] entity_revision
|
|
1661
|
+
# The entity revision for which you want to get attribute metadata.
|
|
1662
|
+
# @return [String]
|
|
1663
|
+
#
|
|
1664
|
+
# @!attribute [rw] entity_type
|
|
1665
|
+
# The entity type for which you want to get attribute metadata.
|
|
1666
|
+
# @return [String]
|
|
1667
|
+
#
|
|
1668
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchGetAttributesMetadataInput AWS API Documentation
|
|
1669
|
+
#
|
|
1670
|
+
class BatchGetAttributesMetadataInput < Struct.new(
|
|
1671
|
+
:attribute_identifiers,
|
|
1672
|
+
:domain_identifier,
|
|
1673
|
+
:entity_identifier,
|
|
1674
|
+
:entity_revision,
|
|
1675
|
+
:entity_type)
|
|
1676
|
+
SENSITIVE = []
|
|
1677
|
+
include Aws::Structure
|
|
1678
|
+
end
|
|
1679
|
+
|
|
1680
|
+
# @!attribute [rw] attributes
|
|
1681
|
+
# The results of the BatchGetAttributesMetadata action.
|
|
1682
|
+
# @return [Array<Types::BatchGetAttributeOutput>]
|
|
1683
|
+
#
|
|
1684
|
+
# @!attribute [rw] errors
|
|
1685
|
+
# The errors generated when the BatchGetAttributesMetadata action is
|
|
1686
|
+
# invoked.
|
|
1687
|
+
# @return [Array<Types::AttributeError>]
|
|
1688
|
+
#
|
|
1689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchGetAttributesMetadataOutput AWS API Documentation
|
|
1690
|
+
#
|
|
1691
|
+
class BatchGetAttributesMetadataOutput < Struct.new(
|
|
1692
|
+
:attributes,
|
|
1693
|
+
:errors)
|
|
1694
|
+
SENSITIVE = []
|
|
1695
|
+
include Aws::Structure
|
|
1696
|
+
end
|
|
1697
|
+
|
|
1698
|
+
# The results of the BatchPutAttribute action.
|
|
1699
|
+
#
|
|
1700
|
+
# @!attribute [rw] attribute_identifier
|
|
1701
|
+
# The attribute ID.
|
|
1702
|
+
# @return [String]
|
|
1703
|
+
#
|
|
1704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchPutAttributeOutput AWS API Documentation
|
|
1705
|
+
#
|
|
1706
|
+
class BatchPutAttributeOutput < Struct.new(
|
|
1707
|
+
:attribute_identifier)
|
|
1708
|
+
SENSITIVE = []
|
|
1709
|
+
include Aws::Structure
|
|
1710
|
+
end
|
|
1711
|
+
|
|
1712
|
+
# @!attribute [rw] attributes
|
|
1713
|
+
# The attributes of the metadata.
|
|
1714
|
+
# @return [Array<Types::AttributeInput>]
|
|
1715
|
+
#
|
|
1716
|
+
# @!attribute [rw] client_token
|
|
1717
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
1718
|
+
# request. This field is automatically populated if not provided.
|
|
1719
|
+
#
|
|
1720
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1721
|
+
# not need to pass this option.
|
|
1722
|
+
# @return [String]
|
|
1723
|
+
#
|
|
1724
|
+
# @!attribute [rw] domain_identifier
|
|
1725
|
+
# The domain ID where you want to write the attribute metadata.
|
|
1726
|
+
# @return [String]
|
|
1727
|
+
#
|
|
1728
|
+
# @!attribute [rw] entity_identifier
|
|
1729
|
+
# The entity ID for which you want to write the attribute metadata.
|
|
1730
|
+
# @return [String]
|
|
1731
|
+
#
|
|
1732
|
+
# @!attribute [rw] entity_type
|
|
1733
|
+
# The entity type for which you want to write the attribute metadata.
|
|
1734
|
+
# @return [String]
|
|
1735
|
+
#
|
|
1736
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchPutAttributesMetadataInput AWS API Documentation
|
|
1737
|
+
#
|
|
1738
|
+
class BatchPutAttributesMetadataInput < Struct.new(
|
|
1739
|
+
:attributes,
|
|
1740
|
+
:client_token,
|
|
1741
|
+
:domain_identifier,
|
|
1742
|
+
:entity_identifier,
|
|
1743
|
+
:entity_type)
|
|
1744
|
+
SENSITIVE = []
|
|
1745
|
+
include Aws::Structure
|
|
1746
|
+
end
|
|
1747
|
+
|
|
1748
|
+
# @!attribute [rw] attributes
|
|
1749
|
+
# The results of the BatchPutAttributeMetadata action.
|
|
1750
|
+
# @return [Array<Types::BatchPutAttributeOutput>]
|
|
1751
|
+
#
|
|
1752
|
+
# @!attribute [rw] errors
|
|
1753
|
+
# The errors generated when the BatchPutAttributeMetadata action is
|
|
1754
|
+
# invoked.
|
|
1755
|
+
# @return [Array<Types::AttributeError>]
|
|
1756
|
+
#
|
|
1757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchPutAttributesMetadataOutput AWS API Documentation
|
|
1758
|
+
#
|
|
1759
|
+
class BatchPutAttributesMetadataOutput < Struct.new(
|
|
1760
|
+
:attributes,
|
|
1761
|
+
:errors)
|
|
1762
|
+
SENSITIVE = []
|
|
1763
|
+
include Aws::Structure
|
|
1764
|
+
end
|
|
1765
|
+
|
|
1585
1766
|
# The configuration of the business name generation.
|
|
1586
1767
|
#
|
|
1587
1768
|
# @!attribute [rw] enabled
|
|
@@ -11193,6 +11374,20 @@ module Aws::DataZone
|
|
|
11193
11374
|
include Aws::Structure
|
|
11194
11375
|
end
|
|
11195
11376
|
|
|
11377
|
+
# The enforcement details of a glossary term.
|
|
11378
|
+
#
|
|
11379
|
+
# @!attribute [rw] required_glossary_term_ids
|
|
11380
|
+
# The ID of the required glossary term.
|
|
11381
|
+
# @return [Array<String>]
|
|
11382
|
+
#
|
|
11383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlossaryTermEnforcementDetail AWS API Documentation
|
|
11384
|
+
#
|
|
11385
|
+
class GlossaryTermEnforcementDetail < Struct.new(
|
|
11386
|
+
:required_glossary_term_ids)
|
|
11387
|
+
SENSITIVE = []
|
|
11388
|
+
include Aws::Structure
|
|
11389
|
+
end
|
|
11390
|
+
|
|
11196
11391
|
# The details of a business glossary term.
|
|
11197
11392
|
#
|
|
11198
11393
|
# @!attribute [rw] additional_attributes
|
|
@@ -11895,6 +12090,8 @@ module Aws::DataZone
|
|
|
11895
12090
|
include Aws::Structure
|
|
11896
12091
|
end
|
|
11897
12092
|
|
|
12093
|
+
# The details of the IAM user profile.
|
|
12094
|
+
#
|
|
11898
12095
|
# @!attribute [rw] arn
|
|
11899
12096
|
# The ARN of the IAM user.
|
|
11900
12097
|
# @return [String]
|
|
@@ -17546,6 +17743,11 @@ module Aws::DataZone
|
|
|
17546
17743
|
#
|
|
17547
17744
|
# @note RuleDetail is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleDetail corresponding to the set member.
|
|
17548
17745
|
#
|
|
17746
|
+
# @!attribute [rw] glossary_term_enforcement_detail
|
|
17747
|
+
# The enforcement details of a glossary term that's part of the
|
|
17748
|
+
# metadata rule.
|
|
17749
|
+
# @return [Types::GlossaryTermEnforcementDetail]
|
|
17750
|
+
#
|
|
17549
17751
|
# @!attribute [rw] metadata_form_enforcement_detail
|
|
17550
17752
|
# The enforcement detail of the metadata form.
|
|
17551
17753
|
# @return [Types::MetadataFormEnforcementDetail]
|
|
@@ -17553,12 +17755,14 @@ module Aws::DataZone
|
|
|
17553
17755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RuleDetail AWS API Documentation
|
|
17554
17756
|
#
|
|
17555
17757
|
class RuleDetail < Struct.new(
|
|
17758
|
+
:glossary_term_enforcement_detail,
|
|
17556
17759
|
:metadata_form_enforcement_detail,
|
|
17557
17760
|
:unknown)
|
|
17558
17761
|
SENSITIVE = []
|
|
17559
17762
|
include Aws::Structure
|
|
17560
17763
|
include Aws::Structure::Union
|
|
17561
17764
|
|
|
17765
|
+
class GlossaryTermEnforcementDetail < RuleDetail; end
|
|
17562
17766
|
class MetadataFormEnforcementDetail < RuleDetail; end
|
|
17563
17767
|
class Unknown < RuleDetail; end
|
|
17564
17768
|
end
|
|
@@ -21630,6 +21834,42 @@ module Aws::DataZone
|
|
|
21630
21834
|
include Aws::Structure
|
|
21631
21835
|
end
|
|
21632
21836
|
|
|
21837
|
+
# @!attribute [rw] client_token
|
|
21838
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
21839
|
+
# request. This field is automatically populated if not provided.
|
|
21840
|
+
#
|
|
21841
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
21842
|
+
# not need to pass this option.
|
|
21843
|
+
# @return [String]
|
|
21844
|
+
#
|
|
21845
|
+
# @!attribute [rw] current_owner
|
|
21846
|
+
# The current owner of the root domain unit.
|
|
21847
|
+
# @return [String]
|
|
21848
|
+
#
|
|
21849
|
+
# @!attribute [rw] domain_identifier
|
|
21850
|
+
# The ID of the domain where the root domain unit owner is to be
|
|
21851
|
+
# updated.
|
|
21852
|
+
# @return [String]
|
|
21853
|
+
#
|
|
21854
|
+
# @!attribute [rw] new_owner
|
|
21855
|
+
# The new owner of the root domain unit.
|
|
21856
|
+
# @return [String]
|
|
21857
|
+
#
|
|
21858
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateRootDomainUnitOwnerInput AWS API Documentation
|
|
21859
|
+
#
|
|
21860
|
+
class UpdateRootDomainUnitOwnerInput < Struct.new(
|
|
21861
|
+
:client_token,
|
|
21862
|
+
:current_owner,
|
|
21863
|
+
:domain_identifier,
|
|
21864
|
+
:new_owner)
|
|
21865
|
+
SENSITIVE = []
|
|
21866
|
+
include Aws::Structure
|
|
21867
|
+
end
|
|
21868
|
+
|
|
21869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateRootDomainUnitOwnerOutput AWS API Documentation
|
|
21870
|
+
#
|
|
21871
|
+
class UpdateRootDomainUnitOwnerOutput < Aws::EmptyStructure; end
|
|
21872
|
+
|
|
21633
21873
|
# @!attribute [rw] description
|
|
21634
21874
|
# The description of the rule.
|
|
21635
21875
|
# @return [String]
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -270,6 +270,48 @@ module Aws
|
|
|
270
270
|
) -> _AssociateGovernedTermsResponseSuccess
|
|
271
271
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateGovernedTermsResponseSuccess
|
|
272
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
|
+
|
|
273
315
|
interface _CancelMetadataGenerationRunResponseSuccess
|
|
274
316
|
include ::Seahorse::Client::_ResponseSuccess[Types::CancelMetadataGenerationRunOutput]
|
|
275
317
|
end
|
|
@@ -1333,7 +1375,7 @@ module Aws
|
|
|
1333
1375
|
def detail: () -> Types::RuleDetail
|
|
1334
1376
|
def identifier: () -> ::String
|
|
1335
1377
|
def name: () -> ::String
|
|
1336
|
-
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT")
|
|
1378
|
+
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
1337
1379
|
def scope: () -> Types::RuleScope
|
|
1338
1380
|
def target: () -> Types::RuleTarget
|
|
1339
1381
|
def target_type: () -> ("DOMAIN_UNIT")
|
|
@@ -1344,6 +1386,9 @@ module Aws
|
|
|
1344
1386
|
?client_token: ::String,
|
|
1345
1387
|
?description: ::String,
|
|
1346
1388
|
detail: {
|
|
1389
|
+
glossary_term_enforcement_detail: {
|
|
1390
|
+
required_glossary_term_ids: Array[::String]?
|
|
1391
|
+
}?,
|
|
1347
1392
|
metadata_form_enforcement_detail: {
|
|
1348
1393
|
required_metadata_forms: Array[
|
|
1349
1394
|
{
|
|
@@ -2469,7 +2514,7 @@ module Aws
|
|
|
2469
2514
|
def last_updated_by: () -> ::String
|
|
2470
2515
|
def name: () -> ::String
|
|
2471
2516
|
def revision: () -> ::String
|
|
2472
|
-
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT")
|
|
2517
|
+
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
2473
2518
|
def scope: () -> Types::RuleScope
|
|
2474
2519
|
def target: () -> Types::RuleTarget
|
|
2475
2520
|
def target_type: () -> ("DOMAIN_UNIT")
|
|
@@ -3038,7 +3083,7 @@ module Aws
|
|
|
3038
3083
|
?max_results: ::Integer,
|
|
3039
3084
|
?next_token: ::String,
|
|
3040
3085
|
?project_ids: Array[::String],
|
|
3041
|
-
?rule_type: ("METADATA_FORM_ENFORCEMENT"),
|
|
3086
|
+
?rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT"),
|
|
3042
3087
|
target_identifier: ::String,
|
|
3043
3088
|
target_type: ("DOMAIN_UNIT")
|
|
3044
3089
|
) -> _ListRulesResponseSuccess
|
|
@@ -4274,6 +4319,18 @@ module Aws
|
|
|
4274
4319
|
) -> _UpdateProjectProfileResponseSuccess
|
|
4275
4320
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectProfileResponseSuccess
|
|
4276
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
|
+
|
|
4277
4334
|
interface _UpdateRuleResponseSuccess
|
|
4278
4335
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRuleOutput]
|
|
4279
4336
|
def action: () -> ("CREATE_LISTING_CHANGE_SET" | "CREATE_SUBSCRIPTION_REQUEST")
|
|
@@ -4285,7 +4342,7 @@ module Aws
|
|
|
4285
4342
|
def last_updated_by: () -> ::String
|
|
4286
4343
|
def name: () -> ::String
|
|
4287
4344
|
def revision: () -> ::String
|
|
4288
|
-
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT")
|
|
4345
|
+
def rule_type: () -> ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
4289
4346
|
def scope: () -> Types::RuleScope
|
|
4290
4347
|
def target: () -> Types::RuleTarget
|
|
4291
4348
|
def updated_at: () -> ::Time
|
|
@@ -4294,6 +4351,9 @@ module Aws
|
|
|
4294
4351
|
def update_rule: (
|
|
4295
4352
|
?description: ::String,
|
|
4296
4353
|
?detail: {
|
|
4354
|
+
glossary_term_enforcement_detail: {
|
|
4355
|
+
required_glossary_term_ids: Array[::String]?
|
|
4356
|
+
}?,
|
|
4297
4357
|
metadata_form_enforcement_detail: {
|
|
4298
4358
|
required_metadata_forms: Array[
|
|
4299
4359
|
{
|
data/sig/types.rbs
CHANGED
|
@@ -392,6 +392,19 @@ module Aws::DataZone
|
|
|
392
392
|
SENSITIVE: []
|
|
393
393
|
end
|
|
394
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
|
+
|
|
395
408
|
class AuthenticationConfiguration
|
|
396
409
|
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
|
397
410
|
attr_accessor o_auth_2_properties: Types::OAuth2Properties
|
|
@@ -454,6 +467,47 @@ module Aws::DataZone
|
|
|
454
467
|
SENSITIVE: []
|
|
455
468
|
end
|
|
456
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
|
+
|
|
457
511
|
class BusinessNameGenerationConfiguration
|
|
458
512
|
attr_accessor enabled: bool
|
|
459
513
|
SENSITIVE: []
|
|
@@ -1320,7 +1374,7 @@ module Aws::DataZone
|
|
|
1320
1374
|
attr_accessor detail: Types::RuleDetail
|
|
1321
1375
|
attr_accessor identifier: ::String
|
|
1322
1376
|
attr_accessor name: ::String
|
|
1323
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
1377
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
1324
1378
|
attr_accessor scope: Types::RuleScope
|
|
1325
1379
|
attr_accessor target: Types::RuleTarget
|
|
1326
1380
|
attr_accessor target_type: ("DOMAIN_UNIT")
|
|
@@ -2857,7 +2911,7 @@ module Aws::DataZone
|
|
|
2857
2911
|
attr_accessor last_updated_by: ::String
|
|
2858
2912
|
attr_accessor name: ::String
|
|
2859
2913
|
attr_accessor revision: ::String
|
|
2860
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
2914
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
2861
2915
|
attr_accessor scope: Types::RuleScope
|
|
2862
2916
|
attr_accessor target: Types::RuleTarget
|
|
2863
2917
|
attr_accessor target_type: ("DOMAIN_UNIT")
|
|
@@ -3013,6 +3067,11 @@ module Aws::DataZone
|
|
|
3013
3067
|
SENSITIVE: []
|
|
3014
3068
|
end
|
|
3015
3069
|
|
|
3070
|
+
class GlossaryTermEnforcementDetail
|
|
3071
|
+
attr_accessor required_glossary_term_ids: ::Array[::String]
|
|
3072
|
+
SENSITIVE: []
|
|
3073
|
+
end
|
|
3074
|
+
|
|
3016
3075
|
class GlossaryTermItem
|
|
3017
3076
|
attr_accessor additional_attributes: Types::GlossaryTermItemAdditionalAttributes
|
|
3018
3077
|
attr_accessor created_at: ::Time
|
|
@@ -3796,7 +3855,7 @@ module Aws::DataZone
|
|
|
3796
3855
|
attr_accessor max_results: ::Integer
|
|
3797
3856
|
attr_accessor next_token: ::String
|
|
3798
3857
|
attr_accessor project_ids: ::Array[::String]
|
|
3799
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
3858
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
3800
3859
|
attr_accessor target_identifier: ::String
|
|
3801
3860
|
attr_accessor target_type: ("DOMAIN_UNIT")
|
|
3802
3861
|
SENSITIVE: []
|
|
@@ -4806,10 +4865,13 @@ module Aws::DataZone
|
|
|
4806
4865
|
end
|
|
4807
4866
|
|
|
4808
4867
|
class RuleDetail
|
|
4868
|
+
attr_accessor glossary_term_enforcement_detail: Types::GlossaryTermEnforcementDetail
|
|
4809
4869
|
attr_accessor metadata_form_enforcement_detail: Types::MetadataFormEnforcementDetail
|
|
4810
4870
|
attr_accessor unknown: untyped
|
|
4811
4871
|
SENSITIVE: []
|
|
4812
4872
|
|
|
4873
|
+
class GlossaryTermEnforcementDetail < RuleDetail
|
|
4874
|
+
end
|
|
4813
4875
|
class MetadataFormEnforcementDetail < RuleDetail
|
|
4814
4876
|
end
|
|
4815
4877
|
class Unknown < RuleDetail
|
|
@@ -4829,7 +4891,7 @@ module Aws::DataZone
|
|
|
4829
4891
|
attr_accessor last_updated_by: ::String
|
|
4830
4892
|
attr_accessor name: ::String
|
|
4831
4893
|
attr_accessor revision: ::String
|
|
4832
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
4894
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
4833
4895
|
attr_accessor scope: Types::RuleScope
|
|
4834
4896
|
attr_accessor target: Types::RuleTarget
|
|
4835
4897
|
attr_accessor target_type: ("DOMAIN_UNIT")
|
|
@@ -5883,6 +5945,17 @@ module Aws::DataZone
|
|
|
5883
5945
|
SENSITIVE: [:description, :name, :project_resource_tags_description]
|
|
5884
5946
|
end
|
|
5885
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
|
+
|
|
5886
5959
|
class UpdateRuleInput
|
|
5887
5960
|
attr_accessor description: ::String
|
|
5888
5961
|
attr_accessor detail: Types::RuleDetail
|
|
@@ -5904,7 +5977,7 @@ module Aws::DataZone
|
|
|
5904
5977
|
attr_accessor last_updated_by: ::String
|
|
5905
5978
|
attr_accessor name: ::String
|
|
5906
5979
|
attr_accessor revision: ::String
|
|
5907
|
-
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
|
5980
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT" | "GLOSSARY_TERM_ENFORCEMENT")
|
|
5908
5981
|
attr_accessor scope: Types::RuleScope
|
|
5909
5982
|
attr_accessor target: Types::RuleTarget
|
|
5910
5983
|
attr_accessor updated_at: ::Time
|