1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. cr
  5. ChartNamespace
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

alicloud.cr.ChartNamespace

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

    Provides a CR Chart Namespace resource.

    For information about CR Chart Namespace and how to use it, see What is Chart Namespace.

    NOTE: Available since v1.149.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "example-name";
    const exampleRegistryEnterpriseInstance = new alicloud.cr.RegistryEnterpriseInstance("exampleRegistryEnterpriseInstance", {
        paymentType: "Subscription",
        period: 1,
        renewPeriod: 0,
        renewalStatus: "ManualRenewal",
        instanceType: "Advanced",
        instanceName: name,
    });
    const exampleChartNamespace = new alicloud.cr.ChartNamespace("exampleChartNamespace", {
        instanceId: exampleRegistryEnterpriseInstance.id,
        namespaceName: name,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "example-name"
    example_registry_enterprise_instance = alicloud.cr.RegistryEnterpriseInstance("exampleRegistryEnterpriseInstance",
        payment_type="Subscription",
        period=1,
        renew_period=0,
        renewal_status="ManualRenewal",
        instance_type="Advanced",
        instance_name=name)
    example_chart_namespace = alicloud.cr.ChartNamespace("exampleChartNamespace",
        instance_id=example_registry_enterprise_instance.id,
        namespace_name=name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cr"
    	"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, "")
    		name := "example-name"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		exampleRegistryEnterpriseInstance, err := cr.NewRegistryEnterpriseInstance(ctx, "exampleRegistryEnterpriseInstance", &cr.RegistryEnterpriseInstanceArgs{
    			PaymentType:   pulumi.String("Subscription"),
    			Period:        pulumi.Int(1),
    			RenewPeriod:   pulumi.Int(0),
    			RenewalStatus: pulumi.String("ManualRenewal"),
    			InstanceType:  pulumi.String("Advanced"),
    			InstanceName:  pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = cr.NewChartNamespace(ctx, "exampleChartNamespace", &cr.ChartNamespaceArgs{
    			InstanceId:    exampleRegistryEnterpriseInstance.ID(),
    			NamespaceName: pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "example-name";
        var exampleRegistryEnterpriseInstance = new AliCloud.CR.RegistryEnterpriseInstance("exampleRegistryEnterpriseInstance", new()
        {
            PaymentType = "Subscription",
            Period = 1,
            RenewPeriod = 0,
            RenewalStatus = "ManualRenewal",
            InstanceType = "Advanced",
            InstanceName = name,
        });
    
        var exampleChartNamespace = new AliCloud.CR.ChartNamespace("exampleChartNamespace", new()
        {
            InstanceId = exampleRegistryEnterpriseInstance.Id,
            NamespaceName = name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.cr.RegistryEnterpriseInstance;
    import com.pulumi.alicloud.cr.RegistryEnterpriseInstanceArgs;
    import com.pulumi.alicloud.cr.ChartNamespace;
    import com.pulumi.alicloud.cr.ChartNamespaceArgs;
    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 name = config.get("name").orElse("example-name");
            var exampleRegistryEnterpriseInstance = new RegistryEnterpriseInstance("exampleRegistryEnterpriseInstance", RegistryEnterpriseInstanceArgs.builder()        
                .paymentType("Subscription")
                .period(1)
                .renewPeriod(0)
                .renewalStatus("ManualRenewal")
                .instanceType("Advanced")
                .instanceName(name)
                .build());
    
            var exampleChartNamespace = new ChartNamespace("exampleChartNamespace", ChartNamespaceArgs.builder()        
                .instanceId(exampleRegistryEnterpriseInstance.id())
                .namespaceName(name)
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: example-name
    resources:
      exampleRegistryEnterpriseInstance:
        type: alicloud:cr:RegistryEnterpriseInstance
        properties:
          paymentType: Subscription
          period: 1
          renewPeriod: 0
          renewalStatus: ManualRenewal
          instanceType: Advanced
          instanceName: ${name}
      exampleChartNamespace:
        type: alicloud:cr:ChartNamespace
        properties:
          instanceId: ${exampleRegistryEnterpriseInstance.id}
          namespaceName: ${name}
    

    Create ChartNamespace Resource

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

    Constructor syntax

    new ChartNamespace(name: string, args: ChartNamespaceArgs, opts?: CustomResourceOptions);
    @overload
    def ChartNamespace(resource_name: str,
                       args: ChartNamespaceArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ChartNamespace(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       instance_id: Optional[str] = None,
                       namespace_name: Optional[str] = None,
                       auto_create_repo: Optional[bool] = None,
                       default_repo_type: Optional[str] = None)
    func NewChartNamespace(ctx *Context, name string, args ChartNamespaceArgs, opts ...ResourceOption) (*ChartNamespace, error)
    public ChartNamespace(string name, ChartNamespaceArgs args, CustomResourceOptions? opts = null)
    public ChartNamespace(String name, ChartNamespaceArgs args)
    public ChartNamespace(String name, ChartNamespaceArgs args, CustomResourceOptions options)
    
    type: alicloud:cr:ChartNamespace
    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 ChartNamespaceArgs
    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 ChartNamespaceArgs
    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 ChartNamespaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ChartNamespaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ChartNamespaceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var chartNamespaceResource = new AliCloud.CR.ChartNamespace("chartNamespaceResource", new()
    {
        InstanceId = "string",
        NamespaceName = "string",
        AutoCreateRepo = false,
        DefaultRepoType = "string",
    });
    
    example, err := cr.NewChartNamespace(ctx, "chartNamespaceResource", &cr.ChartNamespaceArgs{
    	InstanceId:      pulumi.String("string"),
    	NamespaceName:   pulumi.String("string"),
    	AutoCreateRepo:  pulumi.Bool(false),
    	DefaultRepoType: pulumi.String("string"),
    })
    
    var chartNamespaceResource = new ChartNamespace("chartNamespaceResource", ChartNamespaceArgs.builder()        
        .instanceId("string")
        .namespaceName("string")
        .autoCreateRepo(false)
        .defaultRepoType("string")
        .build());
    
    chart_namespace_resource = alicloud.cr.ChartNamespace("chartNamespaceResource",
        instance_id="string",
        namespace_name="string",
        auto_create_repo=False,
        default_repo_type="string")
    
    const chartNamespaceResource = new alicloud.cr.ChartNamespace("chartNamespaceResource", {
        instanceId: "string",
        namespaceName: "string",
        autoCreateRepo: false,
        defaultRepoType: "string",
    });
    
    type: alicloud:cr:ChartNamespace
    properties:
        autoCreateRepo: false
        defaultRepoType: string
        instanceId: string
        namespaceName: string
    

    ChartNamespace 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 ChartNamespace resource accepts the following input properties:

    InstanceId string
    The ID of the Container Registry instance.
    NamespaceName string
    The name of the namespace that you want to create.
    AutoCreateRepo bool
    Specifies whether to automatically create repositories in the namespace. Valid values:
    DefaultRepoType string
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    InstanceId string
    The ID of the Container Registry instance.
    NamespaceName string
    The name of the namespace that you want to create.
    AutoCreateRepo bool
    Specifies whether to automatically create repositories in the namespace. Valid values:
    DefaultRepoType string
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    instanceId String
    The ID of the Container Registry instance.
    namespaceName String
    The name of the namespace that you want to create.
    autoCreateRepo Boolean
    Specifies whether to automatically create repositories in the namespace. Valid values:
    defaultRepoType String
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    instanceId string
    The ID of the Container Registry instance.
    namespaceName string
    The name of the namespace that you want to create.
    autoCreateRepo boolean
    Specifies whether to automatically create repositories in the namespace. Valid values:
    defaultRepoType string
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    instance_id str
    The ID of the Container Registry instance.
    namespace_name str
    The name of the namespace that you want to create.
    auto_create_repo bool
    Specifies whether to automatically create repositories in the namespace. Valid values:
    default_repo_type str
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    instanceId String
    The ID of the Container Registry instance.
    namespaceName String
    The name of the namespace that you want to create.
    autoCreateRepo Boolean
    Specifies whether to automatically create repositories in the namespace. Valid values:
    defaultRepoType String
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ChartNamespace 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 string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ChartNamespace Resource

    Get an existing ChartNamespace 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?: ChartNamespaceState, opts?: CustomResourceOptions): ChartNamespace
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_create_repo: Optional[bool] = None,
            default_repo_type: Optional[str] = None,
            instance_id: Optional[str] = None,
            namespace_name: Optional[str] = None) -> ChartNamespace
    func GetChartNamespace(ctx *Context, name string, id IDInput, state *ChartNamespaceState, opts ...ResourceOption) (*ChartNamespace, error)
    public static ChartNamespace Get(string name, Input<string> id, ChartNamespaceState? state, CustomResourceOptions? opts = null)
    public static ChartNamespace get(String name, Output<String> id, ChartNamespaceState 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.
    The following state arguments are supported:
    AutoCreateRepo bool
    Specifies whether to automatically create repositories in the namespace. Valid values:
    DefaultRepoType string
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    InstanceId string
    The ID of the Container Registry instance.
    NamespaceName string
    The name of the namespace that you want to create.
    AutoCreateRepo bool
    Specifies whether to automatically create repositories in the namespace. Valid values:
    DefaultRepoType string
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    InstanceId string
    The ID of the Container Registry instance.
    NamespaceName string
    The name of the namespace that you want to create.
    autoCreateRepo Boolean
    Specifies whether to automatically create repositories in the namespace. Valid values:
    defaultRepoType String
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    instanceId String
    The ID of the Container Registry instance.
    namespaceName String
    The name of the namespace that you want to create.
    autoCreateRepo boolean
    Specifies whether to automatically create repositories in the namespace. Valid values:
    defaultRepoType string
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    instanceId string
    The ID of the Container Registry instance.
    namespaceName string
    The name of the namespace that you want to create.
    auto_create_repo bool
    Specifies whether to automatically create repositories in the namespace. Valid values:
    default_repo_type str
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    instance_id str
    The ID of the Container Registry instance.
    namespace_name str
    The name of the namespace that you want to create.
    autoCreateRepo Boolean
    Specifies whether to automatically create repositories in the namespace. Valid values:
    defaultRepoType String
    DefaultRepoType. Valid values: PRIVATE, PUBLIC.
    instanceId String
    The ID of the Container Registry instance.
    namespaceName String
    The name of the namespace that you want to create.

    Import

    CR Chart Namespace can be imported using the id, e.g.

    $ pulumi import alicloud:cr/chartNamespace:ChartNamespace example <instance_id>:<namespace_name>
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi