1. Packages
  2. Flexibleengine Provider
  3. API Docs
  4. CceNamespace
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

flexibleengine.CceNamespace

Explore with Pulumi AI

Manages a CCE namespace resource within FlexibleEngine.

NOTE: Currently, there is an ongoing certificate issue regarding the namespace management APIs. Please set insecure = true in provider block to ignore SSL certificate verification.

Example Usage

Basic

import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";

const config = new pulumi.Config();
const clusterId = config.requireObject("clusterId");
const test = new flexibleengine.CceNamespace("test", {clusterId: clusterId});
Copy
import pulumi
import pulumi_flexibleengine as flexibleengine

config = pulumi.Config()
cluster_id = config.require_object("clusterId")
test = flexibleengine.CceNamespace("test", cluster_id=cluster_id)
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		clusterId := cfg.RequireObject("clusterId")
		_, err := flexibleengine.NewCceNamespace(ctx, "test", &flexibleengine.CceNamespaceArgs{
			ClusterId: pulumi.Any(clusterId),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var clusterId = config.RequireObject<dynamic>("clusterId");
    var test = new Flexibleengine.CceNamespace("test", new()
    {
        ClusterId = clusterId,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.CceNamespace;
import com.pulumi.flexibleengine.CceNamespaceArgs;
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) {
        final var config = ctx.config();
        final var clusterId = config.get("clusterId");
        var test = new CceNamespace("test", CceNamespaceArgs.builder()
            .clusterId(clusterId)
            .build());

    }
}
Copy
configuration:
  clusterId:
    type: dynamic
resources:
  test:
    type: flexibleengine:CceNamespace
    properties:
      clusterId: ${clusterId}
Copy

Create CceNamespace Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CceNamespace(name: string, args: CceNamespaceArgs, opts?: CustomResourceOptions);
@overload
def CceNamespace(resource_name: str,
                 args: CceNamespaceArgs,
                 opts: Optional[ResourceOptions] = None)

@overload
def CceNamespace(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 cluster_id: Optional[str] = None,
                 annotations: Optional[Mapping[str, str]] = None,
                 cce_namespace_id: Optional[str] = None,
                 labels: Optional[Mapping[str, str]] = None,
                 name: Optional[str] = None,
                 prefix: Optional[str] = None,
                 region: Optional[str] = None,
                 timeouts: Optional[CceNamespaceTimeoutsArgs] = None)
func NewCceNamespace(ctx *Context, name string, args CceNamespaceArgs, opts ...ResourceOption) (*CceNamespace, error)
public CceNamespace(string name, CceNamespaceArgs args, CustomResourceOptions? opts = null)
public CceNamespace(String name, CceNamespaceArgs args)
public CceNamespace(String name, CceNamespaceArgs args, CustomResourceOptions options)
type: flexibleengine:CceNamespace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CceNamespaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CceNamespaceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CceNamespaceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CceNamespaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CceNamespaceArgs
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 cceNamespaceResource = new Flexibleengine.CceNamespace("cceNamespaceResource", new()
{
    ClusterId = "string",
    Annotations = 
    {
        { "string", "string" },
    },
    CceNamespaceId = "string",
    Labels = 
    {
        { "string", "string" },
    },
    Name = "string",
    Prefix = "string",
    Region = "string",
    Timeouts = new Flexibleengine.Inputs.CceNamespaceTimeoutsArgs
    {
        Delete = "string",
    },
});
Copy
example, err := flexibleengine.NewCceNamespace(ctx, "cceNamespaceResource", &flexibleengine.CceNamespaceArgs{
ClusterId: pulumi.String("string"),
Annotations: pulumi.StringMap{
"string": pulumi.String("string"),
},
CceNamespaceId: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
Prefix: pulumi.String("string"),
Region: pulumi.String("string"),
Timeouts: &.CceNamespaceTimeoutsArgs{
Delete: pulumi.String("string"),
},
})
Copy
var cceNamespaceResource = new CceNamespace("cceNamespaceResource", CceNamespaceArgs.builder()
    .clusterId("string")
    .annotations(Map.of("string", "string"))
    .cceNamespaceId("string")
    .labels(Map.of("string", "string"))
    .name("string")
    .prefix("string")
    .region("string")
    .timeouts(CceNamespaceTimeoutsArgs.builder()
        .delete("string")
        .build())
    .build());
Copy
cce_namespace_resource = flexibleengine.CceNamespace("cceNamespaceResource",
    cluster_id="string",
    annotations={
        "string": "string",
    },
    cce_namespace_id="string",
    labels={
        "string": "string",
    },
    name="string",
    prefix="string",
    region="string",
    timeouts={
        "delete": "string",
    })
Copy
const cceNamespaceResource = new flexibleengine.CceNamespace("cceNamespaceResource", {
    clusterId: "string",
    annotations: {
        string: "string",
    },
    cceNamespaceId: "string",
    labels: {
        string: "string",
    },
    name: "string",
    prefix: "string",
    region: "string",
    timeouts: {
        "delete": "string",
    },
});
Copy
type: flexibleengine:CceNamespace
properties:
    annotations:
        string: string
    cceNamespaceId: string
    clusterId: string
    labels:
        string: string
    name: string
    prefix: string
    region: string
    timeouts:
        delete: string
Copy

CceNamespace Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The CceNamespace resource accepts the following input properties:

ClusterId This property is required. string
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
Annotations Dictionary<string, string>
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
CceNamespaceId string
The namespace ID in UUID format.
Labels Dictionary<string, string>
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
Name string
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
Prefix string
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
Region string
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
Timeouts CceNamespaceTimeouts
ClusterId This property is required. string
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
Annotations map[string]string
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
CceNamespaceId string
The namespace ID in UUID format.
Labels map[string]string
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
Name string
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
Prefix string
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
Region string
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
Timeouts CceNamespaceTimeoutsArgs
clusterId This property is required. String
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
annotations Map<String,String>
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
cceNamespaceId String
The namespace ID in UUID format.
labels Map<String,String>
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
name String
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
prefix String
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
region String
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
timeouts CceNamespaceTimeouts
clusterId This property is required. string
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
annotations {[key: string]: string}
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
cceNamespaceId string
The namespace ID in UUID format.
labels {[key: string]: string}
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
name string
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
prefix string
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
region string
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
timeouts CceNamespaceTimeouts
cluster_id This property is required. str
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
annotations Mapping[str, str]
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
cce_namespace_id str
The namespace ID in UUID format.
labels Mapping[str, str]
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
name str
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
prefix str
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
region str
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
timeouts CceNamespaceTimeoutsArgs
clusterId This property is required. String
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
annotations Map<String>
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
cceNamespaceId String
The namespace ID in UUID format.
labels Map<String>
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
name String
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
prefix String
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
region String
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
timeouts Property Map

Outputs

All input properties are implicitly available as output properties. Additionally, the CceNamespace resource produces the following output properties:

CreationTimestamp string
The server time when namespace was created.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The current phase of the namespace.
CreationTimestamp string
The server time when namespace was created.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The current phase of the namespace.
creationTimestamp String
The server time when namespace was created.
id String
The provider-assigned unique ID for this managed resource.
status String
The current phase of the namespace.
creationTimestamp string
The server time when namespace was created.
id string
The provider-assigned unique ID for this managed resource.
status string
The current phase of the namespace.
creation_timestamp str
The server time when namespace was created.
id str
The provider-assigned unique ID for this managed resource.
status str
The current phase of the namespace.
creationTimestamp String
The server time when namespace was created.
id String
The provider-assigned unique ID for this managed resource.
status String
The current phase of the namespace.

Look up Existing CceNamespace Resource

Get an existing CceNamespace 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?: CceNamespaceState, opts?: CustomResourceOptions): CceNamespace
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        annotations: Optional[Mapping[str, str]] = None,
        cce_namespace_id: Optional[str] = None,
        cluster_id: Optional[str] = None,
        creation_timestamp: Optional[str] = None,
        labels: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None,
        prefix: Optional[str] = None,
        region: Optional[str] = None,
        status: Optional[str] = None,
        timeouts: Optional[CceNamespaceTimeoutsArgs] = None) -> CceNamespace
