Alibaba Cloud v3.37.0, May 15 23
Alibaba Cloud v3.37.0, May 15 23
alicloud.cr.ChartNamespace
Explore with Pulumi AI
Provides a CR Chart Namespace resource.
For information about CR Chart Namespace and how to use it, see What is Chart Namespace.
NOTE: Available in v1.149.0+.
Example Usage
Basic Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var defaultRegistryEnterpriseInstance = new AliCloud.CR.RegistryEnterpriseInstance("defaultRegistryEnterpriseInstance", new()
{
PaymentType = "Subscription",
Period = 1,
InstanceType = "Advanced",
InstanceName = "name",
});
var defaultChartNamespace = new AliCloud.CR.ChartNamespace("defaultChartNamespace", new()
{
InstanceId = defaultRegistryEnterpriseInstance.Id,
NamespaceName = "name",
});
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cr"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
defaultRegistryEnterpriseInstance, err := cr.NewRegistryEnterpriseInstance(ctx, "defaultRegistryEnterpriseInstance", &cr.RegistryEnterpriseInstanceArgs{
PaymentType: pulumi.String("Subscription"),
Period: pulumi.Int(1),
InstanceType: pulumi.String("Advanced"),
InstanceName: pulumi.String("name"),
})
if err != nil {
return err
}
_, err = cr.NewChartNamespace(ctx, "defaultChartNamespace", &cr.ChartNamespaceArgs{
InstanceId: defaultRegistryEnterpriseInstance.ID(),
NamespaceName: pulumi.String("name"),
})
if err != nil {
return err
}
return nil
})
}
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) {
var defaultRegistryEnterpriseInstance = new RegistryEnterpriseInstance("defaultRegistryEnterpriseInstance", RegistryEnterpriseInstanceArgs.builder()
.paymentType("Subscription")
.period(1)
.instanceType("Advanced")
.instanceName("name")
.build());
var defaultChartNamespace = new ChartNamespace("defaultChartNamespace", ChartNamespaceArgs.builder()
.instanceId(defaultRegistryEnterpriseInstance.id())
.namespaceName("name")
.build());
}
}
import pulumi
import pulumi_alicloud as alicloud
default_registry_enterprise_instance = alicloud.cr.RegistryEnterpriseInstance("defaultRegistryEnterpriseInstance",
payment_type="Subscription",
period=1,
instance_type="Advanced",
instance_name="name")
default_chart_namespace = alicloud.cr.ChartNamespace("defaultChartNamespace",
instance_id=default_registry_enterprise_instance.id,
namespace_name="name")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const defaultRegistryEnterpriseInstance = new alicloud.cr.RegistryEnterpriseInstance("defaultRegistryEnterpriseInstance", {
paymentType: "Subscription",
period: 1,
instanceType: "Advanced",
instanceName: "name",
});
const defaultChartNamespace = new alicloud.cr.ChartNamespace("defaultChartNamespace", {
instanceId: defaultRegistryEnterpriseInstance.id,
namespaceName: "name",
});
resources:
defaultRegistryEnterpriseInstance:
type: alicloud:cr:RegistryEnterpriseInstance
properties:
paymentType: Subscription
period: 1
instanceType: Advanced
instanceName: name
defaultChartNamespace:
type: alicloud:cr:ChartNamespace
properties:
instanceId: ${defaultRegistryEnterpriseInstance.id}
namespaceName: name
Create ChartNamespace Resource
new ChartNamespace(name: string, args: ChartNamespaceArgs, opts?: CustomResourceOptions);
@overload
def ChartNamespace(resource_name: 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)
@overload
def ChartNamespace(resource_name: str,
args: ChartNamespaceArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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:
- Instance
Id string The ID of the Container Registry instance.
- Namespace
Name string The name of the namespace that you want to create.
- Auto
Create boolRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- Default
Repo stringType DefaultRepoType. Valid values:
PRIVATE
,PUBLIC
.
- Instance
Id string The ID of the Container Registry instance.
- Namespace
Name string The name of the namespace that you want to create.
- Auto
Create boolRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- Default
Repo stringType DefaultRepoType. Valid values:
PRIVATE
,PUBLIC
.
- instance
Id String The ID of the Container Registry instance.
- namespace
Name String The name of the namespace that you want to create.
- auto
Create BooleanRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- default
Repo StringType DefaultRepoType. Valid values:
PRIVATE
,PUBLIC
.
- instance
Id string The ID of the Container Registry instance.
- namespace
Name string The name of the namespace that you want to create.
- auto
Create booleanRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- default
Repo stringType 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_ boolrepo Specifies whether to automatically create repositories in the namespace. Valid values:
- default_
repo_ strtype DefaultRepoType. Valid values:
PRIVATE
,PUBLIC
.
- instance
Id String The ID of the Container Registry instance.
- namespace
Name String The name of the namespace that you want to create.
- auto
Create BooleanRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- default
Repo StringType 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.
- Auto
Create boolRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- Default
Repo stringType DefaultRepoType. Valid values:
PRIVATE
,PUBLIC
.- Instance
Id string The ID of the Container Registry instance.
- Namespace
Name string The name of the namespace that you want to create.
- Auto
Create boolRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- Default
Repo stringType DefaultRepoType. Valid values:
PRIVATE
,PUBLIC
.- Instance
Id string The ID of the Container Registry instance.
- Namespace
Name string The name of the namespace that you want to create.
- auto
Create BooleanRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- default
Repo StringType DefaultRepoType. Valid values:
PRIVATE
,PUBLIC
.- instance
Id String The ID of the Container Registry instance.
- namespace
Name String The name of the namespace that you want to create.
- auto
Create booleanRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- default
Repo stringType DefaultRepoType. Valid values:
PRIVATE
,PUBLIC
.- instance
Id string The ID of the Container Registry instance.
- namespace
Name string The name of the namespace that you want to create.
- auto_
create_ boolrepo Specifies whether to automatically create repositories in the namespace. Valid values:
- default_
repo_ strtype 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 BooleanRepo Specifies whether to automatically create repositories in the namespace. Valid values:
- default
Repo StringType DefaultRepoType. Valid values:
PRIVATE
,PUBLIC
.- instance
Id String The ID of the Container Registry instance.
- namespace
Name 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>
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.