Skip to content

Get Domain Unit

datazone_get_domain_unit R Documentation

Gets the details of the specified domain unit

Description

Gets the details of the specified domain unit.

Usage

datazone_get_domain_unit(domainIdentifier, identifier)

Arguments

domainIdentifier

[required] The ID of the domain where you want to get a domain unit.

identifier

[required] The identifier of the domain unit that you want to get.

Value

A list with the following syntax:

list(
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  description = "string",
  domainId = "string",
  id = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedBy = "string",
  name = "string",
  owners = list(
    list(
      group = list(
        groupId = "string"
      ),
      user = list(
        userId = "string"
      )
    )
  ),
  parentDomainUnitId = "string"
)

Request syntax

svc$get_domain_unit(
  domainIdentifier = "string",
  identifier = "string"
)