alicloud.esa.Page
Explore with Pulumi AI
Provides a ESA Page resource.
For information about ESA Page and how to use it, see What is Page.
NOTE: Available since v1.242.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new alicloud.esa.Page("default", {
description: "example resource html page",
contentType: "text/html",
content: "PCFET0NUWVBFIGh0bWw+CjxodG1sIGxhbmc9InpoLUNOIj4KICA8aGVhZD4KICAgIDx0aXRsZT40MDMgRm9yYmlkZGVuPC90aXRsZT4KICA8L2hlYWQ+CiAgPGJvZHk+CiAgICA8aDE+NDAzIEZvcmJpZGRlbjwvaDE+CiAgPC9ib2R5Pgo8L2h0bWw+",
pageName: "resource_example_html_page",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.esa.Page("default",
description="example resource html page",
content_type="text/html",
content="PCFET0NUWVBFIGh0bWw+CjxodG1sIGxhbmc9InpoLUNOIj4KICA8aGVhZD4KICAgIDx0aXRsZT40MDMgRm9yYmlkZGVuPC90aXRsZT4KICA8L2hlYWQ+CiAgPGJvZHk+CiAgICA8aDE+NDAzIEZvcmJpZGRlbjwvaDE+CiAgPC9ib2R5Pgo8L2h0bWw+",
page_name="resource_example_html_page")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/esa"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := esa.NewPage(ctx, "default", &esa.PageArgs{
Description: pulumi.String("example resource html page"),
ContentType: pulumi.String("text/html"),
Content: pulumi.String("PCFET0NUWVBFIGh0bWw+CjxodG1sIGxhbmc9InpoLUNOIj4KICA8aGVhZD4KICAgIDx0aXRsZT40MDMgRm9yYmlkZGVuPC90aXRsZT4KICA8L2hlYWQ+CiAgPGJvZHk+CiAgICA8aDE+NDAzIEZvcmJpZGRlbjwvaDE+CiAgPC9ib2R5Pgo8L2h0bWw+"),
PageName: pulumi.String("resource_example_html_page"),
})
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 config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = new AliCloud.Esa.Page("default", new()
{
Description = "example resource html page",
ContentType = "text/html",
Content = "PCFET0NUWVBFIGh0bWw+CjxodG1sIGxhbmc9InpoLUNOIj4KICA8aGVhZD4KICAgIDx0aXRsZT40MDMgRm9yYmlkZGVuPC90aXRsZT4KICA8L2hlYWQ+CiAgPGJvZHk+CiAgICA8aDE+NDAzIEZvcmJpZGRlbjwvaDE+CiAgPC9ib2R5Pgo8L2h0bWw+",
PageName = "resource_example_html_page",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.esa.Page;
import com.pulumi.alicloud.esa.PageArgs;
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 config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var default_ = new Page("default", PageArgs.builder()
.description("example resource html page")
.contentType("text/html")
.content("PCFET0NUWVBFIGh0bWw+CjxodG1sIGxhbmc9InpoLUNOIj4KICA8aGVhZD4KICAgIDx0aXRsZT40MDMgRm9yYmlkZGVuPC90aXRsZT4KICA8L2hlYWQ+CiAgPGJvZHk+CiAgICA8aDE+NDAzIEZvcmJpZGRlbjwvaDE+CiAgPC9ib2R5Pgo8L2h0bWw+")
.pageName("resource_example_html_page")
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:esa:Page
properties:
description: example resource html page
contentType: text/html
content: PCFET0NUWVBFIGh0bWw+CjxodG1sIGxhbmc9InpoLUNOIj4KICA8aGVhZD4KICAgIDx0aXRsZT40MDMgRm9yYmlkZGVuPC90aXRsZT4KICA8L2hlYWQ+CiAgPGJvZHk+CiAgICA8aDE+NDAzIEZvcmJpZGRlbjwvaDE+CiAgPC9ib2R5Pgo8L2h0bWw+
pageName: resource_example_html_page
Create Page Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Page(name: string, args: PageArgs, opts?: CustomResourceOptions);
@overload
def Page(resource_name: str,
args: PageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Page(resource_name: str,
opts: Optional[ResourceOptions] = None,
content_type: Optional[str] = None,
page_name: Optional[str] = None,
content: Optional[str] = None,
description: Optional[str] = None)
func NewPage(ctx *Context, name string, args PageArgs, opts ...ResourceOption) (*Page, error)
public Page(string name, PageArgs args, CustomResourceOptions? opts = null)
type: alicloud:esa:Page
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 PageArgs
- 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 PageArgs
- 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 PageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PageArgs
- 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 pageResource = new AliCloud.Esa.Page("pageResource", new()
{
ContentType = "string",
PageName = "string",
Content = "string",
Description = "string",
});
example, err := esa.NewPage(ctx, "pageResource", &esa.PageArgs{
ContentType: pulumi.String("string"),
PageName: pulumi.String("string"),
Content: pulumi.String("string"),
Description: pulumi.String("string"),
})
var pageResource = new Page("pageResource", PageArgs.builder()
.contentType("string")
.pageName("string")
.content("string")
.description("string")
.build());
page_resource = alicloud.esa.Page("pageResource",
content_type="string",
page_name="string",
content="string",
description="string")
const pageResource = new alicloud.esa.Page("pageResource", {
contentType: "string",
pageName: "string",
content: "string",
description: "string",
});
type: alicloud:esa:Page
properties:
content: string
contentType: string
description: string
pageName: string
Page 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 Page resource accepts the following input properties:
- Content
Type string - The description of the custom error page.
- Page
Name string - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- Content string
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- Description string
- The name of the custom error page.
- Content
Type string - The description of the custom error page.
- Page
Name string - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- Content string
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- Description string
- The name of the custom error page.
- content
Type String - The description of the custom error page.
- page
Name String - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- content String
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- description String
- The name of the custom error page.
- content
Type string - The description of the custom error page.
- page
Name string - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- content string
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- description string
- The name of the custom error page.
- content_
type str - The description of the custom error page.
- page_
name str - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- content str
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- description str
- The name of the custom error page.
- content
Type String - The description of the custom error page.
- page
Name String - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- content String
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- description String
- The name of the custom error page.
Outputs
All input properties are implicitly available as output properties. Additionally, the Page 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 Page Resource
Get an existing Page 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?: PageState, opts?: CustomResourceOptions): Page
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
content: Optional[str] = None,
content_type: Optional[str] = None,
description: Optional[str] = None,
page_name: Optional[str] = None) -> Page
func GetPage(ctx *Context, name string, id IDInput, state *PageState, opts ...ResourceOption) (*Page, error)
public static Page Get(string name, Input<string> id, PageState? state, CustomResourceOptions? opts = null)
public static Page get(String name, Output<String> id, PageState state, CustomResourceOptions options)
resources: _: type: alicloud:esa:Page 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.
- Content string
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- Content
Type string - The description of the custom error page.
- Description string
- The name of the custom error page.
- Page
Name string - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- Content string
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- Content
Type string - The description of the custom error page.
- Description string
- The name of the custom error page.
- Page
Name string - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- content String
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- content
Type String - The description of the custom error page.
- description String
- The name of the custom error page.
- page
Name String - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- content string
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- content
Type string - The description of the custom error page.
- description string
- The name of the custom error page.
- page
Name string - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- content str
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- content_
type str - The description of the custom error page.
- description str
- The name of the custom error page.
- page_
name str - The ID of the custom error page, which can be obtained by calling the ListPages operation.
- content String
- The Content-Type field in the HTTP header. Valid values:
- text/html
- application/json
- content
Type String - The description of the custom error page.
- description String
- The name of the custom error page.
- page
Name String - The ID of the custom error page, which can be obtained by calling the ListPages operation.
Import
ESA Page can be imported using the id, e.g.
$ pulumi import alicloud:esa/page:Page example <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.