Get Data Product
| datazone_get_data_product | R Documentation |
Gets the data product¶
Description¶
Gets the data product.
Prerequisites:
-
The data product ID must exist.
-
The domain must be valid and accessible.
-
User must have read or discovery permissions for the data product.
Usage¶
datazone_get_data_product(domainIdentifier, identifier, revision)
Arguments¶
domainIdentifier |
[required] The ID of the domain where the data product lives. |
identifier |
[required] The ID of the data product. |
revision |
The revision of the data product. |
Value¶
A list with the following syntax:
list(
domainId = "string",
id = "string",
revision = "string",
owningProjectId = "string",
name = "string",
status = "CREATED"|"CREATING"|"CREATE_FAILED",
description = "string",
glossaryTerms = list(
"string"
),
items = list(
list(
itemType = "ASSET",
identifier = "string",
revision = "string",
glossaryTerms = list(
"string"
)
)
),
formsOutput = list(
list(
formName = "string",
typeName = "string",
typeRevision = "string",
content = "string"
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
firstRevisionCreatedAt = as.POSIXct(
"2015-01-01"
),
firstRevisionCreatedBy = "string"
)
Request syntax¶
svc$get_data_product(
domainIdentifier = "string",
identifier = "string",
revision = "string"
)