SimpleOfficeSiteArgs

data class SimpleOfficeSiteArgs(val bandwidth: Output<Int>? = null, val cenId: Output<String>? = null, val cenOwnerId: Output<String>? = null, val cidrBlock: Output<String>? = null, val desktopAccessType: Output<String>? = null, val enableAdminAccess: Output<Boolean>? = null, val enableCrossDesktopAccess: Output<Boolean>? = null, val enableInternetAccess: Output<Boolean>? = null, val mfaEnabled: Output<Boolean>? = null, val officeSiteName: Output<String>? = null, val ssoEnabled: Output<Boolean>? = null) : ConvertibleToJava<SimpleOfficeSiteArgs>

Provides a ECD Simple Office Site resource. For information about ECD Simple Office Site and how to use it, see What is Simple Office Site.

NOTE: Available since v1.140.0.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.eds.SimpleOfficeSite;
import com.pulumi.alicloud.eds.SimpleOfficeSiteArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var default_ = new SimpleOfficeSite("default", SimpleOfficeSiteArgs.builder()
.cidrBlock("172.16.0.0/12")
.desktopAccessType("Internet")
.enableAdminAccess(true)
.officeSiteName("terraform-example")
.build());
}
}

Import

ECD Simple Office Site can be imported using the id, e.g.

$ pulumi import alicloud:eds/simpleOfficeSite:SimpleOfficeSite example <id>

Constructors

Link copied to clipboard
fun SimpleOfficeSiteArgs(bandwidth: Output<Int>? = null, cenId: Output<String>? = null, cenOwnerId: Output<String>? = null, cidrBlock: Output<String>? = null, desktopAccessType: Output<String>? = null, enableAdminAccess: Output<Boolean>? = null, enableCrossDesktopAccess: Output<Boolean>? = null, enableInternetAccess: Output<Boolean>? = null, mfaEnabled: Output<Boolean>? = null, officeSiteName: Output<String>? = null, ssoEnabled: Output<Boolean>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SimpleOfficeSiteArgs

Properties

Link copied to clipboard
val bandwidth: Output<Int>? = null

The Internet Bandwidth Peak. It has been deprecated from version 1.142.0 and can be found in the new resource alicloud_ecd_network_package.

Link copied to clipboard
val cenId: Output<String>? = null

Cloud Enterprise Network Instance ID.

Link copied to clipboard
val cenOwnerId: Output<String>? = null

The cen owner id.

Link copied to clipboard
val cidrBlock: Output<String>? = null

Workspace Corresponds to the Security Office Network of IPv4 Segment.

Link copied to clipboard
val desktopAccessType: Output<String>? = null

Connect to the Cloud Desktop Allows the Use of the Access Mode of. Valid values: Any, Internet, VPC.

Link copied to clipboard
val enableAdminAccess: Output<Boolean>? = null

Whether to Use Cloud Desktop User Empowerment of Local Administrator Permissions.

Link copied to clipboard
val enableCrossDesktopAccess: Output<Boolean>? = null

Enable Cross-Desktop Access.

Link copied to clipboard
val enableInternetAccess: Output<Boolean>? = null

Whether the Open Internet Access Function.

Link copied to clipboard
val mfaEnabled: Output<Boolean>? = null

Whether to Enable Multi-Factor Authentication MFA.

Link copied to clipboard
val officeSiteName: Output<String>? = null

The office site name.

Link copied to clipboard
val ssoEnabled: Output<Boolean>? = null

Whether to Enable Single Sign-on (SSO) for User-Based SSO.