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 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 example = new alicloud.cr.RegistryEnterpriseInstance("example", {
paymentType: "Subscription",
period: 1,
renewPeriod: 0,
renewalStatus: "ManualRenewal",
instanceType: "Advanced",
instanceName: name,
});
const exampleChartNamespace = new alicloud.cr.ChartNamespace("example", {
instanceId: example.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 = alicloud.cr.RegistryEnterpriseInstance("example",
payment_type="Subscription",
period=1,
renew_period=0,
renewal_status="ManualRenewal",
instance_type="Advanced",
instance_name=name)
example_chart_namespace = alicloud.cr.ChartNamespace("example",
instance_id=example.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
}
example, err := cr.NewRegistryEnterpriseInstance(ctx, "example", &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, "example", &cr.ChartNamespaceArgs{
InstanceId: example.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 example = new AliCloud.CR.RegistryEnterpriseInstance("example", new()
{
PaymentType = "Subscription",
Period = 1,
RenewPeriod = 0,
RenewalStatus = "ManualRenewal",
InstanceType = "Advanced",
InstanceName = name,
});
var exampleChartNamespace = new AliCloud.CR.ChartNamespace("example", new()
{
InstanceId = example.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 example = new RegistryEnterpriseInstance("example", RegistryEnterpriseInstanceArgs.builder()
.paymentType("Subscription")
.period(1)
.renewPeriod(0)
.renewalStatus("ManualRenewal")
.instanceType("Advanced")
.instanceName(name)
.build());
var exampleChartNamespace = new ChartNamespace("exampleChartNamespace", ChartNamespaceArgs.builder()
.instanceId(example.id())
.namespaceName(name)
.build());
}
}
configuration:
name:
type: string
default: example-name
resources:
example:
type: alicloud:cr:RegistryEnterpriseInstance
properties:
paymentType: Subscription
period: 1
renewPeriod: 0
renewalStatus: ManualRenewal
instanceType: Advanced
instanceName: ${name}
exampleChartNamespace:
type: alicloud:cr:ChartNamespace
name: example
properties:
instanceId: ${example.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.
Constructor 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:
- 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>
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.