oci.Identity.TagNamespace
Explore with Pulumi AI
This resource provides the Tag Namespace resource in Oracle Cloud Infrastructure Identity service.
Creates a new tag namespace in the specified compartment.
You must specify the compartment ID in the request object (remember that the tenancy is simply the root compartment).
You must also specify a name for the namespace, which must be unique across all namespaces in your tenancy and cannot be changed. The name can contain any ASCII character except the space (_) or period (.). Names are case insensitive. That means, for example, “myNamespace” and “mynamespace” are not allowed in the same tenancy. Once you created a namespace, you cannot change the name. If you specify a name that’s already in use in the tenancy, a 409 error is returned.
You must also specify a description for the namespace. It does not have to be unique, and you can change it with UpdateTagNamespace.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testTagNamespace = new oci.identity.TagNamespace("test_tag_namespace", {
compartmentId: compartmentId,
description: tagNamespaceDescription,
name: tagNamespaceName,
definedTags: {
"Operations.CostCenter": "42",
},
freeformTags: {
Department: "Finance",
},
isRetired: false,
});
import pulumi
import pulumi_oci as oci
test_tag_namespace = oci.identity.TagNamespace("test_tag_namespace",
compartment_id=compartment_id,
description=tag_namespace_description,
name=tag_namespace_name,
defined_tags={
"Operations.CostCenter": "42",
},
freeform_tags={
"Department": "Finance",
},
is_retired=False)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Identity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Identity.NewTagNamespace(ctx, "test_tag_namespace", &Identity.TagNamespaceArgs{
CompartmentId: pulumi.Any(compartmentId),
Description: pulumi.Any(tagNamespaceDescription),
Name: pulumi.Any(tagNamespaceName),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
IsRetired: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testTagNamespace = new Oci.Identity.TagNamespace("test_tag_namespace", new()
{
CompartmentId = compartmentId,
Description = tagNamespaceDescription,
Name = tagNamespaceName,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
FreeformTags =
{
{ "Department", "Finance" },
},
IsRetired = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Identity.TagNamespace;
import com.pulumi.oci.Identity.TagNamespaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testTagNamespace = new TagNamespace("testTagNamespace", TagNamespaceArgs.builder()
.compartmentId(compartmentId)
.description(tagNamespaceDescription)
.name(tagNamespaceName)
.definedTags(Map.of("Operations.CostCenter", "42"))
.freeformTags(Map.of("Department", "Finance"))
.isRetired(false)
.build());
}
}
resources:
testTagNamespace:
type: oci:Identity:TagNamespace
name: test_tag_namespace
properties:
compartmentId: ${compartmentId}
description: ${tagNamespaceDescription}
name: ${tagNamespaceName}
definedTags:
Operations.CostCenter: '42'
freeformTags:
Department: Finance
isRetired: false
Create TagNamespace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TagNamespace(name: string, args: TagNamespaceArgs, opts?: CustomResourceOptions);
@overload
def TagNamespace(resource_name: str,
args: TagNamespaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TagNamespace(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
description: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_retired: Optional[bool] = None,
name: Optional[str] = None)
func NewTagNamespace(ctx *Context, name string, args TagNamespaceArgs, opts ...ResourceOption) (*TagNamespace, error)
public TagNamespace(string name, TagNamespaceArgs args, CustomResourceOptions? opts = null)
public TagNamespace(String name, TagNamespaceArgs args)
public TagNamespace(String name, TagNamespaceArgs args, CustomResourceOptions options)
type: oci:Identity:TagNamespace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TagNamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TagNamespaceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TagNamespaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TagNamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TagNamespaceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var tagNamespaceResource = new Oci.Identity.TagNamespace("tagNamespaceResource", new()
{
CompartmentId = "string",
Description = "string",
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
IsRetired = false,
Name = "string",
});
example, err := Identity.NewTagNamespace(ctx, "tagNamespaceResource", &Identity.TagNamespaceArgs{
CompartmentId: pulumi.String("string"),
Description: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
IsRetired: pulumi.Bool(false),
Name: pulumi.String("string"),
})
var tagNamespaceResource = new TagNamespace("tagNamespaceResource", TagNamespaceArgs.builder()
.compartmentId("string")
.description("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.isRetired(false)
.name("string")
.build());
tag_namespace_resource = oci.identity.TagNamespace("tagNamespaceResource",
compartment_id="string",
description="string",
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
},
is_retired=False,
name="string")
const tagNamespaceResource = new oci.identity.TagNamespace("tagNamespaceResource", {
compartmentId: "string",
description: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
isRetired: false,
name: "string",
});
type: oci:Identity:TagNamespace
properties:
compartmentId: string
definedTags:
string: string
description: string
freeformTags:
string: string
isRetired: false
name: string
TagNamespace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The TagNamespace resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the tenancy containing the tag namespace.
- Description string
- (Updatable) The description you assign to the tag namespace during creation.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Is
Retired bool (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Name string
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- Compartment
Id string - (Updatable) The OCID of the tenancy containing the tag namespace.
- Description string
- (Updatable) The description you assign to the tag namespace during creation.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Is
Retired bool (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Name string
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- compartment
Id String - (Updatable) The OCID of the tenancy containing the tag namespace.
- description String
- (Updatable) The description you assign to the tag namespace during creation.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Retired Boolean (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- name String
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- compartment
Id string - (Updatable) The OCID of the tenancy containing the tag namespace.
- description string
- (Updatable) The description you assign to the tag namespace during creation.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Retired boolean (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- name string
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- compartment_
id str - (Updatable) The OCID of the tenancy containing the tag namespace.
- description str
- (Updatable) The description you assign to the tag namespace during creation.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is_
retired bool (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- name str
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- compartment
Id String - (Updatable) The OCID of the tenancy containing the tag namespace.
- description String
- (Updatable) The description you assign to the tag namespace during creation.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Retired Boolean (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- name String
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the TagNamespace resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - Time
Created string - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - Time
Created string - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - time
Created String - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - time
Created string - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - time_
created str - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - time
Created String - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing TagNamespace Resource
Get an existing TagNamespace resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TagNamespaceState, opts?: CustomResourceOptions): TagNamespace
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_retired: Optional[bool] = None,
name: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None) -> TagNamespace
func GetTagNamespace(ctx *Context, name string, id IDInput, state *TagNamespaceState, opts ...ResourceOption) (*TagNamespace, error)
public static TagNamespace Get(string name, Input<string> id, TagNamespaceState? state, CustomResourceOptions? opts = null)
public static TagNamespace get(String name, Output<String> id, TagNamespaceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - (Updatable) The OCID of the tenancy containing the tag namespace.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) The description you assign to the tag namespace during creation.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Is
Retired bool (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Name string
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- State string
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - Time
Created string - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Compartment
Id string - (Updatable) The OCID of the tenancy containing the tag namespace.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) The description you assign to the tag namespace during creation.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Is
Retired bool (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Name string
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- State string
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - Time
Created string - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String - (Updatable) The OCID of the tenancy containing the tag namespace.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) The description you assign to the tag namespace during creation.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Retired Boolean (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- name String
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- state String
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - time
Created String - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id string - (Updatable) The OCID of the tenancy containing the tag namespace.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
- (Updatable) The description you assign to the tag namespace during creation.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Retired boolean (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- name string
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- state string
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - time
Created string - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment_
id str - (Updatable) The OCID of the tenancy containing the tag namespace.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
- (Updatable) The description you assign to the tag namespace during creation.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is_
retired bool (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- name str
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- state str
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - time_
created str - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String - (Updatable) The OCID of the tenancy containing the tag namespace.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) The description you assign to the tag namespace during creation.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Retired Boolean (Updatable) Whether the tag namespace is retired. For more information, see Retiring Key Definitions and Namespace Definitions.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- name String
- The name you assign to the tag namespace during creation. It must be unique across all tag namespaces in the tenancy and cannot be changed.
- state String
- The tagnamespace's current state. After creating a tagnamespace, make sure its
lifecycleState
is ACTIVE before using it. After retiring a tagnamespace, make sure itslifecycleState
is INACTIVE before using it. - time
Created String - Date and time the tag namespace was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Import
TagNamespaces can be imported using the id
, e.g.
$ pulumi import oci:Identity/tagNamespace:TagNamespace test_tag_namespace "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.