1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. eflo
  5. Resource
Alibaba Cloud v3.77.0 published on Friday, May 2, 2025 by Pulumi

alicloud.eflo.Resource

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.77.0 published on Friday, May 2, 2025 by Pulumi

    Import

    Eflo Resource can be imported using the id, e.g.

    $ pulumi import alicloud:eflo/resource:Resource example <id>
    

    Create Resource Resource

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

    Constructor syntax

    new Resource(name: string, args: ResourceArgs, opts?: CustomResourceOptions);
    @overload
    def Resource(resource_name: str,
                 args: ResourceArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Resource(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 cluster_id: Optional[str] = None,
                 cluster_name: Optional[str] = None,
                 machine_types: Optional[ResourceMachineTypesArgs] = None,
                 user_access_param: Optional[ResourceUserAccessParamArgs] = None,
                 cluster_desc: Optional[str] = None)
    func NewResource(ctx *Context, name string, args ResourceArgs, opts ...ResourceOption) (*Resource, error)
    public Resource(string name, ResourceArgs args, CustomResourceOptions? opts = null)
    public Resource(String name, ResourceArgs args)
    public Resource(String name, ResourceArgs args, CustomResourceOptions options)
    
    type: alicloud:eflo:Resource
    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 ResourceArgs
    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 ResourceArgs
    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 ResourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ResourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ResourceArgs
    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 alicloudResourceResource = new AliCloud.Eflo.Resource("alicloudResourceResource", new()
    {
        ClusterId = "string",
        ClusterName = "string",
        MachineTypes = new AliCloud.Eflo.Inputs.ResourceMachineTypesArgs
        {
            CpuInfo = "string",
            GpuInfo = "string",
            BondNum = 0,
            DiskInfo = "string",
            MemoryInfo = "string",
            Name = "string",
            NetworkInfo = "string",
            NetworkMode = "string",
            NodeCount = 0,
            Type = "string",
        },
        UserAccessParam = new AliCloud.Eflo.Inputs.ResourceUserAccessParamArgs
        {
            AccessId = "string",
            AccessKey = "string",
            Endpoint = "string",
            WorkspaceId = "string",
        },
        ClusterDesc = "string",
    });
    
    example, err := eflo.NewResource(ctx, "alicloudResourceResource", &eflo.ResourceArgs{
    	ClusterId:   pulumi.String("string"),
    	ClusterName: pulumi.String("string"),
    	MachineTypes: &eflo.ResourceMachineTypesArgs{
    		CpuInfo:     pulumi.String("string"),
    		GpuInfo:     pulumi.String("string"),
    		BondNum:     pulumi.Int(0),
    		DiskInfo:    pulumi.String("string"),
    		MemoryInfo:  pulumi.String("string"),
    		Name:        pulumi.String("string"),
    		NetworkInfo: pulumi.String("string"),
    		NetworkMode: pulumi.String("string"),
    		NodeCount:   pulumi.Int(0),
    		Type:        pulumi.String("string"),
    	},
    	UserAccessParam: &eflo.ResourceUserAccessParamArgs{
    		AccessId:    pulumi.String("string"),
    		AccessKey:   pulumi.String("string"),
    		Endpoint:    pulumi.String("string"),
    		WorkspaceId: pulumi.String("string"),
    	},
    	ClusterDesc: pulumi.String("string"),
    })
    
    var alicloudResourceResource = new com.pulumi.alicloud.eflo.Resource("alicloudResourceResource", com.pulumi.alicloud.eflo.ResourceArgs.builder()
        .clusterId("string")
        .clusterName("string")
        .machineTypes(ResourceMachineTypesArgs.builder()
            .cpuInfo("string")
            .gpuInfo("string")
            .bondNum(0)
            .diskInfo("string")
            .memoryInfo("string")
            .name("string")
            .networkInfo("string")
            .networkMode("string")
            .nodeCount(0)
            .type("string")
            .build())
        .userAccessParam(ResourceUserAccessParamArgs.builder()
            .accessId("string")
            .accessKey("string")
            .endpoint("string")
            .workspaceId("string")
            .build())
        .clusterDesc("string")
        .build());
    
    alicloud_resource_resource = alicloud.eflo.Resource("alicloudResourceResource",
        cluster_id="string",
        cluster_name="string",
        machine_types={
            "cpu_info": "string",
            "gpu_info": "string",
            "bond_num": 0,
            "disk_info": "string",
            "memory_info": "string",
            "name": "string",
            "network_info": "string",
            "network_mode": "string",
            "node_count": 0,
            "type": "string",
        },
        user_access_param={
            "access_id": "string",
            "access_key": "string",
            "endpoint": "string",
            "workspace_id": "string",
        },
        cluster_desc="string")
    
    const alicloudResourceResource = new alicloud.eflo.Resource("alicloudResourceResource", {
        clusterId: "string",
        clusterName: "string",
        machineTypes: {
            cpuInfo: "string",
            gpuInfo: "string",
            bondNum: 0,
            diskInfo: "string",
            memoryInfo: "string",
            name: "string",
            networkInfo: "string",
            networkMode: "string",
            nodeCount: 0,
            type: "string",
        },
        userAccessParam: {
            accessId: "string",
            accessKey: "string",
            endpoint: "string",
            workspaceId: "string",
        },
        clusterDesc: "string",
    });
    
    type: alicloud:eflo:Resource
    properties:
        clusterDesc: string
        clusterId: string
        clusterName: string
        machineTypes:
            bondNum: 0
            cpuInfo: string
            diskInfo: string
            gpuInfo: string
            memoryInfo: string
            name: string
            networkInfo: string
            networkMode: string
            nodeCount: 0
            type: string
        userAccessParam:
            accessId: string
            accessKey: string
            endpoint: string
            workspaceId: string
    

    Resource Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Resource resource accepts the following input properties:

    ClusterId string
    Used to uniquely identify a computing cluster.
    ClusterName string
    Represents the name of the compute cluster, usually including the model number.
    MachineTypes Pulumi.AliCloud.Eflo.Inputs.ResourceMachineTypes
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    UserAccessParam Pulumi.AliCloud.Eflo.Inputs.ResourceUserAccessParam
    Used to define the access parameters for the user. See user_access_param below.
    ClusterDesc string
    Used to provide a description or comment on the compute cluster.
    ClusterId string
    Used to uniquely identify a computing cluster.
    ClusterName string
    Represents the name of the compute cluster, usually including the model number.
    MachineTypes ResourceMachineTypesArgs
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    UserAccessParam ResourceUserAccessParamArgs
    Used to define the access parameters for the user. See user_access_param below.
    ClusterDesc string
    Used to provide a description or comment on the compute cluster.
    clusterId String
    Used to uniquely identify a computing cluster.
    clusterName String
    Represents the name of the compute cluster, usually including the model number.
    machineTypes ResourceMachineTypes
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    userAccessParam ResourceUserAccessParam
    Used to define the access parameters for the user. See user_access_param below.
    clusterDesc String
    Used to provide a description or comment on the compute cluster.
    clusterId string
    Used to uniquely identify a computing cluster.
    clusterName string
    Represents the name of the compute cluster, usually including the model number.
    machineTypes ResourceMachineTypes
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    userAccessParam ResourceUserAccessParam
    Used to define the access parameters for the user. See user_access_param below.
    clusterDesc string
    Used to provide a description or comment on the compute cluster.
    cluster_id str
    Used to uniquely identify a computing cluster.
    cluster_name str
    Represents the name of the compute cluster, usually including the model number.
    machine_types ResourceMachineTypesArgs
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    user_access_param ResourceUserAccessParamArgs
    Used to define the access parameters for the user. See user_access_param below.
    cluster_desc str
    Used to provide a description or comment on the compute cluster.
    clusterId String
    Used to uniquely identify a computing cluster.
    clusterName String
    Represents the name of the compute cluster, usually including the model number.
    machineTypes Property Map
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    userAccessParam Property Map
    Used to define the access parameters for the user. See user_access_param below.
    clusterDesc String
    Used to provide a description or comment on the compute cluster.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Resource resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceId string
    The ID of the Resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceId string
    The ID of the Resource.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceId String
    The ID of the Resource.
    id string
    The provider-assigned unique ID for this managed resource.
    resourceId string
    The ID of the Resource.
    id str
    The provider-assigned unique ID for this managed resource.
    resource_id str
    The ID of the Resource.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceId String
    The ID of the Resource.

    Look up Existing Resource Resource

    Get an existing Resource 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?: ResourceState, opts?: CustomResourceOptions): Resource
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_desc: Optional[str] = None,
            cluster_id: Optional[str] = None,
            cluster_name: Optional[str] = None,
            machine_types: Optional[ResourceMachineTypesArgs] = None,
            resource_id: Optional[str] = None,
            user_access_param: Optional[ResourceUserAccessParamArgs] = None) -> Resource
    func GetResource(ctx *Context, name string, id IDInput, state *ResourceState, opts ...ResourceOption) (*Resource, error)
    public static Resource Get(string name, Input<string> id, ResourceState? state, CustomResourceOptions? opts = null)
    public static Resource get(String name, Output<String> id, ResourceState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:eflo:Resource    get:      id: ${id}
    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:
    ClusterDesc string
    Used to provide a description or comment on the compute cluster.
    ClusterId string
    Used to uniquely identify a computing cluster.
    ClusterName string
    Represents the name of the compute cluster, usually including the model number.
    MachineTypes Pulumi.AliCloud.Eflo.Inputs.ResourceMachineTypes
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    ResourceId string
    The ID of the Resource.
    UserAccessParam Pulumi.AliCloud.Eflo.Inputs.ResourceUserAccessParam
    Used to define the access parameters for the user. See user_access_param below.
    ClusterDesc string
    Used to provide a description or comment on the compute cluster.
    ClusterId string
    Used to uniquely identify a computing cluster.
    ClusterName string
    Represents the name of the compute cluster, usually including the model number.
    MachineTypes ResourceMachineTypesArgs
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    ResourceId string
    The ID of the Resource.
    UserAccessParam ResourceUserAccessParamArgs
    Used to define the access parameters for the user. See user_access_param below.
    clusterDesc String
    Used to provide a description or comment on the compute cluster.
    clusterId String
    Used to uniquely identify a computing cluster.
    clusterName String
    Represents the name of the compute cluster, usually including the model number.
    machineTypes ResourceMachineTypes
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    resourceId String
    The ID of the Resource.
    userAccessParam ResourceUserAccessParam
    Used to define the access parameters for the user. See user_access_param below.
    clusterDesc string
    Used to provide a description or comment on the compute cluster.
    clusterId string
    Used to uniquely identify a computing cluster.
    clusterName string
    Represents the name of the compute cluster, usually including the model number.
    machineTypes ResourceMachineTypes
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    resourceId string
    The ID of the Resource.
    userAccessParam ResourceUserAccessParam
    Used to define the access parameters for the user. See user_access_param below.
    cluster_desc str
    Used to provide a description or comment on the compute cluster.
    cluster_id str
    Used to uniquely identify a computing cluster.
    cluster_name str
    Represents the name of the compute cluster, usually including the model number.
    machine_types ResourceMachineTypesArgs
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    resource_id str
    The ID of the Resource.
    user_access_param ResourceUserAccessParamArgs
    Used to define the access parameters for the user. See user_access_param below.
    clusterDesc String
    Used to provide a description or comment on the compute cluster.
    clusterId String
    Used to uniquely identify a computing cluster.
    clusterName String
    Represents the name of the compute cluster, usually including the model number.
    machineTypes Property Map
    Generally refers to the type or instance type of a computing resource. See machine_types below.
    resourceId String
    The ID of the Resource.
    userAccessParam Property Map
    Used to define the access parameters for the user. See user_access_param below.

    Supporting Types

    ResourceMachineTypes, ResourceMachineTypesArgs

    CpuInfo string
    Provides CPU details, including the number of cores, number of threads, clock frequency, and architecture type. This information helps to evaluate the processing power and identify whether it can meet the performance requirements of a particular application.
    GpuInfo string
    Provides detailed information about the GPU, including the number, model, memory size, and computing capability. This information is particularly important for tasks such as deep learning, scientific computing, and graph processing, helping users understand the graph processing capabilities of nodes.
    BondNum int
    This property specifies the number of network bindings, which relates to the number of physical or virtual network cards connected to the network through the network interface card (NIC). Multiple network bindings can increase bandwidth and redundancy and improve network reliability.
    DiskInfo string
    Displays information about the storage device, including the disk type (such as SSD or HDD), capacity, and I/O performance. Storage performance is critical in data-intensive applications such as big data processing and databases.
    MemoryInfo string
    This property provides memory details, including total memory, available memory, and usage. This helps users understand the memory processing capabilities of compute nodes, especially when running heavy-duty applications.
    Name string
    Specification Name.
    NetworkInfo string
    Contains detailed information about the network interface, such as network bandwidth, latency, protocol types supported by the network, IP addresses, and network topology. Optimizing network information is essential to ensure efficient data transmission and low latency.
    NetworkMode string
    Specifies the network mode, such as bridge mode, NAT mode, or direct connection mode. Different network modes affect the network configuration and data transmission performance of nodes, and affect the network access methods of computing instances.
    NodeCount int
    Specifies the total number of compute nodes. This property is particularly important in distributed computing and cluster environments, because the number of nodes often directly affects the computing power and the ability to parallel processing.
    Type string
    Usually refers to a specific resource type (such as virtual machine, physical server, container, etc.), which is used to distinguish different computing units or resource categories.
    CpuInfo string
    Provides CPU details, including the number of cores, number of threads, clock frequency, and architecture type. This information helps to evaluate the processing power and identify whether it can meet the performance requirements of a particular application.
    GpuInfo string
    Provides detailed information about the GPU, including the number, model, memory size, and computing capability. This information is particularly important for tasks such as deep learning, scientific computing, and graph processing, helping users understand the graph processing capabilities of nodes.
    BondNum int
    This property specifies the number of network bindings, which relates to the number of physical or virtual network cards connected to the network through the network interface card (NIC). Multiple network bindings can increase bandwidth and redundancy and improve network reliability.
    DiskInfo string
    Displays information about the storage device, including the disk type (such as SSD or HDD), capacity, and I/O performance. Storage performance is critical in data-intensive applications such as big data processing and databases.
    MemoryInfo string
    This property provides memory details, including total memory, available memory, and usage. This helps users understand the memory processing capabilities of compute nodes, especially when running heavy-duty applications.
    Name string
    Specification Name.
    NetworkInfo string
    Contains detailed information about the network interface, such as network bandwidth, latency, protocol types supported by the network, IP addresses, and network topology. Optimizing network information is essential to ensure efficient data transmission and low latency.
    NetworkMode string
    Specifies the network mode, such as bridge mode, NAT mode, or direct connection mode. Different network modes affect the network configuration and data transmission performance of nodes, and affect the network access methods of computing instances.
    NodeCount int
    Specifies the total number of compute nodes. This property is particularly important in distributed computing and cluster environments, because the number of nodes often directly affects the computing power and the ability to parallel processing.
    Type string
    Usually refers to a specific resource type (such as virtual machine, physical server, container, etc.), which is used to distinguish different computing units or resource categories.
    cpuInfo String
    Provides CPU details, including the number of cores, number of threads, clock frequency, and architecture type. This information helps to evaluate the processing power and identify whether it can meet the performance requirements of a particular application.
    gpuInfo String
    Provides detailed information about the GPU, including the number, model, memory size, and computing capability. This information is particularly important for tasks such as deep learning, scientific computing, and graph processing, helping users understand the graph processing capabilities of nodes.
    bondNum Integer
    This property specifies the number of network bindings, which relates to the number of physical or virtual network cards connected to the network through the network interface card (NIC). Multiple network bindings can increase bandwidth and redundancy and improve network reliability.
    diskInfo String
    Displays information about the storage device, including the disk type (such as SSD or HDD), capacity, and I/O performance. Storage performance is critical in data-intensive applications such as big data processing and databases.
    memoryInfo String
    This property provides memory details, including total memory, available memory, and usage. This helps users understand the memory processing capabilities of compute nodes, especially when running heavy-duty applications.
    name String
    Specification Name.
    networkInfo String
    Contains detailed information about the network interface, such as network bandwidth, latency, protocol types supported by the network, IP addresses, and network topology. Optimizing network information is essential to ensure efficient data transmission and low latency.
    networkMode String
    Specifies the network mode, such as bridge mode, NAT mode, or direct connection mode. Different network modes affect the network configuration and data transmission performance of nodes, and affect the network access methods of computing instances.
    nodeCount Integer
    Specifies the total number of compute nodes. This property is particularly important in distributed computing and cluster environments, because the number of nodes often directly affects the computing power and the ability to parallel processing.
    type String
    Usually refers to a specific resource type (such as virtual machine, physical server, container, etc.), which is used to distinguish different computing units or resource categories.
    cpuInfo string
    Provides CPU details, including the number of cores, number of threads, clock frequency, and architecture type. This information helps to evaluate the processing power and identify whether it can meet the performance requirements of a particular application.
    gpuInfo string
    Provides detailed information about the GPU, including the number, model, memory size, and computing capability. This information is particularly important for tasks such as deep learning, scientific computing, and graph processing, helping users understand the graph processing capabilities of nodes.
    bondNum number
    This property specifies the number of network bindings, which relates to the number of physical or virtual network cards connected to the network through the network interface card (NIC). Multiple network bindings can increase bandwidth and redundancy and improve network reliability.
    diskInfo string
    Displays information about the storage device, including the disk type (such as SSD or HDD), capacity, and I/O performance. Storage performance is critical in data-intensive applications such as big data processing and databases.
    memoryInfo string
    This property provides memory details, including total memory, available memory, and usage. This helps users understand the memory processing capabilities of compute nodes, especially when running heavy-duty applications.
    name string
    Specification Name.
    networkInfo string
    Contains detailed information about the network interface, such as network bandwidth, latency, protocol types supported by the network, IP addresses, and network topology. Optimizing network information is essential to ensure efficient data transmission and low latency.
    networkMode string
    Specifies the network mode, such as bridge mode, NAT mode, or direct connection mode. Different network modes affect the network configuration and data transmission performance of nodes, and affect the network access methods of computing instances.
    nodeCount number
    Specifies the total number of compute nodes. This property is particularly important in distributed computing and cluster environments, because the number of nodes often directly affects the computing power and the ability to parallel processing.
    type string
    Usually refers to a specific resource type (such as virtual machine, physical server, container, etc.), which is used to distinguish different computing units or resource categories.
    cpu_info str
    Provides CPU details, including the number of cores, number of threads, clock frequency, and architecture type. This information helps to evaluate the processing power and identify whether it can meet the performance requirements of a particular application.
    gpu_info str
    Provides detailed information about the GPU, including the number, model, memory size, and computing capability. This information is particularly important for tasks such as deep learning, scientific computing, and graph processing, helping users understand the graph processing capabilities of nodes.
    bond_num int
    This property specifies the number of network bindings, which relates to the number of physical or virtual network cards connected to the network through the network interface card (NIC). Multiple network bindings can increase bandwidth and redundancy and improve network reliability.
    disk_info str
    Displays information about the storage device, including the disk type (such as SSD or HDD), capacity, and I/O performance. Storage performance is critical in data-intensive applications such as big data processing and databases.
    memory_info str
    This property provides memory details, including total memory, available memory, and usage. This helps users understand the memory processing capabilities of compute nodes, especially when running heavy-duty applications.
    name str
    Specification Name.
    network_info str
    Contains detailed information about the network interface, such as network bandwidth, latency, protocol types supported by the network, IP addresses, and network topology. Optimizing network information is essential to ensure efficient data transmission and low latency.
    network_mode str
    Specifies the network mode, such as bridge mode, NAT mode, or direct connection mode. Different network modes affect the network configuration and data transmission performance of nodes, and affect the network access methods of computing instances.
    node_count int
    Specifies the total number of compute nodes. This property is particularly important in distributed computing and cluster environments, because the number of nodes often directly affects the computing power and the ability to parallel processing.
    type str
    Usually refers to a specific resource type (such as virtual machine, physical server, container, etc.), which is used to distinguish different computing units or resource categories.
    cpuInfo String
    Provides CPU details, including the number of cores, number of threads, clock frequency, and architecture type. This information helps to evaluate the processing power and identify whether it can meet the performance requirements of a particular application.
    gpuInfo String
    Provides detailed information about the GPU, including the number, model, memory size, and computing capability. This information is particularly important for tasks such as deep learning, scientific computing, and graph processing, helping users understand the graph processing capabilities of nodes.
    bondNum Number
    This property specifies the number of network bindings, which relates to the number of physical or virtual network cards connected to the network through the network interface card (NIC). Multiple network bindings can increase bandwidth and redundancy and improve network reliability.
    diskInfo String
    Displays information about the storage device, including the disk type (such as SSD or HDD), capacity, and I/O performance. Storage performance is critical in data-intensive applications such as big data processing and databases.
    memoryInfo String
    This property provides memory details, including total memory, available memory, and usage. This helps users understand the memory processing capabilities of compute nodes, especially when running heavy-duty applications.
    name String
    Specification Name.
    networkInfo String
    Contains detailed information about the network interface, such as network bandwidth, latency, protocol types supported by the network, IP addresses, and network topology. Optimizing network information is essential to ensure efficient data transmission and low latency.
    networkMode String
    Specifies the network mode, such as bridge mode, NAT mode, or direct connection mode. Different network modes affect the network configuration and data transmission performance of nodes, and affect the network access methods of computing instances.
    nodeCount Number
    Specifies the total number of compute nodes. This property is particularly important in distributed computing and cluster environments, because the number of nodes often directly affects the computing power and the ability to parallel processing.
    type String
    Usually refers to a specific resource type (such as virtual machine, physical server, container, etc.), which is used to distinguish different computing units or resource categories.

    ResourceUserAccessParam, ResourceUserAccessParamArgs

    AccessId string
    Access keys are important credentials for authentication.
    AccessKey string
    A Secret Key is a Secret credential paired with an access Key to verify a user's identity and protect the security of an interface.
    Endpoint string
    An Endpoint is a network address for accessing a service or API, usually a URL to a specific service instance.
    WorkspaceId string
    A Workspace generally refers to a separate space created by a user on a particular computing environment or platform.
    AccessId string
    Access keys are important credentials for authentication.
    AccessKey string
    A Secret Key is a Secret credential paired with an access Key to verify a user's identity and protect the security of an interface.
    Endpoint string
    An Endpoint is a network address for accessing a service or API, usually a URL to a specific service instance.
    WorkspaceId string
    A Workspace generally refers to a separate space created by a user on a particular computing environment or platform.
    accessId String
    Access keys are important credentials for authentication.
    accessKey String
    A Secret Key is a Secret credential paired with an access Key to verify a user's identity and protect the security of an interface.
    endpoint String
    An Endpoint is a network address for accessing a service or API, usually a URL to a specific service instance.
    workspaceId String
    A Workspace generally refers to a separate space created by a user on a particular computing environment or platform.
    accessId string
    Access keys are important credentials for authentication.
    accessKey string
    A Secret Key is a Secret credential paired with an access Key to verify a user's identity and protect the security of an interface.
    endpoint string
    An Endpoint is a network address for accessing a service or API, usually a URL to a specific service instance.
    workspaceId string
    A Workspace generally refers to a separate space created by a user on a particular computing environment or platform.
    access_id str
    Access keys are important credentials for authentication.
    access_key str
    A Secret Key is a Secret credential paired with an access Key to verify a user's identity and protect the security of an interface.
    endpoint str
    An Endpoint is a network address for accessing a service or API, usually a URL to a specific service instance.
    workspace_id str
    A Workspace generally refers to a separate space created by a user on a particular computing environment or platform.
    accessId String
    Access keys are important credentials for authentication.
    accessKey String
    A Secret Key is a Secret credential paired with an access Key to verify a user's identity and protect the security of an interface.
    endpoint String
    An Endpoint is a network address for accessing a service or API, usually a URL to a specific service instance.
    workspaceId String
    A Workspace generally refers to a separate space created by a user on a particular computing environment or platform.

    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.77.0 published on Friday, May 2, 2025 by Pulumi