1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. mse
  5. EngineNamespace
Alibaba Cloud v3.44.0 published on Thursday, Sep 28, 2023 by Pulumi

alicloud.mse.EngineNamespace

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.44.0 published on Thursday, Sep 28, 2023 by Pulumi

    Provides a Microservice Engine (MSE) Engine Namespace resource.

    For information about Microservice Engine (MSE) Engine Namespace and how to use it, see What is Engine Namespace.

    NOTE: Available in v1.166.0+.

    Example Usage

    Basic Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleZones = AliCloud.GetZones.Invoke(new()
        {
            AvailableResourceCreation = "VSwitch",
        });
    
        var exampleNetwork = new AliCloud.Vpc.Network("exampleNetwork", new()
        {
            VpcName = "terraform-example",
            CidrBlock = "172.17.3.0/24",
        });
    
        var exampleSwitch = new AliCloud.Vpc.Switch("exampleSwitch", new()
        {
            VswitchName = "terraform-example",
            CidrBlock = "172.17.3.0/24",
            VpcId = exampleNetwork.Id,
            ZoneId = exampleZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        });
    
        var exampleCluster = new AliCloud.Mse.Cluster("exampleCluster", new()
        {
            ClusterSpecification = "MSE_SC_1_2_60_c",
            ClusterType = "Nacos-Ans",
            ClusterVersion = "NACOS_2_0_0",
            InstanceCount = 1,
            NetType = "privatenet",
            PubNetworkFlow = "1",
            ConnectionType = "slb",
            ClusterAliasName = "terraform-example",
            MseVersion = "mse_dev",
            VswitchId = exampleSwitch.Id,
            VpcId = exampleNetwork.Id,
        });
    
        var exampleEngineNamespace = new AliCloud.Mse.EngineNamespace("exampleEngineNamespace", new()
        {
            ClusterId = exampleCluster.ClusterId,
            NamespaceShowName = "terraform-example",
            NamespaceId = "terraform-example",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/mse"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
    			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		exampleNetwork, err := vpc.NewNetwork(ctx, "exampleNetwork", &vpc.NetworkArgs{
    			VpcName:   pulumi.String("terraform-example"),
    			CidrBlock: pulumi.String("172.17.3.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleSwitch, err := vpc.NewSwitch(ctx, "exampleSwitch", &vpc.SwitchArgs{
    			VswitchName: pulumi.String("terraform-example"),
    			CidrBlock:   pulumi.String("172.17.3.0/24"),
    			VpcId:       exampleNetwork.ID(),
    			ZoneId:      *pulumi.String(exampleZones.Zones[0].Id),
    		})
    		if err != nil {
    			return err
    		}
    		exampleCluster, err := mse.NewCluster(ctx, "exampleCluster", &mse.ClusterArgs{
    			ClusterSpecification: pulumi.String("MSE_SC_1_2_60_c"),
    			ClusterType:          pulumi.String("Nacos-Ans"),
    			ClusterVersion:       pulumi.String("NACOS_2_0_0"),
    			InstanceCount:        pulumi.Int(1),
    			NetType:              pulumi.String("privatenet"),
    			PubNetworkFlow:       pulumi.String("1"),
    			ConnectionType:       pulumi.String("slb"),
    			ClusterAliasName:     pulumi.String("terraform-example"),
    			MseVersion:           pulumi.String("mse_dev"),
    			VswitchId:            exampleSwitch.ID(),
    			VpcId:                exampleNetwork.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = mse.NewEngineNamespace(ctx, "exampleEngineNamespace", &mse.EngineNamespaceArgs{
    			ClusterId:         exampleCluster.ClusterId,
    			NamespaceShowName: pulumi.String("terraform-example"),
    			NamespaceId:       pulumi.String("terraform-example"),
    		})
    		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.AlicloudFunctions;
    import com.pulumi.alicloud.inputs.GetZonesArgs;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.vpc.Switch;
    import com.pulumi.alicloud.vpc.SwitchArgs;
    import com.pulumi.alicloud.mse.Cluster;
    import com.pulumi.alicloud.mse.ClusterArgs;
    import com.pulumi.alicloud.mse.EngineNamespace;
    import com.pulumi.alicloud.mse.EngineNamespaceArgs;
    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 exampleZones = AlicloudFunctions.getZones(GetZonesArgs.builder()
                .availableResourceCreation("VSwitch")
                .build());
    
            var exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()        
                .vpcName("terraform-example")
                .cidrBlock("172.17.3.0/24")
                .build());
    
            var exampleSwitch = new Switch("exampleSwitch", SwitchArgs.builder()        
                .vswitchName("terraform-example")
                .cidrBlock("172.17.3.0/24")
                .vpcId(exampleNetwork.id())
                .zoneId(exampleZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
                .build());
    
            var exampleCluster = new Cluster("exampleCluster", ClusterArgs.builder()        
                .clusterSpecification("MSE_SC_1_2_60_c")
                .clusterType("Nacos-Ans")
                .clusterVersion("NACOS_2_0_0")
                .instanceCount(1)
                .netType("privatenet")
                .pubNetworkFlow("1")
                .connectionType("slb")
                .clusterAliasName("terraform-example")
                .mseVersion("mse_dev")
                .vswitchId(exampleSwitch.id())
                .vpcId(exampleNetwork.id())
                .build());
    
            var exampleEngineNamespace = new EngineNamespace("exampleEngineNamespace", EngineNamespaceArgs.builder()        
                .clusterId(exampleCluster.clusterId())
                .namespaceShowName("terraform-example")
                .namespaceId("terraform-example")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    example_zones = alicloud.get_zones(available_resource_creation="VSwitch")
    example_network = alicloud.vpc.Network("exampleNetwork",
        vpc_name="terraform-example",
        cidr_block="172.17.3.0/24")
    example_switch = alicloud.vpc.Switch("exampleSwitch",
        vswitch_name="terraform-example",
        cidr_block="172.17.3.0/24",
        vpc_id=example_network.id,
        zone_id=example_zones.zones[0].id)
    example_cluster = alicloud.mse.Cluster("exampleCluster",
        cluster_specification="MSE_SC_1_2_60_c",
        cluster_type="Nacos-Ans",
        cluster_version="NACOS_2_0_0",
        instance_count=1,
        net_type="privatenet",
        pub_network_flow="1",
        connection_type="slb",
        cluster_alias_name="terraform-example",
        mse_version="mse_dev",
        vswitch_id=example_switch.id,
        vpc_id=example_network.id)
    example_engine_namespace = alicloud.mse.EngineNamespace("exampleEngineNamespace",
        cluster_id=example_cluster.cluster_id,
        namespace_show_name="terraform-example",
        namespace_id="terraform-example")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const exampleZones = alicloud.getZones({
        availableResourceCreation: "VSwitch",
    });
    const exampleNetwork = new alicloud.vpc.Network("exampleNetwork", {
        vpcName: "terraform-example",
        cidrBlock: "172.17.3.0/24",
    });
    const exampleSwitch = new alicloud.vpc.Switch("exampleSwitch", {
        vswitchName: "terraform-example",
        cidrBlock: "172.17.3.0/24",
        vpcId: exampleNetwork.id,
        zoneId: exampleZones.then(exampleZones => exampleZones.zones?.[0]?.id),
    });
    const exampleCluster = new alicloud.mse.Cluster("exampleCluster", {
        clusterSpecification: "MSE_SC_1_2_60_c",
        clusterType: "Nacos-Ans",
        clusterVersion: "NACOS_2_0_0",
        instanceCount: 1,
        netType: "privatenet",
        pubNetworkFlow: "1",
        connectionType: "slb",
        clusterAliasName: "terraform-example",
        mseVersion: "mse_dev",
        vswitchId: exampleSwitch.id,
        vpcId: exampleNetwork.id,
    });
    const exampleEngineNamespace = new alicloud.mse.EngineNamespace("exampleEngineNamespace", {
        clusterId: exampleCluster.clusterId,
        namespaceShowName: "terraform-example",
        namespaceId: "terraform-example",
    });
    
    resources:
      exampleNetwork:
        type: alicloud:vpc:Network
        properties:
          vpcName: terraform-example
          cidrBlock: 172.17.3.0/24
      exampleSwitch:
        type: alicloud:vpc:Switch
        properties:
          vswitchName: terraform-example
          cidrBlock: 172.17.3.0/24
          vpcId: ${exampleNetwork.id}
          zoneId: ${exampleZones.zones[0].id}
      exampleCluster:
        type: alicloud:mse:Cluster
        properties:
          clusterSpecification: MSE_SC_1_2_60_c
          clusterType: Nacos-Ans
          clusterVersion: NACOS_2_0_0
          instanceCount: 1
          netType: privatenet
          pubNetworkFlow: '1'
          connectionType: slb
          clusterAliasName: terraform-example
          mseVersion: mse_dev
          vswitchId: ${exampleSwitch.id}
          vpcId: ${exampleNetwork.id}
      exampleEngineNamespace:
        type: alicloud:mse:EngineNamespace
        properties:
          clusterId: ${exampleCluster.clusterId}
          namespaceShowName: terraform-example
          namespaceId: terraform-example
    variables:
      exampleZones:
        fn::invoke:
          Function: alicloud:getZones
          Arguments:
            availableResourceCreation: VSwitch
    

    Create EngineNamespace Resource

    new EngineNamespace(name: string, args: EngineNamespaceArgs, opts?: CustomResourceOptions);
    @overload
    def EngineNamespace(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        accept_language: Optional[str] = None,
                        cluster_id: Optional[str] = None,
                        namespace_id: Optional[str] = None,
                        namespace_show_name: Optional[str] = None)
    @overload
    def EngineNamespace(resource_name: str,
                        args: EngineNamespaceArgs,
                        opts: Optional[ResourceOptions] = None)
    func NewEngineNamespace(ctx *Context, name string, args EngineNamespaceArgs, opts ...ResourceOption) (*EngineNamespace, error)
    public EngineNamespace(string name, EngineNamespaceArgs args, CustomResourceOptions? opts = null)
    public EngineNamespace(String name, EngineNamespaceArgs args)
    public EngineNamespace(String name, EngineNamespaceArgs args, CustomResourceOptions options)
    
    type: alicloud:mse:EngineNamespace
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args EngineNamespaceArgs
    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 EngineNamespaceArgs
    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 EngineNamespaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EngineNamespaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EngineNamespaceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ClusterId string

    The id of the cluster.

    NamespaceId string

    The id of Namespace.

    NamespaceShowName string

    The name of the Engine Namespace.

    AcceptLanguage string

    The language type of the returned information. Valid values: zh, en.

    ClusterId string

    The id of the cluster.

    NamespaceId string

    The id of Namespace.

    NamespaceShowName string

    The name of the Engine Namespace.

    AcceptLanguage string

    The language type of the returned information. Valid values: zh, en.

    clusterId String

    The id of the cluster.

    namespaceId String

    The id of Namespace.

    namespaceShowName String

    The name of the Engine Namespace.

    acceptLanguage String

    The language type of the returned information. Valid values: zh, en.

    clusterId string

    The id of the cluster.

    namespaceId string

    The id of Namespace.

    namespaceShowName string

    The name of the Engine Namespace.

    acceptLanguage string

    The language type of the returned information. Valid values: zh, en.

    cluster_id str

    The id of the cluster.

    namespace_id str

    The id of Namespace.

    namespace_show_name str

    The name of the Engine Namespace.

    accept_language str

    The language type of the returned information. Valid values: zh, en.

    clusterId String

    The id of the cluster.

    namespaceId String

    The id of Namespace.

    namespaceShowName String

    The name of the Engine Namespace.

    acceptLanguage String

    The language type of the returned information. Valid values: zh, en.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EngineNamespace 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 EngineNamespace Resource

    Get an existing EngineNamespace 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?: EngineNamespaceState, opts?: CustomResourceOptions): EngineNamespace
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accept_language: Optional[str] = None,
            cluster_id: Optional[str] = None,
            namespace_id: Optional[str] = None,
            namespace_show_name: Optional[str] = None) -> EngineNamespace
    func GetEngineNamespace(ctx *Context, name string, id IDInput, state *EngineNamespaceState, opts ...ResourceOption) (*EngineNamespace, error)
    public static EngineNamespace Get(string name, Input<string> id, EngineNamespaceState? state, CustomResourceOptions? opts = null)
    public static EngineNamespace get(String name, Output<String> id, EngineNamespaceState 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:
    AcceptLanguage string

    The language type of the returned information. Valid values: zh, en.

    ClusterId string

    The id of the cluster.

    NamespaceId string

    The id of Namespace.

    NamespaceShowName string

    The name of the Engine Namespace.

    AcceptLanguage string

    The language type of the returned information. Valid values: zh, en.

    ClusterId string

    The id of the cluster.

    NamespaceId string

    The id of Namespace.

    NamespaceShowName string

    The name of the Engine Namespace.

    acceptLanguage String

    The language type of the returned information. Valid values: zh, en.

    clusterId String

    The id of the cluster.

    namespaceId String

    The id of Namespace.

    namespaceShowName String

    The name of the Engine Namespace.

    acceptLanguage string

    The language type of the returned information. Valid values: zh, en.

    clusterId string

    The id of the cluster.

    namespaceId string

    The id of Namespace.

    namespaceShowName string

    The name of the Engine Namespace.

    accept_language str

    The language type of the returned information. Valid values: zh, en.

    cluster_id str

    The id of the cluster.

    namespace_id str

    The id of Namespace.

    namespace_show_name str

    The name of the Engine Namespace.

    acceptLanguage String

    The language type of the returned information. Valid values: zh, en.

    clusterId String

    The id of the cluster.

    namespaceId String

    The id of Namespace.

    namespaceShowName String

    The name of the Engine Namespace.

    Import

    Microservice Engine (MSE) Engine Namespace can be imported using the id, e.g.

     $ pulumi import alicloud:mse/engineNamespace:EngineNamespace example <cluster_id>:<namespace_id>
    

    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.44.0 published on Thursday, Sep 28, 2023 by Pulumi