RegistryEnterpriseNamespace

This resource will help you to manager Container Registry Enterprise Edition namespaces.

For information about Container Registry Enterprise Edition namespaces and how to use it, see Create a Namespace

NOTE: Available in v1.86.0+.

NOTE: You need to set your registry password in Container Registry Enterprise Edition console before use this resource.

Example Usage

using Pulumi;
using AliCloud = Pulumi.AliCloud;

class MyStack : Stack
{
    public MyStack()
    {
        var my_namespace = new AliCloud.CS.RegistryEnterpriseNamespace("my-namespace", new AliCloud.CS.RegistryEnterpriseNamespaceArgs
        {
            AutoCreate = false,
            DefaultVisibility = "PUBLIC",
            InstanceId = "cri-xxx",
        });
    }

}

Coming soon!

import pulumi
import pulumi_alicloud as alicloud

my_namespace = alicloud.cs.RegistryEnterpriseNamespace("my-namespace",
    auto_create=False,
    default_visibility="PUBLIC",
    instance_id="cri-xxx")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const my_namespace = new alicloud.cs.RegistryEnterpriseNamespace("my-namespace", {
    autoCreate: false,
    defaultVisibility: "PUBLIC",
    instanceId: "cri-xxx",
});

Create a RegistryEnterpriseNamespace Resource

def RegistryEnterpriseNamespace(resource_name, opts=None, auto_create=None, default_visibility=None, instance_id=None, name=None, __props__=None);
name string
The unique name of the resource.
args RegistryEnterpriseNamespaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args RegistryEnterpriseNamespaceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args RegistryEnterpriseNamespaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

RegistryEnterpriseNamespace Resource Properties

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

Inputs

The RegistryEnterpriseNamespace resource accepts the following input properties:

AutoCreate bool

Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing.

DefaultVisibility string

PUBLIC or PRIVATE, default repository visibility in this namespace.

InstanceId string

ID of Container Registry Enterprise Edition instance.

Name string

Name of Container Registry Enterprise Edition namespace. It can contain 2 to 30 characters.

AutoCreate bool

Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing.

DefaultVisibility string

PUBLIC or PRIVATE, default repository visibility in this namespace.

InstanceId string

ID of Container Registry Enterprise Edition instance.

Name string

Name of Container Registry Enterprise Edition namespace. It can contain 2 to 30 characters.

autoCreate boolean

Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing.

defaultVisibility string

PUBLIC or PRIVATE, default repository visibility in this namespace.

instanceId string

ID of Container Registry Enterprise Edition instance.

name string

Name of Container Registry Enterprise Edition namespace. It can contain 2 to 30 characters.

auto_create bool

Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing.

default_visibility str

PUBLIC or PRIVATE, default repository visibility in this namespace.

instance_id str

ID of Container Registry Enterprise Edition instance.

name str

Name of Container Registry Enterprise Edition namespace. It can contain 2 to 30 characters.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing RegistryEnterpriseNamespace Resource

Get an existing RegistryEnterpriseNamespace resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

static get(resource_name, id, opts=None, auto_create=None, default_visibility=None, instance_id=None, name=None, __props__=None);
func GetRegistryEnterpriseNamespace(ctx *Context, name string, id IDInput, state *RegistryEnterpriseNamespaceState, opts ...ResourceOption) (*RegistryEnterpriseNamespace, error)
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.

The following state arguments are supported:

AutoCreate bool

Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing.

DefaultVisibility string

PUBLIC or PRIVATE, default repository visibility in this namespace.

InstanceId string

ID of Container Registry Enterprise Edition instance.

Name string

Name of Container Registry Enterprise Edition namespace. It can contain 2 to 30 characters.

AutoCreate bool

Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing.

DefaultVisibility string

PUBLIC or PRIVATE, default repository visibility in this namespace.

InstanceId string

ID of Container Registry Enterprise Edition instance.

Name string

Name of Container Registry Enterprise Edition namespace. It can contain 2 to 30 characters.

autoCreate boolean

Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing.

defaultVisibility string

PUBLIC or PRIVATE, default repository visibility in this namespace.

instanceId string

ID of Container Registry Enterprise Edition instance.

name string

Name of Container Registry Enterprise Edition namespace. It can contain 2 to 30 characters.

auto_create bool

Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing.

default_visibility str

PUBLIC or PRIVATE, default repository visibility in this namespace.

instance_id str

ID of Container Registry Enterprise Edition instance.

name str

Name of Container Registry Enterprise Edition namespace. It can contain 2 to 30 characters.

Package Details

Repository
https://github.com/pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.