Skip to content

Delete Namespace

servicediscovery_delete_namespace R Documentation

Deletes a namespace from the current account

Description

Deletes a namespace from the current account. If the namespace still contains one or more services, the request fails.

Usage

servicediscovery_delete_namespace(Id)

Arguments

Id

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

Value

A list with the following syntax:

list(
  OperationId = "string"
)

Request syntax

svc$delete_namespace(
  Id = "string"
)

Examples

## Not run: 
# Example: Delete namespace
svc$delete_namespace(
  Id = "ns-ylexjili4cdxy3xm"
)

## End(Not run)