alicloud.eflo.Resource
Explore with Pulumi AI
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:
- Cluster
Id string - Used to uniquely identify a computing cluster.
- Cluster
Name string - Represents the name of the compute cluster, usually including the model number.
- Machine
Types Pulumi.Ali Cloud. Eflo. Inputs. Resource Machine Types - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - User
Access Pulumi.Param Ali Cloud. Eflo. Inputs. Resource User Access Param - Used to define the access parameters for the user. See
user_access_param
below. - Cluster
Desc string - Used to provide a description or comment on the compute cluster.
- Cluster
Id string - Used to uniquely identify a computing cluster.
- Cluster
Name string - Represents the name of the compute cluster, usually including the model number.
- Machine
Types ResourceMachine Types Args - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - User
Access ResourceParam User Access Param Args - Used to define the access parameters for the user. See
user_access_param
below. - Cluster
Desc string - Used to provide a description or comment on the compute cluster.
- cluster
Id String - Used to uniquely identify a computing cluster.
- cluster
Name String - Represents the name of the compute cluster, usually including the model number.
- machine
Types ResourceMachine Types - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - user
Access ResourceParam User Access Param - Used to define the access parameters for the user. See
user_access_param
below. - cluster
Desc String - Used to provide a description or comment on the compute cluster.
- cluster
Id string - Used to uniquely identify a computing cluster.
- cluster
Name string - Represents the name of the compute cluster, usually including the model number.
- machine
Types ResourceMachine Types - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - user
Access ResourceParam User Access Param - Used to define the access parameters for the user. See
user_access_param
below. - cluster
Desc 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 ResourceMachine Types Args - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - user_
access_ Resourceparam User Access Param Args - 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 String - Used to uniquely identify a computing cluster.
- cluster
Name String - Represents the name of the compute cluster, usually including the model number.
- machine
Types Property Map - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - user
Access Property MapParam - Used to define the access parameters for the user. See
user_access_param
below. - cluster
Desc 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.
- Resource
Id string - The ID of the Resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Id string - The ID of the Resource.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Id String - The ID of the Resource.
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Id 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.
- resource
Id 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.
- Cluster
Desc string - Used to provide a description or comment on the compute cluster.
- Cluster
Id string - Used to uniquely identify a computing cluster.
- Cluster
Name string - Represents the name of the compute cluster, usually including the model number.
- Machine
Types Pulumi.Ali Cloud. Eflo. Inputs. Resource Machine Types - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - Resource
Id string - The ID of the Resource.
- User
Access Pulumi.Param Ali Cloud. Eflo. Inputs. Resource User Access Param - Used to define the access parameters for the user. See
user_access_param
below.
- Cluster
Desc string - Used to provide a description or comment on the compute cluster.
- Cluster
Id string - Used to uniquely identify a computing cluster.
- Cluster
Name string - Represents the name of the compute cluster, usually including the model number.
- Machine
Types ResourceMachine Types Args - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - Resource
Id string - The ID of the Resource.
- User
Access ResourceParam User Access Param Args - Used to define the access parameters for the user. See
user_access_param
below.
- cluster
Desc String - Used to provide a description or comment on the compute cluster.
- cluster
Id String - Used to uniquely identify a computing cluster.
- cluster
Name String - Represents the name of the compute cluster, usually including the model number.
- machine
Types ResourceMachine Types - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - resource
Id String - The ID of the Resource.
- user
Access ResourceParam User Access Param - Used to define the access parameters for the user. See
user_access_param
below.
- cluster
Desc string - Used to provide a description or comment on the compute cluster.
- cluster
Id string - Used to uniquely identify a computing cluster.
- cluster
Name string - Represents the name of the compute cluster, usually including the model number.
- machine
Types ResourceMachine Types - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - resource
Id string - The ID of the Resource.
- user
Access ResourceParam User Access Param - 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 ResourceMachine Types Args - 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_ Resourceparam User Access Param Args - Used to define the access parameters for the user. See
user_access_param
below.
- cluster
Desc String - Used to provide a description or comment on the compute cluster.
- cluster
Id String - Used to uniquely identify a computing cluster.
- cluster
Name String - Represents the name of the compute cluster, usually including the model number.
- machine
Types Property Map - Generally refers to the type or instance type of a computing resource. See
machine_types
below. - resource
Id String - The ID of the Resource.
- user
Access Property MapParam - Used to define the access parameters for the user. See
user_access_param
below.
Supporting Types
ResourceMachineTypes, ResourceMachineTypesArgs
- Cpu
Info 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.
- Gpu
Info 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.
- 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 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.
- Memory
Info 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.
- Network
Info 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.
- Network
Mode 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.
- 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 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 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.
- Gpu
Info 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.
- 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 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.
- Memory
Info 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.
- Network
Info 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.
- Network
Mode 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.
- 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 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 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.
- gpu
Info 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.
- bond
Num 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.
- disk
Info 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.
- memory
Info 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.
- network
Info 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.
- network
Mode 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.
- node
Count 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.
- cpu
Info 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.
- gpu
Info 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.
- bond
Num 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.
- disk
Info 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.
- memory
Info 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.
- network
Info 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.
- network
Mode 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.
- node
Count 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.
- cpu
Info 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.
- gpu
Info 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.
- bond
Num 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.
- disk
Info 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.
- memory
Info 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.
- network
Info 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.
- network
Mode 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.
- node
Count 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
- Access
Id string - Access keys are important credentials for authentication.
- Access
Key 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.
- Workspace
Id string - A Workspace generally refers to a separate space created by a user on a particular computing environment or platform.
- Access
Id string - Access keys are important credentials for authentication.
- Access
Key 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.
- Workspace
Id string - A Workspace generally refers to a separate space created by a user on a particular computing environment or platform.
- access
Id String - Access keys are important credentials for authentication.
- access
Key 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.
- workspace
Id String - A Workspace generally refers to a separate space created by a user on a particular computing environment or platform.
- access
Id string - Access keys are important credentials for authentication.
- access
Key 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.
- workspace
Id 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.
- access
Id String - Access keys are important credentials for authentication.
- access
Key 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.
- workspace
Id 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.