func GetCceNamespace(ctx *Context, name string, id IDInput, state *CceNamespaceState, opts ...ResourceOption) (*CceNamespace, error)
public static CceNamespace Get(string name, Input<string> id, CceNamespaceState? state, CustomResourceOptions? opts = null)
public static CceNamespace get(String name, Output<String> id, CceNamespaceState state, CustomResourceOptions options)
resources:  _:    type: flexibleengine:CceNamespace    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Annotations Dictionary<string, string>
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
CceNamespaceId string
The namespace ID in UUID format.
ClusterId string
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
CreationTimestamp string
The server time when namespace was created.
Labels Dictionary<string, string>
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
Name string
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
Prefix string
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
Region string
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
Status string
The current phase of the namespace.
Timeouts CceNamespaceTimeouts
Annotations map[string]string
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
CceNamespaceId string
The namespace ID in UUID format.
ClusterId string
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
CreationTimestamp string
The server time when namespace was created.
Labels map[string]string
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
Name string
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
Prefix string
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
Region string
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
Status string
The current phase of the namespace.
Timeouts CceNamespaceTimeoutsArgs
annotations Map<String,String>
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
cceNamespaceId String
The namespace ID in UUID format.
clusterId String
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
creationTimestamp String
The server time when namespace was created.
labels Map<String,String>
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
name String
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
prefix String
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
region String
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
status String
The current phase of the namespace.
timeouts CceNamespaceTimeouts
annotations {[key: string]: string}
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
cceNamespaceId string
The namespace ID in UUID format.
clusterId string
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
creationTimestamp string
The server time when namespace was created.
labels {[key: string]: string}
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
name string
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
prefix string
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
region string
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
status string
The current phase of the namespace.
timeouts CceNamespaceTimeouts
annotations Mapping[str, str]
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
cce_namespace_id str
The namespace ID in UUID format.
cluster_id str
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
creation_timestamp str
The server time when namespace was created.
labels Mapping[str, str]
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
name str
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
prefix str
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
region str
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
status str
The current phase of the namespace.
timeouts CceNamespaceTimeoutsArgs
annotations Map<String>
Specifies an unstructured key value map for external parameters. Changing this will create a new namespace resource.
cceNamespaceId String
The namespace ID in UUID format.
clusterId String
Specifies the cluster ID to which the CCE namespace belongs. Changing this will create a new namespace resource.
creationTimestamp String
The server time when namespace was created.
labels Map<String>
Specifies the map of string keys and values for labels. Changing this will create a new namespace resource.
name String
Specifies the unique name of the namespace. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
prefix String
Specifies a prefix used by the server to generate a unique name. This parameter can contain a maximum of 63 characters, which may consist of lowercase letters, digits and hyphens (-), and must start and end with lowercase letters and digits. Changing this will create a new namespace resource. Exactly one of name or prefix must be provided.
region String
Specifies the region in which to create the namespace resource. If omitted, the provider-level region will be used. Changing this will create a new namespace resource.
status String
The current phase of the namespace.
timeouts Property Map

Supporting Types

CceNamespaceTimeouts
, CceNamespaceTimeoutsArgs

Delete string
Delete string
delete String
delete string
delete str
delete String

Import

CCE namespace can be imported using the cluster ID and namespace name separated by a slash, e.g.:

$ pulumi import flexibleengine:index/cceNamespace:CceNamespace test <cluster_id>/<id>
Copy
$ pulumi import flexibleengine:index/cceNamespace:CceNamespace test bb6923e4-b16e-11eb-b0cd-0255ac101da1/test-namespace
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
License
Notes
This Pulumi package is based on the flexibleengine Terraform Provider.