1. Packages
  2. Rootly
  3. API Docs
  4. StatusPage
Rootly v1.5.0 published on Thursday, Apr 25, 2024 by Rootly

rootly.StatusPage

Explore with Pulumi AI

Create StatusPage Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new StatusPage(name: string, args: StatusPageArgs, opts?: CustomResourceOptions);
@overload
def StatusPage(resource_name: str,
               args: StatusPageArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def StatusPage(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               title: Optional[str] = None,
               public: Optional[bool] = None,
               public_title: Optional[str] = None,
               description: Optional[str] = None,
               enabled: Optional[bool] = None,
               failure_message: Optional[str] = None,
               footer_color: Optional[str] = None,
               functionality_ids: Optional[Sequence[str]] = None,
               ga_tracking_id: Optional[str] = None,
               header_color: Optional[str] = None,
               allow_search_engine_index: Optional[bool] = None,
               authentication_password: Optional[str] = None,
               service_ids: Optional[Sequence[str]] = None,
               public_description: Optional[str] = None,
               show_uptime: Optional[bool] = None,
               show_uptime_last_days: Optional[int] = None,
               success_message: Optional[str] = None,
               time_zone: Optional[str] = None,
               authentication_enabled: Optional[bool] = None,
               website_privacy_url: Optional[str] = None,
               website_support_url: Optional[str] = None,
               website_url: Optional[str] = None)
func NewStatusPage(ctx *Context, name string, args StatusPageArgs, opts ...ResourceOption) (*StatusPage, error)
public StatusPage(string name, StatusPageArgs args, CustomResourceOptions? opts = null)
public StatusPage(String name, StatusPageArgs args)
public StatusPage(String name, StatusPageArgs args, CustomResourceOptions options)
type: rootly:StatusPage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StatusPageArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StatusPageArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StatusPageArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StatusPageArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StatusPageArgs
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 statusPageResource = new Rootly.StatusPage("statusPageResource", new()
{
    Title = "string",
    Public = false,
    PublicTitle = "string",
    Description = "string",
    Enabled = false,
    FailureMessage = "string",
    FooterColor = "string",
    FunctionalityIds = new[]
    {
        "string",
    },
    GaTrackingId = "string",
    HeaderColor = "string",
    AllowSearchEngineIndex = false,
    AuthenticationPassword = "string",
    ServiceIds = new[]
    {
        "string",
    },
    PublicDescription = "string",
    ShowUptime = false,
    ShowUptimeLastDays = 0,
    SuccessMessage = "string",
    TimeZone = "string",
    AuthenticationEnabled = false,
    WebsitePrivacyUrl = "string",
    WebsiteSupportUrl = "string",
    WebsiteUrl = "string",
});
Copy
example, err := rootly.NewStatusPage(ctx, "statusPageResource", &rootly.StatusPageArgs{
	Title:          pulumi.String("string"),
	Public:         pulumi.Bool(false),
	PublicTitle:    pulumi.String("string"),
	Description:    pulumi.String("string"),
	Enabled:        pulumi.Bool(false),
	FailureMessage: pulumi.String("string"),
	FooterColor:    pulumi.String("string"),
	FunctionalityIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	GaTrackingId:           pulumi.String("string"),
	HeaderColor:            pulumi.String("string"),
	AllowSearchEngineIndex: pulumi.Bool(false),
	AuthenticationPassword: pulumi.String("string"),
	ServiceIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	PublicDescription:     pulumi.String("string"),
	ShowUptime:            pulumi.Bool(false),
	ShowUptimeLastDays:    pulumi.Int(0),
	SuccessMessage:        pulumi.String("string"),
	TimeZone:              pulumi.String("string"),
	AuthenticationEnabled: pulumi.Bool(false),
	WebsitePrivacyUrl:     pulumi.String("string"),
	WebsiteSupportUrl:     pulumi.String("string"),
	WebsiteUrl:            pulumi.String("string"),
})
Copy
var statusPageResource = new StatusPage("statusPageResource", StatusPageArgs.builder()
    .title("string")
    .public_(false)
    .publicTitle("string")
    .description("string")
    .enabled(false)
    .failureMessage("string")
    .footerColor("string")
    .functionalityIds("string")
    .gaTrackingId("string")
    .headerColor("string")
    .allowSearchEngineIndex(false)
    .authenticationPassword("string")
    .serviceIds("string")
    .publicDescription("string")
    .showUptime(false)
    .showUptimeLastDays(0)
    .successMessage("string")
    .timeZone("string")
    .authenticationEnabled(false)
    .websitePrivacyUrl("string")
    .websiteSupportUrl("string")
    .websiteUrl("string")
    .build());
Copy
status_page_resource = rootly.StatusPage("statusPageResource",
    title="string",
    public=False,
    public_title="string",
    description="string",
    enabled=False,
    failure_message="string",
    footer_color="string",
    functionality_ids=["string"],
    ga_tracking_id="string",
    header_color="string",
    allow_search_engine_index=False,
    authentication_password="string",
    service_ids=["string"],
    public_description="string",
    show_uptime=False,
    show_uptime_last_days=0,
    success_message="string",
    time_zone="string",
    authentication_enabled=False,
    website_privacy_url="string",
    website_support_url="string",
    website_url="string")
Copy
const statusPageResource = new rootly.StatusPage("statusPageResource", {
    title: "string",
    "public": false,
    publicTitle: "string",
    description: "string",
    enabled: false,
    failureMessage: "string",
    footerColor: "string",
    functionalityIds: ["string"],
    gaTrackingId: "string",
    headerColor: "string",
    allowSearchEngineIndex: false,
    authenticationPassword: "string",
    serviceIds: ["string"],
    publicDescription: "string",
    showUptime: false,
    showUptimeLastDays: 0,
    successMessage: "string",
    timeZone: "string",
    authenticationEnabled: false,
    websitePrivacyUrl: "string",
    websiteSupportUrl: "string",
    websiteUrl: "string",
});
Copy
type: rootly:StatusPage
properties:
    allowSearchEngineIndex: false
    authenticationEnabled: false
    authenticationPassword: string
    description: string
    enabled: false
    failureMessage: string
    footerColor: string
    functionalityIds:
        - string
    gaTrackingId: string
    headerColor: string
    public: false
    publicDescription: string
    publicTitle: string
    serviceIds:
        - string
    showUptime: false
    showUptimeLastDays: 0
    successMessage: string
    timeZone: string
    title: string
    websitePrivacyUrl: string
    websiteSupportUrl: string
    websiteUrl: string
Copy

StatusPage 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 StatusPage resource accepts the following input properties:

Title This property is required. string
The title of the status page
AllowSearchEngineIndex bool
Allow search engines to include your public status page in search results. Value must be one of true or false
AuthenticationEnabled bool
Enable authentication. Value must be one of true or false
AuthenticationPassword string
Authentication password
Description string
The description of the status page
Enabled bool
FailureMessage string
Message showing when at least one component is not operational
FooterColor string
The color of the footer. Eg. "#1F2F41"
FunctionalityIds List<string>
Functionalities attached to the status page
GaTrackingId string
Google Analytics tracking ID
HeaderColor string
The color of the header. Eg. "#0061F2"
Public bool
Make the status page accessible to the public. Value must be one of true or false
PublicDescription string
The public description of the status page
PublicTitle string
The public title of the status page
ServiceIds List<string>
Services attached to the status page
ShowUptime bool
Show uptime. Value must be one of true or false
ShowUptimeLastDays int
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
SuccessMessage string
Message showing when all components are operational
TimeZone string
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
WebsitePrivacyUrl string
Website Privacy URL
WebsiteSupportUrl string
Website Support URL
WebsiteUrl string
Website URL
Title This property is required. string
The title of the status page
AllowSearchEngineIndex bool
Allow search engines to include your public status page in search results. Value must be one of true or false
AuthenticationEnabled bool
Enable authentication. Value must be one of true or false
AuthenticationPassword string
Authentication password
Description string
The description of the status page
Enabled bool
FailureMessage string
Message showing when at least one component is not operational
FooterColor string
The color of the footer. Eg. "#1F2F41"
FunctionalityIds []string
Functionalities attached to the status page
GaTrackingId string
Google Analytics tracking ID
HeaderColor string
The color of the header. Eg. "#0061F2"
Public bool
Make the status page accessible to the public. Value must be one of true or false
PublicDescription string
The public description of the status page
PublicTitle string
The public title of the status page
ServiceIds []string
Services attached to the status page
ShowUptime bool
Show uptime. Value must be one of true or false
ShowUptimeLastDays int
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
SuccessMessage string
Message showing when all components are operational
TimeZone string
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
WebsitePrivacyUrl string
Website Privacy URL
WebsiteSupportUrl string
Website Support URL
WebsiteUrl string
Website URL
title This property is required. String
The title of the status page
allowSearchEngineIndex Boolean
Allow search engines to include your public status page in search results. Value must be one of true or false
authenticationEnabled Boolean
Enable authentication. Value must be one of true or false
authenticationPassword String
Authentication password
description String
The description of the status page
enabled Boolean
failureMessage String
Message showing when at least one component is not operational
footerColor String
The color of the footer. Eg. "#1F2F41"
functionalityIds List<String>
Functionalities attached to the status page
gaTrackingId String
Google Analytics tracking ID
headerColor String
The color of the header. Eg. "#0061F2"
publicDescription String
The public description of the status page
publicTitle String
The public title of the status page
public_ Boolean
Make the status page accessible to the public. Value must be one of true or false
serviceIds List<String>
Services attached to the status page
showUptime Boolean
Show uptime. Value must be one of true or false
showUptimeLastDays Integer
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
successMessage String
Message showing when all components are operational
timeZone String
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
websitePrivacyUrl String
Website Privacy URL
websiteSupportUrl String
Website Support URL
websiteUrl String
Website URL
title This property is required. string
The title of the status page
allowSearchEngineIndex boolean
Allow search engines to include your public status page in search results. Value must be one of true or false
authenticationEnabled boolean
Enable authentication. Value must be one of true or false
authenticationPassword string
Authentication password
description string
The description of the status page
enabled boolean
failureMessage string
Message showing when at least one component is not operational
footerColor string
The color of the footer. Eg. "#1F2F41"
functionalityIds string[]
Functionalities attached to the status page
gaTrackingId string
Google Analytics tracking ID
headerColor string
The color of the header. Eg. "#0061F2"
public boolean
Make the status page accessible to the public. Value must be one of true or false
publicDescription string
The public description of the status page
publicTitle string
The public title of the status page
serviceIds string[]
Services attached to the status page
showUptime boolean
Show uptime. Value must be one of true or false
showUptimeLastDays number
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
successMessage string
Message showing when all components are operational
timeZone string
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
websitePrivacyUrl string
Website Privacy URL
websiteSupportUrl string
Website Support URL
websiteUrl string
Website URL
title This property is required. str
The title of the status page
allow_search_engine_index bool
Allow search engines to include your public status page in search results. Value must be one of true or false
authentication_enabled bool
Enable authentication. Value must be one of true or false
authentication_password str
Authentication password
description str
The description of the status page
enabled bool
failure_message str
Message showing when at least one component is not operational
footer_color str
The color of the footer. Eg. "#1F2F41"
functionality_ids Sequence[str]
Functionalities attached to the status page
ga_tracking_id str
Google Analytics tracking ID
header_color str
The color of the header. Eg. "#0061F2"
public bool
Make the status page accessible to the public. Value must be one of true or false
public_description str
The public description of the status page
public_title str
The public title of the status page
service_ids Sequence[str]
Services attached to the status page
show_uptime bool
Show uptime. Value must be one of true or false
show_uptime_last_days int
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
success_message str
Message showing when all components are operational
time_zone str
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
website_privacy_url str
Website Privacy URL
website_support_url str
Website Support URL
website_url str
Website URL
title This property is required. String
The title of the status page
allowSearchEngineIndex Boolean
Allow search engines to include your public status page in search results. Value must be one of true or false
authenticationEnabled Boolean
Enable authentication. Value must be one of true or false
authenticationPassword String
Authentication password
description String
The description of the status page
enabled Boolean
failureMessage String
Message showing when at least one component is not operational
footerColor String
The color of the footer. Eg. "#1F2F41"
functionalityIds List<String>
Functionalities attached to the status page
gaTrackingId String
Google Analytics tracking ID
headerColor String
The color of the header. Eg. "#0061F2"
public Boolean
Make the status page accessible to the public. Value must be one of true or false
publicDescription String
The public description of the status page
publicTitle String
The public title of the status page
serviceIds List<String>
Services attached to the status page
showUptime Boolean
Show uptime. Value must be one of true or false
showUptimeLastDays Number
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
successMessage String
Message showing when all components are operational
timeZone String
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
websitePrivacyUrl String
Website Privacy URL
websiteSupportUrl String
Website Support URL
websiteUrl String
Website URL

Outputs

All input properties are implicitly available as output properties. Additionally, the StatusPage 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 StatusPage Resource

Get an existing StatusPage 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?: StatusPageState, opts?: CustomResourceOptions): StatusPage
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        allow_search_engine_index: Optional[bool] = None,
        authentication_enabled: Optional[bool] = None,
        authentication_password: Optional[str] = None,
        description: Optional[str] = None,
        enabled: Optional[bool] = None,
        failure_message: Optional[str] = None,
        footer_color: Optional[str] = None,
        functionality_ids: Optional[Sequence[str]] = None,
        ga_tracking_id: Optional[str] = None,
        header_color: Optional[str] = None,
        public: Optional[bool] = None,
        public_description: Optional[str] = None,
        public_title: Optional[str] = None,
        service_ids: Optional[Sequence[str]] = None,
        show_uptime: Optional[bool] = None,
        show_uptime_last_days: Optional[int] = None,
        success_message: Optional[str] = None,
        time_zone: Optional[str] = None,
        title: Optional[str] = None,
        website_privacy_url: Optional[str] = None,
        website_support_url: Optional[str] = None,
        website_url: Optional[str] = None) -> StatusPage
