1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. eds
  5. Command
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.eds.Command

Explore with Pulumi AI

Provides a ECD Command resource.

For information about ECD Command and how to use it, see What is Command.

NOTE: Available since v1.146.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
import * as random from "@pulumi/random";

const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const defaultInteger = new random.index.Integer("default", {
    min: 10000,
    max: 99999,
});
const defaultSimpleOfficeSite = new alicloud.eds.SimpleOfficeSite("default", {
    cidrBlock: "172.16.0.0/12",
    enableAdminAccess: true,
    desktopAccessType: "Internet",
    officeSiteName: `${name}-${defaultInteger.result}`,
});
const defaultEcdPolicyGroup = new alicloud.eds.EcdPolicyGroup("default", {
    policyGroupName: name,
    clipboard: "read",
    localDrive: "read",
    usbRedirect: "off",
    watermark: "off",
    authorizeAccessPolicyRules: [{
        description: name,
        cidrIp: "1.2.3.45/24",
    }],
    authorizeSecurityPolicyRules: [{
        type: "inflow",
        policy: "accept",
        description: name,
        portRange: "80/80",
        ipProtocol: "TCP",
        priority: "1",
        cidrIp: "1.2.3.4/24",
    }],
});
const _default = alicloud.eds.getBundles({
    bundleType: "SYSTEM",
    bundleIds: [
        "bundle_eds_enterprise_office_4c8g_s8d2_win2019_edu",
        "bundle_eds_enterprise_office_8c16g_s8d2_win2019_edu",
    ],
});
const defaultDesktop = new alicloud.eds.Desktop("default", {
    officeSiteId: defaultSimpleOfficeSite.id,
    policyGroupId: defaultEcdPolicyGroup.id,
    bundleId: _default.then(_default => _default.bundles?.[0]?.id),
    desktopName: name,
});
const defaultCommand = new alicloud.eds.Command("default", {
    commandContent: "ipconfig",
    commandType: "RunPowerShellScript",
    desktopId: defaultDesktop.id,
});
Copy
import pulumi
import pulumi_alicloud as alicloud
import pulumi_random as random

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "terraform-example"
default_integer = random.index.Integer("default",
    min=10000,
    max=99999)
default_simple_office_site = alicloud.eds.SimpleOfficeSite("default",
    cidr_block="172.16.0.0/12",
    enable_admin_access=True,
    desktop_access_type="Internet",
    office_site_name=f"{name}-{default_integer['result']}")
default_ecd_policy_group = alicloud.eds.EcdPolicyGroup("default",
    policy_group_name=name,
    clipboard="read",
    local_drive="read",
    usb_redirect="off",
    watermark="off",
    authorize_access_policy_rules=[{
        "description": name,
        "cidr_ip": "1.2.3.45/24",
    }],
    authorize_security_policy_rules=[{
        "type": "inflow",
        "policy": "accept",
        "description": name,
        "port_range": "80/80",
        "ip_protocol": "TCP",
        "priority": "1",
        "cidr_ip": "1.2.3.4/24",
    }])
default = alicloud.eds.get_bundles(bundle_type="SYSTEM",
    bundle_ids=[
        "bundle_eds_enterprise_office_4c8g_s8d2_win2019_edu",
        "bundle_eds_enterprise_office_8c16g_s8d2_win2019_edu",
    ])
default_desktop = alicloud.eds.Desktop("default",
    office_site_id=default_simple_office_site.id,
    policy_group_id=default_ecd_policy_group.id,
    bundle_id=default.bundles[0].id,
    desktop_name=name)
