Skip to content

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(domainIdentifier, entityType,
  entityIdentifier, owner, clientToken)

Arguments

domainIdentifier

[required] The ID of the domain where you want to remove an owner from an entity.

entityType

[required] The type of the entity from which you want to remove an owner.

entityIdentifier

[required] The ID of the entity from which you want to remove an owner.

owner

[required] The owner that you want to remove from an entity.

clientToken

A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

Value

An empty list.

Request syntax

svc$remove_entity_owner(
  domainIdentifier = "string",
  entityType = "DOMAIN_UNIT",
  entityIdentifier = "string",
  owner = list(
    user = list(
      userIdentifier = "string"
    ),
    group = list(
      groupIdentifier = "string"
    )
  ),
  clientToken = "string"
)