Skip to content

Update Http Namespace

servicediscovery_update_http_namespace R Documentation

Updates an HTTP namespace

Description

Updates an HTTP namespace.

Usage

servicediscovery_update_http_namespace(Id, UpdaterRequestId, Namespace)

Arguments

Id

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

UpdaterRequestId

A unique string that identifies the request and that allows failed update_http_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 the HTTP namespace.

Value

A list with the following syntax:

list(
  OperationId = "string"
)

Request syntax

svc$update_http_namespace(
  Id = "string",
  UpdaterRequestId = "string",
  Namespace = list(
    Description = "string"
  )
)

Examples

## Not run: 
# The following example updates the description of a HTTP namespace.
svc$update_http_namespace(
  Id = "ns-vh4nbmEXAMPLE",
  Namespace = list(
    Description = "The updated namespace description."
  )
)

## End(Not run)