1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. ecs
  5. HpcCluster
Alibaba Cloud v3.52.1 published on Thursday, Apr 4, 2024 by Pulumi

alicloud.ecs.HpcCluster

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.52.1 published on Thursday, Apr 4, 2024 by Pulumi

    Provides a ECS Hpc Cluster resource.

    For information about ECS Hpc Cluster and how to use it, see What is Hpc Cluster.

    NOTE: Available in v1.116.0+.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const example = new alicloud.ecs.HpcCluster("example", {description: "For Terraform Test"});
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    example = alicloud.ecs.HpcCluster("example", description="For Terraform Test")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ecs.NewHpcCluster(ctx, "example", &ecs.HpcClusterArgs{
    			Description: pulumi.String("For Terraform Test"),
    		})
    		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 = new AliCloud.Ecs.HpcCluster("example", new()
        {
            Description = "For Terraform Test",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.ecs.HpcCluster;
    import com.pulumi.alicloud.ecs.HpcClusterArgs;
    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) {
            var example = new HpcCluster("example", HpcClusterArgs.builder()        
                .description("For Terraform Test")
                .build());
    
        }
    }
    
    resources:
      example:
        type: alicloud:ecs:HpcCluster
        properties:
          description: For Terraform Test
    

    Create HpcCluster Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

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

    Example

    The following reference example uses placeholder values for all input properties.

    var hpcClusterResource = new AliCloud.Ecs.HpcCluster("hpcClusterResource", new()
    {
        Description = "string",
        Name = "string",
    });
    
    example, err := ecs.NewHpcCluster(ctx, "hpcClusterResource", &ecs.HpcClusterArgs{
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    })
    
    var hpcClusterResource = new HpcCluster("hpcClusterResource", HpcClusterArgs.builder()        
        .description("string")
        .name("string")
        .build());
    
    hpc_cluster_resource = alicloud.ecs.HpcCluster("hpcClusterResource",
        description="string",
        name="string")
    
    const hpcClusterResource = new alicloud.ecs.HpcCluster("hpcClusterResource", {
        description: "string",
        name: "string",
    });
    
    type: alicloud:ecs:HpcCluster
    properties:
        description: string
        name: string
    

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

    Description string
    The description of ECS Hpc Cluster.
    Name string
    The name of ECS Hpc Cluster.
    Description string
    The description of ECS Hpc Cluster.
    Name string
    The name of ECS Hpc Cluster.
    description String
    The description of ECS Hpc Cluster.
    name String
    The name of ECS Hpc Cluster.
    description string
    The description of ECS Hpc Cluster.
    name string
    The name of ECS Hpc Cluster.
    description str
    The description of ECS Hpc Cluster.
    name str
    The name of ECS Hpc Cluster.
    description String
    The description of ECS Hpc Cluster.
    name String
    The name of ECS Hpc Cluster.

    Outputs

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

    Get an existing HpcCluster 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?: HpcClusterState, opts?: CustomResourceOptions): HpcCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            name: Optional[str] = None) -> HpcCluster
    func GetHpcCluster(ctx *Context, name string, id IDInput, state *HpcClusterState, opts ...ResourceOption) (*HpcCluster, error)
    public static HpcCluster Get(string name, Input<string> id, HpcClusterState? state, CustomResourceOptions? opts = null)
    public static HpcCluster get(String name, Output<String> id, HpcClusterState 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:
    Description string
    The description of ECS Hpc Cluster.
    Name string
    The name of ECS Hpc Cluster.
    Description string
    The description of ECS Hpc Cluster.
    Name string
    The name of ECS Hpc Cluster.
    description String
    The description of ECS Hpc Cluster.
    name String
    The name of ECS Hpc Cluster.
    description string
    The description of ECS Hpc Cluster.
    name string
    The name of ECS Hpc Cluster.
    description str
    The description of ECS Hpc Cluster.
    name str
    The name of ECS Hpc Cluster.
    description String
    The description of ECS Hpc Cluster.
    name String
    The name of ECS Hpc Cluster.

    Import

    ECS Hpc Cluster can be imported using the id, e.g.

    $ pulumi import alicloud:ecs/hpcCluster:HpcCluster example <id>
    

    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.
    alicloud logo
    Alibaba Cloud v3.52.1 published on Thursday, Apr 4, 2024 by Pulumi