Batch Get Attributes Metadata
| datazone_batch_get_attributes_metadata | R Documentation |
Gets the attribute metadata¶
Description¶
Gets the attribute metadata.
Usage¶
datazone_batch_get_attributes_metadata(domainIdentifier, entityType,
entityIdentifier, entityRevision, attributeIdentifiers)
Arguments¶
domainIdentifier |
[required] The domain ID where you want to get the attribute metadata. |
entityType |
[required] The entity type for which you want to get attribute metadata. |
entityIdentifier |
[required] The entity ID for which you want to get attribute metadata. |
entityRevision |
The entity revision for which you want to get attribute metadata. |
attributeIdentifiers |
[required] The attribute identifier. |
Value¶
A list with the following syntax:
list(
attributes = list(
list(
attributeIdentifier = "string",
forms = list(
list(
formName = "string",
typeName = "string",
typeRevision = "string",
content = "string"
)
)
)
),
errors = list(
list(
attributeIdentifier = "string",
code = "string",
message = "string"
)
)
)
Request syntax¶
svc$batch_get_attributes_metadata(
domainIdentifier = "string",
entityType = "ASSET"|"LISTING",
entityIdentifier = "string",
entityRevision = "string",
attributeIdentifiers = list(
"string"
)
)