alicloud logo
Alibaba Cloud v3.34.0, Mar 17 23

alicloud.eds.Command

Provides a ECD Command resource.

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

NOTE: Available in v1.146.0+.

Example Usage

Basic Usage

using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var defaultSimpleOfficeSite = new AliCloud.Eds.SimpleOfficeSite("defaultSimpleOfficeSite", new()
    {
        CidrBlock = "172.16.0.0/12",
        DesktopAccessType = "Internet",
        OfficeSiteName = "your_office_site_name",
    });

    var defaultBundles = AliCloud.Eds.GetBundles.Invoke(new()
    {
        BundleType = "SYSTEM",
        NameRegex = "windows",
    });

    var defaultEcdPolicyGroup = new AliCloud.Eds.EcdPolicyGroup("defaultEcdPolicyGroup", new()
    {
        PolicyGroupName = "your_policy_group_name",
        Clipboard = "readwrite",
        LocalDrive = "read",
        AuthorizeAccessPolicyRules = new[]
        {
            new AliCloud.Eds.Inputs.EcdPolicyGroupAuthorizeAccessPolicyRuleArgs
            {
                Description = "example_value",
                CidrIp = "1.2.3.4/24",
            },
        },
        AuthorizeSecurityPolicyRules = new[]
        {
            new AliCloud.Eds.Inputs.EcdPolicyGroupAuthorizeSecurityPolicyRuleArgs
            {
                Type = "inflow",
                Policy = "accept",
                Description = "example_value",
                PortRange = "80/80",
                IpProtocol = "TCP",
                Priority = "1",
                CidrIp = "0.0.0.0/0",
            },
        },
    });

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

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

});
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/eds"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		defaultSimpleOfficeSite, err := eds.NewSimpleOfficeSite(ctx, "defaultSimpleOfficeSite", &eds.SimpleOfficeSiteArgs{
			CidrBlock:         pulumi.String("172.16.0.0/12"),
			DesktopAccessType: pulumi.String("Internet"),
			OfficeSiteName:    pulumi.String("your_office_site_name"),
		})
		if err != nil {
			return err
		}
		defaultBundles, err := eds.GetBundles(ctx, &eds.GetBundlesArgs{
			BundleType: pulumi.StringRef("SYSTEM"),
			NameRegex:  pulumi.StringRef("windows"),
		}, nil)
		if err != nil {
			return err
		}
		defaultEcdPolicyGroup, err := eds.NewEcdPolicyGroup(ctx, "defaultEcdPolicyGroup", &eds.EcdPolicyGroupArgs{
			PolicyGroupName: pulumi.String("your_policy_group_name"),
			Clipboard:       pulumi.String("readwrite"),
			LocalDrive:      pulumi.String("read"),
			AuthorizeAccessPolicyRules: eds.EcdPolicyGroupAuthorizeAccessPolicyRuleArray{
				&eds.EcdPolicyGroupAuthorizeAccessPolicyRuleArgs{
					Description: pulumi.String("example_value"),
					CidrIp:      pulumi.String("1.2.3.4/24"),
				},
			},
			AuthorizeSecurityPolicyRules: eds.EcdPolicyGroupAuthorizeSecurityPolicyRuleArray{
				&eds.EcdPolicyGroupAuthorizeSecurityPolicyRuleArgs{
					Type:        pulumi.String("inflow"),
					Policy:      pulumi.String("accept"),
					Description: pulumi.String("example_value"),
					PortRange:   pulumi.String("80/80"),
					IpProtocol:  pulumi.String("TCP"),
					Priority:    pulumi.String("1"),
					CidrIp:      pulumi.String("0.0.0.0/0"),
				},
			},
		})
		if err != nil {
			return err
		}
		defaultDesktop, err := eds.NewDesktop(ctx, "defaultDesktop", &eds.DesktopArgs{
			OfficeSiteId:  defaultSimpleOfficeSite.ID(),
			PolicyGroupId: defaultEcdPolicyGroup.ID(),
			BundleId:      *pulumi.String(defaultBundles.Bundles[0].Id),
			DesktopName:   pulumi.Any(_var.Name),
		})
		if err != nil {
			return err
		}
		_, err = eds.NewCommand(ctx, "defaultCommand", &eds.CommandArgs{
			CommandContent: pulumi.String("ipconfig"),
			CommandType:    pulumi.String("RunPowerShellScript"),
			DesktopId:      defaultDesktop.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.eds.SimpleOfficeSite;
import com.pulumi.alicloud.eds.SimpleOfficeSiteArgs;
import com.pulumi.alicloud.eds.EdsFunctions;
import com.pulumi.alicloud.eds.inputs.GetBundlesArgs;
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.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) {
        var defaultSimpleOfficeSite = new SimpleOfficeSite("defaultSimpleOfficeSite", SimpleOfficeSiteArgs.builder()        
            .cidrBlock("172.16.0.0/12")
            .desktopAccessType("Internet")
            .officeSiteName("your_office_site_name")
            .build());

        final var defaultBundles = EdsFunctions.getBundles(GetBundlesArgs.builder()
            .bundleType("SYSTEM")
            .nameRegex("windows")
            .build());

        var defaultEcdPolicyGroup = new EcdPolicyGroup("defaultEcdPolicyGroup", EcdPolicyGroupArgs.builder()        
            .policyGroupName("your_policy_group_name")
            .clipboard("readwrite")
            .localDrive("read")
            .authorizeAccessPolicyRules(EcdPolicyGroupAuthorizeAccessPolicyRuleArgs.builder()
                .description("example_value")
                .cidrIp("1.2.3.4/24")
                .build())
            .authorizeSecurityPolicyRules(EcdPolicyGroupAuthorizeSecurityPolicyRuleArgs.builder()
                .type("inflow")
                .policy("accept")
                .description("example_value")
                .portRange("80/80")
                .ipProtocol("TCP")
                .priority("1")
                .cidrIp("0.0.0.0/0")
                .build())
            .build());

        var defaultDesktop = new Desktop("defaultDesktop", DesktopArgs.builder()        
            .officeSiteId(defaultSimpleOfficeSite.id())
            .policyGroupId(defaultEcdPolicyGroup.id())
            .bundleId(defaultBundles.applyValue(getBundlesResult -> getBundlesResult.bundles()[0].id()))
            .desktopName(var_.name())
            .build());

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

    }
}
import pulumi
import pulumi_alicloud as alicloud