func GetStatusPage(ctx *Context, name string, id IDInput, state *StatusPageState, opts ...ResourceOption) (*StatusPage, error)
public static StatusPage Get(string name, Input<string> id, StatusPageState? state, CustomResourceOptions? opts = null)
public static StatusPage get(String name, Output<String> id, StatusPageState state, CustomResourceOptions options)
resources:  _:    type: rootly:StatusPage    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AllowSearchEngineIndex bool
Allow search engines to include your public status page in search results. Value must be one of true or false
AuthenticationEnabled bool
Enable authentication. Value must be one of true or false
AuthenticationPassword string
Authentication password
Description string
The description of the status page
Enabled bool
FailureMessage string
Message showing when at least one component is not operational
FooterColor string
The color of the footer. Eg. "#1F2F41"
FunctionalityIds List<string>
Functionalities attached to the status page
GaTrackingId string
Google Analytics tracking ID
HeaderColor string
The color of the header. Eg. "#0061F2"
Public bool
Make the status page accessible to the public. Value must be one of true or false
PublicDescription string
The public description of the status page
PublicTitle string
The public title of the status page
ServiceIds List<string>
Services attached to the status page
ShowUptime bool
Show uptime. Value must be one of true or false
ShowUptimeLastDays int
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
SuccessMessage string
Message showing when all components are operational
TimeZone string
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
Title string
The title of the status page
WebsitePrivacyUrl string
Website Privacy URL
WebsiteSupportUrl string
Website Support URL
WebsiteUrl string
Website URL
AllowSearchEngineIndex bool
Allow search engines to include your public status page in search results. Value must be one of true or false
AuthenticationEnabled bool
Enable authentication. Value must be one of true or false
AuthenticationPassword string
Authentication password
Description string
The description of the status page
Enabled bool
FailureMessage string
Message showing when at least one component is not operational
FooterColor string
The color of the footer. Eg. "#1F2F41"
FunctionalityIds []string
Functionalities attached to the status page
GaTrackingId string
Google Analytics tracking ID
HeaderColor string
The color of the header. Eg. "#0061F2"
Public bool
Make the status page accessible to the public. Value must be one of true or false
PublicDescription string
The public description of the status page
PublicTitle string
The public title of the status page
ServiceIds []string
Services attached to the status page
ShowUptime bool
Show uptime. Value must be one of true or false
ShowUptimeLastDays int
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
SuccessMessage string
Message showing when all components are operational
TimeZone string
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
Title string
The title of the status page
WebsitePrivacyUrl string
Website Privacy URL
WebsiteSupportUrl string
Website Support URL
WebsiteUrl string
Website URL
allowSearchEngineIndex Boolean
Allow search engines to include your public status page in search results. Value must be one of true or false
authenticationEnabled Boolean
Enable authentication. Value must be one of true or false
authenticationPassword String
Authentication password
description String
The description of the status page
enabled Boolean
failureMessage String
Message showing when at least one component is not operational
footerColor String
The color of the footer. Eg. "#1F2F41"
functionalityIds List<String>
Functionalities attached to the status page
gaTrackingId String
Google Analytics tracking ID
headerColor String
The color of the header. Eg. "#0061F2"
publicDescription String
The public description of the status page
publicTitle String
The public title of the status page
public_ Boolean
Make the status page accessible to the public. Value must be one of true or false
serviceIds List<String>
Services attached to the status page
showUptime Boolean
Show uptime. Value must be one of true or false
showUptimeLastDays Integer
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
successMessage String
Message showing when all components are operational
timeZone String
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
title String
The title of the status page
websitePrivacyUrl String
Website Privacy URL
websiteSupportUrl String
Website Support URL
websiteUrl String
Website URL
allowSearchEngineIndex boolean
Allow search engines to include your public status page in search results. Value must be one of true or false
authenticationEnabled boolean
Enable authentication. Value must be one of true or false
authenticationPassword string
Authentication password
description string
The description of the status page
enabled boolean
failureMessage string
Message showing when at least one component is not operational
footerColor string
The color of the footer. Eg. "#1F2F41"
functionalityIds string[]
Functionalities attached to the status page
gaTrackingId string
Google Analytics tracking ID
headerColor string
The color of the header. Eg. "#0061F2"
public boolean
Make the status page accessible to the public. Value must be one of true or false
publicDescription string
The public description of the status page
publicTitle string
The public title of the status page
serviceIds string[]
Services attached to the status page
showUptime boolean
Show uptime. Value must be one of true or false
showUptimeLastDays number
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
successMessage string
Message showing when all components are operational
timeZone string
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
title string
The title of the status page
websitePrivacyUrl string
Website Privacy URL
websiteSupportUrl string
Website Support URL
websiteUrl string
Website URL
allow_search_engine_index bool
Allow search engines to include your public status page in search results. Value must be one of true or false
authentication_enabled bool
Enable authentication. Value must be one of true or false
authentication_password str
Authentication password
description str
The description of the status page
enabled bool
failure_message str
Message showing when at least one component is not operational
footer_color str
The color of the footer. Eg. "#1F2F41"
functionality_ids Sequence[str]
Functionalities attached to the status page
ga_tracking_id str
Google Analytics tracking ID
header_color str
The color of the header. Eg. "#0061F2"
public bool
Make the status page accessible to the public. Value must be one of true or false
public_description str
The public description of the status page
public_title str
The public title of the status page
service_ids Sequence[str]
Services attached to the status page
show_uptime bool
Show uptime. Value must be one of true or false
show_uptime_last_days int
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
success_message str
Message showing when all components are operational
time_zone str
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
title str
The title of the status page
website_privacy_url str
Website Privacy URL
website_support_url str
Website Support URL
website_url str
Website URL
allowSearchEngineIndex Boolean
Allow search engines to include your public status page in search results. Value must be one of true or false
authenticationEnabled Boolean
Enable authentication. Value must be one of true or false
authenticationPassword String
Authentication password
description String
The description of the status page
enabled Boolean
failureMessage String
Message showing when at least one component is not operational
footerColor String
The color of the footer. Eg. "#1F2F41"
functionalityIds List<String>
Functionalities attached to the status page
gaTrackingId String
Google Analytics tracking ID
headerColor String
The color of the header. Eg. "#0061F2"
public Boolean
Make the status page accessible to the public. Value must be one of true or false
publicDescription String
The public description of the status page
publicTitle String
The public title of the status page
serviceIds List<String>
Services attached to the status page
showUptime Boolean
Show uptime. Value must be one of true or false
showUptimeLastDays Number
Show uptime over x days. Value must be one of 30, 60, 90, 180, 360.
successMessage String
Message showing when all components are operational
timeZone String
Status Page Timezone. Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
title String
The title of the status page
websitePrivacyUrl String
Website Privacy URL
websiteSupportUrl String
Website Support URL
websiteUrl String
Website URL

Package Details

Repository
rootly rootlyhq/pulumi-rootly
License
Apache-2.0
Notes
This Pulumi package is based on the rootly Terraform Provider.