Namespace
This resource will help you to manager Container Registry namespaces.
NOTE: Available in v1.34.0+.
NOTE: You need to set your registry password in Container Registry console before use this resource.
Example Usage
using Pulumi;
using AliCloud = Pulumi.AliCloud;
class MyStack : Stack
{
public MyStack()
{
var my_namespace = new AliCloud.CR.Namespace("my-namespace", new AliCloud.CR.NamespaceArgs
{
AutoCreate = false,
DefaultVisibility = "PUBLIC",
});
}
}
Coming soon!
import pulumi
import pulumi_alicloud as alicloud
my_namespace = alicloud.cr.Namespace("my-namespace",
auto_create=False,
default_visibility="PUBLIC")import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const my_namespace = new alicloud.cr.Namespace("my-namespace", {
autoCreate: false,
defaultVisibility: "PUBLIC",
});Create a Namespace Resource
new Namespace(name: string, args: NamespaceArgs, opts?: CustomResourceOptions);def Namespace(resource_name, opts=None, auto_create=None, default_visibility=None, name=None, __props__=None);func NewNamespace(ctx *Context, name string, args NamespaceArgs, opts ...ResourceOption) (*Namespace, error)public Namespace(string name, NamespaceArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args NamespaceArgs
- 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 NamespaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Namespace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Namespace resource accepts the following input properties:
- 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 string PUBLICorPRIVATE, default repository visibility in this namespace.- Name string
Name of Container Registry namespace.
- 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 string PUBLICorPRIVATE, default repository visibility in this namespace.- Name string
Name of Container Registry namespace.
- auto
Create 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.
- default
Visibility string PUBLICorPRIVATE, default repository visibility in this namespace.- name string
Name of Container Registry namespace.
- 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 PUBLICorPRIVATE, default repository visibility in this namespace.- name str
Name of Container Registry namespace.
Outputs
All input properties are implicitly available as output properties. Additionally, the Namespace resource produces the following output properties:
Look up an Existing Namespace Resource
Get an existing Namespace 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?: NamespaceState, opts?: CustomResourceOptions): Namespacestatic get(resource_name, id, opts=None, auto_create=None, default_visibility=None, name=None, __props__=None);func GetNamespace(ctx *Context, name string, id IDInput, state *NamespaceState, opts ...ResourceOption) (*Namespace, error)public static Namespace Get(string name, Input<string> id, NamespaceState? state, CustomResourceOptions? opts = null)- 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:
- 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 string PUBLICorPRIVATE, default repository visibility in this namespace.- Name string
Name of Container Registry namespace.
- 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 string PUBLICorPRIVATE, default repository visibility in this namespace.- Name string
Name of Container Registry namespace.
- auto
Create 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.
- default
Visibility string PUBLICorPRIVATE, default repository visibility in this namespace.- name string
Name of Container Registry namespace.
- 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 PUBLICorPRIVATE, default repository visibility in this namespace.- name str
Name of Container Registry namespace.
Package Details
- Repository
- https://github.com/pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloudTerraform Provider.