default_simple_office_site = alicloud.eds.SimpleOfficeSite("defaultSimpleOfficeSite",
    cidr_block="172.16.0.0/12",
    desktop_access_type="Internet",
    office_site_name="your_office_site_name")
default_bundles = alicloud.eds.get_bundles(bundle_type="SYSTEM",
    name_regex="windows")
default_ecd_policy_group = alicloud.eds.EcdPolicyGroup("defaultEcdPolicyGroup",
    policy_group_name="your_policy_group_name",
    clipboard="readwrite",
    local_drive="read",
    authorize_access_policy_rules=[alicloud.eds.EcdPolicyGroupAuthorizeAccessPolicyRuleArgs(
        description="example_value",
        cidr_ip="1.2.3.4/24",
    )],
    authorize_security_policy_rules=[alicloud.eds.EcdPolicyGroupAuthorizeSecurityPolicyRuleArgs(
        type="inflow",
        policy="accept",
        description="example_value",
        port_range="80/80",
        ip_protocol="TCP",
        priority="1",
        cidr_ip="0.0.0.0/0",
    )])
default_desktop = alicloud.eds.Desktop("defaultDesktop",
    office_site_id=default_simple_office_site.id,
    policy_group_id=default_ecd_policy_group.id,
    bundle_id=default_bundles.bundles[0].id,
    desktop_name=var["name"])
