1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. eds
  5. getAdConnectorOfficeSites
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.eds.getAdConnectorOfficeSites

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    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.
    NameRegex string
    A regex string to filter results by Ad Connector Office Site name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    Status string
    The workspace status.
    Ids []string
    A list of Ad Connector Office Site IDs.
    NameRegex string
    A regex string to filter results by Ad Connector Office Site name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    Status string
    The workspace status.
    ids List<String>
    A list of Ad Connector Office Site IDs.
    nameRegex String
    A regex string to filter results by Ad Connector Office Site name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    status String
    The workspace status.
    ids string[]
    A list of Ad Connector Office Site IDs.
    nameRegex string
    A regex string to filter results by Ad Connector Office Site name.
    outputFile string
    File name where to save data source results (after running pulumi preview).
    status string
    The workspace status.
    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.
    ids List<String>
    A list of Ad Connector Office Site IDs.
    nameRegex String
    A regex string to filter results by Ad Connector Office Site name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    status String
    The workspace status.

    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.AliCloud.Eds.Outputs.GetAdConnectorOfficeSitesSite>
    NameRegex string
    OutputFile string
    Status string
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids []string
    Names []string
    Sites []GetAdConnectorOfficeSitesSite
    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<GetAdConnectorOfficeSitesSite>
    nameRegex String
    outputFile String
    status String
    id string
    The provider-assigned unique ID for this managed resource.
    ids string[]
    names string[]
    sites GetAdConnectorOfficeSitesSite[]
    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[GetAdConnectorOfficeSitesSite]
    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

    GetAdConnectorOfficeSitesSite

    AdConnectorOfficeSiteName string
    The Name of the ad connector office site.
    AdConnectors List<Pulumi.AliCloud.Eds.Inputs.GetAdConnectorOfficeSitesSiteAdConnector>
    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.
    CenId string
    Cloud Enterprise Network Instance Id.
    CidrBlock string
    Workspace Corresponds to the Security Office Network of IPv4 Segment.
    CreateTime string
    Workspace Creation Time.
    CustomSecurityGroupId string
    Security Group ID.
    DesktopAccessType string
    The method that is used to connect the client to cloud desktops.
    DesktopVpcEndpoint string
    The endpoint that is used to connect to cloud desktops over a VPC.
    DnsAddresses List<string>
    Enterprise Ad Corresponding DNS Address.
    DnsUserName string
    The Easy-to-Use DNS Name.
    DomainName string
    Enterprise of Ad Domain Name.
    DomainUserName string
    The Domain Administrator's Username.
    EnableAdminAccess bool
    Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
    EnableCrossDesktopAccess bool
    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.
    EnableInternetAccess bool
    Whether the Open Internet Access Function.
    FileSystemIds List<string>
    NAS File System ID.
    Id string
    The ID of the Ad Connector Office Site.
    Logs List<Pulumi.AliCloud.Eds.Inputs.GetAdConnectorOfficeSitesSiteLog>
    Registered Log Information.
    MfaEnabled bool
    Whether to Enable Multi-Factor Authentication MFA.
    NetworkPackageId string
    The ID of the Internet Access.
    OfficeSiteId string
    The ID of the Workspace.
    OfficeSiteType string
    Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
    SsoEnabled bool
    Whether to Enable Single Sign-on (SSO) for User-Based SSO.
    Status string
    The workspace status.
    SubDomainDnsAddresses List<string>
    Sub-Domain DNS Address.
    SubDomainName string
    The AD Domain DNS Name.
    TrustPassword string
    The AD Trust Password.
    VpcId string
    Security Office VPC ID.
    VswitchIds List<string>
    The vswitch ids.
    AdConnectorOfficeSiteName string
    The Name of the ad connector office site.
    AdConnectors []GetAdConnectorOfficeSitesSiteAdConnector
    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.
    CenId string
    Cloud Enterprise Network Instance Id.
    CidrBlock string
    Workspace Corresponds to the Security Office Network of IPv4 Segment.
    CreateTime string
    Workspace Creation Time.
    CustomSecurityGroupId string
    Security Group ID.
    DesktopAccessType string
    The method that is used to connect the client to cloud desktops.
    DesktopVpcEndpoint string
    The endpoint that is used to connect to cloud desktops over a VPC.
    DnsAddresses []string
    Enterprise Ad Corresponding DNS Address.
    DnsUserName string
    The Easy-to-Use DNS Name.
    DomainName string
    Enterprise of Ad Domain Name.
    DomainUserName string
    The Domain Administrator's Username.
    EnableAdminAccess bool
    Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
    EnableCrossDesktopAccess bool
    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.
    EnableInternetAccess bool
    Whether the Open Internet Access Function.
    FileSystemIds []string
    NAS File System ID.
    Id string
    The ID of the Ad Connector Office Site.
    Logs []GetAdConnectorOfficeSitesSiteLog
    Registered Log Information.
    MfaEnabled bool
    Whether to Enable Multi-Factor Authentication MFA.
    NetworkPackageId string
    The ID of the Internet Access.
    OfficeSiteId string
    The ID of the Workspace.
    OfficeSiteType string
    Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
    SsoEnabled bool
    Whether to Enable Single Sign-on (SSO) for User-Based SSO.
    Status string
    The workspace status.
    SubDomainDnsAddresses []string
    Sub-Domain DNS Address.
    SubDomainName string
    The AD Domain DNS Name.
    TrustPassword string
    The AD Trust Password.
    VpcId string
    Security Office VPC ID.
    VswitchIds []string
    The vswitch ids.
    adConnectorOfficeSiteName String
    The Name of the ad connector office site.
    adConnectors List<GetAdConnectorOfficeSitesSiteAdConnector>
    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.
    cenId String
    Cloud Enterprise Network Instance Id.
    cidrBlock String
    Workspace Corresponds to the Security Office Network of IPv4 Segment.
    createTime String
    Workspace Creation Time.
    customSecurityGroupId String
    Security Group ID.
    desktopAccessType String
    The method that is used to connect the client to cloud desktops.
    desktopVpcEndpoint String
    The endpoint that is used to connect to cloud desktops over a VPC.
    dnsAddresses List<String>
    Enterprise Ad Corresponding DNS Address.
    dnsUserName String
    The Easy-to-Use DNS Name.
    domainName String
    Enterprise of Ad Domain Name.
    domainUserName String
    The Domain Administrator's Username.
    enableAdminAccess Boolean
    Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
    enableCrossDesktopAccess Boolean
    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.
    enableInternetAccess Boolean
    Whether the Open Internet Access Function.
    fileSystemIds List<String>
    NAS File System ID.
    id String
    The ID of the Ad Connector Office Site.
    logs List<GetAdConnectorOfficeSitesSiteLog>
    Registered Log Information.
    mfaEnabled Boolean
    Whether to Enable Multi-Factor Authentication MFA.
    networkPackageId String
    The ID of the Internet Access.
    officeSiteId String
    The ID of the Workspace.
    officeSiteType String
    Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
    ssoEnabled Boolean
    Whether to Enable Single Sign-on (SSO) for User-Based SSO.
    status String
    The workspace status.
    subDomainDnsAddresses List<String>
    Sub-Domain DNS Address.
    subDomainName String
    The AD Domain DNS Name.
    trustPassword String
    The AD Trust Password.
    vpcId String
    Security Office VPC ID.
    vswitchIds List<String>
    The vswitch ids.
    adConnectorOfficeSiteName string
    The Name of the ad connector office site.
    adConnectors GetAdConnectorOfficeSitesSiteAdConnector[]
    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.
    cenId string
    Cloud Enterprise Network Instance Id.
    cidrBlock string
    Workspace Corresponds to the Security Office Network of IPv4 Segment.
    createTime string
    Workspace Creation Time.
    customSecurityGroupId string
    Security Group ID.
    desktopAccessType string
    The method that is used to connect the client to cloud desktops.
    desktopVpcEndpoint string
    The endpoint that is used to connect to cloud desktops over a VPC.
    dnsAddresses string[]
    Enterprise Ad Corresponding DNS Address.
    dnsUserName string
    The Easy-to-Use DNS Name.
    domainName string
    Enterprise of Ad Domain Name.
    domainUserName string
    The Domain Administrator's Username.
    enableAdminAccess boolean
    Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
    enableCrossDesktopAccess boolean
    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.
    enableInternetAccess boolean
    Whether the Open Internet Access Function.
    fileSystemIds string[]
    NAS File System ID.
    id string
    The ID of the Ad Connector Office Site.
    logs GetAdConnectorOfficeSitesSiteLog[]
    Registered Log Information.
    mfaEnabled boolean
    Whether to Enable Multi-Factor Authentication MFA.
    networkPackageId string
    The ID of the Internet Access.
    officeSiteId string
    The ID of the Workspace.
    officeSiteType string
    Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
    ssoEnabled boolean
    Whether to Enable Single Sign-on (SSO) for User-Based SSO.
    status string
    The workspace status.
    subDomainDnsAddresses string[]
    Sub-Domain DNS Address.
    subDomainName string
    The AD Domain DNS Name.
    trustPassword string
    The AD Trust Password.
    vpcId string
    Security Office VPC ID.
    vswitchIds string[]
    The vswitch ids.
    ad_connector_office_site_name str
    The Name of the ad connector office site.
    ad_connectors Sequence[GetAdConnectorOfficeSitesSiteAdConnector]
    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_group_id str
    Security Group ID.
    desktop_access_type str
    The method that is used to connect the client to cloud desktops.
    desktop_vpc_endpoint str
    The endpoint that is used to connect to cloud desktops over a VPC.
    dns_addresses Sequence[str]
    Enterprise Ad Corresponding DNS Address.
    dns_user_name str
    The Easy-to-Use DNS Name.
    domain_name str
    Enterprise of Ad Domain Name.
    domain_user_name str
    The Domain Administrator's Username.
    enable_admin_access bool
    Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
    enable_cross_desktop_access bool
    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_access bool
    Whether the Open Internet Access Function.
    file_system_ids Sequence[str]
    NAS File System ID.
    id str
    The ID of the Ad Connector Office Site.
    logs Sequence[GetAdConnectorOfficeSitesSiteLog]
    Registered Log Information.
    mfa_enabled bool
    Whether to Enable Multi-Factor Authentication MFA.
    network_package_id str
    The ID of the Internet Access.
    office_site_id str
    The ID of the Workspace.
    office_site_type str
    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_dns_addresses Sequence[str]
    Sub-Domain DNS Address.
    sub_domain_name str
    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.
    adConnectorOfficeSiteName String
    The Name of the ad connector office site.
    adConnectors 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.
    cenId String
    Cloud Enterprise Network Instance Id.
    cidrBlock String
    Workspace Corresponds to the Security Office Network of IPv4 Segment.
    createTime String
    Workspace Creation Time.
    customSecurityGroupId String
    Security Group ID.
    desktopAccessType String
    The method that is used to connect the client to cloud desktops.
    desktopVpcEndpoint String
    The endpoint that is used to connect to cloud desktops over a VPC.
    dnsAddresses List<String>
    Enterprise Ad Corresponding DNS Address.
    dnsUserName String
    The Easy-to-Use DNS Name.
    domainName String
    Enterprise of Ad Domain Name.
    domainUserName String
    The Domain Administrator's Username.
    enableAdminAccess Boolean
    Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.
    enableCrossDesktopAccess Boolean
    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.
    enableInternetAccess Boolean
    Whether the Open Internet Access Function.
    fileSystemIds List<String>
    NAS File System ID.
    id String
    The ID of the Ad Connector Office Site.
    logs List<Property Map>
    Registered Log Information.
    mfaEnabled Boolean
    Whether to Enable Multi-Factor Authentication MFA.
    networkPackageId String
    The ID of the Internet Access.
    officeSiteId String
    The ID of the Workspace.
    officeSiteType String
    Workspace Account System Type. Possible Values: Simple: Convenient Account. AD_CONNECTOR: Enterprise Ad Account.
    ssoEnabled Boolean
    Whether to Enable Single Sign-on (SSO) for User-Based SSO.
    status String
    The workspace status.
    subDomainDnsAddresses List<String>
    Sub-Domain DNS Address.
    subDomainName String
    The AD Domain DNS Name.
    trustPassword String
    The AD Trust Password.
    vpcId String
    Security Office VPC ID.
    vswitchIds List<String>
    The vswitch ids.

    GetAdConnectorOfficeSitesSiteAdConnector

    AdConnectorAddress string
    AD Connector across Zones, Its Connection Addresses.
    ConnectorStatus 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.
    NetworkInterfaceId string
    AD Connector Mount of the Card ID.
    VswitchId string
    AD Connector in the Network Corresponding to the ID of the VSwitch in.
    AdConnectorAddress string
    AD Connector across Zones, Its Connection Addresses.
    ConnectorStatus 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.
    NetworkInterfaceId string
    AD Connector Mount of the Card ID.
    VswitchId string
    AD Connector in the Network Corresponding to the ID of the VSwitch in.
    adConnectorAddress String
    AD Connector across Zones, Its Connection Addresses.
    connectorStatus 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.
    networkInterfaceId String
    AD Connector Mount of the Card ID.
    vswitchId String
    AD Connector in the Network Corresponding to the ID of the VSwitch in.
    adConnectorAddress string
    AD Connector across Zones, Its Connection Addresses.
    connectorStatus 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.
    networkInterfaceId string
    AD Connector Mount of the Card ID.
    vswitchId string
    AD Connector in the Network Corresponding to the ID of the VSwitch in.
    ad_connector_address str
    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_id str
    AD Connector Mount of the Card ID.
    vswitch_id str
    AD Connector in the Network Corresponding to the ID of the VSwitch in.
    adConnectorAddress String
    AD Connector across Zones, Its Connection Addresses.
    connectorStatus 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.
    networkInterfaceId String
    AD Connector Mount of the Card ID.
    vswitchId String
    AD Connector in the Network Corresponding to the ID of the VSwitch in.

    GetAdConnectorOfficeSitesSiteLog

    Level string
    Log Level. Possible Values: Info: Information Error: Error Warn: Warning.
    Message string
    The Log Details.
    Step string
    Log Information Corresponding to the Step.
    TimeStamp string
    Log Print Time.
    Level string
    Log Level. Possible Values: Info: Information Error: Error Warn: Warning.
    Message string
    The Log Details.
    Step string
    Log Information Corresponding to the Step.
    TimeStamp string
    Log Print Time.
    level String
    Log Level. Possible Values: Info: Information Error: Error Warn: Warning.
    message String
    The Log Details.
    step String
    Log Information Corresponding to the Step.
    timeStamp String
    Log Print Time.
    level string
    Log Level. Possible Values: Info: Information Error: Error Warn: Warning.
    message string
    The Log Details.
    step string
    Log Information Corresponding to the Step.
    timeStamp string
    Log Print Time.
    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.
    level String
    Log Level. Possible Values: Info: Information Error: Error Warn: Warning.
    message String
    The Log Details.
    step String
    Log Information Corresponding to the Step.
    timeStamp String
    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.
    alicloud logo
    Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi