Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi
alicloud.ehpc.getClusters
Explore with Pulumi AI
This data source provides the Ehpc Clusters of the current Alibaba Cloud user.
NOTE: Available since v1.173.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.ehpc.getClusters({
    ids: ["example_id"],
});
export const ehpcClusterId1 = ids.then(ids => ids.clusters?.[0]?.id);
const nameRegex = alicloud.ehpc.getClusters({
    nameRegex: "^my-Cluster",
});
export const ehpcClusterId2 = nameRegex.then(nameRegex => nameRegex.clusters?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.ehpc.get_clusters(ids=["example_id"])
pulumi.export("ehpcClusterId1", ids.clusters[0].id)
name_regex = alicloud.ehpc.get_clusters(name_regex="^my-Cluster")
pulumi.export("ehpcClusterId2", name_regex.clusters[0].id)
package main
import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ehpc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		ids, err := ehpc.GetClusters(ctx, &ehpc.GetClustersArgs{
			Ids: []string{
				"example_id",
			},
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("ehpcClusterId1", ids.Clusters[0].Id)
		nameRegex, err := ehpc.GetClusters(ctx, &ehpc.GetClustersArgs{
			NameRegex: pulumi.StringRef("^my-Cluster"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("ehpcClusterId2", nameRegex.Clusters[0].Id)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() => 
{
    var ids = AliCloud.Ehpc.GetClusters.Invoke(new()
    {
        Ids = new[]
        {
            "example_id",
        },
    });
    var nameRegex = AliCloud.Ehpc.GetClusters.Invoke(new()
    {
        NameRegex = "^my-Cluster",
    });
    return new Dictionary<string, object?>
    {
        ["ehpcClusterId1"] = ids.Apply(getClustersResult => getClustersResult.Clusters[0]?.Id),
        ["ehpcClusterId2"] = nameRegex.Apply(getClustersResult => getClustersResult.Clusters[0]?.Id),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ehpc.EhpcFunctions;
import com.pulumi.alicloud.ehpc.inputs.GetClustersArgs;
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 ids = EhpcFunctions.getClusters(GetClustersArgs.builder()
            .ids("example_id")
            .build());
        ctx.export("ehpcClusterId1", ids.applyValue(getClustersResult -> getClustersResult.clusters()[0].id()));
        final var nameRegex = EhpcFunctions.getClusters(GetClustersArgs.builder()
            .nameRegex("^my-Cluster")
            .build());
        ctx.export("ehpcClusterId2", nameRegex.applyValue(getClustersResult -> getClustersResult.clusters()[0].id()));
    }
}
variables:
  ids:
    fn::invoke:
      function: alicloud:ehpc:getClusters
      arguments:
        ids:
          - example_id
  nameRegex:
    fn::invoke:
      function: alicloud:ehpc:getClusters
      arguments:
        nameRegex: ^my-Cluster
outputs:
  ehpcClusterId1: ${ids.clusters[0].id}
  ehpcClusterId2: ${nameRegex.clusters[0].id}
Using getClusters
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getClusters(args: GetClustersArgs, opts?: InvokeOptions): Promise<GetClustersResult>
function getClustersOutput(args: GetClustersOutputArgs, opts?: InvokeOptions): Output<GetClustersResult>def get_clusters(enable_details: Optional[bool] = None,
                 ids: Optional[Sequence[str]] = None,
                 name_regex: Optional[str] = None,
                 output_file: Optional[str] = None,
                 status: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetClustersResult
def get_clusters_output(enable_details: Optional[pulumi.Input[bool]] = None,
                 ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 name_regex: Optional[pulumi.Input[str]] = None,
                 output_file: Optional[pulumi.Input[str]] = None,
                 status: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetClustersResult]func GetClusters(ctx *Context, args *GetClustersArgs, opts ...InvokeOption) (*GetClustersResult, error)
func GetClustersOutput(ctx *Context, args *GetClustersOutputArgs, opts ...InvokeOption) GetClustersResultOutput> Note: This function is named GetClusters in the Go SDK.
public static class GetClusters 
{
    public static Task<GetClustersResult> InvokeAsync(GetClustersArgs args, InvokeOptions? opts = null)
    public static Output<GetClustersResult> Invoke(GetClustersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetClustersResult> getClusters(GetClustersArgs args, InvokeOptions options)
public static Output<GetClustersResult> getClusters(GetClustersArgs args, InvokeOptions options)
fn::invoke:
  function: alicloud:ehpc/getClusters:getClusters
  arguments:
    # arguments dictionaryThe following arguments are supported:
- EnableDetails bool
- Default to false. Set it totruecan output more details about resource attributes.
- Ids List<string>
- A list of Cluster IDs.
- NameRegex string
- A regex string to filter results by Cluster name.
- OutputFile string
- File name where to save data source results (after running pulumi preview).
- Status string
- The status of the resource. Valid values:
- EnableDetails bool
- Default to false. Set it totruecan output more details about resource attributes.
- Ids []string
- A list of Cluster IDs.
- NameRegex string
- A regex string to filter results by Cluster name.
- OutputFile string
- File name where to save data source results (after running pulumi preview).
- Status string
- The status of the resource. Valid values:
- enableDetails Boolean
- Default to false. Set it totruecan output more details about resource attributes.
- ids List<String>
- A list of Cluster IDs.
- nameRegex String
- A regex string to filter results by Cluster name.
- outputFile String
- File name where to save data source results (after running pulumi preview).
- status String
- The status of the resource. Valid values:
- enableDetails boolean
- Default to false. Set it totruecan output more details about resource attributes.
- ids string[]
- A list of Cluster IDs.
- nameRegex string
- A regex string to filter results by Cluster name.
- outputFile string
- File name where to save data source results (after running pulumi preview).
- status string
- The status of the resource. Valid values:
- enable_details bool
- Default to false. Set it totruecan output more details about resource attributes.
- ids Sequence[str]
- A list of Cluster IDs.
- name_regex str
- A regex string to filter results by Cluster name.
- output_file str
- File name where to save data source results (after running pulumi preview).
- status str
- The status of the resource. Valid values:
- enableDetails Boolean
- Default to false. Set it totruecan output more details about resource attributes.
- ids List<String>
- A list of Cluster IDs.
- nameRegex String
- A regex string to filter results by Cluster name.
- outputFile String
- File name where to save data source results (after running pulumi preview).
- status String
- The status of the resource. Valid values:
getClusters Result
The following output properties are available:
- Clusters
List<Pulumi.Ali Cloud. Ehpc. Outputs. Get Clusters Cluster> 
- A list of Ehpc Clusters. Each element contains the following attributes:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Names List<string>
- A list of Cluster names.
- EnableDetails bool
- NameRegex string
- OutputFile string
- Status string
- The status of the resource.
- Clusters
[]GetClusters Cluster 
- A list of Ehpc Clusters. Each element contains the following attributes:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- A list of Cluster names.
- EnableDetails bool
- NameRegex string
- OutputFile string
- Status string
- The status of the resource.
- clusters
List<GetClusters Cluster> 
- A list of Ehpc Clusters. Each element contains the following attributes:
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- A list of Cluster names.
- enableDetails Boolean
- nameRegex String
- outputFile String
- status String
- The status of the resource.
- clusters
GetClusters Cluster[] 
- A list of Ehpc Clusters. Each element contains the following attributes:
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- A list of Cluster names.
- enableDetails boolean
- nameRegex string
- outputFile string
- status string
- The status of the resource.
- clusters
Sequence[GetClusters Cluster] 
- A list of Ehpc Clusters. Each element contains the following attributes:
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- A list of Cluster names.
- enable_details bool
- name_regex str
- output_file str
- status str
- The status of the resource.
- clusters List<Property Map>
- A list of Ehpc Clusters. Each element contains the following attributes:
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- A list of Cluster names.
- enableDetails Boolean
- nameRegex String
- outputFile String
- status String
- The status of the resource.
Supporting Types
GetClustersCluster  
- AccountType string
- The server type of the account.
- Applications
List<Pulumi.Ali Cloud. Ehpc. Inputs. Get Clusters Cluster Application> 
- A list of clustered applications.
- ClientVersion string
- The version number of the client used by the cluster.
- ClusterId string
- The id of E-HPC Cluster.
- ClusterName string
- The name of E-HPC cluster.
- ComputeCount int
- The number of compute nodes in the cluster.
- ComputeInstance stringType 
- Cluster compute node specifications.
- CreateTime string
- The creation time of the resource.
- DeployMode string
- Cluster deployment mode. Possible values:- Standard: separate deployment of account nodes, scheduling nodes, login nodes, and compute nodes.
- Advanced:HA mode deployment.
- Simple: the account node and the scheduling node are deployed on one node, and the login node and the compute node are deployed separately.
- Tiny: account nodes, scheduling nodes, and login nodes are deployed on one node, and compute nodes are deployed separately.
- OneBox: account node, scheduling node, login node and compute node are deployed on one node.
 
- Description string
- The description of E-HPC cluster.
- HaEnable bool
- Whether to turn on high availability. > If high availability is enabled, each control role in the cluster will use two primary and secondary instances.
- Id string
- The ID of the Cluster.
- ImageId string
- The ID of the Image.
- ImageOwner stringAlias 
- The type of the image.
- LoginCount int
- The number of cluster login nodes. Only configuration 1 is supported.
- LoginInstance stringType 
- Cluster login node specifications.
- ManagerCount int
- The number of control nodes.
- ManagerInstance stringType 
- The instance type of manager nodes.
- OsTag string
- The image tag of the operating system.
- PostInstall List<Pulumi.Scripts Ali Cloud. Ehpc. Inputs. Get Clusters Cluster Post Install Script> 
- List of post-installation scripts.
- RemoteDirectory string
- Mount the remote directory of the shared storage.
- SccCluster stringId 
- The SccCluster ID used by the cluster. If the cluster is not an SCC model, it is empty.
- SchedulerType string
- Dispatch server type.
- SecurityGroup stringId 
- The ID of the security group.
- Status string
- The status of the resource. Valid values:
- VolumeId string
- The ID of the NAS instance. Currently, you cannot automatically create an Alibaba Cloud NAS instance.
- VolumeMountpoint string
- The mount target of the file system. Mount targets cannot be automatically created for NAS file systems.
- VolumeProtocol string
- The type of the protocol that is used by the file system.
- VolumeType string
- The type of the network shared storage. Valid value: NAS.
- VpcId string
- The ID of the VPC network.
- VswitchId string
- The vswitch id.
- ZoneId string
- The available zone ID.
- AccountType string
- The server type of the account.
- Applications
[]GetClusters Cluster Application 
- A list of clustered applications.
- ClientVersion string
- The version number of the client used by the cluster.
- ClusterId string
- The id of E-HPC Cluster.
- ClusterName string
- The name of E-HPC cluster.
- ComputeCount int
- The number of compute nodes in the cluster.
- ComputeInstance stringType 
- Cluster compute node specifications.
- CreateTime string
- The creation time of the resource.
- DeployMode string
- Cluster deployment mode. Possible values:- Standard: separate deployment of account nodes, scheduling nodes, login nodes, and compute nodes.
- Advanced:HA mode deployment.
- Simple: the account node and the scheduling node are deployed on one node, and the login node and the compute node are deployed separately.
- Tiny: account nodes, scheduling nodes, and login nodes are deployed on one node, and compute nodes are deployed separately.
- OneBox: account node, scheduling node, login node and compute node are deployed on one node.
 
- Description string
- The description of E-HPC cluster.
- HaEnable bool
- Whether to turn on high availability. > If high availability is enabled, each control role in the cluster will use two primary and secondary instances.
- Id string
- The ID of the Cluster.
- ImageId string
- The ID of the Image.
- ImageOwner stringAlias 
- The type of the image.
- LoginCount int
- The number of cluster login nodes. Only configuration 1 is supported.
- LoginInstance stringType 
- Cluster login node specifications.
- ManagerCount int
- The number of control nodes.
- ManagerInstance stringType 
- The instance type of manager nodes.
- OsTag string
- The image tag of the operating system.
- PostInstall []GetScripts Clusters Cluster Post Install Script 
- List of post-installation scripts.
- RemoteDirectory string
- Mount the remote directory of the shared storage.
- SccCluster stringId 
- The SccCluster ID used by the cluster. If the cluster is not an SCC model, it is empty.
- SchedulerType string
- Dispatch server type.
- SecurityGroup stringId 
- The ID of the security group.
- Status string
- The status of the resource. Valid values:
- VolumeId string
- The ID of the NAS instance. Currently, you cannot automatically create an Alibaba Cloud NAS instance.
- VolumeMountpoint string
- The mount target of the file system. Mount targets cannot be automatically created for NAS file systems.
- VolumeProtocol string
- The type of the protocol that is used by the file system.
- VolumeType string
- The type of the network shared storage. Valid value: NAS.
- VpcId string
- The ID of the VPC network.
- VswitchId string
- The vswitch id.
- ZoneId string
- The available zone ID.
- accountType String
- The server type of the account.
- applications
List<GetClusters Cluster Application> 
- A list of clustered applications.
- clientVersion String
- The version number of the client used by the cluster.
- clusterId String
- The id of E-HPC Cluster.
- clusterName String
- The name of E-HPC cluster.
- computeCount Integer
- The number of compute nodes in the cluster.
- computeInstance StringType 
- Cluster compute node specifications.
- createTime String
- The creation time of the resource.
- deployMode String
- Cluster deployment mode. Possible values:- Standard: separate deployment of account nodes, scheduling nodes, login nodes, and compute nodes.
- Advanced:HA mode deployment.
- Simple: the account node and the scheduling node are deployed on one node, and the login node and the compute node are deployed separately.
- Tiny: account nodes, scheduling nodes, and login nodes are deployed on one node, and compute nodes are deployed separately.
- OneBox: account node, scheduling node, login node and compute node are deployed on one node.
 
- description String
- The description of E-HPC cluster.
- haEnable Boolean
- Whether to turn on high availability. > If high availability is enabled, each control role in the cluster will use two primary and secondary instances.
- id String
- The ID of the Cluster.
- imageId String
- The ID of the Image.
- imageOwner StringAlias 
- The type of the image.
- loginCount Integer
- The number of cluster login nodes. Only configuration 1 is supported.
- loginInstance StringType 
- Cluster login node specifications.
- managerCount Integer
- The number of control nodes.
- managerInstance StringType 
- The instance type of manager nodes.
- osTag String
- The image tag of the operating system.
- postInstall List<GetScripts Clusters Cluster Post Install Script> 
- List of post-installation scripts.
- remoteDirectory String
- Mount the remote directory of the shared storage.
- sccCluster StringId 
- The SccCluster ID used by the cluster. If the cluster is not an SCC model, it is empty.
- schedulerType String
- Dispatch server type.
- securityGroup StringId 
- The ID of the security group.
- status String
- The status of the resource. Valid values:
- volumeId String
- The ID of the NAS instance. Currently, you cannot automatically create an Alibaba Cloud NAS instance.
- volumeMountpoint String
- The mount target of the file system. Mount targets cannot be automatically created for NAS file systems.
- volumeProtocol String
- The type of the protocol that is used by the file system.
- volumeType String
- The type of the network shared storage. Valid value: NAS.
- vpcId String
- The ID of the VPC network.
- vswitchId String
- The vswitch id.
- zoneId String
- The available zone ID.
- accountType string
- The server type of the account.
- applications
GetClusters Cluster Application[] 
- A list of clustered applications.
- clientVersion string
- The version number of the client used by the cluster.
- clusterId string
- The id of E-HPC Cluster.
- clusterName string
- The name of E-HPC cluster.
- computeCount number
- The number of compute nodes in the cluster.
- computeInstance stringType 
- Cluster compute node specifications.
- createTime string
- The creation time of the resource.
- deployMode string
- Cluster deployment mode. Possible values:- Standard: separate deployment of account nodes, scheduling nodes, login nodes, and compute nodes.
- Advanced:HA mode deployment.
- Simple: the account node and the scheduling node are deployed on one node, and the login node and the compute node are deployed separately.
- Tiny: account nodes, scheduling nodes, and login nodes are deployed on one node, and compute nodes are deployed separately.
- OneBox: account node, scheduling node, login node and compute node are deployed on one node.
 
- description string
- The description of E-HPC cluster.
- haEnable boolean
- Whether to turn on high availability. > If high availability is enabled, each control role in the cluster will use two primary and secondary instances.
- id string
- The ID of the Cluster.
- imageId string
- The ID of the Image.
- imageOwner stringAlias 
- The type of the image.
- loginCount number
- The number of cluster login nodes. Only configuration 1 is supported.
- loginInstance stringType 
- Cluster login node specifications.
- managerCount number
- The number of control nodes.
- managerInstance stringType 
- The instance type of manager nodes.
- osTag string
- The image tag of the operating system.
- postInstall GetScripts Clusters Cluster Post Install Script[] 
- List of post-installation scripts.
- remoteDirectory string
- Mount the remote directory of the shared storage.
- sccCluster stringId 
- The SccCluster ID used by the cluster. If the cluster is not an SCC model, it is empty.
- schedulerType string
- Dispatch server type.
- securityGroup stringId 
- The ID of the security group.
- status string
- The status of the resource. Valid values:
- volumeId string
- The ID of the NAS instance. Currently, you cannot automatically create an Alibaba Cloud NAS instance.
- volumeMountpoint string
- The mount target of the file system. Mount targets cannot be automatically created for NAS file systems.
- volumeProtocol string
- The type of the protocol that is used by the file system.
- volumeType string
- The type of the network shared storage. Valid value: NAS.
- vpcId string
- The ID of the VPC network.
- vswitchId string
- The vswitch id.
- zoneId string
- The available zone ID.
- account_type str
- The server type of the account.
- applications
Sequence[GetClusters Cluster Application] 
- A list of clustered applications.
- client_version str
- The version number of the client used by the cluster.
- cluster_id str
- The id of E-HPC Cluster.
- cluster_name str
- The name of E-HPC cluster.
- compute_count int
- The number of compute nodes in the cluster.
- compute_instance_ strtype 
- Cluster compute node specifications.
- create_time str
- The creation time of the resource.
- deploy_mode str
- Cluster deployment mode. Possible values:- Standard: separate deployment of account nodes, scheduling nodes, login nodes, and compute nodes.
- Advanced:HA mode deployment.
- Simple: the account node and the scheduling node are deployed on one node, and the login node and the compute node are deployed separately.
- Tiny: account nodes, scheduling nodes, and login nodes are deployed on one node, and compute nodes are deployed separately.
- OneBox: account node, scheduling node, login node and compute node are deployed on one node.
 
- description str
- The description of E-HPC cluster.
- ha_enable bool
- Whether to turn on high availability. > If high availability is enabled, each control role in the cluster will use two primary and secondary instances.
- id str
- The ID of the Cluster.
- image_id str
- The ID of the Image.
- image_owner_ stralias 
- The type of the image.
- login_count int
- The number of cluster login nodes. Only configuration 1 is supported.
- login_instance_ strtype 
- Cluster login node specifications.
- manager_count int
- The number of control nodes.
- manager_instance_ strtype 
- The instance type of manager nodes.
- os_tag str
- The image tag of the operating system.
- post_install_ Sequence[Getscripts Clusters Cluster Post Install Script] 
- List of post-installation scripts.
- remote_directory str
- Mount the remote directory of the shared storage.
- scc_cluster_ strid 
- The SccCluster ID used by the cluster. If the cluster is not an SCC model, it is empty.
- scheduler_type str
- Dispatch server type.
- security_group_ strid 
- The ID of the security group.
- status str
- The status of the resource. Valid values:
- volume_id str
- The ID of the NAS instance. Currently, you cannot automatically create an Alibaba Cloud NAS instance.
- volume_mountpoint str
- The mount target of the file system. Mount targets cannot be automatically created for NAS file systems.
- volume_protocol str
- The type of the protocol that is used by the file system.
- volume_type str
- The type of the network shared storage. Valid value: NAS.
- vpc_id str
- The ID of the VPC network.
- vswitch_id str
- The vswitch id.
- zone_id str
- The available zone ID.
- accountType String
- The server type of the account.
- applications List<Property Map>
- A list of clustered applications.
- clientVersion String
- The version number of the client used by the cluster.
- clusterId String
- The id of E-HPC Cluster.
- clusterName String
- The name of E-HPC cluster.
- computeCount Number
- The number of compute nodes in the cluster.
- computeInstance StringType 
- Cluster compute node specifications.
- createTime String
- The creation time of the resource.
- deployMode String
- Cluster deployment mode. Possible values:- Standard: separate deployment of account nodes, scheduling nodes, login nodes, and compute nodes.
- Advanced:HA mode deployment.
- Simple: the account node and the scheduling node are deployed on one node, and the login node and the compute node are deployed separately.
- Tiny: account nodes, scheduling nodes, and login nodes are deployed on one node, and compute nodes are deployed separately.
- OneBox: account node, scheduling node, login node and compute node are deployed on one node.
 
- description String
- The description of E-HPC cluster.
- haEnable Boolean
- Whether to turn on high availability. > If high availability is enabled, each control role in the cluster will use two primary and secondary instances.
- id String
- The ID of the Cluster.
- imageId String
- The ID of the Image.
- imageOwner StringAlias 
- The type of the image.
- loginCount Number
- The number of cluster login nodes. Only configuration 1 is supported.
- loginInstance StringType 
- Cluster login node specifications.
- managerCount Number
- The number of control nodes.
- managerInstance StringType 
- The instance type of manager nodes.
- osTag String
- The image tag of the operating system.
- postInstall List<Property Map>Scripts 
- List of post-installation scripts.
- remoteDirectory String
- Mount the remote directory of the shared storage.
- sccCluster StringId 
- The SccCluster ID used by the cluster. If the cluster is not an SCC model, it is empty.
- schedulerType String
- Dispatch server type.
- securityGroup StringId 
- The ID of the security group.
- status String
- The status of the resource. Valid values:
- volumeId String
- The ID of the NAS instance. Currently, you cannot automatically create an Alibaba Cloud NAS instance.
- volumeMountpoint String
- The mount target of the file system. Mount targets cannot be automatically created for NAS file systems.
- volumeProtocol String
- The type of the protocol that is used by the file system.
- volumeType String
- The type of the network shared storage. Valid value: NAS.
- vpcId String
- The ID of the VPC network.
- vswitchId String
- The vswitch id.
- zoneId String
- The available zone ID.
GetClustersClusterApplication   
- Tag string
- Application Tags.
- Tag string
- Application Tags.
- tag String
- Application Tags.
- tag string
- Application Tags.
- tag str
- Application Tags.
- tag String
- Application Tags.
GetClustersClusterPostInstallScript     
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the alicloudTerraform Provider.