Get Data Product
datazone_get_data_product | R Documentation |
Gets the data product¶
Description¶
Gets 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(
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
description = "string",
domainId = "string",
firstRevisionCreatedAt = as.POSIXct(
"2015-01-01"
),
firstRevisionCreatedBy = "string",
formsOutput = list(
list(
content = "string",
formName = "string",
typeName = "string",
typeRevision = "string"
)
),
glossaryTerms = list(
"string"
),
id = "string",
items = list(
list(
glossaryTerms = list(
"string"
),
identifier = "string",
itemType = "ASSET",
revision = "string"
)
),
name = "string",
owningProjectId = "string",
revision = "string",
status = "CREATED"|"CREATING"|"CREATE_FAILED"
)
Request syntax¶
svc$get_data_product(
domainIdentifier = "string",
identifier = "string",
revision = "string"
)