alicloud.mse.Znode
Explore with Pulumi AI
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 example = alicloud.getZones({
availableResourceCreation: "VSwitch",
});
const exampleNetwork = new alicloud.vpc.Network("example", {
vpcName: "terraform-example",
cidrBlock: "172.17.3.0/24",
});
const exampleSwitch = new alicloud.vpc.Switch("example", {
vswitchName: "terraform-example",
cidrBlock: "172.17.3.0/24",
vpcId: exampleNetwork.id,
zoneId: example.then(example => example.zones?.[0]?.id),
});
const exampleCluster = new alicloud.mse.Cluster("example", {
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("example", {
clusterId: exampleCluster.clusterId,
data: "terraform-example",
path: "/example",
});
import pulumi
import pulumi_alicloud as alicloud
example = alicloud.get_zones(available_resource_creation="VSwitch")
example_network = alicloud.vpc.Network("example",
vpc_name="terraform-example",
cidr_block="172.17.3.0/24")
example_switch = alicloud.vpc.Switch("example",
vswitch_name="terraform-example",
cidr_block="172.17.3.0/24",
vpc_id=example_network.id,
zone_id=example.zones[0].id)
example_cluster = alicloud.mse.Cluster("example",
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("example",
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 {
example, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
AvailableResourceCreation: pulumi.StringRef("VSwitch"),
}, nil)
if err != nil {
return err
}
exampleNetwork, err := vpc.NewNetwork(ctx, "example", &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, "example", &vpc.SwitchArgs{
VswitchName: pulumi.String("terraform-example"),
CidrBlock: pulumi.String("172.17.3.0/24"),
VpcId: exampleNetwork.ID(),
ZoneId: pulumi.String(example.Zones[0].Id),
})
if err != nil {
return err
}
exampleCluster, err := mse.NewCluster(ctx, "example", &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, "example", &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 example = AliCloud.GetZones.Invoke(new()
{
AvailableResourceCreation = "VSwitch",
});
var exampleNetwork = new AliCloud.Vpc.Network("example", new()
{
VpcName = "terraform-example",
CidrBlock = "172.17.3.0/24",
});
var exampleSwitch = new AliCloud.Vpc.Switch("example", new()
{
VswitchName = "terraform-example",
CidrBlock = "172.17.3.0/24",
VpcId = exampleNetwork.Id,
ZoneId = example.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
});
var exampleCluster = new AliCloud.Mse.Cluster("example", 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("example", 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 example = 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(example.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
name: example
properties:
vpcName: terraform-example
cidrBlock: 172.17.3.0/24
exampleSwitch:
type: alicloud:vpc:Switch
name: example
properties:
vswitchName: terraform-example
cidrBlock: 172.17.3.0/24
vpcId: ${exampleNetwork.id}
zoneId: ${example.zones[0].id}
exampleCluster:
type: alicloud:mse:Cluster
name: example
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
name: example
properties:
clusterId: ${exampleCluster.clusterId}
data: terraform-example
path: /example
variables:
example:
fn::invoke:
Function: alicloud:getZones
Arguments:
availableResourceCreation: VSwitch
Create Znode Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Znode(name: string, args: ZnodeArgs, opts?: CustomResourceOptions);
@overload
def Znode(resource_name: str,
args: ZnodeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Znode(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
path: Optional[str] = None,
accept_language: Optional[str] = None,
data: Optional[str] = None)
func NewZnode(ctx *Context, name string, args ZnodeArgs, opts ...ResourceOption) (*Znode, error)
public Znode(string name, ZnodeArgs args, CustomResourceOptions? opts = null)
type: alicloud:mse:Znode
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 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var znodeResource = new AliCloud.Mse.Znode("znodeResource", new()
{
ClusterId = "string",
Path = "string",
AcceptLanguage = "string",
Data = "string",
});
example, err := mse.NewZnode(ctx, "znodeResource", &mse.ZnodeArgs{
ClusterId: pulumi.String("string"),
Path: pulumi.String("string"),
AcceptLanguage: pulumi.String("string"),
Data: pulumi.String("string"),
})
var znodeResource = new Znode("znodeResource", ZnodeArgs.builder()
.clusterId("string")
.path("string")
.acceptLanguage("string")
.data("string")
.build());
znode_resource = alicloud.mse.Znode("znodeResource",
cluster_id="string",
path="string",
accept_language="string",
data="string")
const znodeResource = new alicloud.mse.Znode("znodeResource", {
clusterId: "string",
path: "string",
acceptLanguage: "string",
data: "string",
});
type: alicloud:mse:Znode
properties:
acceptLanguage: string
clusterId: string
data: string
path: string
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:
- Cluster
Id string - The ID of the Cluster.
- Path string
- The Node path. The value must start with a forward slash (/).
- Accept
Language string - The language type of the returned information. Valid values:
zh
oren
. - Data string
- The Node data.
- Cluster
Id string - The ID of the Cluster.
- Path string
- The Node path. The value must start with a forward slash (/).
- Accept
Language string - The language type of the returned information. Valid values:
zh
oren
. - Data string
- The Node data.
- cluster
Id String - The ID of the Cluster.
- path String
- The Node path. The value must start with a forward slash (/).
- accept
Language String - The language type of the returned information. Valid values:
zh
oren
. - data String
- The Node data.
- cluster
Id string - The ID of the Cluster.
- path string
- The Node path. The value must start with a forward slash (/).
- accept
Language string - The language type of the returned information. Valid values:
zh
oren
. - 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
oren
. - data str
- The Node data.
- cluster
Id String - The ID of the Cluster.
- path String
- The Node path. The value must start with a forward slash (/).
- accept
Language String - The language type of the returned information. Valid values:
zh
oren
. - 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.
- Accept
Language string - The language type of the returned information. Valid values:
zh
oren
. - Cluster
Id 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 string - The language type of the returned information. Valid values:
zh
oren
. - Cluster
Id 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 String - The language type of the returned information. Valid values:
zh
oren
. - cluster
Id 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 string - The language type of the returned information. Valid values:
zh
oren
. - cluster
Id 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
oren
. - 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 (/).
- accept
Language String - The language type of the returned information. Valid values:
zh
oren
. - cluster
Id 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>
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.