default_command = alicloud.eds.Command("default",
    command_content="ipconfig",
    command_type="RunPowerShellScript",
    desktop_id=default_desktop.id)
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/eds"
	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		name := "terraform-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		defaultInteger, err := random.NewInteger(ctx, "default", &random.IntegerArgs{
			Min: 10000,
			Max: 99999,
		})
		if err != nil {
			return err
		}
		defaultSimpleOfficeSite, err := eds.NewSimpleOfficeSite(ctx, "default", &eds.SimpleOfficeSiteArgs{
			CidrBlock:         pulumi.String("172.16.0.0/12"),
			EnableAdminAccess: pulumi.Bool(true),
			DesktopAccessType: pulumi.String("Internet"),
			OfficeSiteName:    pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
		})
		if err != nil {
			return err
		}
		defaultEcdPolicyGroup, err := eds.NewEcdPolicyGroup(ctx, "default", &eds.EcdPolicyGroupArgs{
			PolicyGroupName: pulumi.String(name),
			Clipboard:       pulumi.String("read"),
			LocalDrive:      pulumi.String("read"),
			UsbRedirect:     pulumi.String("off"),
			Watermark:       pulumi.String("off"),
			AuthorizeAccessPolicyRules: eds.EcdPolicyGroupAuthorizeAccessPolicyRuleArray{
				&eds.EcdPolicyGroupAuthorizeAccessPolicyRuleArgs{
					Description: pulumi.String(name),
					CidrIp:      pulumi.String("1.2.3.45/24"),
				},
			},
			AuthorizeSecurityPolicyRules: eds.EcdPolicyGroupAuthorizeSecurityPolicyRuleArray{
				&eds.EcdPolicyGroupAuthorizeSecurityPolicyRuleArgs{
					Type:        pulumi.String("inflow"),
					Policy:      pulumi.String("accept"),
					Description: pulumi.String(name),
					PortRange:   pulumi.String("80/80"),
					IpProtocol:  pulumi.String("TCP"),
					Priority:    pulumi.String("1"),
					CidrIp:      pulumi.String("1.2.3.4/24"),
				},
			},
		})
		if err != nil {
			return err
		}
		_default, err := eds.GetBundles(ctx, &eds.GetBundlesArgs{
			BundleType: pulumi.StringRef("SYSTEM"),
			BundleIds: []string{
				"bundle_eds_enterprise_office_4c8g_s8d2_win2019_edu",
				"bundle_eds_enterprise_office_8c16g_s8d2_win2019_edu",
			},
		}, nil)
		if err != nil {
			return err
		}
		defaultDesktop, err := eds.NewDesktop(ctx, "default", &eds.DesktopArgs{
			OfficeSiteId:  defaultSimpleOfficeSite.ID(),
			PolicyGroupId: defaultEcdPolicyGroup.ID(),
			BundleId:      pulumi.String(_default.Bundles[0].Id),
			DesktopName:   pulumi.String(name),
		})
		if err != nil {
			return err
		}
		_, err = eds.NewCommand(ctx, "default", &eds.CommandArgs{
			CommandContent: pulumi.String("ipconfig"),
			CommandType:    pulumi.String("RunPowerShellScript"),
			DesktopId:      defaultDesktop.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
using Random = Pulumi.Random;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "terraform-example";
    var defaultInteger = new Random.Index.Integer("default", new()
    {
        Min = 10000,
        Max = 99999,
    });

    var defaultSimpleOfficeSite = new AliCloud.Eds.SimpleOfficeSite("default", new()
    {
        CidrBlock = "172.16.0.0/12",
        EnableAdminAccess = true,
        DesktopAccessType = "Internet",
        OfficeSiteName = $"{name}-{defaultInteger.Result}",
    });

    var defaultEcdPolicyGroup = new AliCloud.Eds.EcdPolicyGroup("default", new()
    {
        PolicyGroupName = name,
        Clipboard = "read",
        LocalDrive = "read",
        UsbRedirect = "off",
        Watermark = "off",
        AuthorizeAccessPolicyRules = new[]
        {
            new AliCloud.Eds.Inputs.EcdPolicyGroupAuthorizeAccessPolicyRuleArgs
            {
                Description = name,
                CidrIp = "1.2.3.45/24",
            },
        },
        AuthorizeSecurityPolicyRules = new[]
        {
            new AliCloud.Eds.Inputs.EcdPolicyGroupAuthorizeSecurityPolicyRuleArgs
            {
                Type = "inflow",
                Policy = "accept",
                Description = name,
                PortRange = "80/80",
                IpProtocol = "TCP",
                Priority = "1",
                CidrIp = "1.2.3.4/24",
            },
        },
    });

    var @default = AliCloud.Eds.GetBundles.Invoke(new()
    {
        BundleType = "SYSTEM",
        BundleIds = new[]
        {
            "bundle_eds_enterprise_office_4c8g_s8d2_win2019_edu",
            "bundle_eds_enterprise_office_8c16g_s8d2_win2019_edu",
        },
    });

    var defaultDesktop = new AliCloud.Eds.Desktop("default", new()
    {
        OfficeSiteId = defaultSimpleOfficeSite.Id,
        PolicyGroupId = defaultEcdPolicyGroup.Id,
        BundleId = @default.Apply(@default => @default.Apply(getBundlesResult => getBundlesResult.Bundles[0]?.Id)),
        DesktopName = name,
    });

    var defaultCommand = new AliCloud.Eds.Command("default", new()
    {
        CommandContent = "ipconfig",
        CommandType = "RunPowerShellScript",
        DesktopId = defaultDesktop.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.random.integer;
import com.pulumi.random.IntegerArgs;
import com.pulumi.alicloud.eds.SimpleOfficeSite;
import com.pulumi.alicloud.eds.SimpleOfficeSiteArgs;
import com.pulumi.alicloud.eds.EcdPolicyGroup;
import com.pulumi.alicloud.eds.EcdPolicyGroupArgs;
import com.pulumi.alicloud.eds.inputs.EcdPolicyGroupAuthorizeAccessPolicyRuleArgs;
import com.pulumi.alicloud.eds.inputs.EcdPolicyGroupAuthorizeSecurityPolicyRuleArgs;
import com.pulumi.alicloud.eds.EdsFunctions;
import com.pulumi.alicloud.eds.inputs.GetBundlesArgs;
import com.pulumi.alicloud.eds.Desktop;
import com.pulumi.alicloud.eds.DesktopArgs;
import com.pulumi.alicloud.eds.Command;
import com.pulumi.alicloud.eds.CommandArgs;
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 config = ctx.config();
        final var name = config.get("name").orElse("terraform-example");
        var defaultInteger = new Integer("defaultInteger", IntegerArgs.builder()
            .min(10000)
            .max(99999)
            .build());

        var defaultSimpleOfficeSite = new SimpleOfficeSite("defaultSimpleOfficeSite", SimpleOfficeSiteArgs.builder()
            .cidrBlock("172.16.0.0/12")
            .enableAdminAccess(true)
            .desktopAccessType("Internet")
            .officeSiteName(String.format("%s-%s", name,defaultInteger.result()))
            .build());

        var defaultEcdPolicyGroup = new EcdPolicyGroup("defaultEcdPolicyGroup", EcdPolicyGroupArgs.builder()
            .policyGroupName(name)
            .clipboard("read")
            .localDrive("read")
            .usbRedirect("off")
            .watermark("off")
            .authorizeAccessPolicyRules(EcdPolicyGroupAuthorizeAccessPolicyRuleArgs.builder()
                .description(name)
                .cidrIp("1.2.3.45/24")
                .build())
            .authorizeSecurityPolicyRules(EcdPolicyGroupAuthorizeSecurityPolicyRuleArgs.builder()
                .type("inflow")
                .policy("accept")
                .description(name)
                .portRange("80/80")
                .ipProtocol("TCP")
                .priority("1")
                .cidrIp("1.2.3.4/24")
                .build())
            .build());

        final var default = EdsFunctions.getBundles(GetBundlesArgs.builder()
            .bundleType("SYSTEM")
            .bundleIds(            
                "bundle_eds_enterprise_office_4c8g_s8d2_win2019_edu",
                "bundle_eds_enterprise_office_8c16g_s8d2_win2019_edu")
            .build());

        var defaultDesktop = new Desktop("defaultDesktop", DesktopArgs.builder()
            .officeSiteId(defaultSimpleOfficeSite.id())
            .policyGroupId(defaultEcdPolicyGroup.id())
            .bundleId(default_.bundles()[0].id())
            .desktopName(name)
            .build());

        var defaultCommand = new Command("defaultCommand", CommandArgs.builder()
            .commandContent("ipconfig")
            .commandType("RunPowerShellScript")
            .desktopId(defaultDesktop.id())
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: terraform-example
resources:
  defaultInteger:
    type: random:integer
    name: default
    properties:
      min: 10000
      max: 99999
  defaultSimpleOfficeSite:
    type: alicloud:eds:SimpleOfficeSite
    name: default
    properties:
      cidrBlock: 172.16.0.0/12
      enableAdminAccess: true
      desktopAccessType: Internet
      officeSiteName: ${name}-${defaultInteger.result}
  defaultEcdPolicyGroup:
    type: alicloud:eds:EcdPolicyGroup
    name: default
    properties:
      policyGroupName: ${name}
      clipboard: read
      localDrive: read
      usbRedirect: off
      watermark: off
      authorizeAccessPolicyRules:
        - description: ${name}
          cidrIp: 1.2.3.45/24
      authorizeSecurityPolicyRules:
        - type: inflow
          policy: accept
          description: ${name}
          portRange: 80/80
          ipProtocol: TCP
          priority: '1'
          cidrIp: 1.2.3.4/24
  defaultDesktop:
    type: alicloud:eds:Desktop
    name: default
    properties:
      officeSiteId: ${defaultSimpleOfficeSite.id}
      policyGroupId: ${defaultEcdPolicyGroup.id}
      bundleId: ${default.bundles[0].id}
      desktopName: ${name}
  defaultCommand:
    type: alicloud:eds:Command
    name: default
    properties:
      commandContent: ipconfig
      commandType: RunPowerShellScript
      desktopId: ${defaultDesktop.id}
variables:
  default:
    fn::invoke:
      function: alicloud:eds:getBundles
      arguments:
        bundleType: SYSTEM
        bundleIds:
          - bundle_eds_enterprise_office_4c8g_s8d2_win2019_edu
          - bundle_eds_enterprise_office_8c16g_s8d2_win2019_edu
Copy

Create Command Resource

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

Constructor syntax

new Command(name: string, args: CommandArgs, opts?: CustomResourceOptions);
@overload
def Command(resource_name: str,
            args: CommandArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def Command(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            command_content: Optional[str] = None,
            command_type: Optional[str] = None,
            desktop_id: Optional[str] = None,
            content_encoding: Optional[str] = None,
            timeout: Optional[str] = None)
func NewCommand(ctx *Context, name string, args CommandArgs, opts ...ResourceOption) (*Command, error)
public Command(string name, CommandArgs args, CustomResourceOptions? opts = null)
public Command(String name, CommandArgs args)
public Command(String name, CommandArgs args, CustomResourceOptions options)
type: alicloud:eds:Command
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CommandArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CommandArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CommandArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CommandArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CommandArgs
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 alicloudCommandResource = new AliCloud.Eds.Command("alicloudCommandResource", new()
{
    CommandContent = "string",
    CommandType = "string",
    DesktopId = "string",
    ContentEncoding = "string",
    Timeout = "string",
});
Copy
example, err := eds.NewCommand(ctx, "alicloudCommandResource", &eds.CommandArgs{
	CommandContent:  pulumi.String("string"),
	CommandType:     pulumi.String("string"),
	DesktopId:       pulumi.String("string"),
	ContentEncoding: pulumi.String("string"),
	Timeout:         pulumi.String("string"),
})
Copy
var alicloudCommandResource = new Command("alicloudCommandResource", CommandArgs.builder()
    .commandContent("string")
    .commandType("string")
    .desktopId("string")
    .contentEncoding("string")
    .timeout("string")
    .build());
Copy
alicloud_command_resource = alicloud.eds.Command("alicloudCommandResource",
    command_content="string",
    command_type="string",
    desktop_id="string",
    content_encoding="string",
    timeout="string")
Copy
const alicloudCommandResource = new alicloud.eds.Command("alicloudCommandResource", {
    commandContent: "string",
    commandType: "string",
    desktopId: "string",
    contentEncoding: "string",
    timeout: "string",
});
Copy
type: alicloud:eds:Command
properties:
    commandContent: string
    commandType: string
    contentEncoding: string
    desktopId: string
    timeout: string
Copy

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

CommandContent
This property is required.
Changes to this property will trigger replacement.
string
The Contents of the Script to Base64 Encoded Transmission.
CommandType
This property is required.
Changes to this property will trigger replacement.
string
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
DesktopId
This property is required.
Changes to this property will trigger replacement.
string
The desktop id of the Desktop.
ContentEncoding string
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
Timeout string
The timeout period for script execution the unit is seconds. Default to: 60.
CommandContent
This property is required.
Changes to this property will trigger replacement.
string
The Contents of the Script to Base64 Encoded Transmission.
CommandType
This property is required.
Changes to this property will trigger replacement.
string
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
DesktopId
This property is required.
Changes to this property will trigger replacement.
string
The desktop id of the Desktop.
ContentEncoding string
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
Timeout string
The timeout period for script execution the unit is seconds. Default to: 60.
commandContent
This property is required.
Changes to this property will trigger replacement.
String
The Contents of the Script to Base64 Encoded Transmission.
commandType
This property is required.
Changes to this property will trigger replacement.
String
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
desktopId
This property is required.
Changes to this property will trigger replacement.
String
The desktop id of the Desktop.
contentEncoding String
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
timeout String
The timeout period for script execution the unit is seconds. Default to: 60.
commandContent
This property is required.
Changes to this property will trigger replacement.
string
The Contents of the Script to Base64 Encoded Transmission.
commandType
This property is required.
Changes to this property will trigger replacement.
string
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
desktopId
This property is required.
Changes to this property will trigger replacement.
string
The desktop id of the Desktop.
contentEncoding string
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
timeout string
The timeout period for script execution the unit is seconds. Default to: 60.
command_content
This property is required.
Changes to this property will trigger replacement.
str
The Contents of the Script to Base64 Encoded Transmission.
command_type
This property is required.
Changes to this property will trigger replacement.
str
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
desktop_id
This property is required.
Changes to this property will trigger replacement.
str
The desktop id of the Desktop.
content_encoding str
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
timeout str
The timeout period for script execution the unit is seconds. Default to: 60.
commandContent
This property is required.
Changes to this property will trigger replacement.
String
The Contents of the Script to Base64 Encoded Transmission.
commandType
This property is required.
Changes to this property will trigger replacement.
String
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
desktopId
This property is required.
Changes to this property will trigger replacement.
String
The desktop id of the Desktop.
contentEncoding String
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
timeout String
The timeout period for script execution the unit is seconds. Default to: 60.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Status string
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
Id string
The provider-assigned unique ID for this managed resource.
Status string
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
id String
The provider-assigned unique ID for this managed resource.
status String
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
id string
The provider-assigned unique ID for this managed resource.
status string
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
id str
The provider-assigned unique ID for this managed resource.
status str
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
id String
The provider-assigned unique ID for this managed resource.
status String
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.

Look up Existing Command Resource

Get an existing Command 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?: CommandState, opts?: CustomResourceOptions): Command
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        command_content: Optional[str] = None,
        command_type: Optional[str] = None,
        content_encoding: Optional[str] = None,
        desktop_id: Optional[str] = None,
        status: Optional[str] = None,
        timeout: Optional[str] = None) -> Command
func GetCommand(ctx *Context, name string, id IDInput, state *CommandState, opts ...ResourceOption) (*Command, error)
public static Command Get(string name, Input<string> id, CommandState? state, CustomResourceOptions? opts = null)
public static Command get(String name, Output<String> id, CommandState state, CustomResourceOptions options)
resources:  _:    type: alicloud:eds:Command    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
CommandContent Changes to this property will trigger replacement. string
The Contents of the Script to Base64 Encoded Transmission.
CommandType Changes to this property will trigger replacement. string
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
ContentEncoding string
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
DesktopId Changes to this property will trigger replacement. string
The desktop id of the Desktop.
Status string
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
Timeout string
The timeout period for script execution the unit is seconds. Default to: 60.
CommandContent Changes to this property will trigger replacement. string
The Contents of the Script to Base64 Encoded Transmission.
CommandType Changes to this property will trigger replacement. string
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
ContentEncoding string
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
DesktopId Changes to this property will trigger replacement. string
The desktop id of the Desktop.
Status string
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
Timeout string
The timeout period for script execution the unit is seconds. Default to: 60.
commandContent Changes to this property will trigger replacement. String
The Contents of the Script to Base64 Encoded Transmission.
commandType Changes to this property will trigger replacement. String
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
contentEncoding String
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
desktopId Changes to this property will trigger replacement. String
The desktop id of the Desktop.
status String
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
timeout String
The timeout period for script execution the unit is seconds. Default to: 60.
commandContent Changes to this property will trigger replacement. string
The Contents of the Script to Base64 Encoded Transmission.
commandType Changes to this property will trigger replacement. string
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
contentEncoding string
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
desktopId Changes to this property will trigger replacement. string
The desktop id of the Desktop.
status string
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
timeout string
The timeout period for script execution the unit is seconds. Default to: 60.
command_content Changes to this property will trigger replacement. str
The Contents of the Script to Base64 Encoded Transmission.
command_type Changes to this property will trigger replacement. str
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
content_encoding str
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
desktop_id Changes to this property will trigger replacement. str
The desktop id of the Desktop.
status str
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
timeout str
The timeout period for script execution the unit is seconds. Default to: 60.
commandContent Changes to this property will trigger replacement. String
The Contents of the Script to Base64 Encoded Transmission.
commandType Changes to this property will trigger replacement. String
The Script Type. Valid values: RunBatScript, RunPowerShellScript.
contentEncoding String
That Returns the Data Encoding Method. Valid values: Base64, PlainText.
desktopId Changes to this property will trigger replacement. String
The desktop id of the Desktop.
status String
Script Is Executed in the Overall Implementation of the State. Valid values: Pending, Failed, PartialFailed, Running, Stopped, Stopping, Finished, Success.
timeout String
The timeout period for script execution the unit is seconds. Default to: 60.

Import

ECD Command can be imported using the id, e.g.

$ pulumi import alicloud:eds/command:Command example <id>
Copy

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.