Skip to content

Update Public Dns Namespace

servicediscovery_update_public_dns_namespace R Documentation

Updates a public DNS namespace

Description

Updates a public DNS namespace.

Usage

servicediscovery_update_public_dns_namespace(Id, UpdaterRequestId,
  Namespace)

Arguments

Id

[required] The ID of the namespace being updated.

UpdaterRequestId

A unique string that identifies the request and that allows failed update_public_dns_namespace requests to be retried without the risk of running the operation twice. UpdaterRequestId can be any unique string (for example, a date/timestamp).

Namespace

[required] Updated properties for the public DNS namespace.

Value

A list with the following syntax:

list(
  OperationId = "string"
)

Request syntax

svc$update_public_dns_namespace(
  Id = "string",
  UpdaterRequestId = "string",
  Namespace = list(
    Description = "string",
    Properties = list(
      DnsProperties = list(
        SOA = list(
          TTL = 123
        )
      )
    )
  )
)