alicloud.esa.WaitingRoomEvent
Explore with Pulumi AI
Provides a ESA Waiting Room Event resource.
For information about ESA Waiting Room Event and how to use it, see What is Waiting Room Event.
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 defaultSite = new alicloud.esa.Site("default", {
siteName: "chenxin0116.site",
instanceId: _default.then(_default => _default.sites?.[0]?.instanceId),
coverage: "overseas",
accessType: "NS",
});
const defaultWaitingRoom = new alicloud.esa.WaitingRoom("default", {
status: "off",
siteId: defaultSite.id,
jsonResponseEnable: "off",
description: "example",
waitingRoomType: "default",
disableSessionRenewalEnable: "off",
cookieName: "__aliwaitingroom_example",
waitingRoomName: "waitingroom_example",
queueAllEnable: "off",
queuingStatusCode: "200",
customPageHtml: "",
newUsersPerMinute: "200",
sessionDuration: "5",
language: "zhcn",
totalActiveUsers: "300",
queuingMethod: "fifo",
hostNameAndPaths: [{
domain: "sub_domain.com",
path: "/example",
subdomain: "example_sub_domain.com.",
}],
});
const defaultWaitingRoomEvent = new alicloud.esa.WaitingRoomEvent("default", {
waitingRoomId: defaultWaitingRoom.waitingRoomId,
endTime: "1719863200",
waitingRoomEventName: "WaitingRoomEvent_example",
preQueueStartTime: "",
randomPreQueueEnable: "off",
jsonResponseEnable: "off",
siteId: defaultSite.id,
preQueueEnable: "off",
description: "example",
newUsersPerMinute: "200",
queuingStatusCode: "200",
customPageHtml: "",
language: "zhcn",
totalActiveUsers: "300",
waitingRoomType: "default",
startTime: "1719763200",
status: "off",
disableSessionRenewalEnable: "off",
queuingMethod: "fifo",
sessionDuration: "5",
});
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.esa.get_sites(plan_subscribe_type="enterpriseplan")
default_site = alicloud.esa.Site("default",
site_name="chenxin0116.site",
instance_id=default.sites[0].instance_id,
coverage="overseas",
access_type="NS")
default_waiting_room = alicloud.esa.WaitingRoom("default",
status="off",
site_id=default_site.id,
json_response_enable="off",
description="example",
waiting_room_type="default",
disable_session_renewal_enable="off",
cookie_name="__aliwaitingroom_example",
waiting_room_name="waitingroom_example",
queue_all_enable="off",
queuing_status_code="200",
custom_page_html="",
new_users_per_minute="200",
session_duration="5",
language="zhcn",
total_active_users="300",
queuing_method="fifo",
host_name_and_paths=[{
"domain": "sub_domain.com",
"path": "/example",
"subdomain": "example_sub_domain.com.",
}])
default_waiting_room_event = alicloud.esa.WaitingRoomEvent("default",
waiting_room_id=default_waiting_room.waiting_room_id,
end_time="1719863200",
waiting_room_event_name="WaitingRoomEvent_example",
pre_queue_start_time="",
random_pre_queue_enable="off",
json_response_enable="off",
site_id=default_site.id,
pre_queue_enable="off",
description="example",
new_users_per_minute="200",
queuing_status_code="200",
custom_page_html="",
language="zhcn",
total_active_users="300",
waiting_room_type="default",
start_time="1719763200",
status="off",
disable_session_renewal_enable="off",
queuing_method="fifo",
session_duration="5")
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
}
defaultSite, err := esa.NewSite(ctx, "default", &esa.SiteArgs{
SiteName: pulumi.String("chenxin0116.site"),
InstanceId: pulumi.String(_default.Sites[0].InstanceId),
Coverage: pulumi.String("overseas"),
AccessType: pulumi.String("NS"),
})
if err != nil {
return err
}
defaultWaitingRoom, err := esa.NewWaitingRoom(ctx, "default", &esa.WaitingRoomArgs{
Status: pulumi.String("off"),
SiteId: defaultSite.ID(),
JsonResponseEnable: pulumi.String("off"),
Description: pulumi.String("example"),
WaitingRoomType: pulumi.String("default"),
DisableSessionRenewalEnable: pulumi.String("off"),
CookieName: pulumi.String("__aliwaitingroom_example"),
WaitingRoomName: pulumi.String("waitingroom_example"),
QueueAllEnable: pulumi.String("off"),
QueuingStatusCode: pulumi.String("200"),
CustomPageHtml: pulumi.String(""),
NewUsersPerMinute: pulumi.String("200"),
SessionDuration: pulumi.String("5"),
Language: pulumi.String("zhcn"),
TotalActiveUsers: pulumi.String("300"),
QueuingMethod: pulumi.String("fifo"),
HostNameAndPaths: esa.WaitingRoomHostNameAndPathArray{
&esa.WaitingRoomHostNameAndPathArgs{
Domain: pulumi.String("sub_domain.com"),
Path: pulumi.String("/example"),
Subdomain: pulumi.String("example_sub_domain.com."),
},
},
})
if err != nil {
return err
}
_, err = esa.NewWaitingRoomEvent(ctx, "default", &esa.WaitingRoomEventArgs{
WaitingRoomId: defaultWaitingRoom.WaitingRoomId,
EndTime: pulumi.String("1719863200"),
WaitingRoomEventName: pulumi.String("WaitingRoomEvent_example"),
PreQueueStartTime: pulumi.String(""),
RandomPreQueueEnable: pulumi.String("off"),
JsonResponseEnable: pulumi.String("off"),
SiteId: defaultSite.ID(),
PreQueueEnable: pulumi.String("off"),
Description: pulumi.String("example"),
NewUsersPerMinute: pulumi.String("200"),
QueuingStatusCode: pulumi.String("200"),
CustomPageHtml: pulumi.String(""),
Language: pulumi.String("zhcn"),
TotalActiveUsers: pulumi.String("300"),
WaitingRoomType: pulumi.String("default"),
StartTime: pulumi.String("1719763200"),
Status: pulumi.String("off"),
DisableSessionRenewalEnable: pulumi.String("off"),
QueuingMethod: pulumi.String("fifo"),
SessionDuration: pulumi.String("5"),
})
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 defaultSite = new AliCloud.Esa.Site("default", new()
{
SiteName = "chenxin0116.site",
InstanceId = @default.Apply(@default => @default.Apply(getSitesResult => getSitesResult.Sites[0]?.InstanceId)),
Coverage = "overseas",
AccessType = "NS",
});
var defaultWaitingRoom = new AliCloud.Esa.WaitingRoom("default", new()
{
Status = "off",
SiteId = defaultSite.Id,
JsonResponseEnable = "off",
Description = "example",
WaitingRoomType = "default",
DisableSessionRenewalEnable = "off",
CookieName = "__aliwaitingroom_example",
WaitingRoomName = "waitingroom_example",
QueueAllEnable = "off",
QueuingStatusCode = "200",
CustomPageHtml = "",
NewUsersPerMinute = "200",
SessionDuration = "5",
Language = "zhcn",
TotalActiveUsers = "300",
QueuingMethod = "fifo",
HostNameAndPaths = new[]
{
new AliCloud.Esa.Inputs.WaitingRoomHostNameAndPathArgs
{
Domain = "sub_domain.com",
Path = "/example",
Subdomain = "example_sub_domain.com.",
},
},
});
var defaultWaitingRoomEvent = new AliCloud.Esa.WaitingRoomEvent("default", new()
{
WaitingRoomId = defaultWaitingRoom.WaitingRoomId,
EndTime = "1719863200",
WaitingRoomEventName = "WaitingRoomEvent_example",
PreQueueStartTime = "",
RandomPreQueueEnable = "off",
JsonResponseEnable = "off",
SiteId = defaultSite.Id,
PreQueueEnable = "off",
Description = "example",
NewUsersPerMinute = "200",
QueuingStatusCode = "200",
CustomPageHtml = "",
Language = "zhcn",
TotalActiveUsers = "300",
WaitingRoomType = "default",
StartTime = "1719763200",
Status = "off",
DisableSessionRenewalEnable = "off",
QueuingMethod = "fifo",
SessionDuration = "5",
});
});
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 com.pulumi.alicloud.esa.WaitingRoomEvent;
import com.pulumi.alicloud.esa.WaitingRoomEventArgs;
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 defaultSite = new Site("defaultSite", SiteArgs.builder()
.siteName("chenxin0116.site")
.instanceId(default_.sites()[0].instanceId())
.coverage("overseas")
.accessType("NS")
.build());
var defaultWaitingRoom = new WaitingRoom("defaultWaitingRoom", WaitingRoomArgs.builder()
.status("off")
.siteId(defaultSite.id())
.jsonResponseEnable("off")
.description("example")
.waitingRoomType("default")
.disableSessionRenewalEnable("off")
.cookieName("__aliwaitingroom_example")
.waitingRoomName("waitingroom_example")
.queueAllEnable("off")
.queuingStatusCode("200")
.customPageHtml("")
.newUsersPerMinute("200")
.sessionDuration("5")
.language("zhcn")
.totalActiveUsers("300")
.queuingMethod("fifo")
.hostNameAndPaths(WaitingRoomHostNameAndPathArgs.builder()
.domain("sub_domain.com")
.path("/example")
.subdomain("example_sub_domain.com.")
.build())
.build());
var defaultWaitingRoomEvent = new WaitingRoomEvent("defaultWaitingRoomEvent", WaitingRoomEventArgs.builder()
.waitingRoomId(defaultWaitingRoom.waitingRoomId())
.endTime("1719863200")
.waitingRoomEventName("WaitingRoomEvent_example")
.preQueueStartTime("")
.randomPreQueueEnable("off")
.jsonResponseEnable("off")
.siteId(defaultSite.id())
.preQueueEnable("off")
.description("example")
.newUsersPerMinute("200")
.queuingStatusCode("200")
.customPageHtml("")
.language("zhcn")
.totalActiveUsers("300")
.waitingRoomType("default")
.startTime("1719763200")
.status("off")
.disableSessionRenewalEnable("off")
.queuingMethod("fifo")
.sessionDuration("5")
.build());
}
}
resources:
defaultSite:
type: alicloud:esa:Site
name: default
properties:
siteName: chenxin0116.site
instanceId: ${default.sites[0].instanceId}
coverage: overseas
accessType: NS
defaultWaitingRoom:
type: alicloud:esa:WaitingRoom
name: default
properties:
status: off
siteId: ${defaultSite.id}
jsonResponseEnable: off
description: example
waitingRoomType: default
disableSessionRenewalEnable: off
cookieName: __aliwaitingroom_example
waitingRoomName: waitingroom_example
queueAllEnable: off
queuingStatusCode: '200'
customPageHtml: ""
newUsersPerMinute: '200'
sessionDuration: '5'
language: zhcn
totalActiveUsers: '300'
queuingMethod: fifo
hostNameAndPaths:
- domain: sub_domain.com
path: /example
subdomain: example_sub_domain.com.
defaultWaitingRoomEvent:
type: alicloud:esa:WaitingRoomEvent
name: default
properties:
waitingRoomId: ${defaultWaitingRoom.waitingRoomId}
endTime: '1719863200'
waitingRoomEventName: WaitingRoomEvent_example
preQueueStartTime: ""
randomPreQueueEnable: off
jsonResponseEnable: off
siteId: ${defaultSite.id}
preQueueEnable: off
description: example
newUsersPerMinute: '200'
queuingStatusCode: '200'
customPageHtml: ""
language: zhcn
totalActiveUsers: '300'
waitingRoomType: default
startTime: '1719763200'
status: off
disableSessionRenewalEnable: off
queuingMethod: fifo
sessionDuration: '5'
variables:
default:
fn::invoke:
function: alicloud:esa:getSites
arguments:
planSubscribeType: enterpriseplan
Create WaitingRoomEvent Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WaitingRoomEvent(name: string, args: WaitingRoomEventArgs, opts?: CustomResourceOptions);
@overload
def WaitingRoomEvent(resource_name: str,
args: WaitingRoomEventArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WaitingRoomEvent(resource_name: str,
opts: Optional[ResourceOptions] = None,
status: Optional[str] = None,
site_id: Optional[int] = None,
queuing_method: Optional[str] = None,
end_time: Optional[str] = None,
total_active_users: Optional[str] = None,
start_time: Optional[str] = None,
new_users_per_minute: Optional[str] = None,
queuing_status_code: Optional[str] = None,
waiting_room_type: Optional[str] = None,
waiting_room_event_name: Optional[str] = None,
session_duration: Optional[str] = None,
random_pre_queue_enable: Optional[str] = None,
pre_queue_enable: 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,
waiting_room_id: Optional[str] = None,
pre_queue_start_time: Optional[str] = None)
func NewWaitingRoomEvent(ctx *Context, name string, args WaitingRoomEventArgs, opts ...ResourceOption) (*WaitingRoomEvent, error)
public WaitingRoomEvent(string name, WaitingRoomEventArgs args, CustomResourceOptions? opts = null)
public WaitingRoomEvent(String name, WaitingRoomEventArgs args)
public WaitingRoomEvent(String name, WaitingRoomEventArgs args, CustomResourceOptions options)
type: alicloud:esa:WaitingRoomEvent
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 WaitingRoomEventArgs
- 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 WaitingRoomEventArgs
- 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 WaitingRoomEventArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WaitingRoomEventArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WaitingRoomEventArgs
- 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 waitingRoomEventResource = new AliCloud.Esa.WaitingRoomEvent("waitingRoomEventResource", new()
{
Status = "string",
SiteId = 0,
QueuingMethod = "string",
EndTime = "string",
TotalActiveUsers = "string",
StartTime = "string",
NewUsersPerMinute = "string",
QueuingStatusCode = "string",
WaitingRoomType = "string",
WaitingRoomEventName = "string",
SessionDuration = "string",
RandomPreQueueEnable = "string",
PreQueueEnable = "string",
Description = "string",
Language = "string",
CustomPageHtml = "string",
JsonResponseEnable = "string",
DisableSessionRenewalEnable = "string",
WaitingRoomId = "string",
PreQueueStartTime = "string",
});
example, err := esa.NewWaitingRoomEvent(ctx, "waitingRoomEventResource", &esa.WaitingRoomEventArgs{
Status: pulumi.String("string"),
SiteId: pulumi.Int(0),
QueuingMethod: pulumi.String("string"),
EndTime: pulumi.String("string"),
TotalActiveUsers: pulumi.String("string"),
StartTime: pulumi.String("string"),
NewUsersPerMinute: pulumi.String("string"),
QueuingStatusCode: pulumi.String("string"),
WaitingRoomType: pulumi.String("string"),
WaitingRoomEventName: pulumi.String("string"),
SessionDuration: pulumi.String("string"),
RandomPreQueueEnable: pulumi.String("string"),
PreQueueEnable: pulumi.String("string"),
Description: pulumi.String("string"),
Language: pulumi.String("string"),
CustomPageHtml: pulumi.String("string"),
JsonResponseEnable: pulumi.String("string"),
DisableSessionRenewalEnable: pulumi.String("string"),
WaitingRoomId: pulumi.String("string"),
PreQueueStartTime: pulumi.String("string"),
})
var waitingRoomEventResource = new WaitingRoomEvent("waitingRoomEventResource", WaitingRoomEventArgs.builder()
.status("string")
.siteId(0)
.queuingMethod("string")
.endTime("string")
.totalActiveUsers("string")
.startTime("string")
.newUsersPerMinute("string")
.queuingStatusCode("string")
.waitingRoomType("string")
.waitingRoomEventName("string")
.sessionDuration("string")
.randomPreQueueEnable("string")
.preQueueEnable("string")
.description("string")
.language("string")
.customPageHtml("string")
.jsonResponseEnable("string")
.disableSessionRenewalEnable("string")
.waitingRoomId("string")
.preQueueStartTime("string")
.build());
waiting_room_event_resource = alicloud.esa.WaitingRoomEvent("waitingRoomEventResource",
status="string",
site_id=0,
queuing_method="string",
end_time="string",
total_active_users="string",
start_time="string",
new_users_per_minute="string",
queuing_status_code="string",
waiting_room_type="string",
waiting_room_event_name="string",
session_duration="string",
random_pre_queue_enable="string",
pre_queue_enable="string",
description="string",
language="string",
custom_page_html="string",
json_response_enable="string",
disable_session_renewal_enable="string",
waiting_room_id="string",
pre_queue_start_time="string")
const waitingRoomEventResource = new alicloud.esa.WaitingRoomEvent("waitingRoomEventResource", {
status: "string",
siteId: 0,
queuingMethod: "string",
endTime: "string",
totalActiveUsers: "string",
startTime: "string",
newUsersPerMinute: "string",
queuingStatusCode: "string",
waitingRoomType: "string",
waitingRoomEventName: "string",
sessionDuration: "string",
randomPreQueueEnable: "string",
preQueueEnable: "string",
description: "string",
language: "string",
customPageHtml: "string",
jsonResponseEnable: "string",
disableSessionRenewalEnable: "string",
waitingRoomId: "string",
preQueueStartTime: "string",
});
type: alicloud:esa:WaitingRoomEvent
properties:
customPageHtml: string
description: string
disableSessionRenewalEnable: string
endTime: string
jsonResponseEnable: string
language: string
newUsersPerMinute: string
preQueueEnable: string
preQueueStartTime: string
queuingMethod: string
queuingStatusCode: string
randomPreQueueEnable: string
sessionDuration: string
siteId: 0
startTime: string
status: string
totalActiveUsers: string
waitingRoomEventName: string
waitingRoomId: string
waitingRoomType: string
WaitingRoomEvent 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 WaitingRoomEvent resource accepts the following input properties:
- End
Time string - The start time of the event. This value is a UNIX timestamp.
- New
Users stringPer Minute - The maximum number of active users.
- Queuing
Method string - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- Session
Duration string - The maximum number of new users per minute.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Start
Time string - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- Status string
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- Total
Active stringUsers - The name of the waiting room event.
- Waiting
Room stringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- Waiting
Room stringType - The description of the waiting room.
- Custom
Page stringHtml - The type of the waiting room. Valid values:
- default
- custom
- Description string
- Specifies whether to enable JSON response. 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 - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- Language string
- Specifies whether to enable random queuing.
- on
- off
- Pre
Queue stringEnable - The end time of the event. This value is a UNIX timestamp.
- Pre
Queue stringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- Random
Pre stringQueue Enable - The start time for pre-queuing.
- Waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- End
Time string - The start time of the event. This value is a UNIX timestamp.
- New
Users stringPer Minute - The maximum number of active users.
- Queuing
Method string - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- Session
Duration string - The maximum number of new users per minute.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Start
Time string - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- Status string
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- Total
Active stringUsers - The name of the waiting room event.
- Waiting
Room stringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- Waiting
Room stringType - The description of the waiting room.
- Custom
Page stringHtml - The type of the waiting room. Valid values:
- default
- custom
- Description string
- Specifies whether to enable JSON response. 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 - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- Language string
- Specifies whether to enable random queuing.
- on
- off
- Pre
Queue stringEnable - The end time of the event. This value is a UNIX timestamp.
- Pre
Queue stringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- Random
Pre stringQueue Enable - The start time for pre-queuing.
- Waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- end
Time String - The start time of the event. This value is a UNIX timestamp.
- new
Users StringPer Minute - The maximum number of active users.
- queuing
Method String - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- session
Duration String - The maximum number of new users per minute.
- site
Id Integer - The site ID, which can be obtained by calling the ListSites API.
- start
Time String - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- status String
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- total
Active StringUsers - The name of the waiting room event.
- waiting
Room StringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- waiting
Room StringType - The description of the waiting room.
- custom
Page StringHtml - The type of the waiting room. Valid values:
- default
- custom
- description String
- Specifies whether to enable JSON response. 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 - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- language String
- Specifies whether to enable random queuing.
- on
- off
- pre
Queue StringEnable - The end time of the event. This value is a UNIX timestamp.
- pre
Queue StringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- random
Pre StringQueue Enable - The start time for pre-queuing.
- waiting
Room StringId - The website ID, which can be obtained by calling the ListSites operation.
- end
Time string - The start time of the event. This value is a UNIX timestamp.
- new
Users stringPer Minute - The maximum number of active users.
- queuing
Method string - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- session
Duration string - The maximum number of new users per minute.
- site
Id number - The site ID, which can be obtained by calling the ListSites API.
- start
Time string - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- status string
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- total
Active stringUsers - The name of the waiting room event.
- waiting
Room stringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- waiting
Room stringType - The description of the waiting room.
- custom
Page stringHtml - The type of the waiting room. Valid values:
- default
- custom
- description string
- Specifies whether to enable JSON response. 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 - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- language string
- Specifies whether to enable random queuing.
- on
- off
- pre
Queue stringEnable - The end time of the event. This value is a UNIX timestamp.
- pre
Queue stringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- random
Pre stringQueue Enable - The start time for pre-queuing.
- waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- end_
time str - The start time of the event. This value is a UNIX timestamp.
- new_
users_ strper_ minute - The maximum number of active users.
- queuing_
method str - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- session_
duration str - The maximum number of new users per minute.
- site_
id int - The site ID, which can be obtained by calling the ListSites API.
- start_
time str - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- status str
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- total_
active_ strusers - The name of the waiting room event.
- waiting_
room_ strevent_ name - Specifies whether to enable the waiting room event. Valid values:
- waiting_
room_ strtype - The description of the waiting room.
- custom_
page_ strhtml - The type of the waiting room. Valid values:
- default
- custom
- description str
- Specifies whether to enable JSON response. 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 - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- language str
- Specifies whether to enable random queuing.
- on
- off
- pre_
queue_ strenable - The end time of the event. This value is a UNIX timestamp.
- pre_
queue_ strstart_ time - Specifies whether to enable pre-queuing.
- on
- off
- random_
pre_ strqueue_ enable - The start time for pre-queuing.
- waiting_
room_ strid - The website ID, which can be obtained by calling the ListSites operation.
- end
Time String - The start time of the event. This value is a UNIX timestamp.
- new
Users StringPer Minute - The maximum number of active users.
- queuing
Method String - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- session
Duration String - The maximum number of new users per minute.
- site
Id Number - The site ID, which can be obtained by calling the ListSites API.
- start
Time String - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- status String
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- total
Active StringUsers - The name of the waiting room event.
- waiting
Room StringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- waiting
Room StringType - The description of the waiting room.
- custom
Page StringHtml - The type of the waiting room. Valid values:
- default
- custom
- description String
- Specifies whether to enable JSON response. 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 - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- language String
- Specifies whether to enable random queuing.
- on
- off
- pre
Queue StringEnable - The end time of the event. This value is a UNIX timestamp.
- pre
Queue StringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- random
Pre StringQueue Enable - The start time for pre-queuing.
- waiting
Room StringId - The website ID, which can be obtained by calling the ListSites operation.
Outputs
All input properties are implicitly available as output properties. Additionally, the WaitingRoomEvent resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Waiting
Room intEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Waiting
Room intEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- id String
- The provider-assigned unique ID for this managed resource.
- waiting
Room IntegerEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- id string
- The provider-assigned unique ID for this managed resource.
- waiting
Room numberEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- id str
- The provider-assigned unique ID for this managed resource.
- waiting_
room_ intevent_ id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- id String
- The provider-assigned unique ID for this managed resource.
- waiting
Room NumberEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
Look up Existing WaitingRoomEvent Resource
Get an existing WaitingRoomEvent 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?: WaitingRoomEventState, opts?: CustomResourceOptions): WaitingRoomEvent
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
custom_page_html: Optional[str] = None,
description: Optional[str] = None,
disable_session_renewal_enable: Optional[str] = None,
end_time: Optional[str] = None,
json_response_enable: Optional[str] = None,
language: Optional[str] = None,
new_users_per_minute: Optional[str] = None,
pre_queue_enable: Optional[str] = None,
pre_queue_start_time: Optional[str] = None,
queuing_method: Optional[str] = None,
queuing_status_code: Optional[str] = None,
random_pre_queue_enable: Optional[str] = None,
session_duration: Optional[str] = None,
site_id: Optional[int] = None,
start_time: Optional[str] = None,
status: Optional[str] = None,
total_active_users: Optional[str] = None,
waiting_room_event_id: Optional[int] = None,
waiting_room_event_name: Optional[str] = None,
waiting_room_id: Optional[str] = None,
waiting_room_type: Optional[str] = None) -> WaitingRoomEvent
func GetWaitingRoomEvent(ctx *Context, name string, id IDInput, state *WaitingRoomEventState, opts ...ResourceOption) (*WaitingRoomEvent, error)
public static WaitingRoomEvent Get(string name, Input<string> id, WaitingRoomEventState? state, CustomResourceOptions? opts = null)
public static WaitingRoomEvent get(String name, Output<String> id, WaitingRoomEventState state, CustomResourceOptions options)
resources: _: type: alicloud:esa:WaitingRoomEvent 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.
- Custom
Page stringHtml - The type of the waiting room. Valid values:
- default
- custom
- Description string
- Specifies whether to enable JSON response. 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.
- End
Time string - The start time of the event. This value is a UNIX timestamp.
- Json
Response stringEnable - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- Language string
- Specifies whether to enable random queuing.
- on
- off
- New
Users stringPer Minute - The maximum number of active users.
- Pre
Queue stringEnable - The end time of the event. This value is a UNIX timestamp.
- Pre
Queue stringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- Queuing
Method string - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- Random
Pre stringQueue Enable - The start time for pre-queuing.
- Session
Duration string - The maximum number of new users per minute.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Start
Time string - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- Status string
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- Total
Active stringUsers - The name of the waiting room event.
- Waiting
Room intEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- Waiting
Room stringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- Waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- Waiting
Room stringType - The description of the waiting room.
- Custom
Page stringHtml - The type of the waiting room. Valid values:
- default
- custom
- Description string
- Specifies whether to enable JSON response. 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.
- End
Time string - The start time of the event. This value is a UNIX timestamp.
- Json
Response stringEnable - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- Language string
- Specifies whether to enable random queuing.
- on
- off
- New
Users stringPer Minute - The maximum number of active users.
- Pre
Queue stringEnable - The end time of the event. This value is a UNIX timestamp.
- Pre
Queue stringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- Queuing
Method string - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- Random
Pre stringQueue Enable - The start time for pre-queuing.
- Session
Duration string - The maximum number of new users per minute.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Start
Time string - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- Status string
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- Total
Active stringUsers - The name of the waiting room event.
- Waiting
Room intEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- Waiting
Room stringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- Waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- Waiting
Room stringType - The description of the waiting room.
- custom
Page StringHtml - The type of the waiting room. Valid values:
- default
- custom
- description String
- Specifies whether to enable JSON response. 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.
- end
Time String - The start time of the event. This value is a UNIX timestamp.
- json
Response StringEnable - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- language String
- Specifies whether to enable random queuing.
- on
- off
- new
Users StringPer Minute - The maximum number of active users.
- pre
Queue StringEnable - The end time of the event. This value is a UNIX timestamp.
- pre
Queue StringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- queuing
Method String - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- random
Pre StringQueue Enable - The start time for pre-queuing.
- session
Duration String - The maximum number of new users per minute.
- site
Id Integer - The site ID, which can be obtained by calling the ListSites API.
- start
Time String - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- status String
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- total
Active StringUsers - The name of the waiting room event.
- waiting
Room IntegerEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- waiting
Room StringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- waiting
Room StringId - The website ID, which can be obtained by calling the ListSites operation.
- waiting
Room StringType - The description of the waiting room.
- custom
Page stringHtml - The type of the waiting room. Valid values:
- default
- custom
- description string
- Specifies whether to enable JSON response. 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.
- end
Time string - The start time of the event. This value is a UNIX timestamp.
- json
Response stringEnable - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- language string
- Specifies whether to enable random queuing.
- on
- off
- new
Users stringPer Minute - The maximum number of active users.
- pre
Queue stringEnable - The end time of the event. This value is a UNIX timestamp.
- pre
Queue stringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- queuing
Method string - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- random
Pre stringQueue Enable - The start time for pre-queuing.
- session
Duration string - The maximum number of new users per minute.
- site
Id number - The site ID, which can be obtained by calling the ListSites API.
- start
Time string - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- status string
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- total
Active stringUsers - The name of the waiting room event.
- waiting
Room numberEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- waiting
Room stringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- waiting
Room stringId - The website ID, which can be obtained by calling the ListSites operation.
- waiting
Room stringType - The description of the waiting room.
- custom_
page_ strhtml - The type of the waiting room. Valid values:
- default
- custom
- description str
- Specifies whether to enable JSON response. 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.
- end_
time str - The start time of the event. This value is a UNIX timestamp.
- json_
response_ strenable - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- language str
- Specifies whether to enable random queuing.
- on
- off
- new_
users_ strper_ minute - The maximum number of active users.
- pre_
queue_ strenable - The end time of the event. This value is a UNIX timestamp.
- pre_
queue_ strstart_ time - Specifies whether to enable pre-queuing.
- on
- off
- queuing_
method str - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- random_
pre_ strqueue_ enable - The start time for pre-queuing.
- session_
duration str - The maximum number of new users per minute.
- site_
id int - The site ID, which can be obtained by calling the ListSites API.
- start_
time str - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- status str
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- total_
active_ strusers - The name of the waiting room event.
- waiting_
room_ intevent_ id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- waiting_
room_ strevent_ name - Specifies whether to enable the waiting room event. Valid values:
- waiting_
room_ strid - The website ID, which can be obtained by calling the ListSites operation.
- waiting_
room_ strtype - The description of the waiting room.
- custom
Page StringHtml - The type of the waiting room. Valid values:
- default
- custom
- description String
- Specifies whether to enable JSON response. 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.
- end
Time String - The start time of the event. This value is a UNIX timestamp.
- json
Response StringEnable - The HTTP status code to return while a user is in the queue. Valid values:
- 200
- 202
- 429
- language String
- Specifies whether to enable random queuing.
- on
- off
- new
Users StringPer Minute - The maximum number of active users.
- pre
Queue StringEnable - The end time of the event. This value is a UNIX timestamp.
- pre
Queue StringStart Time - Specifies whether to enable pre-queuing.
- on
- off
- queuing
Method String - Specifies whether to disable session renewal. Valid values:
- on
- off
- 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: All requests are blocked from accessing the origin.
- random
Pre StringQueue Enable - The start time for pre-queuing.
- session
Duration String - The maximum number of new users per minute.
- site
Id Number - The site ID, which can be obtained by calling the ListSites API.
- start
Time String - The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
- status String
- The ID of the waiting room event, which can be obtained by calling the ListWaitingRoomEvents operation.
- total
Active StringUsers - The name of the waiting room event.
- waiting
Room NumberEvent Id - The unique ID of the waiting room, which can be obtained by calling the ListWaitingRooms operation.
- waiting
Room StringEvent Name - Specifies whether to enable the waiting room event. Valid values:
- waiting
Room StringId - The website ID, which can be obtained by calling the ListSites operation.
- waiting
Room StringType - The description of the waiting room.
Import
ESA Waiting Room Event can be imported using the id, e.g.
$ pulumi import alicloud:esa/waitingRoomEvent:WaitingRoomEvent example <site_id>:<waiting_room_id>:<waiting_room_event_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.