1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. mse
  5. Znode
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.mse.Znode

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    Provides a Microservice Engine (MSE) Znode resource.

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

    NOTE: Available in v1.162.0+.

    Example Usage

    Basic Usage

    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: "ZooKeeper",
        clusterVersion: "ZooKeeper_3_8_0",
        instanceCount: 1,
        netType: "privatenet",
        pubNetworkFlow: "1",
        aclEntryLists: ["127.0.0.1/32"],
        clusterAliasName: "terraform-example",
        mseVersion: "mse_dev",
        vswitchId: exampleSwitch.id,
        vpcId: exampleNetwork.id,
    });
    const exampleZnode = new alicloud.mse.Znode("exampleZnode", {
        clusterId: exampleCluster.clusterId,
        data: "terraform-example",
        path: "/example",
    });
    
    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="ZooKeeper",
        cluster_version="ZooKeeper_3_8_0",
        instance_count=1,
        net_type="privatenet",
        pub_network_flow="1",
        acl_entry_lists=["127.0.0.1/32"],
        cluster_alias_name="terraform-example",
        mse_version="mse_dev",
        vswitch_id=example_switch.id,
        vpc_id=example_network.id)
    example_znode = alicloud.mse.Znode("exampleZnode",
        cluster_id=example_cluster.cluster_id,
        data="terraform-example",
        path="/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("ZooKeeper"),
    			ClusterVersion:       pulumi.String("ZooKeeper_3_8_0"),
    			InstanceCount:        pulumi.Int(1),
    			NetType:              pulumi.String("privatenet"),
    			PubNetworkFlow:       pulumi.String("1"),
    			AclEntryLists: pulumi.StringArray{
    				pulumi.String("127.0.0.1/32"),
    			},
    			ClusterAliasName: pulumi.String("terraform-example"),
    			MseVersion:       pulumi.String("mse_dev"),
    			VswitchId:        exampleSwitch.ID(),
    			VpcId:            exampleNetwork.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = mse.NewZnode(ctx, "exampleZnode", &mse.ZnodeArgs{
    			ClusterId: exampleCluster.ClusterId,
    			Data:      pulumi.String("terraform-example"),
    			Path:      pulumi.String("/example"),
    		})
    		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 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 = "ZooKeeper",
            ClusterVersion = "ZooKeeper_3_8_0",
            InstanceCount = 1,
            NetType = "privatenet",
            PubNetworkFlow = "1",
            AclEntryLists = new[]
            {
                "127.0.0.1/32",
            },
            ClusterAliasName = "terraform-example",
            MseVersion = "mse_dev",
            VswitchId = exampleSwitch.Id,
            VpcId = exampleNetwork.Id,
        });
    
        var exampleZnode = new AliCloud.Mse.Znode("exampleZnode", new()
        {
            ClusterId = exampleCluster.ClusterId,
            Data = "terraform-example",
            Path = "/example",
        });
    
    });
    
    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.Znode;
    import com.pulumi.alicloud.mse.ZnodeArgs;
    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("ZooKeeper")
                .clusterVersion("ZooKeeper_3_8_0")
                .instanceCount(1)
                .netType("privatenet")
                .pubNetworkFlow("1")
                .aclEntryLists("127.0.0.1/32")
                .clusterAliasName("terraform-example")
                .mseVersion("mse_dev")
                .vswitchId(exampleSwitch.id())
                .vpcId(exampleNetwork.id())
                .build());
    
            var exampleZnode = new Znode("exampleZnode", ZnodeArgs.builder()        
                .clusterId(exampleCluster.clusterId())
                .data("terraform-example")
                .path("/example")
                .build());
    
        }
    }
    
    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: ZooKeeper
          clusterVersion: ZooKeeper_3_8_0
          instanceCount: 1
          netType: privatenet
          pubNetworkFlow: '1'
          aclEntryLists:
            - 127.0.0.1/32
          clusterAliasName: terraform-example
          mseVersion: mse_dev
          vswitchId: ${exampleSwitch.id}
          vpcId: ${exampleNetwork.id}
      exampleZnode:
        type: alicloud:mse:Znode
        properties:
          clusterId: ${exampleCluster.clusterId}
          data: terraform-example
          path: /example
    variables:
      exampleZones:
        fn::invoke:
          Function: alicloud:getZones
          Arguments:
            availableResourceCreation: VSwitch
    

    Create Znode Resource

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

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

    ClusterId string
    The ID of the Cluster.
    Path string
    The Node path. The value must start with a forward slash (/).
    AcceptLanguage string
    The language type of the returned information. Valid values: zh or en.
    Data string
    The Node data.
    ClusterId string
    The ID of the Cluster.
    Path string
    The Node path. The value must start with a forward slash (/).
    AcceptLanguage string
    The language type of the returned information. Valid values: zh or en.
    Data string
    The Node data.
    clusterId String
    The ID of the Cluster.
    path String
    The Node path. The value must start with a forward slash (/).
    acceptLanguage String
    The language type of the returned information. Valid values: zh or en.
    data String
    The Node data.
    clusterId string
    The ID of the Cluster.
    path string
    The Node path. The value must start with a forward slash (/).
    acceptLanguage string
    The language type of the returned information. Valid values: zh or en.
    data string
    The Node data.
    cluster_id str
    The ID of the Cluster.
    path str
    The Node path. The value must start with a forward slash (/).
    accept_language str
    The language type of the returned information. Valid values: zh or en.
    data str
    The Node data.
    clusterId String
    The ID of the Cluster.
    path String
    The Node path. The value must start with a forward slash (/).
    acceptLanguage String
    The language type of the returned information. Valid values: zh or en.
    data String
    The Node data.

    Outputs

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

    Get an existing Znode 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?: ZnodeState, opts?: CustomResourceOptions): Znode
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accept_language: Optional[str] = None,
            cluster_id: Optional[str] = None,
            data: Optional[str] = None,
            path: Optional[str] = None) -> Znode
    func GetZnode(ctx *Context, name string, id IDInput, state *ZnodeState, opts ...ResourceOption) (*Znode, error)
    public static Znode Get(string name, Input<string> id, ZnodeState? state, CustomResourceOptions? opts = null)
    public static Znode get(String name, Output<String> id, ZnodeState 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 or en.
    ClusterId string
    The ID of the Cluster.
    Data string
    The Node data.
    Path string
    The Node path. The value must start with a forward slash (/).
    AcceptLanguage string
    The language type of the returned information. Valid values: zh or en.
    ClusterId string
    The ID of the Cluster.
    Data string
    The Node data.
    Path string
    The Node path. The value must start with a forward slash (/).
    acceptLanguage String
    The language type of the returned information. Valid values: zh or en.
    clusterId String
    The ID of the Cluster.
    data String
    The Node data.
    path String
    The Node path. The value must start with a forward slash (/).
    acceptLanguage string
    The language type of the returned information. Valid values: zh or en.
    clusterId string
    The ID of the Cluster.
    data string
    The Node data.
    path string
    The Node path. The value must start with a forward slash (/).
    accept_language str
    The language type of the returned information. Valid values: zh or en.
    cluster_id str
    The ID of the Cluster.
    data str
    The Node data.
    path str
    The Node path. The value must start with a forward slash (/).
    acceptLanguage String
    The language type of the returned information. Valid values: zh or en.
    clusterId String
    The ID of the Cluster.
    data String
    The Node data.
    path String
    The Node path. The value must start with a forward slash (/).

    Import

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

    $ pulumi import alicloud:mse/znode:Znode example <cluster_id>:<path>
    

    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.51.0 published on Saturday, Mar 23, 2024 by Pulumi