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

alicloud.eds.getSimpleOfficeSites

Explore with Pulumi AI

Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

This data source provides the Ecd Simple Office Sites of the current Alibaba Cloud user.

NOTE: Available in v1.140.0+.

Example Usage

Basic Usage

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

const _default = alicloud.eds.getSimpleOfficeSites({
    ids: ["example_id"],
    status: "REGISTERED",
});
export const desktopAccessType = _default.then(_default => _default.sites?.[0]?.desktopAccessType);
Copy
import pulumi
import pulumi_alicloud as alicloud

default = alicloud.eds.get_simple_office_sites(ids=["example_id"],
    status="REGISTERED")
pulumi.export("desktopAccessType", default.sites[0].desktop_access_type)
Copy
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 {
		_default, err := eds.GetSimpleOfficeSites(ctx, &eds.GetSimpleOfficeSitesArgs{
			Ids: []string{
				"example_id",
			},
			Status: pulumi.StringRef("REGISTERED"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("desktopAccessType", _default.Sites[0].DesktopAccessType)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var @default = AliCloud.Eds.GetSimpleOfficeSites.Invoke(new()
    {
        Ids = new[]
        {
            "example_id",
        },
        Status = "REGISTERED",
    });

    return new Dictionary<string, object?>
    {
        ["desktopAccessType"] = @default.Apply(@default => @default.Apply(getSimpleOfficeSitesResult => getSimpleOfficeSitesResult.Sites[0]?.DesktopAccessType)),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.eds.EdsFunctions;
import com.pulumi.alicloud.eds.inputs.GetSimpleOfficeSitesArgs;
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 default = EdsFunctions.getSimpleOfficeSites(GetSimpleOfficeSitesArgs.builder()
            .ids("example_id")
            .status("REGISTERED")
            .build());

        ctx.export("desktopAccessType", default_.sites()[0].desktopAccessType());
    }
}
Copy
variables:
  default:
    fn::invoke:
      function: alicloud:eds:getSimpleOfficeSites
      arguments:
        ids:
          - example_id
        status: REGISTERED
outputs:
  desktopAccessType: ${default.sites[0].desktopAccessType}
Copy

Using getSimpleOfficeSites

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getSimpleOfficeSites(args: GetSimpleOfficeSitesArgs, opts?: InvokeOptions): Promise<GetSimpleOfficeSitesResult>
function getSimpleOfficeSitesOutput(args: GetSimpleOfficeSitesOutputArgs, opts?: InvokeOptions): Output<GetSimpleOfficeSitesResult>
Copy
def get_simple_office_sites(ids: Optional[Sequence[str]] = None,
                            name_regex: Optional[str] = None,
                            output_file: Optional[str] = None,
                            status: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetSimpleOfficeSitesResult
def get_simple_office_sites_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            name_regex: Optional[pulumi.Input[str]] = None,
                            output_file: Optional[pulumi.Input[str]] = None,
                            status: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetSimpleOfficeSitesResult]
Copy
func GetSimpleOfficeSites(ctx *Context, args *GetSimpleOfficeSitesArgs, opts ...InvokeOption) (*GetSimpleOfficeSitesResult, error)
func GetSimpleOfficeSitesOutput(ctx *Context, args *GetSimpleOfficeSitesOutputArgs, opts ...InvokeOption) GetSimpleOfficeSitesResultOutput
Copy

> Note: This function is named GetSimpleOfficeSites in the Go SDK.

public static class GetSimpleOfficeSites 
{
    public static Task<GetSimpleOfficeSitesResult> InvokeAsync(GetSimpleOfficeSitesArgs args, InvokeOptions? opts = null)
    public static Output<GetSimpleOfficeSitesResult> Invoke(GetSimpleOfficeSitesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSimpleOfficeSitesResult> getSimpleOfficeSites(GetSimpleOfficeSitesArgs args, InvokeOptions options)
public static Output<GetSimpleOfficeSitesResult> getSimpleOfficeSites(GetSimpleOfficeSitesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: alicloud:eds/getSimpleOfficeSites:getSimpleOfficeSites
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Ids Changes to this property will trigger replacement. List<string>
A list of Simple Office Site IDs.
NameRegex Changes to this property will trigger replacement. string
A regex string to filter results by Simple Office Site name.
OutputFile string
File name where to save data source results (after running pulumi preview).
Status Changes to this property will trigger replacement. string
Workspace State. Valid values: REGISTERED,REGISTERING.
Ids Changes to this property will trigger replacement. []string
A list of Simple Office Site IDs.
NameRegex Changes to this property will trigger replacement. string
A regex string to filter results by Simple Office Site name.
OutputFile string
File name where to save data source results (after running pulumi preview).
Status Changes to this property will trigger replacement. string
Workspace State. Valid values: REGISTERED,REGISTERING.
ids Changes to this property will trigger replacement. List<String>
A list of Simple Office Site IDs.
nameRegex Changes to this property will trigger replacement. String
A regex string to filter results by Simple Office Site name.
outputFile String
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. String
Workspace State. Valid values: REGISTERED,REGISTERING.
ids Changes to this property will trigger replacement. string[]
A list of Simple Office Site IDs.
nameRegex Changes to this property will trigger replacement. string
A regex string to filter results by Simple Office Site name.
outputFile string
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. string
Workspace State. Valid values: REGISTERED,REGISTERING.
ids Changes to this property will trigger replacement. Sequence[str]
A list of Simple Office Site IDs.
name_regex Changes to this property will trigger replacement. str
A regex string to filter results by Simple Office Site name.
output_file str
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. str
Workspace State. Valid values: REGISTERED,REGISTERING.
ids Changes to this property will trigger replacement. List<String>
A list of Simple Office Site IDs.
nameRegex Changes to this property will trigger replacement. String
A regex string to filter results by Simple Office Site name.
outputFile String
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. String
Workspace State. Valid values: REGISTERED,REGISTERING.

getSimpleOfficeSites Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Ids List<string>
Names List<string>
Sites List<Pulumi.AliCloud.Eds.Outputs.GetSimpleOfficeSitesSite>
NameRegex string
OutputFile string
Status string
Id string
The provider-assigned unique ID for this managed resource.
Ids []string
Names []string
Sites []GetSimpleOfficeSitesSite
NameRegex string
OutputFile string
Status string
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
names List<String>
sites List<GetSimpleOfficeSitesSite>
nameRegex String
outputFile String
status String
id string
The provider-assigned unique ID for this managed resource.
ids string[]
names string[]
sites GetSimpleOfficeSitesSite[]
nameRegex string
outputFile string
status string
id str
The provider-assigned unique ID for this managed resource.
ids Sequence[str]
names Sequence[str]
sites Sequence[GetSimpleOfficeSitesSite]
name_regex str
output_file str
status str
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
names List<String>
sites List<Property Map>
nameRegex String
outputFile String
status String

Supporting Types

GetSimpleOfficeSitesSite

Bandwidth This property is required. int
The Internet Bandwidth Peak. It has been deprecated from version 1.142.0 and can be found in the new datasource alicloud_ecd_network_packages.

Deprecated: Field 'bandwidth' has been deprecated from provider version 1.142.0.

CenId This property is required. string
Cloud Enterprise Network Instance Id.
CidrBlock This property is required. string
Workspace Corresponds to the Security Office Network of IPv4 Segment.
CreateTime This property is required. string
Workspace Creation Time.
CustomSecurityGroupId This property is required. string
Security Group ID.
DesktopAccessType This property is required. string
Connect to the Cloud Desktop Allows the Use of the Access Mode of. Possible Values: the Internet: Only Allows the Client to Public Cloud Desktop. Virtual Private Cloud (VPC): Only Allows in the Virtual Private Cloud (VPC) in the Client to Connect to the Cloud Desktop. Any: Not by Way of Limitation. Use Client to Connect to the Cloud Desktop When It Is Possible to Choose the Connection.
DesktopVpcEndpoint This property is required. string
The Desktop Vpc Endpoint.
DnsAddresses This property is required. List<string>
Enterprise Ad Corresponding DNS Address.
DnsUserName This property is required. string
Easy-to-Use DNS Name.
DomainName This property is required. string
Enterprise of Ad Domain Name.
DomainPassword This property is required. string
Domain of the User Who Will Administer This Target Application Password.
DomainUserName This property is required. string
The Domain Administrator's Username.
EnableAdminAccess This property is required. bool
Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
EnableCrossDesktopAccess This property is required. bool
Enable Cross-Desktop Access.
EnableInternetAccess This property is required. bool
Whether the Open Internet Access Function.

Deprecated: Field 'enable_internet_access' has been deprecated from provider version 1.142.0.

FileSystemIds This property is required. List<string>
NAS File System ID.
Id This property is required. string
The ID of the Simple Office Site.
MfaEnabled This property is required. bool
Whether to Enable Multi-Factor Authentication MFA.
NetworkPackageId This property is required. string
Internet Access ID.
OfficeSiteId This property is required. string
The Workspace ID.
OfficeSiteType This property is required. string
Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
SimpleOfficeSiteName This property is required. string
The simple office site name.
SsoEnabled This property is required. bool
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
SsoStatus This property is required. bool
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
Status This property is required. string
Workspace State. Possible Values: Registering: Registered in the Registered: Registered.
SubDnsAddresses This property is required. List<string>
AD Subdomain of the DNS Address.
SubDomainName This property is required. string
AD Domain DNS Name.
TrustPassword This property is required. string
AD Trust Password.
VpcId This property is required. string
Security Office VPC ID.
VswitchIds This property is required. List<string>
The vswitch ids.
Bandwidth This property is required. int
The Internet Bandwidth Peak. It has been deprecated from version 1.142.0 and can be found in the new datasource alicloud_ecd_network_packages.

Deprecated: Field 'bandwidth' has been deprecated from provider version 1.142.0.

CenId This property is required. string
Cloud Enterprise Network Instance Id.
CidrBlock This property is required. string
Workspace Corresponds to the Security Office Network of IPv4 Segment.
CreateTime This property is required. string
Workspace Creation Time.
CustomSecurityGroupId This property is required. string
Security Group ID.
DesktopAccessType This property is required. string
Connect to the Cloud Desktop Allows the Use of the Access Mode of. Possible Values: the Internet: Only Allows the Client to Public Cloud Desktop. Virtual Private Cloud (VPC): Only Allows in the Virtual Private Cloud (VPC) in the Client to Connect to the Cloud Desktop. Any: Not by Way of Limitation. Use Client to Connect to the Cloud Desktop When It Is Possible to Choose the Connection.
DesktopVpcEndpoint This property is required. string
The Desktop Vpc Endpoint.
DnsAddresses This property is required. []string
Enterprise Ad Corresponding DNS Address.
DnsUserName This property is required. string
Easy-to-Use DNS Name.
DomainName This property is required. string
Enterprise of Ad Domain Name.
DomainPassword This property is required. string
Domain of the User Who Will Administer This Target Application Password.
DomainUserName This property is required. string
The Domain Administrator's Username.
EnableAdminAccess This property is required. bool
Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
EnableCrossDesktopAccess This property is required. bool
Enable Cross-Desktop Access.
EnableInternetAccess This property is required. bool
Whether the Open Internet Access Function.

Deprecated: Field 'enable_internet_access' has been deprecated from provider version 1.142.0.

FileSystemIds This property is required. []string
NAS File System ID.
Id This property is required. string
The ID of the Simple Office Site.
MfaEnabled This property is required. bool
Whether to Enable Multi-Factor Authentication MFA.
NetworkPackageId This property is required. string
Internet Access ID.
OfficeSiteId This property is required. string
The Workspace ID.
OfficeSiteType This property is required. string
Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
SimpleOfficeSiteName This property is required. string
The simple office site name.
SsoEnabled This property is required. bool
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
SsoStatus This property is required. bool
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
Status This property is required. string
Workspace State. Possible Values: Registering: Registered in the Registered: Registered.
SubDnsAddresses This property is required. []string
AD Subdomain of the DNS Address.
SubDomainName This property is required. string
AD Domain DNS Name.
TrustPassword This property is required. string
AD Trust Password.
VpcId This property is required. string
Security Office VPC ID.
VswitchIds This property is required. []string
The vswitch ids.
bandwidth This property is required. Integer
The Internet Bandwidth Peak. It has been deprecated from version 1.142.0 and can be found in the new datasource alicloud_ecd_network_packages.

Deprecated: Field 'bandwidth' has been deprecated from provider version 1.142.0.

cenId This property is required. String
Cloud Enterprise Network Instance Id.
cidrBlock This property is required. String
Workspace Corresponds to the Security Office Network of IPv4 Segment.
createTime This property is required. String
Workspace Creation Time.
customSecurityGroupId This property is required. String
Security Group ID.
desktopAccessType This property is required. String
Connect to the Cloud Desktop Allows the Use of the Access Mode of. Possible Values: the Internet: Only Allows the Client to Public Cloud Desktop. Virtual Private Cloud (VPC): Only Allows in the Virtual Private Cloud (VPC) in the Client to Connect to the Cloud Desktop. Any: Not by Way of Limitation. Use Client to Connect to the Cloud Desktop When It Is Possible to Choose the Connection.
desktopVpcEndpoint This property is required. String
The Desktop Vpc Endpoint.
dnsAddresses This property is required. List<String>
Enterprise Ad Corresponding DNS Address.
dnsUserName This property is required. String
Easy-to-Use DNS Name.
domainName This property is required. String
Enterprise of Ad Domain Name.
domainPassword This property is required. String
Domain of the User Who Will Administer This Target Application Password.
domainUserName This property is required. String
The Domain Administrator's Username.
enableAdminAccess This property is required. Boolean
Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
enableCrossDesktopAccess This property is required. Boolean
Enable Cross-Desktop Access.
enableInternetAccess This property is required. Boolean
Whether the Open Internet Access Function.

Deprecated: Field 'enable_internet_access' has been deprecated from provider version 1.142.0.

fileSystemIds This property is required. List<String>
NAS File System ID.
id This property is required. String
The ID of the Simple Office Site.
mfaEnabled This property is required. Boolean
Whether to Enable Multi-Factor Authentication MFA.
networkPackageId This property is required. String
Internet Access ID.
officeSiteId This property is required. String
The Workspace ID.
officeSiteType This property is required. String
Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
simpleOfficeSiteName This property is required. String
The simple office site name.
ssoEnabled This property is required. Boolean
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
ssoStatus This property is required. Boolean
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
status This property is required. String
Workspace State. Possible Values: Registering: Registered in the Registered: Registered.
subDnsAddresses This property is required. List<String>
AD Subdomain of the DNS Address.
subDomainName This property is required. String
AD Domain DNS Name.
trustPassword This property is required. String
AD Trust Password.
vpcId This property is required. String
Security Office VPC ID.
vswitchIds This property is required. List<String>
The vswitch ids.
bandwidth This property is required. number
The Internet Bandwidth Peak. It has been deprecated from version 1.142.0 and can be found in the new datasource alicloud_ecd_network_packages.

Deprecated: Field 'bandwidth' has been deprecated from provider version 1.142.0.

cenId This property is required. string
Cloud Enterprise Network Instance Id.
cidrBlock This property is required. string
Workspace Corresponds to the Security Office Network of IPv4 Segment.
createTime This property is required. string
Workspace Creation Time.
customSecurityGroupId This property is required. string
Security Group ID.
desktopAccessType This property is required. string
Connect to the Cloud Desktop Allows the Use of the Access Mode of. Possible Values: the Internet: Only Allows the Client to Public Cloud Desktop. Virtual Private Cloud (VPC): Only Allows in the Virtual Private Cloud (VPC) in the Client to Connect to the Cloud Desktop. Any: Not by Way of Limitation. Use Client to Connect to the Cloud Desktop When It Is Possible to Choose the Connection.
desktopVpcEndpoint This property is required. string
The Desktop Vpc Endpoint.
dnsAddresses This property is required. string[]
Enterprise Ad Corresponding DNS Address.
dnsUserName This property is required. string
Easy-to-Use DNS Name.
domainName This property is required. string
Enterprise of Ad Domain Name.
domainPassword This property is required. string
Domain of the User Who Will Administer This Target Application Password.
domainUserName This property is required. string
The Domain Administrator's Username.
enableAdminAccess This property is required. boolean
Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
enableCrossDesktopAccess This property is required. boolean
Enable Cross-Desktop Access.
enableInternetAccess This property is required. boolean
Whether the Open Internet Access Function.

Deprecated: Field 'enable_internet_access' has been deprecated from provider version 1.142.0.

fileSystemIds This property is required. string[]
NAS File System ID.
id This property is required. string
The ID of the Simple Office Site.
mfaEnabled This property is required. boolean
Whether to Enable Multi-Factor Authentication MFA.
networkPackageId This property is required. string
Internet Access ID.
officeSiteId This property is required. string
The Workspace ID.
officeSiteType This property is required. string
Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
simpleOfficeSiteName This property is required. string
The simple office site name.
ssoEnabled This property is required. boolean
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
ssoStatus This property is required. boolean
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
status This property is required. string
Workspace State. Possible Values: Registering: Registered in the Registered: Registered.
subDnsAddresses This property is required. string[]
AD Subdomain of the DNS Address.
subDomainName This property is required. string
AD Domain DNS Name.
trustPassword This property is required. string
AD Trust Password.
vpcId This property is required. string
Security Office VPC ID.
vswitchIds This property is required. string[]
The vswitch ids.
bandwidth This property is required. int
The Internet Bandwidth Peak. It has been deprecated from version 1.142.0 and can be found in the new datasource alicloud_ecd_network_packages.

Deprecated: Field 'bandwidth' has been deprecated from provider version 1.142.0.

cen_id This property is required. str
Cloud Enterprise Network Instance Id.
cidr_block This property is required. str
Workspace Corresponds to the Security Office Network of IPv4 Segment.
create_time This property is required. str
Workspace Creation Time.
custom_security_group_id This property is required. str
Security Group ID.
desktop_access_type This property is required. str
Connect to the Cloud Desktop Allows the Use of the Access Mode of. Possible Values: the Internet: Only Allows the Client to Public Cloud Desktop. Virtual Private Cloud (VPC): Only Allows in the Virtual Private Cloud (VPC) in the Client to Connect to the Cloud Desktop. Any: Not by Way of Limitation. Use Client to Connect to the Cloud Desktop When It Is Possible to Choose the Connection.
desktop_vpc_endpoint This property is required. str
The Desktop Vpc Endpoint.
dns_addresses This property is required. Sequence[str]
Enterprise Ad Corresponding DNS Address.
dns_user_name This property is required. str
Easy-to-Use DNS Name.
domain_name This property is required. str
Enterprise of Ad Domain Name.
domain_password This property is required. str
Domain of the User Who Will Administer This Target Application Password.
domain_user_name This property is required. str
The Domain Administrator's Username.
enable_admin_access This property is required. bool
Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
enable_cross_desktop_access This property is required. bool
Enable Cross-Desktop Access.
enable_internet_access This property is required. bool
Whether the Open Internet Access Function.

Deprecated: Field 'enable_internet_access' has been deprecated from provider version 1.142.0.

file_system_ids This property is required. Sequence[str]
NAS File System ID.
id This property is required. str
The ID of the Simple Office Site.
mfa_enabled This property is required. bool
Whether to Enable Multi-Factor Authentication MFA.
network_package_id This property is required. str
Internet Access ID.
office_site_id This property is required. str
The Workspace ID.
office_site_type This property is required. str
Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
simple_office_site_name This property is required. str
The simple office site name.
sso_enabled This property is required. bool
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
sso_status This property is required. bool
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
status This property is required. str
Workspace State. Possible Values: Registering: Registered in the Registered: Registered.
sub_dns_addresses This property is required. Sequence[str]
AD Subdomain of the DNS Address.
sub_domain_name This property is required. str
AD Domain DNS Name.
trust_password This property is required. str
AD Trust Password.
vpc_id This property is required. str
Security Office VPC ID.
vswitch_ids This property is required. Sequence[str]
The vswitch ids.
bandwidth This property is required. Number
The Internet Bandwidth Peak. It has been deprecated from version 1.142.0 and can be found in the new datasource alicloud_ecd_network_packages.

Deprecated: Field 'bandwidth' has been deprecated from provider version 1.142.0.

cenId This property is required. String
Cloud Enterprise Network Instance Id.
cidrBlock This property is required. String
Workspace Corresponds to the Security Office Network of IPv4 Segment.
createTime This property is required. String
Workspace Creation Time.
customSecurityGroupId This property is required. String
Security Group ID.
desktopAccessType This property is required. String
Connect to the Cloud Desktop Allows the Use of the Access Mode of. Possible Values: the Internet: Only Allows the Client to Public Cloud Desktop. Virtual Private Cloud (VPC): Only Allows in the Virtual Private Cloud (VPC) in the Client to Connect to the Cloud Desktop. Any: Not by Way of Limitation. Use Client to Connect to the Cloud Desktop When It Is Possible to Choose the Connection.
desktopVpcEndpoint This property is required. String
The Desktop Vpc Endpoint.
dnsAddresses This property is required. List<String>
Enterprise Ad Corresponding DNS Address.
dnsUserName This property is required. String
Easy-to-Use DNS Name.
domainName This property is required. String
Enterprise of Ad Domain Name.
domainPassword This property is required. String
Domain of the User Who Will Administer This Target Application Password.
domainUserName This property is required. String
The Domain Administrator's Username.
enableAdminAccess This property is required. Boolean
Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
enableCrossDesktopAccess This property is required. Boolean
Enable Cross-Desktop Access.
enableInternetAccess This property is required. Boolean
Whether the Open Internet Access Function.

Deprecated: Field 'enable_internet_access' has been deprecated from provider version 1.142.0.

fileSystemIds This property is required. List<String>
NAS File System ID.
id This property is required. String
The ID of the Simple Office Site.
mfaEnabled This property is required. Boolean
Whether to Enable Multi-Factor Authentication MFA.
networkPackageId This property is required. String
Internet Access ID.
officeSiteId This property is required. String
The Workspace ID.
officeSiteType This property is required. String
Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
simpleOfficeSiteName This property is required. String
The simple office site name.
ssoEnabled This property is required. Boolean
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
ssoStatus This property is required. Boolean
Whether to Enable Single Sign-on (SSO) for User-Based SSO.
status This property is required. String
Workspace State. Possible Values: Registering: Registered in the Registered: Registered.
subDnsAddresses This property is required. List<String>
AD Subdomain of the DNS Address.
subDomainName This property is required. String
AD Domain DNS Name.
trustPassword This property is required. String
AD Trust Password.
vpcId This property is required. String
Security Office VPC ID.
vswitchIds This property is required. List<String>
The vswitch ids.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi