Create Data Product Revision
| datazone_create_data_product_revision | R Documentation |
Creates a data product revision¶
Description¶
Creates a data product revision.
Usage¶
datazone_create_data_product_revision(clientToken, description,
domainIdentifier, formsInput, glossaryTerms, identifier, items, name)
Arguments¶
clientTokenA unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
descriptionThe description of the data product revision.
domainIdentifier[required] The ID of the domain where the data product revision is created.
formsInputThe metadata forms of the data product revision.
glossaryTermsThe glossary terms of the data product revision.
identifier[required] The ID of the data product revision.
itemsThe data assets of the data product revision.
name[required] The name of the data product revision.
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$create_data_product_revision(
clientToken = "string",
description = "string",
domainIdentifier = "string",
formsInput = list(
list(
content = "string",
formName = "string",
typeIdentifier = "string",
typeRevision = "string"
)
),
glossaryTerms = list(
"string"
),
identifier = "string",
items = list(
list(
glossaryTerms = list(
"string"
),
identifier = "string",
itemType = "ASSET",
revision = "string"
)
),
name = "string"
)