default_command = alicloud.eds.Command("defaultCommand",
    command_content="ipconfig",
    command_type="RunPowerShellScript",
    desktop_id=default_desktop.id)
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const defaultSimpleOfficeSite = new alicloud.eds.SimpleOfficeSite("defaultSimpleOfficeSite", {
    cidrBlock: "172.16.0.0/12",
    desktopAccessType: "Internet",
    officeSiteName: "your_office_site_name",
});
const defaultBundles = alicloud.eds.getBundles({
    bundleType: "SYSTEM",
    nameRegex: "windows",
});
const defaultEcdPolicyGroup = new alicloud.eds.EcdPolicyGroup("defaultEcdPolicyGroup", {
    policyGroupName: "your_policy_group_name",
    clipboard: "readwrite",
    localDrive: "read",
    authorizeAccessPolicyRules: [{
        description: "example_value",
        cidrIp: "1.2.3.4/24",
    }],
    authorizeSecurityPolicyRules: [{
        type: "inflow",
        policy: "accept",
        description: "example_value",
        portRange: "80/80",
        ipProtocol: "TCP",
        priority: "1",
        cidrIp: "0.0.0.0/0",
    }],
});
const defaultDesktop = new alicloud.eds.Desktop("defaultDesktop", {
    officeSiteId: defaultSimpleOfficeSite.id,
    policyGroupId: defaultEcdPolicyGroup.id,
    bundleId: defaultBundles.then(defaultBundles => defaultBundles.bundles?.[0]?.id),
    desktopName: _var.name,
});
const defaultCommand = new alicloud.eds.Command("defaultCommand", {
    commandContent: "ipconfig",
    commandType: "RunPowerShellScript",
    desktopId: defaultDesktop.id,
});
resources:
  defaultSimpleOfficeSite:
    type: alicloud:eds:SimpleOfficeSite
    properties:
      cidrBlock: 172.16.0.0/12
      desktopAccessType: Internet
      officeSiteName: your_office_site_name
  defaultEcdPolicyGroup:
    type: alicloud:eds:EcdPolicyGroup
    properties:
      policyGroupName: your_policy_group_name
      clipboard: readwrite
      localDrive: read
      authorizeAccessPolicyRules:
        - description: example_value
          cidrIp: 1.2.3.4/24
      authorizeSecurityPolicyRules:
        - type: inflow
          policy: accept
          description: example_value
          portRange: 80/80
          ipProtocol: TCP
          priority: '1'
          cidrIp: 0.0.0.0/0
  defaultDesktop:
    type: alicloud:eds:Desktop
    properties:
      officeSiteId: ${defaultSimpleOfficeSite.id}
      policyGroupId: ${defaultEcdPolicyGroup.id}
      bundleId: ${defaultBundles.bundles[0].id}
      desktopName: ${var.name}
  defaultCommand:
    type: alicloud:eds:Command
    properties:
      commandContent: ipconfig
      commandType: RunPowerShellScript
      desktopId: ${defaultDesktop.id}
variables:
  defaultBundles:
    fn::invoke:
      Function: alicloud:eds:getBundles
      Arguments:
        bundleType: SYSTEM
        nameRegex: windows

Create Command Resource

new Command(name: string, args: CommandArgs, opts?: CustomResourceOptions);
@overload
def Command(resource_name: 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,
            timeout: Optional[str] = None)
@overload
def Command(resource_name: str,
            args: CommandArgs,
            opts: Optional[ResourceOptions] = 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.

name string
The unique name of the resource.
args CommandArgs
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 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 string
The unique name of the resource.
args CommandArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args CommandArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args CommandArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

The Command resource accepts the following input properties:

CommandContent string

The Contents of the Script to Base64 Encoded Transmission.

CommandType string

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

DesktopId 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 string

The Contents of the Script to Base64 Encoded Transmission.

CommandType string

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

DesktopId 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 String

The Contents of the Script to Base64 Encoded Transmission.

commandType String

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

desktopId 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 string

The Contents of the Script to Base64 Encoded Transmission.

commandType string

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

desktopId 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 str

The Contents of the Script to Base64 Encoded Transmission.

command_type str

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

desktop_id 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 String

The Contents of the Script to Base64 Encoded Transmission.

commandType String

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

desktopId 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)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CommandContent string

The Contents of the Script to Base64 Encoded Transmission.

CommandType string

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

ContentEncoding string

That Returns the Data Encoding Method. Valid values: Base64, PlainText.

DesktopId 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 string

The Contents of the Script to Base64 Encoded Transmission.

CommandType string

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

ContentEncoding string

That Returns the Data Encoding Method. Valid values: Base64, PlainText.

DesktopId 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 String

The Contents of the Script to Base64 Encoded Transmission.

commandType String

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

contentEncoding String

That Returns the Data Encoding Method. Valid values: Base64, PlainText.

desktopId 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 string

The Contents of the Script to Base64 Encoded Transmission.

commandType string

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

contentEncoding string

That Returns the Data Encoding Method. Valid values: Base64, PlainText.

desktopId 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 str

The Contents of the Script to Base64 Encoded Transmission.

command_type str

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

content_encoding str

That Returns the Data Encoding Method. Valid values: Base64, PlainText.

desktop_id 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 String

The Contents of the Script to Base64 Encoded Transmission.

commandType String

The Script Type. Valid values: RunBatScript, RunPowerShellScript.

contentEncoding String

That Returns the Data Encoding Method. Valid values: Base64, PlainText.

desktopId 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>

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes

This Pulumi package is based on the alicloud Terraform Provider.