Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi
alicloud.eds.getSimpleOfficeSites
Explore with Pulumi AI
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);
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)
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
})
}
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)),
};
});
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());
}
}
variables:
default:
fn::invoke:
function: alicloud:eds:getSimpleOfficeSites
arguments:
ids:
- example_id
status: REGISTERED
outputs:
desktopAccessType: ${default.sites[0].desktopAccessType}
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>
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]
func GetSimpleOfficeSites(ctx *Context, args *GetSimpleOfficeSitesArgs, opts ...InvokeOption) (*GetSimpleOfficeSitesResult, error)
func GetSimpleOfficeSitesOutput(ctx *Context, args *GetSimpleOfficeSitesOutputArgs, opts ...InvokeOption) GetSimpleOfficeSitesResultOutput
> 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)
}
public static CompletableFuture<GetSimpleOfficeSitesResult> getSimpleOfficeSites(GetSimpleOfficeSitesArgs args, InvokeOptions options)
public static Output<GetSimpleOfficeSitesResult> getSimpleOfficeSites(GetSimpleOfficeSitesArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:eds/getSimpleOfficeSites:getSimpleOfficeSites
arguments:
# arguments dictionary
The following arguments are supported:
- Ids
Changes to this property will trigger replacement.
- A list of Simple Office Site IDs.
- Name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Simple Office Site name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Status
Changes to this property will trigger replacement.
- Workspace State. Valid values:
REGISTERED
,REGISTERING
.
- Ids
Changes to this property will trigger replacement.
- A list of Simple Office Site IDs.
- Name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Simple Office Site name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Status
Changes to this property will trigger replacement.
- Workspace State. Valid values:
REGISTERED
,REGISTERING
.
- ids
Changes to this property will trigger replacement.
- A list of Simple Office Site IDs.
- name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Simple Office Site name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - status
Changes to this property will trigger replacement.
- Workspace State. Valid values:
REGISTERED
,REGISTERING
.
- ids
Changes to this property will trigger replacement.
- A list of Simple Office Site IDs.
- name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Simple Office Site name.
- output
File string - File name where to save data source results (after running
pulumi preview
). - status
Changes to this property will trigger replacement.
- Workspace State. Valid values:
REGISTERED
,REGISTERING
.
- ids
Changes to this property will trigger replacement.
- A list of Simple Office Site IDs.
- name_
regex Changes to this property will trigger replacement.
- 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.
- Workspace State. Valid values:
REGISTERED
,REGISTERING
.
- ids
Changes to this property will trigger replacement.
- A list of Simple Office Site IDs.
- name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Simple Office Site name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - status
Changes to this property will trigger replacement.
- 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.
Ali Cloud. Eds. Outputs. Get Simple Office Sites Site> - Name
Regex string - Output
File string - Status string
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- Sites
[]Get
Simple Office Sites Site - Name
Regex string - Output
File string - Status string
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- sites
List<Get
Simple Office Sites Site> - name
Regex String - output
File String - status String
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- sites
Get
Simple Office Sites Site[] - name
Regex string - output
File string - status string
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- sites
Sequence[Get
Simple Office Sites Site] - 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>
- name
Regex String - output
File 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.
- Cen
Id This property is required. string - Cloud Enterprise Network Instance Id.
- Cidr
Block This property is required. string - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- Create
Time This property is required. string - Workspace Creation Time.
- Custom
Security Group Id This property is required. string - Security Group ID.
- Desktop
Access Type 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.
- Desktop
Vpc Endpoint This property is required. string - The Desktop Vpc Endpoint.
- Dns
Addresses This property is required. List<string> - Enterprise Ad Corresponding DNS Address.
- Dns
User Name This property is required. string - Easy-to-Use DNS Name.
- Domain
Name This property is required. string - Enterprise of Ad Domain Name.
- Domain
Password This property is required. string - Domain of the User Who Will Administer This Target Application Password.
- Domain
User Name This property is required. string - 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.
- File
System Ids This property is required. List<string> - NAS File System ID.
- Id
This property is required. string - 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. string - Internet Access ID.
- Office
Site Id This property is required. string - The Workspace ID.
- Office
Site Type This property is required. string - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- Simple
Office Site Name This property is required. string - 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. string - Workspace State. Possible Values: Registering: Registered in the Registered: Registered.
- Sub
Dns Addresses This property is required. List<string> - AD Subdomain of the DNS Address.
- Sub
Domain Name This property is required. string - AD Domain DNS Name.
- Trust
Password This property is required. string - AD Trust Password.
- Vpc
Id This property is required. string - Security Office VPC ID.
- Vswitch
Ids 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.
- Cen
Id This property is required. string - Cloud Enterprise Network Instance Id.
- Cidr
Block This property is required. string - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- Create
Time This property is required. string - Workspace Creation Time.
- Custom
Security Group Id This property is required. string - Security Group ID.
- Desktop
Access Type 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.
- Desktop
Vpc Endpoint This property is required. string - The Desktop Vpc Endpoint.
- Dns
Addresses This property is required. []string - Enterprise Ad Corresponding DNS Address.
- Dns
User Name This property is required. string - Easy-to-Use DNS Name.
- Domain
Name This property is required. string - Enterprise of Ad Domain Name.
- Domain
Password This property is required. string - Domain of the User Who Will Administer This Target Application Password.
- Domain
User Name This property is required. string - 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.
- File
System Ids This property is required. []string - NAS File System ID.
- Id
This property is required. string - 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. string - Internet Access ID.
- Office
Site Id This property is required. string - The Workspace ID.
- Office
Site Type This property is required. string - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- Simple
Office Site Name This property is required. string - 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. string - Workspace State. Possible Values: Registering: Registered in the Registered: Registered.
- Sub
Dns Addresses This property is required. []string - AD Subdomain of the DNS Address.
- Sub
Domain Name This property is required. string - AD Domain DNS Name.
- Trust
Password This property is required. string - AD Trust Password.
- Vpc
Id This property is required. string - Security Office VPC ID.
- Vswitch
Ids 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.
- cen
Id This property is required. String - Cloud Enterprise Network Instance Id.
- cidr
Block This property is required. String - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- create
Time This property is required. String - Workspace Creation Time.
- custom
Security Group Id This property is required. String - Security Group ID.
- desktop
Access Type 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.
- desktop
Vpc Endpoint This property is required. String - The Desktop Vpc Endpoint.
- dns
Addresses This property is required. List<String> - Enterprise Ad Corresponding DNS Address.
- dns
User Name This property is required. String - Easy-to-Use DNS Name.
- domain
Name This property is required. String - Enterprise of Ad Domain Name.
- domain
Password This property is required. String - Domain of the User Who Will Administer This Target Application Password.
- domain
User Name This property is required. String - The Domain Administrator's Username.
- enable
Admin Access This property is required. Boolean - Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
- enable
Cross Desktop Access This property is required. Boolean - Enable Cross-Desktop Access.
- enable
Internet Access This property is required. Boolean - Whether the Open Internet Access Function.
- file
System Ids This property is required. List<String> - NAS File System ID.
- id
This property is required. String - The ID of the Simple Office Site.
- mfa
Enabled This property is required. Boolean - Whether to Enable Multi-Factor Authentication MFA.
- network
Package Id This property is required. String - Internet Access ID.
- office
Site Id This property is required. String - The Workspace ID.
- office
Site Type This property is required. String - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- simple
Office Site Name This property is required. String - The simple office site name.
- sso
Enabled This property is required. Boolean - Whether to Enable Single Sign-on (SSO) for User-Based SSO.
- sso
Status 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.
- sub
Dns Addresses This property is required. List<String> - AD Subdomain of the DNS Address.
- sub
Domain Name This property is required. String - AD Domain DNS Name.
- trust
Password This property is required. String - AD Trust Password.
- vpc
Id This property is required. String - Security Office VPC ID.
- vswitch
Ids 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.
- cen
Id This property is required. string - Cloud Enterprise Network Instance Id.
- cidr
Block This property is required. string - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- create
Time This property is required. string - Workspace Creation Time.
- custom
Security Group Id This property is required. string - Security Group ID.
- desktop
Access Type 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.
- desktop
Vpc Endpoint This property is required. string - The Desktop Vpc Endpoint.
- dns
Addresses This property is required. string[] - Enterprise Ad Corresponding DNS Address.
- dns
User Name This property is required. string - Easy-to-Use DNS Name.
- domain
Name This property is required. string - Enterprise of Ad Domain Name.
- domain
Password This property is required. string - Domain of the User Who Will Administer This Target Application Password.
- domain
User Name This property is required. string - The Domain Administrator's Username.
- enable
Admin Access This property is required. boolean - Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
- enable
Cross Desktop Access This property is required. boolean - Enable Cross-Desktop Access.
- enable
Internet Access This property is required. boolean - Whether the Open Internet Access Function.
- file
System Ids This property is required. string[] - NAS File System ID.
- id
This property is required. string - The ID of the Simple Office Site.
- mfa
Enabled This property is required. boolean - Whether to Enable Multi-Factor Authentication MFA.
- network
Package Id This property is required. string - Internet Access ID.
- office
Site Id This property is required. string - The Workspace ID.
- office
Site Type This property is required. string - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- simple
Office Site Name This property is required. string - The simple office site name.
- sso
Enabled This property is required. boolean - Whether to Enable Single Sign-on (SSO) for User-Based SSO.
- sso
Status 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.
- sub
Dns Addresses This property is required. string[] - AD Subdomain of the DNS Address.
- sub
Domain Name This property is required. string - AD Domain DNS Name.
- trust
Password This property is required. string - AD Trust Password.
- vpc
Id This property is required. string - Security Office VPC ID.
- vswitch
Ids 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.
- 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.
- 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.
- cen
Id This property is required. String - Cloud Enterprise Network Instance Id.
- cidr
Block This property is required. String - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- create
Time This property is required. String - Workspace Creation Time.
- custom
Security Group Id This property is required. String - Security Group ID.
- desktop
Access Type 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.
- desktop
Vpc Endpoint This property is required. String - The Desktop Vpc Endpoint.
- dns
Addresses This property is required. List<String> - Enterprise Ad Corresponding DNS Address.
- dns
User Name This property is required. String - Easy-to-Use DNS Name.
- domain
Name This property is required. String - Enterprise of Ad Domain Name.
- domain
Password This property is required. String - Domain of the User Who Will Administer This Target Application Password.
- domain
User Name This property is required. String - The Domain Administrator's Username.
- enable
Admin Access This property is required. Boolean - Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
- enable
Cross Desktop Access This property is required. Boolean - Enable Cross-Desktop Access.
- enable
Internet Access This property is required. Boolean - Whether the Open Internet Access Function.
- file
System Ids This property is required. List<String> - NAS File System ID.
- id
This property is required. String - The ID of the Simple Office Site.
- mfa
Enabled This property is required. Boolean - Whether to Enable Multi-Factor Authentication MFA.
- network
Package Id This property is required. String - Internet Access ID.
- office
Site Id This property is required. String - The Workspace ID.
- office
Site Type This property is required. String - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- simple
Office Site Name This property is required. String - The simple office site name.
- sso
Enabled This property is required. Boolean - Whether to Enable Single Sign-on (SSO) for User-Based SSO.
- sso
Status 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.
- sub
Dns Addresses This property is required. List<String> - AD Subdomain of the DNS Address.
- sub
Domain Name This property is required. String - AD Domain DNS Name.
- trust
Password This property is required. String - AD Trust Password.
- vpc
Id This property is required. String - Security Office VPC ID.
- vswitch
Ids 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.