Alibaba Cloud v3.57.1 published on Wednesday, Jun 26, 2024 by Pulumi
alicloud.eds.getAdConnectorOfficeSites
Explore with Pulumi AI
This data source provides the Ecd Ad Connector Office Sites of the current Alibaba Cloud user.
NOTE: Available in v1.176.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.eds.getAdConnectorOfficeSites({});
export const ecdAdConnectorOfficeSiteId1 = ids.then(ids => ids.sites?.[0]?.id);
const nameRegex = alicloud.eds.getAdConnectorOfficeSites({
nameRegex: "^my-AdConnectorOfficeSite",
});
export const ecdAdConnectorOfficeSiteId2 = nameRegex.then(nameRegex => nameRegex.sites?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.eds.get_ad_connector_office_sites()
pulumi.export("ecdAdConnectorOfficeSiteId1", ids.sites[0].id)
name_regex = alicloud.eds.get_ad_connector_office_sites(name_regex="^my-AdConnectorOfficeSite")
pulumi.export("ecdAdConnectorOfficeSiteId2", name_regex.sites[0].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 {
ids, err := eds.GetAdConnectorOfficeSites(ctx, nil, nil)
if err != nil {
return err
}
ctx.Export("ecdAdConnectorOfficeSiteId1", ids.Sites[0].Id)
nameRegex, err := eds.GetAdConnectorOfficeSites(ctx, &eds.GetAdConnectorOfficeSitesArgs{
NameRegex: pulumi.StringRef("^my-AdConnectorOfficeSite"),
}, nil)
if err != nil {
return err
}
ctx.Export("ecdAdConnectorOfficeSiteId2", nameRegex.Sites[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var ids = AliCloud.Eds.GetAdConnectorOfficeSites.Invoke();
var nameRegex = AliCloud.Eds.GetAdConnectorOfficeSites.Invoke(new()
{
NameRegex = "^my-AdConnectorOfficeSite",
});
return new Dictionary<string, object?>
{
["ecdAdConnectorOfficeSiteId1"] = ids.Apply(getAdConnectorOfficeSitesResult => getAdConnectorOfficeSitesResult.Sites[0]?.Id),
["ecdAdConnectorOfficeSiteId2"] = nameRegex.Apply(getAdConnectorOfficeSitesResult => getAdConnectorOfficeSitesResult.Sites[0]?.Id),
};
});
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.GetAdConnectorOfficeSitesArgs;
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 ids = EdsFunctions.getAdConnectorOfficeSites();
ctx.export("ecdAdConnectorOfficeSiteId1", ids.applyValue(getAdConnectorOfficeSitesResult -> getAdConnectorOfficeSitesResult.sites()[0].id()));
final var nameRegex = EdsFunctions.getAdConnectorOfficeSites(GetAdConnectorOfficeSitesArgs.builder()
.nameRegex("^my-AdConnectorOfficeSite")
.build());
ctx.export("ecdAdConnectorOfficeSiteId2", nameRegex.applyValue(getAdConnectorOfficeSitesResult -> getAdConnectorOfficeSitesResult.sites()[0].id()));
}
}
variables:
ids:
fn::invoke:
Function: alicloud:eds:getAdConnectorOfficeSites
Arguments: {}
nameRegex:
fn::invoke:
Function: alicloud:eds:getAdConnectorOfficeSites
Arguments:
nameRegex: ^my-AdConnectorOfficeSite
outputs:
ecdAdConnectorOfficeSiteId1: ${ids.sites[0].id}
ecdAdConnectorOfficeSiteId2: ${nameRegex.sites[0].id}
Using getAdConnectorOfficeSites
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 getAdConnectorOfficeSites(args: GetAdConnectorOfficeSitesArgs, opts?: InvokeOptions): Promise<GetAdConnectorOfficeSitesResult>
function getAdConnectorOfficeSitesOutput(args: GetAdConnectorOfficeSitesOutputArgs, opts?: InvokeOptions): Output<GetAdConnectorOfficeSitesResult>
def get_ad_connector_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) -> GetAdConnectorOfficeSitesResult
def get_ad_connector_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[GetAdConnectorOfficeSitesResult]
func GetAdConnectorOfficeSites(ctx *Context, args *GetAdConnectorOfficeSitesArgs, opts ...InvokeOption) (*GetAdConnectorOfficeSitesResult, error)
func GetAdConnectorOfficeSitesOutput(ctx *Context, args *GetAdConnectorOfficeSitesOutputArgs, opts ...InvokeOption) GetAdConnectorOfficeSitesResultOutput
> Note: This function is named GetAdConnectorOfficeSites
in the Go SDK.
public static class GetAdConnectorOfficeSites
{
public static Task<GetAdConnectorOfficeSitesResult> InvokeAsync(GetAdConnectorOfficeSitesArgs args, InvokeOptions? opts = null)
public static Output<GetAdConnectorOfficeSitesResult> Invoke(GetAdConnectorOfficeSitesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAdConnectorOfficeSitesResult> getAdConnectorOfficeSites(GetAdConnectorOfficeSitesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:eds/getAdConnectorOfficeSites:getAdConnectorOfficeSites
arguments:
# arguments dictionary
The following arguments are supported:
- Ids List<string>
- A list of Ad Connector Office Site IDs.
- Name
Regex string - A regex string to filter results by Ad Connector Office Site name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Status string
- The workspace status. Valid values:
REGISTERING
: The workspace is being registered.REGISTERED
: The workspace is registered.DEREGISTERING
: The workspace is being deregistered.DEREGISTERED
: The workspace is deregistered.ERROR
: The configurations of the workspace are invalid.NEEDCONFIGTRUST
: The trust relationship needs to be configured.NEEDCONFIGUSER
: Users need to be configured.CONFIGTRUSTING
: The trust relationship is being configured.CONFIGTRUSTFAILED
: The trust relationship fails to be configured.
- Ids []string
- A list of Ad Connector Office Site IDs.
- Name
Regex string - A regex string to filter results by Ad Connector Office Site name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Status string
- The workspace status. Valid values:
REGISTERING
: The workspace is being registered.REGISTERED
: The workspace is registered.DEREGISTERING
: The workspace is being deregistered.DEREGISTERED
: The workspace is deregistered.ERROR
: The configurations of the workspace are invalid.NEEDCONFIGTRUST
: The trust relationship needs to be configured.NEEDCONFIGUSER
: Users need to be configured.CONFIGTRUSTING
: The trust relationship is being configured.CONFIGTRUSTFAILED
: The trust relationship fails to be configured.
- ids List<String>
- A list of Ad Connector Office Site IDs.
- name
Regex String - A regex string to filter results by Ad Connector Office Site name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - status String
- The workspace status. Valid values:
REGISTERING
: The workspace is being registered.REGISTERED
: The workspace is registered.DEREGISTERING
: The workspace is being deregistered.DEREGISTERED
: The workspace is deregistered.ERROR
: The configurations of the workspace are invalid.NEEDCONFIGTRUST
: The trust relationship needs to be configured.NEEDCONFIGUSER
: Users need to be configured.CONFIGTRUSTING
: The trust relationship is being configured.CONFIGTRUSTFAILED
: The trust relationship fails to be configured.
- ids string[]
- A list of Ad Connector Office Site IDs.
- name
Regex string - A regex string to filter results by Ad Connector Office Site name.
- output
File string - File name where to save data source results (after running
pulumi preview
). - status string
- The workspace status. Valid values:
REGISTERING
: The workspace is being registered.REGISTERED
: The workspace is registered.DEREGISTERING
: The workspace is being deregistered.DEREGISTERED
: The workspace is deregistered.ERROR
: The configurations of the workspace are invalid.NEEDCONFIGTRUST
: The trust relationship needs to be configured.NEEDCONFIGUSER
: Users need to be configured.CONFIGTRUSTING
: The trust relationship is being configured.CONFIGTRUSTFAILED
: The trust relationship fails to be configured.
- ids Sequence[str]
- A list of Ad Connector Office Site IDs.
- name_
regex str - A regex string to filter results by Ad Connector Office Site name.
- output_
file str - File name where to save data source results (after running
pulumi preview
). - status str
- The workspace status. Valid values:
REGISTERING
: The workspace is being registered.REGISTERED
: The workspace is registered.DEREGISTERING
: The workspace is being deregistered.DEREGISTERED
: The workspace is deregistered.ERROR
: The configurations of the workspace are invalid.NEEDCONFIGTRUST
: The trust relationship needs to be configured.NEEDCONFIGUSER
: Users need to be configured.CONFIGTRUSTING
: The trust relationship is being configured.CONFIGTRUSTFAILED
: The trust relationship fails to be configured.
- ids List<String>
- A list of Ad Connector Office Site IDs.
- name
Regex String - A regex string to filter results by Ad Connector Office Site name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - status String
- The workspace status. Valid values:
REGISTERING
: The workspace is being registered.REGISTERED
: The workspace is registered.DEREGISTERING
: The workspace is being deregistered.DEREGISTERED
: The workspace is deregistered.ERROR
: The configurations of the workspace are invalid.NEEDCONFIGTRUST
: The trust relationship needs to be configured.NEEDCONFIGUSER
: Users need to be configured.CONFIGTRUSTING
: The trust relationship is being configured.CONFIGTRUSTFAILED
: The trust relationship fails to be configured.
getAdConnectorOfficeSites 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 Ad Connector 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
Ad Connector 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
Ad Connector 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
Ad Connector 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
Ad Connector 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
GetAdConnectorOfficeSitesSite
- Ad
Connector stringOffice Site Name - The Name of the ad connector office site.
- Ad
Connectors List<Pulumi.Ali Cloud. Eds. Inputs. Get Ad Connector Office Sites Site Ad Connector> - AD Connector Collection of Information.
- Bandwidth int
- The Internet Bandwidth Peak. Possible Values: 0~200. If This Field Is Set to 0, Indicates That There Is No Open Internet Access.
- Cen
Id string - Cloud Enterprise Network Instance Id.
- Cidr
Block string - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- Create
Time string - Workspace Creation Time.
- Custom
Security stringGroup Id - Security Group ID.
- Desktop
Access stringType - The method that is used to connect the client to cloud desktops.
- Desktop
Vpc stringEndpoint - The endpoint that is used to connect to cloud desktops over a VPC.
- Dns
Addresses List<string> - Enterprise Ad Corresponding DNS Address.
- Dns
User stringName - The Easy-to-Use DNS Name.
- Domain
Name string - Enterprise of Ad Domain Name.
- Domain
User stringName - The Domain Administrator's Username.
- Enable
Admin boolAccess - Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
- Enable
Cross boolDesktop Access - Indicates whether the desktop communication feature is enabled for cloud desktops in the same workspace. After the feature is enabled, the cloud desktops in the same workspace can access each other.
- Enable
Internet boolAccess - Whether the Open Internet Access Function.
- File
System List<string>Ids - NAS File System ID.
- Id string
- The ID of the Ad Connector Office Site.
- Logs
List<Pulumi.
Ali Cloud. Eds. Inputs. Get Ad Connector Office Sites Site Log> - Registered Log Information.
- Mfa
Enabled bool - Whether to Enable Multi-Factor Authentication MFA.
- Network
Package stringId - The ID of the Internet Access.
- Office
Site stringId - The ID of the Workspace.
- Office
Site stringType - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- Sso
Enabled bool - Whether to Enable Single Sign-on (SSO) for User-Based SSO.
- Status string
- The workspace status.
- Sub
Domain List<string>Dns Addresses - Sub-Domain DNS Address.
- Sub
Domain stringName - The AD Domain DNS Name.
- Trust
Password string - The AD Trust Password.
- Vpc
Id string - Security Office VPC ID.
- Vswitch
Ids List<string> - The vswitch ids.
- Ad
Connector stringOffice Site Name - The Name of the ad connector office site.
- Ad
Connectors []GetAd Connector Office Sites Site Ad Connector - AD Connector Collection of Information.
- Bandwidth int
- The Internet Bandwidth Peak. Possible Values: 0~200. If This Field Is Set to 0, Indicates That There Is No Open Internet Access.
- Cen
Id string - Cloud Enterprise Network Instance Id.
- Cidr
Block string - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- Create
Time string - Workspace Creation Time.
- Custom
Security stringGroup Id - Security Group ID.
- Desktop
Access stringType - The method that is used to connect the client to cloud desktops.
- Desktop
Vpc stringEndpoint - The endpoint that is used to connect to cloud desktops over a VPC.
- Dns
Addresses []string - Enterprise Ad Corresponding DNS Address.
- Dns
User stringName - The Easy-to-Use DNS Name.
- Domain
Name string - Enterprise of Ad Domain Name.
- Domain
User stringName - The Domain Administrator's Username.
- Enable
Admin boolAccess - Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
- Enable
Cross boolDesktop Access - Indicates whether the desktop communication feature is enabled for cloud desktops in the same workspace. After the feature is enabled, the cloud desktops in the same workspace can access each other.
- Enable
Internet boolAccess - Whether the Open Internet Access Function.
- File
System []stringIds - NAS File System ID.
- Id string
- The ID of the Ad Connector Office Site.
- Logs
[]Get
Ad Connector Office Sites Site Log - Registered Log Information.
- Mfa
Enabled bool - Whether to Enable Multi-Factor Authentication MFA.
- Network
Package stringId - The ID of the Internet Access.
- Office
Site stringId - The ID of the Workspace.
- Office
Site stringType - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- Sso
Enabled bool - Whether to Enable Single Sign-on (SSO) for User-Based SSO.
- Status string
- The workspace status.
- Sub
Domain []stringDns Addresses - Sub-Domain DNS Address.
- Sub
Domain stringName - The AD Domain DNS Name.
- Trust
Password string - The AD Trust Password.
- Vpc
Id string - Security Office VPC ID.
- Vswitch
Ids []string - The vswitch ids.
- ad
Connector StringOffice Site Name - The Name of the ad connector office site.
- ad
Connectors List<GetAd Connector Office Sites Site Ad Connector> - AD Connector Collection of Information.
- bandwidth Integer
- The Internet Bandwidth Peak. Possible Values: 0~200. If This Field Is Set to 0, Indicates That There Is No Open Internet Access.
- cen
Id String - Cloud Enterprise Network Instance Id.
- cidr
Block String - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- create
Time String - Workspace Creation Time.
- custom
Security StringGroup Id - Security Group ID.
- desktop
Access StringType - The method that is used to connect the client to cloud desktops.
- desktop
Vpc StringEndpoint - The endpoint that is used to connect to cloud desktops over a VPC.
- dns
Addresses List<String> - Enterprise Ad Corresponding DNS Address.
- dns
User StringName - The Easy-to-Use DNS Name.
- domain
Name String - Enterprise of Ad Domain Name.
- domain
User StringName - The Domain Administrator's Username.
- enable
Admin BooleanAccess - Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
- enable
Cross BooleanDesktop Access - Indicates whether the desktop communication feature is enabled for cloud desktops in the same workspace. After the feature is enabled, the cloud desktops in the same workspace can access each other.
- enable
Internet BooleanAccess - Whether the Open Internet Access Function.
- file
System List<String>Ids - NAS File System ID.
- id String
- The ID of the Ad Connector Office Site.
- logs
List<Get
Ad Connector Office Sites Site Log> - Registered Log Information.
- mfa
Enabled Boolean - Whether to Enable Multi-Factor Authentication MFA.
- network
Package StringId - The ID of the Internet Access.
- office
Site StringId - The ID of the Workspace.
- office
Site StringType - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- sso
Enabled Boolean - Whether to Enable Single Sign-on (SSO) for User-Based SSO.
- status String
- The workspace status.
- sub
Domain List<String>Dns Addresses - Sub-Domain DNS Address.
- sub
Domain StringName - The AD Domain DNS Name.
- trust
Password String - The AD Trust Password.
- vpc
Id String - Security Office VPC ID.
- vswitch
Ids List<String> - The vswitch ids.
- ad
Connector stringOffice Site Name - The Name of the ad connector office site.
- ad
Connectors GetAd Connector Office Sites Site Ad Connector[] - AD Connector Collection of Information.
- bandwidth number
- The Internet Bandwidth Peak. Possible Values: 0~200. If This Field Is Set to 0, Indicates That There Is No Open Internet Access.
- cen
Id string - Cloud Enterprise Network Instance Id.
- cidr
Block string - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- create
Time string - Workspace Creation Time.
- custom
Security stringGroup Id - Security Group ID.
- desktop
Access stringType - The method that is used to connect the client to cloud desktops.
- desktop
Vpc stringEndpoint - The endpoint that is used to connect to cloud desktops over a VPC.
- dns
Addresses string[] - Enterprise Ad Corresponding DNS Address.
- dns
User stringName - The Easy-to-Use DNS Name.
- domain
Name string - Enterprise of Ad Domain Name.
- domain
User stringName - The Domain Administrator's Username.
- enable
Admin booleanAccess - Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
- enable
Cross booleanDesktop Access - Indicates whether the desktop communication feature is enabled for cloud desktops in the same workspace. After the feature is enabled, the cloud desktops in the same workspace can access each other.
- enable
Internet booleanAccess - Whether the Open Internet Access Function.
- file
System string[]Ids - NAS File System ID.
- id string
- The ID of the Ad Connector Office Site.
- logs
Get
Ad Connector Office Sites Site Log[] - Registered Log Information.
- mfa
Enabled boolean - Whether to Enable Multi-Factor Authentication MFA.
- network
Package stringId - The ID of the Internet Access.
- office
Site stringId - The ID of the Workspace.
- office
Site stringType - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- sso
Enabled boolean - Whether to Enable Single Sign-on (SSO) for User-Based SSO.
- status string
- The workspace status.
- sub
Domain string[]Dns Addresses - Sub-Domain DNS Address.
- sub
Domain stringName - The AD Domain DNS Name.
- trust
Password string - The AD Trust Password.
- vpc
Id string - Security Office VPC ID.
- vswitch
Ids string[] - The vswitch ids.
- ad_
connector_ stroffice_ site_ name - The Name of the ad connector office site.
- ad_
connectors Sequence[GetAd Connector Office Sites Site Ad Connector] - AD Connector Collection of Information.
- bandwidth int
- The Internet Bandwidth Peak. Possible Values: 0~200. If This Field Is Set to 0, Indicates That There Is No Open Internet Access.
- cen_
id str - Cloud Enterprise Network Instance Id.
- cidr_
block str - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- create_
time str - Workspace Creation Time.
- custom_
security_ strgroup_ id - Security Group ID.
- desktop_
access_ strtype - The method that is used to connect the client to cloud desktops.
- desktop_
vpc_ strendpoint - The endpoint that is used to connect to cloud desktops over a VPC.
- dns_
addresses Sequence[str] - Enterprise Ad Corresponding DNS Address.
- dns_
user_ strname - The Easy-to-Use DNS Name.
- domain_
name str - Enterprise of Ad Domain Name.
- domain_
user_ strname - The Domain Administrator's Username.
- enable_
admin_ boolaccess - Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
- enable_
cross_ booldesktop_ access - Indicates whether the desktop communication feature is enabled for cloud desktops in the same workspace. After the feature is enabled, the cloud desktops in the same workspace can access each other.
- enable_
internet_ boolaccess - Whether the Open Internet Access Function.
- file_
system_ Sequence[str]ids - NAS File System ID.
- id str
- The ID of the Ad Connector Office Site.
- logs
Sequence[Get
Ad Connector Office Sites Site Log] - Registered Log Information.
- mfa_
enabled bool - Whether to Enable Multi-Factor Authentication MFA.
- network_
package_ strid - The ID of the Internet Access.
- office_
site_ strid - The ID of the Workspace.
- office_
site_ strtype - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- sso_
enabled bool - Whether to Enable Single Sign-on (SSO) for User-Based SSO.
- status str
- The workspace status.
- sub_
domain_ Sequence[str]dns_ addresses - Sub-Domain DNS Address.
- sub_
domain_ strname - The AD Domain DNS Name.
- trust_
password str - The AD Trust Password.
- vpc_
id str - Security Office VPC ID.
- vswitch_
ids Sequence[str] - The vswitch ids.
- ad
Connector StringOffice Site Name - The Name of the ad connector office site.
- ad
Connectors List<Property Map> - AD Connector Collection of Information.
- bandwidth Number
- The Internet Bandwidth Peak. Possible Values: 0~200. If This Field Is Set to 0, Indicates That There Is No Open Internet Access.
- cen
Id String - Cloud Enterprise Network Instance Id.
- cidr
Block String - Workspace Corresponds to the Security Office Network of IPv4 Segment.
- create
Time String - Workspace Creation Time.
- custom
Security StringGroup Id - Security Group ID.
- desktop
Access StringType - The method that is used to connect the client to cloud desktops.
- desktop
Vpc StringEndpoint - The endpoint that is used to connect to cloud desktops over a VPC.
- dns
Addresses List<String> - Enterprise Ad Corresponding DNS Address.
- dns
User StringName - The Easy-to-Use DNS Name.
- domain
Name String - Enterprise of Ad Domain Name.
- domain
User StringName - The Domain Administrator's Username.
- enable
Admin BooleanAccess - Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
- enable
Cross BooleanDesktop Access - Indicates whether the desktop communication feature is enabled for cloud desktops in the same workspace. After the feature is enabled, the cloud desktops in the same workspace can access each other.
- enable
Internet BooleanAccess - Whether the Open Internet Access Function.
- file
System List<String>Ids - NAS File System ID.
- id String
- The ID of the Ad Connector Office Site.
- logs List<Property Map>
- Registered Log Information.
- mfa
Enabled Boolean - Whether to Enable Multi-Factor Authentication MFA.
- network
Package StringId - The ID of the Internet Access.
- office
Site StringId - The ID of the Workspace.
- office
Site StringType - Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
- sso
Enabled Boolean - Whether to Enable Single Sign-on (SSO) for User-Based SSO.
- status String
- The workspace status.
- sub
Domain List<String>Dns Addresses - Sub-Domain DNS Address.
- sub
Domain StringName - The AD Domain DNS Name.
- trust
Password String - The AD Trust Password.
- vpc
Id String - Security Office VPC ID.
- vswitch
Ids List<String> - The vswitch ids.
GetAdConnectorOfficeSitesSiteAdConnector
- Ad
Connector stringAddress - AD Connector across Zones, Its Connection Addresses.
- Connector
Status string - AD Connector of the State. Possible Values: Creating: in the Creation of. Connecting: Connection. Requires the User to Your Own Ad Configured on the Domain to Which. Running: Run. Expired: If You Are out-of-Date. CONNECT_ERROR: Connection Error.
- Network
Interface stringId - AD Connector Mount of the Card ID.
- Vswitch
Id string - AD Connector in the Network Corresponding to the ID of the VSwitch in.
- Ad
Connector stringAddress - AD Connector across Zones, Its Connection Addresses.
- Connector
Status string - AD Connector of the State. Possible Values: Creating: in the Creation of. Connecting: Connection. Requires the User to Your Own Ad Configured on the Domain to Which. Running: Run. Expired: If You Are out-of-Date. CONNECT_ERROR: Connection Error.
- Network
Interface stringId - AD Connector Mount of the Card ID.
- Vswitch
Id string - AD Connector in the Network Corresponding to the ID of the VSwitch in.
- ad
Connector StringAddress - AD Connector across Zones, Its Connection Addresses.
- connector
Status String - AD Connector of the State. Possible Values: Creating: in the Creation of. Connecting: Connection. Requires the User to Your Own Ad Configured on the Domain to Which. Running: Run. Expired: If You Are out-of-Date. CONNECT_ERROR: Connection Error.
- network
Interface StringId - AD Connector Mount of the Card ID.
- vswitch
Id String - AD Connector in the Network Corresponding to the ID of the VSwitch in.
- ad
Connector stringAddress - AD Connector across Zones, Its Connection Addresses.
- connector
Status string - AD Connector of the State. Possible Values: Creating: in the Creation of. Connecting: Connection. Requires the User to Your Own Ad Configured on the Domain to Which. Running: Run. Expired: If You Are out-of-Date. CONNECT_ERROR: Connection Error.
- network
Interface stringId - AD Connector Mount of the Card ID.
- vswitch
Id string - AD Connector in the Network Corresponding to the ID of the VSwitch in.
- ad_
connector_ straddress - AD Connector across Zones, Its Connection Addresses.
- connector_
status str - AD Connector of the State. Possible Values: Creating: in the Creation of. Connecting: Connection. Requires the User to Your Own Ad Configured on the Domain to Which. Running: Run. Expired: If You Are out-of-Date. CONNECT_ERROR: Connection Error.
- network_
interface_ strid - AD Connector Mount of the Card ID.
- vswitch_
id str - AD Connector in the Network Corresponding to the ID of the VSwitch in.
- ad
Connector StringAddress - AD Connector across Zones, Its Connection Addresses.
- connector
Status String - AD Connector of the State. Possible Values: Creating: in the Creation of. Connecting: Connection. Requires the User to Your Own Ad Configured on the Domain to Which. Running: Run. Expired: If You Are out-of-Date. CONNECT_ERROR: Connection Error.
- network
Interface StringId - AD Connector Mount of the Card ID.
- vswitch
Id String - AD Connector in the Network Corresponding to the ID of the VSwitch in.
GetAdConnectorOfficeSitesSiteLog
- level str
- Log Level. Possible Values: Info: Information Error: Error Warn: Warning.
- message str
- The Log Details.
- step str
- Log Information Corresponding to the Step.
- time_
stamp str - Log Print Time.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.