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,
failure_message: Optional[str] = None,
public_description: Optional[str] = None,
service_ids: Optional[Sequence[str]] = None,
public_title: 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,
description: Optional[str] = None,
authentication_password: Optional[str] = None,
enabled: Optional[bool] = 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 string
- The unique name of the resource.
- args StatusPageArgs
- 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 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 string
- The unique name of the resource.
- args StatusPageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StatusPageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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,
FailureMessage = "string",
PublicDescription = "string",
ServiceIds = new[]
{
"string",
},
PublicTitle = "string",
FooterColor = "string",
FunctionalityIds = new[]
{
"string",
},
GaTrackingId = "string",
HeaderColor = "string",
AllowSearchEngineIndex = false,
Description = "string",
AuthenticationPassword = "string",
Enabled = false,
ShowUptime = false,
ShowUptimeLastDays = 0,
SuccessMessage = "string",
TimeZone = "string",
AuthenticationEnabled = false,
WebsitePrivacyUrl = "string",
WebsiteSupportUrl = "string",
WebsiteUrl = "string",
});
example, err := rootly.NewStatusPage(ctx, "statusPageResource", &rootly.StatusPageArgs{
Title: pulumi.String("string"),
Public: pulumi.Bool(false),
FailureMessage: pulumi.String("string"),
PublicDescription: pulumi.String("string"),
ServiceIds: pulumi.StringArray{
pulumi.String("string"),
},
PublicTitle: 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),
Description: pulumi.String("string"),
AuthenticationPassword: pulumi.String("string"),
Enabled: pulumi.Bool(false),
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"),
})
var statusPageResource = new StatusPage("statusPageResource", StatusPageArgs.builder()
.title("string")
.public_(false)
.failureMessage("string")
.publicDescription("string")
.serviceIds("string")
.publicTitle("string")
.footerColor("string")
.functionalityIds("string")
.gaTrackingId("string")
.headerColor("string")
.allowSearchEngineIndex(false)
.description("string")
.authenticationPassword("string")
.enabled(false)
.showUptime(false)
.showUptimeLastDays(0)
.successMessage("string")
.timeZone("string")
.authenticationEnabled(false)
.websitePrivacyUrl("string")
.websiteSupportUrl("string")
.websiteUrl("string")
.build());
status_page_resource = rootly.StatusPage("statusPageResource",
title="string",
public=False,
failure_message="string",
public_description="string",
service_ids=["string"],
public_title="string",
footer_color="string",
functionality_ids=["string"],
ga_tracking_id="string",
header_color="string",
allow_search_engine_index=False,
description="string",
authentication_password="string",
enabled=False,
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")
const statusPageResource = new rootly.StatusPage("statusPageResource", {
title: "string",
"public": false,
failureMessage: "string",
publicDescription: "string",
serviceIds: ["string"],
publicTitle: "string",
footerColor: "string",
functionalityIds: ["string"],
gaTrackingId: "string",
headerColor: "string",
allowSearchEngineIndex: false,
description: "string",
authenticationPassword: "string",
enabled: false,
showUptime: false,
showUptimeLastDays: 0,
successMessage: "string",
timeZone: "string",
authenticationEnabled: false,
websitePrivacyUrl: "string",
websiteSupportUrl: "string",
websiteUrl: "string",
});
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
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
The StatusPage resource accepts the following input properties:
- Title string
- The title of the status page
- Allow
Search boolEngine Index - 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 string - Authentication password
- Description string
- The description of the status page
- Enabled bool
- Failure
Message string - Message showing when at least one component is not operational
- string
- The color of the footer. Eg. "#1F2F41"
- Functionality
Ids List<string> - Functionalities attached to the status page
- Ga
Tracking stringId - Google Analytics tracking ID
- Header
Color 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
- Public
Description string - The public description of the status page
- Public
Title string - The public title of the status page
- Service
Ids List<string> - Services attached to the status page
- Show
Uptime bool - Show uptime. Value must be one of true or false
- Show
Uptime intLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - Success
Message string - Message showing when all components are operational
- Time
Zone 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.
. - Website
Privacy stringUrl - Website Privacy URL
- Website
Support stringUrl - Website Support URL
- Website
Url string - Website URL
- Title string
- The title of the status page
- Allow
Search boolEngine Index - 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 string - Authentication password
- Description string
- The description of the status page
- Enabled bool
- Failure
Message string - Message showing when at least one component is not operational
- string
- The color of the footer. Eg. "#1F2F41"
- Functionality
Ids []string - Functionalities attached to the status page
- Ga
Tracking stringId - Google Analytics tracking ID
- Header
Color 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
- Public
Description string - The public description of the status page
- Public
Title string - The public title of the status page
- Service
Ids []string - Services attached to the status page
- Show
Uptime bool - Show uptime. Value must be one of true or false
- Show
Uptime intLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - Success
Message string - Message showing when all components are operational
- Time
Zone 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.
. - Website
Privacy stringUrl - Website Privacy URL
- Website
Support stringUrl - Website Support URL
- Website
Url string - Website URL
- title String
- The title of the status page
- allow
Search BooleanEngine Index - Allow search engines to include your public status page in search results. Value must be one of true or false
- authentication
Enabled Boolean - Enable authentication. Value must be one of true or false
- authentication
Password String - Authentication password
- description String
- The description of the status page
- enabled Boolean
- failure
Message String - Message showing when at least one component is not operational
- String
- The color of the footer. Eg. "#1F2F41"
- functionality
Ids List<String> - Functionalities attached to the status page
- ga
Tracking StringId - Google Analytics tracking ID
- header
Color String - The color of the header. Eg. "#0061F2"
- public
Description String - The public description of the status page
- public
Title 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
- service
Ids List<String> - Services attached to the status page
- show
Uptime Boolean - Show uptime. Value must be one of true or false
- show
Uptime IntegerLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - success
Message String - Message showing when all components are operational
- time
Zone 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.
. - website
Privacy StringUrl - Website Privacy URL
- website
Support StringUrl - Website Support URL
- website
Url String - Website URL
- title string
- The title of the status page
- allow
Search booleanEngine Index - Allow search engines to include your public status page in search results. Value must be one of true or false
- authentication
Enabled boolean - Enable authentication. Value must be one of true or false
- authentication
Password string - Authentication password
- description string
- The description of the status page
- enabled boolean
- failure
Message string - Message showing when at least one component is not operational
- string
- The color of the footer. Eg. "#1F2F41"
- functionality
Ids string[] - Functionalities attached to the status page
- ga
Tracking stringId - Google Analytics tracking ID
- header
Color 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
- public
Description string - The public description of the status page
- public
Title string - The public title of the status page
- service
Ids string[] - Services attached to the status page
- show
Uptime boolean - Show uptime. Value must be one of true or false
- show
Uptime numberLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - success
Message string - Message showing when all components are operational
- time
Zone 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.
. - website
Privacy stringUrl - Website Privacy URL
- website
Support stringUrl - Website Support URL
- website
Url string - Website URL
- title str
- The title of the status page
- allow_
search_ boolengine_ index - 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
- str
- The color of the footer. Eg. "#1F2F41"
- functionality_
ids Sequence[str] - Functionalities attached to the status page
- ga_
tracking_ strid - 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_ intlast_ days - 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_ strurl - Website Privacy URL
- website_
support_ strurl - Website Support URL
- website_
url str - Website URL
- title String
- The title of the status page
- allow
Search BooleanEngine Index - Allow search engines to include your public status page in search results. Value must be one of true or false
- authentication
Enabled Boolean - Enable authentication. Value must be one of true or false
- authentication
Password String - Authentication password
- description String
- The description of the status page
- enabled Boolean
- failure
Message String - Message showing when at least one component is not operational
- String
- The color of the footer. Eg. "#1F2F41"
- functionality
Ids List<String> - Functionalities attached to the status page
- ga
Tracking StringId - Google Analytics tracking ID
- header
Color 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
- public
Description String - The public description of the status page
- public
Title String - The public title of the status page
- service
Ids List<String> - Services attached to the status page
- show
Uptime Boolean - Show uptime. Value must be one of true or false
- show
Uptime NumberLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - success
Message String - Message showing when all components are operational
- time
Zone 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.
. - website
Privacy StringUrl - Website Privacy URL
- website
Support StringUrl - Website Support URL
- website
Url 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)
Resource lookup is not supported in YAML
- 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.
- Allow
Search boolEngine Index - 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 string - Authentication password
- Description string
- The description of the status page
- Enabled bool
- Failure
Message string - Message showing when at least one component is not operational
- string
- The color of the footer. Eg. "#1F2F41"
- Functionality
Ids List<string> - Functionalities attached to the status page
- Ga
Tracking stringId - Google Analytics tracking ID
- Header
Color 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
- Public
Description string - The public description of the status page
- Public
Title string - The public title of the status page
- Service
Ids List<string> - Services attached to the status page
- Show
Uptime bool - Show uptime. Value must be one of true or false
- Show
Uptime intLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - Success
Message string - Message showing when all components are operational
- Time
Zone 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
- Website
Privacy stringUrl - Website Privacy URL
- Website
Support stringUrl - Website Support URL
- Website
Url string - Website URL
- Allow
Search boolEngine Index - 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 string - Authentication password
- Description string
- The description of the status page
- Enabled bool
- Failure
Message string - Message showing when at least one component is not operational
- string
- The color of the footer. Eg. "#1F2F41"
- Functionality
Ids []string - Functionalities attached to the status page
- Ga
Tracking stringId - Google Analytics tracking ID
- Header
Color 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
- Public
Description string - The public description of the status page
- Public
Title string - The public title of the status page
- Service
Ids []string - Services attached to the status page
- Show
Uptime bool - Show uptime. Value must be one of true or false
- Show
Uptime intLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - Success
Message string - Message showing when all components are operational
- Time
Zone 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
- Website
Privacy stringUrl - Website Privacy URL
- Website
Support stringUrl - Website Support URL
- Website
Url string - Website URL
- allow
Search BooleanEngine Index - Allow search engines to include your public status page in search results. Value must be one of true or false
- authentication
Enabled Boolean - Enable authentication. Value must be one of true or false
- authentication
Password String - Authentication password
- description String
- The description of the status page
- enabled Boolean
- failure
Message String - Message showing when at least one component is not operational
- String
- The color of the footer. Eg. "#1F2F41"
- functionality
Ids List<String> - Functionalities attached to the status page
- ga
Tracking StringId - Google Analytics tracking ID
- header
Color String - The color of the header. Eg. "#0061F2"
- public
Description String - The public description of the status page
- public
Title 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
- service
Ids List<String> - Services attached to the status page
- show
Uptime Boolean - Show uptime. Value must be one of true or false
- show
Uptime IntegerLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - success
Message String - Message showing when all components are operational
- time
Zone 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
- website
Privacy StringUrl - Website Privacy URL
- website
Support StringUrl - Website Support URL
- website
Url String - Website URL
- allow
Search booleanEngine Index - Allow search engines to include your public status page in search results. Value must be one of true or false
- authentication
Enabled boolean - Enable authentication. Value must be one of true or false
- authentication
Password string - Authentication password
- description string
- The description of the status page
- enabled boolean
- failure
Message string - Message showing when at least one component is not operational
- string
- The color of the footer. Eg. "#1F2F41"
- functionality
Ids string[] - Functionalities attached to the status page
- ga
Tracking stringId - Google Analytics tracking ID
- header
Color 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
- public
Description string - The public description of the status page
- public
Title string - The public title of the status page
- service
Ids string[] - Services attached to the status page
- show
Uptime boolean - Show uptime. Value must be one of true or false
- show
Uptime numberLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - success
Message string - Message showing when all components are operational
- time
Zone 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
- website
Privacy stringUrl - Website Privacy URL
- website
Support stringUrl - Website Support URL
- website
Url string - Website URL
- allow_
search_ boolengine_ index - 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
- str
- The color of the footer. Eg. "#1F2F41"
- functionality_
ids Sequence[str] - Functionalities attached to the status page
- ga_
tracking_ strid - 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_ intlast_ days - 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_ strurl - Website Privacy URL
- website_
support_ strurl - Website Support URL
- website_
url str - Website URL
- allow
Search BooleanEngine Index - Allow search engines to include your public status page in search results. Value must be one of true or false
- authentication
Enabled Boolean - Enable authentication. Value must be one of true or false
- authentication
Password String - Authentication password
- description String
- The description of the status page
- enabled Boolean
- failure
Message String - Message showing when at least one component is not operational
- String
- The color of the footer. Eg. "#1F2F41"
- functionality
Ids List<String> - Functionalities attached to the status page
- ga
Tracking StringId - Google Analytics tracking ID
- header
Color 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
- public
Description String - The public description of the status page
- public
Title String - The public title of the status page
- service
Ids List<String> - Services attached to the status page
- show
Uptime Boolean - Show uptime. Value must be one of true or false
- show
Uptime NumberLast Days - Show uptime over x days. Value must be one of
30
,60
,90
,180
,360
. - success
Message String - Message showing when all components are operational
- time
Zone 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
- website
Privacy StringUrl - Website Privacy URL
- website
Support StringUrl - Website Support URL
- website
Url 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.