gcore.WaapCustomPageSet
Explore with Pulumi AI
Represent WAAP custom page set
Create WaapCustomPageSet Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WaapCustomPageSet(name: string, args?: WaapCustomPageSetArgs, opts?: CustomResourceOptions);
@overload
def WaapCustomPageSet(resource_name: str,
args: Optional[WaapCustomPageSetArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def WaapCustomPageSet(resource_name: str,
opts: Optional[ResourceOptions] = None,
block: Optional[WaapCustomPageSetBlockArgs] = None,
block_csrf: Optional[WaapCustomPageSetBlockCsrfArgs] = None,
captcha: Optional[WaapCustomPageSetCaptchaArgs] = None,
cookie_disabled: Optional[WaapCustomPageSetCookieDisabledArgs] = None,
domains: Optional[Sequence[float]] = None,
handshake: Optional[WaapCustomPageSetHandshakeArgs] = None,
javascript_disabled: Optional[WaapCustomPageSetJavascriptDisabledArgs] = None,
name: Optional[str] = None,
waap_custom_page_set_id: Optional[str] = None)
func NewWaapCustomPageSet(ctx *Context, name string, args *WaapCustomPageSetArgs, opts ...ResourceOption) (*WaapCustomPageSet, error)
public WaapCustomPageSet(string name, WaapCustomPageSetArgs? args = null, CustomResourceOptions? opts = null)
public WaapCustomPageSet(String name, WaapCustomPageSetArgs args)
public WaapCustomPageSet(String name, WaapCustomPageSetArgs args, CustomResourceOptions options)
type: gcore:WaapCustomPageSet
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 WaapCustomPageSetArgs
- 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 WaapCustomPageSetArgs
- 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 WaapCustomPageSetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WaapCustomPageSetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WaapCustomPageSetArgs
- 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 waapCustomPageSetResource = new Gcore.WaapCustomPageSet("waapCustomPageSetResource", new()
{
Block = new Gcore.Inputs.WaapCustomPageSetBlockArgs
{
Enabled = false,
Header = "string",
Logo = "string",
Text = "string",
Title = "string",
},
BlockCsrf = new Gcore.Inputs.WaapCustomPageSetBlockCsrfArgs
{
Enabled = false,
Header = "string",
Logo = "string",
Text = "string",
Title = "string",
},
Captcha = new Gcore.Inputs.WaapCustomPageSetCaptchaArgs
{
Enabled = false,
Error = "string",
Header = "string",
Logo = "string",
Text = "string",
Title = "string",
},
CookieDisabled = new Gcore.Inputs.WaapCustomPageSetCookieDisabledArgs
{
Enabled = false,
Header = "string",
Text = "string",
},
Domains = new[]
{
0,
},
Handshake = new Gcore.Inputs.WaapCustomPageSetHandshakeArgs
{
Enabled = false,
Header = "string",
Logo = "string",
Title = "string",
},
JavascriptDisabled = new Gcore.Inputs.WaapCustomPageSetJavascriptDisabledArgs
{
Enabled = false,
Header = "string",
Text = "string",
},
Name = "string",
WaapCustomPageSetId = "string",
});
example, err := gcore.NewWaapCustomPageSet(ctx, "waapCustomPageSetResource", &gcore.WaapCustomPageSetArgs{
Block: &gcore.WaapCustomPageSetBlockArgs{
Enabled: pulumi.Bool(false),
Header: pulumi.String("string"),
Logo: pulumi.String("string"),
Text: pulumi.String("string"),
Title: pulumi.String("string"),
},
BlockCsrf: &gcore.WaapCustomPageSetBlockCsrfArgs{
Enabled: pulumi.Bool(false),
Header: pulumi.String("string"),
Logo: pulumi.String("string"),
Text: pulumi.String("string"),
Title: pulumi.String("string"),
},
Captcha: &gcore.WaapCustomPageSetCaptchaArgs{
Enabled: pulumi.Bool(false),
Error: pulumi.String("string"),
Header: pulumi.String("string"),
Logo: pulumi.String("string"),
Text: pulumi.String("string"),
Title: pulumi.String("string"),
},
CookieDisabled: &gcore.WaapCustomPageSetCookieDisabledArgs{
Enabled: pulumi.Bool(false),
Header: pulumi.String("string"),
Text: pulumi.String("string"),
},
Domains: pulumi.Float64Array{
pulumi.Float64(0),
},
Handshake: &gcore.WaapCustomPageSetHandshakeArgs{
Enabled: pulumi.Bool(false),
Header: pulumi.String("string"),
Logo: pulumi.String("string"),
Title: pulumi.String("string"),
},
JavascriptDisabled: &gcore.WaapCustomPageSetJavascriptDisabledArgs{
Enabled: pulumi.Bool(false),
Header: pulumi.String("string"),
Text: pulumi.String("string"),
},
Name: pulumi.String("string"),
WaapCustomPageSetId: pulumi.String("string"),
})
var waapCustomPageSetResource = new WaapCustomPageSet("waapCustomPageSetResource", WaapCustomPageSetArgs.builder()
.block(WaapCustomPageSetBlockArgs.builder()
.enabled(false)
.header("string")
.logo("string")
.text("string")
.title("string")
.build())
.blockCsrf(WaapCustomPageSetBlockCsrfArgs.builder()
.enabled(false)
.header("string")
.logo("string")
.text("string")
.title("string")
.build())
.captcha(WaapCustomPageSetCaptchaArgs.builder()
.enabled(false)
.error("string")
.header("string")
.logo("string")
.text("string")
.title("string")
.build())
.cookieDisabled(WaapCustomPageSetCookieDisabledArgs.builder()
.enabled(false)
.header("string")
.text("string")
.build())
.domains(0.0)
.handshake(WaapCustomPageSetHandshakeArgs.builder()
.enabled(false)
.header("string")
.logo("string")
.title("string")
.build())
.javascriptDisabled(WaapCustomPageSetJavascriptDisabledArgs.builder()
.enabled(false)
.header("string")
.text("string")
.build())
.name("string")
.waapCustomPageSetId("string")
.build());
waap_custom_page_set_resource = gcore.WaapCustomPageSet("waapCustomPageSetResource",
block={
"enabled": False,
"header": "string",
"logo": "string",
"text": "string",
"title": "string",
},
block_csrf={
"enabled": False,
"header": "string",
"logo": "string",
"text": "string",
"title": "string",
},
captcha={
"enabled": False,
"error": "string",
"header": "string",
"logo": "string",
"text": "string",
"title": "string",
},
cookie_disabled={
"enabled": False,
"header": "string",
"text": "string",
},
domains=[0],
handshake={
"enabled": False,
"header": "string",
"logo": "string",
"title": "string",
},
javascript_disabled={
"enabled": False,
"header": "string",
"text": "string",
},
name="string",
waap_custom_page_set_id="string")
const waapCustomPageSetResource = new gcore.WaapCustomPageSet("waapCustomPageSetResource", {
block: {
enabled: false,
header: "string",
logo: "string",
text: "string",
title: "string",
},
blockCsrf: {
enabled: false,
header: "string",
logo: "string",
text: "string",
title: "string",
},
captcha: {
enabled: false,
error: "string",
header: "string",
logo: "string",
text: "string",
title: "string",
},
cookieDisabled: {
enabled: false,
header: "string",
text: "string",
},
domains: [0],
handshake: {
enabled: false,
header: "string",
logo: "string",
title: "string",
},
javascriptDisabled: {
enabled: false,
header: "string",
text: "string",
},
name: "string",
waapCustomPageSetId: "string",
});
type: gcore:WaapCustomPageSet
properties:
block:
enabled: false
header: string
logo: string
text: string
title: string
blockCsrf:
enabled: false
header: string
logo: string
text: string
title: string
captcha:
enabled: false
error: string
header: string
logo: string
text: string
title: string
cookieDisabled:
enabled: false
header: string
text: string
domains:
- 0
handshake:
enabled: false
header: string
logo: string
title: string
javascriptDisabled:
enabled: false
header: string
text: string
name: string
waapCustomPageSetId: string
WaapCustomPageSet 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 WaapCustomPageSet resource accepts the following input properties:
- Block
Waap
Custom Page Set Block - Block
Csrf WaapCustom Page Set Block Csrf - Captcha
Waap
Custom Page Set Captcha - Waap
Custom Page Set Cookie Disabled - Domains List<double>
- List of domain IDs associated with this custom page set.
- Handshake
Waap
Custom Page Set Handshake - Javascript
Disabled WaapCustom Page Set Javascript Disabled - Name string
- Name of the custom page set.
- Waap
Custom stringPage Set Id - The ID of this resource.
- Block
Waap
Custom Page Set Block Args - Block
Csrf WaapCustom Page Set Block Csrf Args - Captcha
Waap
Custom Page Set Captcha Args - Waap
Custom Page Set Cookie Disabled Args - Domains []float64
- List of domain IDs associated with this custom page set.
- Handshake
Waap
Custom Page Set Handshake Args - Javascript
Disabled WaapCustom Page Set Javascript Disabled Args - Name string
- Name of the custom page set.
- Waap
Custom stringPage Set Id - The ID of this resource.
- block
Waap
Custom Page Set Block - block
Csrf WaapCustom Page Set Block Csrf - captcha
Waap
Custom Page Set Captcha - Waap
Custom Page Set Cookie Disabled - domains List<Double>
- List of domain IDs associated with this custom page set.
- handshake
Waap
Custom Page Set Handshake - javascript
Disabled WaapCustom Page Set Javascript Disabled - name String
- Name of the custom page set.
- waap
Custom StringPage Set Id - The ID of this resource.
- block
Waap
Custom Page Set Block - block
Csrf WaapCustom Page Set Block Csrf - captcha
Waap
Custom Page Set Captcha - Waap
Custom Page Set Cookie Disabled - domains number[]
- List of domain IDs associated with this custom page set.
- handshake
Waap
Custom Page Set Handshake - javascript
Disabled WaapCustom Page Set Javascript Disabled - name string
- Name of the custom page set.
- waap
Custom stringPage Set Id - The ID of this resource.
- block
Waap
Custom Page Set Block Args - block_
csrf WaapCustom Page Set Block Csrf Args - captcha
Waap
Custom Page Set Captcha Args - Waap
Custom Page Set Cookie Disabled Args - domains Sequence[float]
- List of domain IDs associated with this custom page set.
- handshake
Waap
Custom Page Set Handshake Args - javascript_
disabled WaapCustom Page Set Javascript Disabled Args - name str
- Name of the custom page set.
- waap_
custom_ strpage_ set_ id - The ID of this resource.
- block Property Map
- block
Csrf Property Map - captcha Property Map
- Property Map
- domains List<Number>
- List of domain IDs associated with this custom page set.
- handshake Property Map
- javascript
Disabled Property Map - name String
- Name of the custom page set.
- waap
Custom StringPage Set Id - The ID of this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the WaapCustomPageSet resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing WaapCustomPageSet Resource
Get an existing WaapCustomPageSet 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?: WaapCustomPageSetState, opts?: CustomResourceOptions): WaapCustomPageSet
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
block: Optional[WaapCustomPageSetBlockArgs] = None,
block_csrf: Optional[WaapCustomPageSetBlockCsrfArgs] = None,
captcha: Optional[WaapCustomPageSetCaptchaArgs] = None,
cookie_disabled: Optional[WaapCustomPageSetCookieDisabledArgs] = None,
domains: Optional[Sequence[float]] = None,
handshake: Optional[WaapCustomPageSetHandshakeArgs] = None,
javascript_disabled: Optional[WaapCustomPageSetJavascriptDisabledArgs] = None,
name: Optional[str] = None,
waap_custom_page_set_id: Optional[str] = None) -> WaapCustomPageSet
func GetWaapCustomPageSet(ctx *Context, name string, id IDInput, state *WaapCustomPageSetState, opts ...ResourceOption) (*WaapCustomPageSet, error)
public static WaapCustomPageSet Get(string name, Input<string> id, WaapCustomPageSetState? state, CustomResourceOptions? opts = null)
public static WaapCustomPageSet get(String name, Output<String> id, WaapCustomPageSetState state, CustomResourceOptions options)
resources: _: type: gcore:WaapCustomPageSet 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.
- Block
Waap
Custom Page Set Block - Block
Csrf WaapCustom Page Set Block Csrf - Captcha
Waap
Custom Page Set Captcha - Waap
Custom Page Set Cookie Disabled - Domains List<double>
- List of domain IDs associated with this custom page set.
- Handshake
Waap
Custom Page Set Handshake - Javascript
Disabled WaapCustom Page Set Javascript Disabled - Name string
- Name of the custom page set.
- Waap
Custom stringPage Set Id - The ID of this resource.
- Block
Waap
Custom Page Set Block Args - Block
Csrf WaapCustom Page Set Block Csrf Args - Captcha
Waap
Custom Page Set Captcha Args - Waap
Custom Page Set Cookie Disabled Args - Domains []float64
- List of domain IDs associated with this custom page set.
- Handshake
Waap
Custom Page Set Handshake Args - Javascript
Disabled WaapCustom Page Set Javascript Disabled Args - Name string
- Name of the custom page set.
- Waap
Custom stringPage Set Id - The ID of this resource.
- block
Waap
Custom Page Set Block - block
Csrf WaapCustom Page Set Block Csrf - captcha
Waap
Custom Page Set Captcha - Waap
Custom Page Set Cookie Disabled - domains List<Double>
- List of domain IDs associated with this custom page set.
- handshake
Waap
Custom Page Set Handshake - javascript
Disabled WaapCustom Page Set Javascript Disabled - name String
- Name of the custom page set.
- waap
Custom StringPage Set Id - The ID of this resource.
- block
Waap
Custom Page Set Block - block
Csrf WaapCustom Page Set Block Csrf - captcha
Waap
Custom Page Set Captcha - Waap
Custom Page Set Cookie Disabled - domains number[]
- List of domain IDs associated with this custom page set.
- handshake
Waap
Custom Page Set Handshake - javascript
Disabled WaapCustom Page Set Javascript Disabled - name string
- Name of the custom page set.
- waap
Custom stringPage Set Id - The ID of this resource.
- block
Waap
Custom Page Set Block Args - block_
csrf WaapCustom Page Set Block Csrf Args - captcha
Waap
Custom Page Set Captcha Args - Waap
Custom Page Set Cookie Disabled Args - domains Sequence[float]
- List of domain IDs associated with this custom page set.
- handshake
Waap
Custom Page Set Handshake Args - javascript_
disabled WaapCustom Page Set Javascript Disabled Args - name str
- Name of the custom page set.
- waap_
custom_ strpage_ set_ id - The ID of this resource.
- block Property Map
- block
Csrf Property Map - captcha Property Map
- Property Map
- domains List<Number>
- List of domain IDs associated with this custom page set.
- handshake Property Map
- javascript
Disabled Property Map - name String
- Name of the custom page set.
- waap
Custom StringPage Set Id - The ID of this resource.
Supporting Types
WaapCustomPageSetBlock, WaapCustomPageSetBlockArgs
- Enabled bool
- Indicates whether the custom custom page is active or inactive.
- Header string
- The text to display in the header of the custom page.
- Logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- Text string
- The text to display in the body of the custom page.
- Title string
- The text to display in the title of the custom page.
- Enabled bool
- Indicates whether the custom custom page is active or inactive.
- Header string
- The text to display in the header of the custom page.
- Logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- Text string
- The text to display in the body of the custom page.
- Title string
- The text to display in the title of the custom page.
- enabled Boolean
- Indicates whether the custom custom page is active or inactive.
- header String
- The text to display in the header of the custom page.
- logo String
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text String
- The text to display in the body of the custom page.
- title String
- The text to display in the title of the custom page.
- enabled boolean
- Indicates whether the custom custom page is active or inactive.
- header string
- The text to display in the header of the custom page.
- logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text string
- The text to display in the body of the custom page.
- title string
- The text to display in the title of the custom page.
- enabled bool
- Indicates whether the custom custom page is active or inactive.
- header str
- The text to display in the header of the custom page.
- logo str
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text str
- The text to display in the body of the custom page.
- title str
- The text to display in the title of the custom page.
- enabled Boolean
- Indicates whether the custom custom page is active or inactive.
- header String
- The text to display in the header of the custom page.
- logo String
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text String
- The text to display in the body of the custom page.
- title String
- The text to display in the title of the custom page.
WaapCustomPageSetBlockCsrf, WaapCustomPageSetBlockCsrfArgs
- Enabled bool
- Indicates whether the custom custom page is active or inactive.
- Header string
- The text to display in the header of the custom page.
- Logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- Text string
- The text to display in the body of the custom page.
- Title string
- The text to display in the title of the custom page.
- Enabled bool
- Indicates whether the custom custom page is active or inactive.
- Header string
- The text to display in the header of the custom page.
- Logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- Text string
- The text to display in the body of the custom page.
- Title string
- The text to display in the title of the custom page.
- enabled Boolean
- Indicates whether the custom custom page is active or inactive.
- header String
- The text to display in the header of the custom page.
- logo String
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text String
- The text to display in the body of the custom page.
- title String
- The text to display in the title of the custom page.
- enabled boolean
- Indicates whether the custom custom page is active or inactive.
- header string
- The text to display in the header of the custom page.
- logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text string
- The text to display in the body of the custom page.
- title string
- The text to display in the title of the custom page.
- enabled bool
- Indicates whether the custom custom page is active or inactive.
- header str
- The text to display in the header of the custom page.
- logo str
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text str
- The text to display in the body of the custom page.
- title str
- The text to display in the title of the custom page.
- enabled Boolean
- Indicates whether the custom custom page is active or inactive.
- header String
- The text to display in the header of the custom page.
- logo String
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text String
- The text to display in the body of the custom page.
- title String
- The text to display in the title of the custom page.
WaapCustomPageSetCaptcha, WaapCustomPageSetCaptchaArgs
- Enabled bool
- Indicates whether the custom custom page is active or inactive.
- Error string
- Error message.
- Header string
- The text to display in the header of the custom page.
- Logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- Text string
- The text to display in the body of the custom page.
- Title string
- The text to display in the title of the custom page.
- Enabled bool
- Indicates whether the custom custom page is active or inactive.
- Error string
- Error message.
- Header string
- The text to display in the header of the custom page.
- Logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- Text string
- The text to display in the body of the custom page.
- Title string
- The text to display in the title of the custom page.
- enabled Boolean
- Indicates whether the custom custom page is active or inactive.
- error String
- Error message.
- header String
- The text to display in the header of the custom page.
- logo String
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text String
- The text to display in the body of the custom page.
- title String
- The text to display in the title of the custom page.
- enabled boolean
- Indicates whether the custom custom page is active or inactive.
- error string
- Error message.
- header string
- The text to display in the header of the custom page.
- logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text string
- The text to display in the body of the custom page.
- title string
- The text to display in the title of the custom page.
- enabled bool
- Indicates whether the custom custom page is active or inactive.
- error str
- Error message.
- header str
- The text to display in the header of the custom page.
- logo str
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text str
- The text to display in the body of the custom page.
- title str
- The text to display in the title of the custom page.
- enabled Boolean
- Indicates whether the custom custom page is active or inactive.
- error String
- Error message.
- header String
- The text to display in the header of the custom page.
- logo String
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- text String
- The text to display in the body of the custom page.
- title String
- The text to display in the title of the custom page.
WaapCustomPageSetCookieDisabled, WaapCustomPageSetCookieDisabledArgs
WaapCustomPageSetHandshake, WaapCustomPageSetHandshakeArgs
- Enabled bool
- Indicates whether the custom custom page is active or inactive.
- Header string
- The text to display in the header of the custom page.
- Logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- Title string
- The text to display in the title of the custom page.
- Enabled bool
- Indicates whether the custom custom page is active or inactive.
- Header string
- The text to display in the header of the custom page.
- Logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- Title string
- The text to display in the title of the custom page.
- enabled Boolean
- Indicates whether the custom custom page is active or inactive.
- header String
- The text to display in the header of the custom page.
- logo String
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- title String
- The text to display in the title of the custom page.
- enabled boolean
- Indicates whether the custom custom page is active or inactive.
- header string
- The text to display in the header of the custom page.
- logo string
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- title string
- The text to display in the title of the custom page.
- enabled bool
- Indicates whether the custom custom page is active or inactive.
- header str
- The text to display in the header of the custom page.
- logo str
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- title str
- The text to display in the title of the custom page.
- enabled Boolean
- Indicates whether the custom custom page is active or inactive.
- header String
- The text to display in the header of the custom page.
- logo String
- A base64 encoded image of the logo to present. Supported image types are JPEG, PNG and JPG, size is limited to width 450px, height 130px. This should be a base 64 encoding of the full HTML img tag compatible image, with the header included.
- title String
- The text to display in the title of the custom page.
WaapCustomPageSetJavascriptDisabled, WaapCustomPageSetJavascriptDisabledArgs
Import
import using <custom_page_set_id>
$ pulumi import gcore:index/waapCustomPageSet:WaapCustomPageSet example 12345
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- gcore g-core/terraform-provider-gcore
- License
- Notes
- This Pulumi package is based on the
gcore
Terraform Provider.