Skip to content

Update Domain Unit

datazone_update_domain_unit R Documentation

Updates the domain unit

Description

Updates the domain unit.

Usage

datazone_update_domain_unit(description, domainIdentifier, identifier,
  name)

Arguments

description

The description of the domain unit that you want to update.

domainIdentifier

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

identifier

[required] The ID of the domain unit that you want to update.

name

The name of the domain unit that you want to update.

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$update_domain_unit(
  description = "string",
  domainIdentifier = "string",
  identifier = "string",
  name = "string"
)