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