alicloud.esa.WaitingRoom
Explore with Pulumi AI
Provides a ESA Waiting Room resource.
For information about ESA Waiting Room and how to use it, see What is Waiting Room.
NOTE: Available since v1.244.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = alicloud.esa.getSites({
planSubscribeType: "enterpriseplan",
});
const resourceSiteExample = new alicloud.esa.Site("resource_Site_example", {
siteName: "terraform.site",
instanceId: _default.then(_default => _default.sites?.[0]?.instanceId),
coverage: "overseas",
accessType: "NS",
});
const defaultWaitingRoom = new alicloud.esa.WaitingRoom("default", {
queuingMethod: "fifo",
sessionDuration: "5",
totalActiveUsers: "300",
hostNameAndPaths: [
{
domain: "sub_domain.com",
path: "/example",
subdomain: "example_sub_domain.com.",
},
{
domain: "sub_domain.com",
path: "/example",
subdomain: "example_sub_domain1.com.",
},
{
path: "/example",
subdomain: "example_sub_domain2.com.",
domain: "sub_domain.com",
},
],
waitingRoomType: "default",
newUsersPerMinute: "200",
customPageHtml: "",
language: "zhcn",
queuingStatusCode: "200",
waitingRoomName: "waitingroom_example",
status: "off",
siteId: resourceSiteExample.id,
queueAllEnable: "off",
disableSessionRenewalEnable: "off",
description: "example",
jsonResponseEnable: "off",
cookieName: "__aliwaitingroom_example",
});
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.esa.get_sites(plan_subscribe_type="enterpriseplan")
resource_site_example = alicloud.esa.Site("resource_Site_example",
site_name="terraform.site",
instance_id=default.sites[0].instance_id,
coverage="overseas",
access_type="NS")
default_waiting_room = alicloud.esa.WaitingRoom("default",
queuing_method="fifo",
session_duration="5",
total_active_users="300",
host_name_and_paths=[
{
"domain": "sub_domain.com",
"path": "/example",
"subdomain": "example_sub_domain.com.",
},
{
"domain": "sub_domain.com",
"path": "/example",
"subdomain": "example_sub_domain1.com.",
},
{
"path": "/example",
"subdomain": "example_sub_domain2.com.",
"domain": "sub_domain.com",
},
],
waiting_room_type="default",
new_users_per_minute="200",
custom_page_html="",
language="zhcn",
queuing_status_code="200",
waiting_room_name="waitingroom_example",
status="off",
site_id=resource_site_example.id,
queue_all_enable="off",
disable_session_renewal_enable="off",
description="example",
json_response_enable="off",
cookie_name="__aliwaitingroom_example")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/esa"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := esa.GetSites(ctx, &esa.GetSitesArgs{
PlanSubscribeType: pulumi.StringRef("enterpriseplan"),
}, nil)
if err != nil {
return err
}
resourceSiteExample, err := esa.NewSite(ctx, "resource_Site_example", &esa.SiteArgs{
SiteName: pulumi.String("terraform.site"),
InstanceId: pulumi.String(_default.Sites[0].InstanceId),
Coverage: pulumi.String("overseas"),
AccessType: pulumi.String("NS"),
})
if err != nil {
return err
}
_, err = esa.NewWaitingRoom(ctx, "default", &esa.WaitingRoomArgs{
QueuingMethod: pulumi.String("fifo"),
SessionDuration: pulumi.String("5"),
TotalActiveUsers: pulumi.String("300"),
HostNameAndPaths: esa.WaitingRoomHostNameAndPathArray{
&esa.WaitingRoomHostNameAndPathArgs{
Domain: pulumi.String("sub_domain.com"),
Path: pulumi.String("/example"),
Subdomain: pulumi.String("example_sub_domain.com."),
},
&esa.WaitingRoomHostNameAndPathArgs{
Domain: pulumi.String("sub_domain.com"),
Path: pulumi.String("/example"),
Subdomain: pulumi.String("example_sub_domain1.com."),
},
&esa.WaitingRoomHostNameAndPathArgs{
Path: pulumi.String("/example"),
Subdomain: pulumi.String("example_sub_domain2.com."),
Domain: pulumi.String("sub_domain.com"),
},
},
WaitingRoomType: pulumi.String("default"),
NewUsersPerMinute: pulumi.String("200"),
CustomPageHtml: pulumi.String(""),
Language: pulumi.String("zhcn"),
QueuingStatusCode: pulumi.String("200"),
WaitingRoomName: pulumi.String("waitingroom_example"),
Status: pulumi.String("off"),
SiteId: resourceSiteExample.ID(),
QueueAllEnable: pulumi.String("off"),
DisableSessionRenewalEnable: pulumi.String("off"),
Description: pulumi.String("example"),
JsonResponseEnable: pulumi.String("off"),
CookieName: pulumi.String("__aliwaitingroom_example"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = AliCloud.Esa.GetSites.Invoke(new()
{
PlanSubscribeType = "enterpriseplan",
});
var resourceSiteExample = new AliCloud.Esa.Site("resource_Site_example", new()
{
SiteName = "terraform.site",
InstanceId = @default.Apply(@default => @default.Apply(getSitesResult => getSitesResult.Sites[0]?.InstanceId)),
Coverage = "overseas",
AccessType = "NS",
});
var defaultWaitingRoom = new AliCloud.Esa.WaitingRoom("default", new()
{
QueuingMethod = "fifo",
SessionDuration = "5",
TotalActiveUsers = "300",
HostNameAndPaths = new[]
{
new AliCloud.Esa.Inputs.WaitingRoomHostNameAndPathArgs
{
Domain = "sub_domain.com",
Path = "/example",
Subdomain = "example_sub_domain.com.",
},
new AliCloud.Esa.Inputs.WaitingRoomHostNameAndPathArgs
{
Domain = "sub_domain.com",
Path = "/example",
Subdomain = "example_sub_domain1.com.",
},
new AliCloud.Esa.Inputs.WaitingRoomHostNameAndPathArgs
{
Path = "/example",
Subdomain = "example_sub_domain2.com.",
Domain = "sub_domain.com",
},
},
WaitingRoomType = "default",
NewUsersPerMinute = "200",
CustomPageHtml = "",
Language = "zhcn",
QueuingStatusCode = "200",
WaitingRoomName = "waitingroom_example",
Status = "off",
SiteId = resourceSiteExample.Id,
QueueAllEnable = "off",
DisableSessionRenewalEnable = "off",
Description = "example",
JsonResponseEnable = "off",
CookieName = "__aliwaitingroom_example",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.esa.EsaFunctions;
import com.pulumi.alicloud.esa.inputs.GetSitesArgs;
import com.pulumi.alicloud.esa.Site;
import com.pulumi.alicloud.esa.SiteArgs;
import com.pulumi.alicloud.esa.WaitingRoom;
import com.pulumi.alicloud.esa.WaitingRoomArgs;
import com.pulumi.alicloud.esa.inputs.WaitingRoomHostNameAndPathArgs;
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 = EsaFunctions.getSites(GetSitesArgs.builder()
.planSubscribeType("enterpriseplan")
.build());
var resourceSiteExample = new Site("resourceSiteExample", SiteArgs.builder()
.siteName("terraform.site")
.instanceId(default_.sites()[0].instanceId())
.coverage("overseas")
.accessType("NS")
.build());
var defaultWaitingRoom = new WaitingRoom("defaultWaitingRoom", WaitingRoomArgs.builder()
.queuingMethod("fifo")
.sessionDuration("5")
.totalActiveUsers("300")
.hostNameAndPaths(
WaitingRoomHostNameAndPathArgs.builder()
.domain("sub_domain.com")
.path("/example")
.subdomain("example_sub_domain.com.")
.build(),
WaitingRoomHostNameAndPathArgs.builder()
.domain("sub_domain.com")
.path("/example")
.subdomain("example_sub_domain1.com.")
.build(),
WaitingRoomHostNameAndPathArgs.builder()
.path("/example")
.subdomain("example_sub_domain2.com.")
.domain("sub_domain.com")
.build())
.waitingRoomType("default")
.newUsersPerMinute("200")
.customPageHtml("")
.language("zhcn")
.queuingStatusCode("200")
.waitingRoomName("waitingroom_example")
.status("off")
.siteId(resourceSiteExample.id())
.queueAllEnable("off")
.disableSessionRenewalEnable("off")
.description("example")
.jsonResponseEnable("off")
.cookieName("__aliwaitingroom_example")
.build());
}
}
resources:
resourceSiteExample:
type: alicloud:esa:Site
name: resource_Site_example
properties:
siteName: terraform.site
instanceId: ${default.sites[0].instanceId}
coverage: overseas
accessType: NS
defaultWaitingRoom:
type: alicloud:esa:WaitingRoom
name: default
properties:
queuingMethod: fifo
sessionDuration: '5'
totalActiveUsers: '300'
hostNameAndPaths:
- domain: sub_domain.com
path: /example
subdomain: example_sub_domain.com.
- domain: sub_domain.com
path: /example
subdomain: example_sub_domain1.com.
- path: /example
subdomain: example_sub_domain2.com.
domain: sub_domain.com
waitingRoomType: default
newUsersPerMinute: '200'
customPageHtml: ""
language: zhcn
queuingStatusCode: '200'
waitingRoomName: waitingroom_example
status: off
siteId: ${resourceSiteExample.id}
queueAllEnable: off
disableSessionRenewalEnable: off
description: example
jsonResponseEnable: off
cookieName: __aliwaitingroom_example
variables:
default:
fn::invoke:
function: alicloud:esa:getSites
arguments:
planSubscribeType: enterpriseplan
Create WaitingRoom Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WaitingRoom(name: string, args: WaitingRoomArgs, opts?: CustomResourceOptions);
@overload
def WaitingRoom(resource_name: str,
args: WaitingRoomArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WaitingRoom(resource_name: str,
opts: Optional[ResourceOptions] = None,
site_id: Optional[int] = None,
status: Optional[str] = None,
waiting_room_type: Optional[str] = None,
waiting_room_name: Optional[str] = None,
queuing_method: Optional[str] = None,
total_active_users: Optional[str] = None,
cookie_name: Optional[str] = None,
queuing_status_code: Optional[str] = None,
session_duration: Optional[str] = None,
host_name_and_paths: Optional[Sequence[WaitingRoomHostNameAndPathArgs]] = None,
new_users_per_minute: Optional[str] = None,
description: Optional[str] = None,
language: Optional[str] = None,
custom_page_html: Optional[str] = None,
json_response_enable: Optional[str] = None,
disable_session_renewal_enable: Optional[str] = None,
queue_all_enable: Optional[str] = None)
func NewWaitingRoom(ctx *Context, name string, args WaitingRoomArgs, opts ...ResourceOption) (*WaitingRoom, error)
public WaitingRoom(string name, WaitingRoomArgs args, CustomResourceOptions? opts = null)
public WaitingRoom(String name, WaitingRoomArgs args)
public WaitingRoom(String name, WaitingRoomArgs args, CustomResourceOptions options)
type: alicloud:esa:WaitingRoom
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WaitingRoomArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WaitingRoomArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WaitingRoomArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WaitingRoomArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WaitingRoomArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var waitingRoomResource = new AliCloud.Esa.WaitingRoom("waitingRoomResource", new()
{
SiteId = 0,
Status = "string",
WaitingRoomType = "string",
WaitingRoomName = "string",
QueuingMethod = "string",
TotalActiveUsers = "string",
CookieName = "string",
QueuingStatusCode = "string",
SessionDuration = "string",
HostNameAndPaths = new[]
{
new AliCloud.Esa.Inputs.WaitingRoomHostNameAndPathArgs
{
Domain = "string",
Path = "string",
Subdomain = "string",
},
},
NewUsersPerMinute = "string",
Description = "string",
Language = "string",
CustomPageHtml = "string",
JsonResponseEnable = "string",
DisableSessionRenewalEnable = "string",
QueueAllEnable = "string",
});
example, err := esa.NewWaitingRoom(ctx, "waitingRoomResource", &esa.WaitingRoomArgs{
SiteId: pulumi.Int(0),
Status: pulumi.String("string"),
WaitingRoomType: pulumi.String("string"),
WaitingRoomName: pulumi.String("string"),
QueuingMethod: pulumi.String("string"),
TotalActiveUsers: pulumi.String("string"),
CookieName: pulumi.String("string"),
QueuingStatusCode: pulumi.String("string"),
SessionDuration: pulumi.String("string"),
HostNameAndPaths: esa.WaitingRoomHostNameAndPathArray{
&esa.WaitingRoomHostNameAndPathArgs{
Domain: pulumi.String("string"),
Path: pulumi.String("string"),
Subdomain: pulumi.String("string"),
},
},
NewUsersPerMinute: pulumi.String("string"),
Description: pulumi.String("string"),
Language: pulumi.String("string"),
CustomPageHtml: pulumi.String("string"),
JsonResponseEnable: pulumi.String("string"),
DisableSessionRenewalEnable: pulumi.String("string"),
QueueAllEnable: pulumi.String("string"),
})
var waitingRoomResource = new WaitingRoom("waitingRoomResource", WaitingRoomArgs.builder()
.siteId(0)
.status("string")
.waitingRoomType("string")
.waitingRoomName("string")
.queuingMethod("string")
.totalActiveUsers("string")
.cookieName("string")
.queuingStatusCode("string")
.sessionDuration("string")
.hostNameAndPaths(WaitingRoomHostNameAndPathArgs.builder()
.domain("string")
.path("string")
.subdomain("string")
.build())
.newUsersPerMinute("string")
.description("string")
.language("string")
.customPageHtml("string")
.jsonResponseEnable("string")
.disableSessionRenewalEnable("string")
.queueAllEnable("string")
.build());
waiting_room_resource = alicloud.esa.WaitingRoom("waitingRoomResource",
site_id=0,
status="string",
waiting_room_type="string",
waiting_room_name="string",
queuing_method="string",
total_active_users="string",
cookie_name="string",
queuing_status_code="string",
session_duration="string",
host_name_and_paths=[{
"domain": "string",
"path": "string",
"subdomain": "string",
}],
new_users_per_minute="string",
description="string",
language="string",
custom_page_html="string",
json_response_enable="string",
disable_session_renewal_enable="string",
queue_all_enable="string")
const waitingRoomResource = new alicloud.esa.WaitingRoom("waitingRoomResource", {
siteId: 0,
status: "string",
waitingRoomType: "string",
waitingRoomName: "string",
queuingMethod: "string",
totalActiveUsers: "string",
cookieName: "string",
queuingStatusCode: "string",
sessionDuration: "string",
hostNameAndPaths: [{
domain: "string",
path: "string",
subdomain: "string",
}],
newUsersPerMinute: "string",
description: "string",
language: "string",
customPageHtml: "string",
jsonResponseEnable: "string",
disableSessionRenewalEnable: "string",
queueAllEnable: "string",
});
type: alicloud:esa:WaitingRoom
properties:
cookieName: string
customPageHtml: string
description: string
disableSessionRenewalEnable: string
hostNameAndPaths:
- domain: string
path: string
subdomain: string
jsonResponseEnable: string
language: string
newUsersPerMinute: string
queueAllEnable: string
queuingMethod: string
queuingStatusCode: string
sessionDuration: string
siteId: 0
status: string
totalActiveUsers: string
waitingRoomName: string
waitingRoomType: string
WaitingRoom Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WaitingRoom resource accepts the following input properties:
- string
- The name of the custom cookie.
- Host
Name List<Pulumi.And Paths Ali Cloud. Esa. Inputs. Waiting Room Host Name And Path> - The details of the hostname and path. See
host_name_and_path
below. - New
Users stringPer Minute - The maximum number of new users per minute.
- Queuing
Method string - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- Queuing
Status stringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- Session
Duration string - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- Site
Id int - Status string
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- Total
Active stringUsers - The maximum number of active users.
- Waiting
Room stringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- Waiting
Room stringType - The type of the waiting room. Valid values:
- default
- custom
- Custom
Page stringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - Description string
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- Disable
Session stringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- Json
Response stringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- Language string
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- Queue
All stringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
- string
- The name of the custom cookie.
- Host
Name []WaitingAnd Paths Room Host Name And Path Args - The details of the hostname and path. See
host_name_and_path
below. - New
Users stringPer Minute - The maximum number of new users per minute.
- Queuing
Method string - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- Queuing
Status stringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- Session
Duration string - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- Site
Id int - Status string
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- Total
Active stringUsers - The maximum number of active users.
- Waiting
Room stringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- Waiting
Room stringType - The type of the waiting room. Valid values:
- default
- custom
- Custom
Page stringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - Description string
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- Disable
Session stringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- Json
Response stringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- Language string
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- Queue
All stringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
- String
- The name of the custom cookie.
- host
Name List<WaitingAnd Paths Room Host Name And Path> - The details of the hostname and path. See
host_name_and_path
below. - new
Users StringPer Minute - The maximum number of new users per minute.
- queuing
Method String - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- queuing
Status StringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- session
Duration String - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- site
Id Integer - status String
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- total
Active StringUsers - The maximum number of active users.
- waiting
Room StringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- waiting
Room StringType - The type of the waiting room. Valid values:
- default
- custom
- custom
Page StringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - description String
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- disable
Session StringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- json
Response StringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- language String
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- queue
All StringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
- string
- The name of the custom cookie.
- host
Name WaitingAnd Paths Room Host Name And Path[] - The details of the hostname and path. See
host_name_and_path
below. - new
Users stringPer Minute - The maximum number of new users per minute.
- queuing
Method string - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- queuing
Status stringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- session
Duration string - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- site
Id number - status string
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- total
Active stringUsers - The maximum number of active users.
- waiting
Room stringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- waiting
Room stringType - The type of the waiting room. Valid values:
- default
- custom
- custom
Page stringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - description string
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- disable
Session stringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- json
Response stringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- language string
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- queue
All stringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
- str
- The name of the custom cookie.
- host_
name_ Sequence[Waitingand_ paths Room Host Name And Path Args] - The details of the hostname and path. See
host_name_and_path
below. - new_
users_ strper_ minute - The maximum number of new users per minute.
- queuing_
method str - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- queuing_
status_ strcode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- session_
duration str - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- site_
id int - status str
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- total_
active_ strusers - The maximum number of active users.
- waiting_
room_ strname - Specifies whether to enable the waiting room. Valid values:
- on
- off
- waiting_
room_ strtype - The type of the waiting room. Valid values:
- default
- custom
- custom_
page_ strhtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - description str
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- disable_
session_ strrenewal_ enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- json_
response_ strenable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- language str
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- queue_
all_ strenable - Indicates whether all requests must be queued. Valid values:
- on
- off
- String
- The name of the custom cookie.
- host
Name List<Property Map>And Paths - The details of the hostname and path. See
host_name_and_path
below. - new
Users StringPer Minute - The maximum number of new users per minute.
- queuing
Method String - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- queuing
Status StringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- session
Duration String - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- site
Id Number - status String
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- total
Active StringUsers - The maximum number of active users.
- waiting
Room StringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- waiting
Room StringType - The type of the waiting room. Valid values:
- default
- custom
- custom
Page StringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - description String
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- disable
Session StringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- json
Response StringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- language String
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- queue
All StringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
Outputs
All input properties are implicitly available as output properties. Additionally, the WaitingRoom resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- id String
- The provider-assigned unique ID for this managed resource.
- waiting
Room StringId - The website ID, which can be obtained by calling the ListSites operation.
- id string
- The provider-assigned unique ID for this managed resource.
- waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- id str
- The provider-assigned unique ID for this managed resource.
- waiting_
room_ strid - The website ID, which can be obtained by calling the ListSites operation.
- id String
- The provider-assigned unique ID for this managed resource.
- waiting
Room StringId - The website ID, which can be obtained by calling the ListSites operation.
Look up Existing WaitingRoom Resource
Get an existing WaitingRoom resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: WaitingRoomState, opts?: CustomResourceOptions): WaitingRoom
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cookie_name: Optional[str] = None,
custom_page_html: Optional[str] = None,
description: Optional[str] = None,
disable_session_renewal_enable: Optional[str] = None,
host_name_and_paths: Optional[Sequence[WaitingRoomHostNameAndPathArgs]] = None,
json_response_enable: Optional[str] = None,
language: Optional[str] = None,
new_users_per_minute: Optional[str] = None,
queue_all_enable: Optional[str] = None,
queuing_method: Optional[str] = None,
queuing_status_code: Optional[str] = None,
session_duration: Optional[str] = None,
site_id: Optional[int] = None,
status: Optional[str] = None,
total_active_users: Optional[str] = None,
waiting_room_id: Optional[str] = None,
waiting_room_name: Optional[str] = None,
waiting_room_type: Optional[str] = None) -> WaitingRoom
func GetWaitingRoom(ctx *Context, name string, id IDInput, state *WaitingRoomState, opts ...ResourceOption) (*WaitingRoom, error)
public static WaitingRoom Get(string name, Input<string> id, WaitingRoomState? state, CustomResourceOptions? opts = null)
public static WaitingRoom get(String name, Output<String> id, WaitingRoomState state, CustomResourceOptions options)
resources: _: type: alicloud:esa:WaitingRoom get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- string
- The name of the custom cookie.
- Custom
Page stringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - Description string
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- Disable
Session stringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- Host
Name List<Pulumi.And Paths Ali Cloud. Esa. Inputs. Waiting Room Host Name And Path> - The details of the hostname and path. See
host_name_and_path
below. - Json
Response stringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- Language string
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- New
Users stringPer Minute - The maximum number of new users per minute.
- Queue
All stringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
- Queuing
Method string - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- Queuing
Status stringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- Session
Duration string - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- Site
Id int - Status string
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- Total
Active stringUsers - The maximum number of active users.
- Waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- Waiting
Room stringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- Waiting
Room stringType - The type of the waiting room. Valid values:
- default
- custom
- string
- The name of the custom cookie.
- Custom
Page stringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - Description string
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- Disable
Session stringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- Host
Name []WaitingAnd Paths Room Host Name And Path Args - The details of the hostname and path. See
host_name_and_path
below. - Json
Response stringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- Language string
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- New
Users stringPer Minute - The maximum number of new users per minute.
- Queue
All stringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
- Queuing
Method string - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- Queuing
Status stringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- Session
Duration string - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- Site
Id int - Status string
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- Total
Active stringUsers - The maximum number of active users.
- Waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- Waiting
Room stringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- Waiting
Room stringType - The type of the waiting room. Valid values:
- default
- custom
- String
- The name of the custom cookie.
- custom
Page StringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - description String
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- disable
Session StringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- host
Name List<WaitingAnd Paths Room Host Name And Path> - The details of the hostname and path. See
host_name_and_path
below. - json
Response StringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- language String
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- new
Users StringPer Minute - The maximum number of new users per minute.
- queue
All StringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
- queuing
Method String - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- queuing
Status StringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- session
Duration String - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- site
Id Integer - status String
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- total
Active StringUsers - The maximum number of active users.
- waiting
Room StringId - The website ID, which can be obtained by calling the ListSites operation.
- waiting
Room StringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- waiting
Room StringType - The type of the waiting room. Valid values:
- default
- custom
- string
- The name of the custom cookie.
- custom
Page stringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - description string
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- disable
Session stringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- host
Name WaitingAnd Paths Room Host Name And Path[] - The details of the hostname and path. See
host_name_and_path
below. - json
Response stringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- language string
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- new
Users stringPer Minute - The maximum number of new users per minute.
- queue
All stringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
- queuing
Method string - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- queuing
Status stringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- session
Duration string - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- site
Id number - status string
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- total
Active stringUsers - The maximum number of active users.
- waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- waiting
Room stringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- waiting
Room stringType - The type of the waiting room. Valid values:
- default
- custom
- str
- The name of the custom cookie.
- custom_
page_ strhtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - description str
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- disable_
session_ strrenewal_ enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- host_
name_ Sequence[Waitingand_ paths Room Host Name And Path Args] - The details of the hostname and path. See
host_name_and_path
below. - json_
response_ strenable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- language str
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- new_
users_ strper_ minute - The maximum number of new users per minute.
- queue_
all_ strenable - Indicates whether all requests must be queued. Valid values:
- on
- off
- queuing_
method str - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- queuing_
status_ strcode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- session_
duration str - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- site_
id int - status str
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- total_
active_ strusers - The maximum number of active users.
- waiting_
room_ strid - The website ID, which can be obtained by calling the ListSites operation.
- waiting_
room_ strname - Specifies whether to enable the waiting room. Valid values:
- on
- off
- waiting_
room_ strtype - The type of the waiting room. Valid values:
- default
- custom
- String
- The name of the custom cookie.
- custom
Page StringHtml - The HTML content or identifier of the custom queuing page. This parameter is valid only when
WaitingRoomType
is set tocustom
. The content must be URL-encoded. - description String
- Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- disable
Session StringRenewal Enable - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- host
Name List<Property Map>And Paths - The details of the hostname and path. See
host_name_and_path
below. - json
Response StringEnable - Indicates whether JSON response is enabled. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
- on
- off
- language String
- The language of the waiting room page. This parameter is returned when the waiting room type is set to default. Valid values:
- enus: English.
- zhcn: Simplified Chinese.
- zhhk: Traditional Chinese.
- new
Users StringPer Minute - The maximum number of new users per minute.
- queue
All StringEnable - Indicates whether all requests must be queued. Valid values:
- on
- off
- queuing
Method String - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- queuing
Status StringCode - The queuing method. Valid values:
- random: Users gain access to the origin randomly, regardless of the arrival time.
- fifo: Users gain access to the origin in order of arrival.
- passthrough: Users pass through the waiting room and go straight to the origin.
- reject-all: Users are blocked from reaching the origin.
- session
Duration String - The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
- site
Id Number - status String
- The ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- total
Active StringUsers - The maximum number of active users.
- waiting
Room StringId - The website ID, which can be obtained by calling the ListSites operation.
- waiting
Room StringName - Specifies whether to enable the waiting room. Valid values:
- on
- off
- waiting
Room StringType - The type of the waiting room. Valid values:
- default
- custom
Supporting Types
WaitingRoomHostNameAndPath, WaitingRoomHostNameAndPathArgs
Import
ESA Waiting Room can be imported using the id, e.g.
$ pulumi import alicloud:esa/waitingRoom:WaitingRoom example <site_id>:<waiting_room_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.