Add Entity Owner
| datazone_add_entity_owner | R Documentation |
Adds the owner of an entity (a domain unit)¶
Description¶
Adds the owner of an entity (a domain unit).
Usage¶
datazone_add_entity_owner(domainIdentifier, entityType,
entityIdentifier, owner, clientToken)
Arguments¶
domainIdentifier |
[required] The ID of the domain in which you want to add the entity owner. |
entityType |
[required] The type of an entity. |
entityIdentifier |
[required] The ID of the entity to which you want to add an owner. |
owner |
[required] The owner that you want to add to the entity. |
clientToken |
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request. |
Value¶
An empty list.
Request syntax¶
svc$add_entity_owner(
domainIdentifier = "string",
entityType = "DOMAIN_UNIT",
entityIdentifier = "string",
owner = list(
user = list(
userIdentifier = "string"
),
group = list(
groupIdentifier = "string"
)
),
clientToken = "string"
)