fortios.report.Theme
Explore with Pulumi AI
Report themes configuration Applies to FortiOS Version <= 7.0.0
.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.report.Theme("trname", {
columnCount: "1",
graphChartStyle: "PS",
pageOrient: "portrait",
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.report.Theme("trname",
column_count="1",
graph_chart_style="PS",
page_orient="portrait")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/report"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := report.NewTheme(ctx, "trname", &report.ThemeArgs{
ColumnCount: pulumi.String("1"),
GraphChartStyle: pulumi.String("PS"),
PageOrient: pulumi.String("portrait"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() =>
{
var trname = new Fortios.Report.Theme("trname", new()
{
ColumnCount = "1",
GraphChartStyle = "PS",
PageOrient = "portrait",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.report.Theme;
import com.pulumi.fortios.report.ThemeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new Theme("trname", ThemeArgs.builder()
.columnCount("1")
.graphChartStyle("PS")
.pageOrient("portrait")
.build());
}
}
resources:
trname:
type: fortios:report:Theme
properties:
columnCount: '1'
graphChartStyle: PS
pageOrient: portrait
Create Theme Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Theme(name: string, args?: ThemeArgs, opts?: CustomResourceOptions);
@overload
def Theme(resource_name: str,
args: Optional[ThemeArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Theme(resource_name: str,
opts: Optional[ResourceOptions] = None,
bullet_list_style: Optional[str] = None,
column_count: Optional[str] = None,
default_html_style: Optional[str] = None,
default_pdf_style: Optional[str] = None,
graph_chart_style: Optional[str] = None,
heading1_style: Optional[str] = None,
heading2_style: Optional[str] = None,
heading3_style: Optional[str] = None,
heading4_style: Optional[str] = None,
hline_style: Optional[str] = None,
image_style: Optional[str] = None,
name: Optional[str] = None,
normal_text_style: Optional[str] = None,
numbered_list_style: Optional[str] = None,
page_footer_style: Optional[str] = None,
page_header_style: Optional[str] = None,
page_orient: Optional[str] = None,
page_style: Optional[str] = None,
report_subtitle_style: Optional[str] = None,
report_title_style: Optional[str] = None,
table_chart_caption_style: Optional[str] = None,
table_chart_even_row_style: Optional[str] = None,
table_chart_head_style: Optional[str] = None,
table_chart_odd_row_style: Optional[str] = None,
table_chart_style: Optional[str] = None,
toc_heading1_style: Optional[str] = None,
toc_heading2_style: Optional[str] = None,
toc_heading3_style: Optional[str] = None,
toc_heading4_style: Optional[str] = None,
toc_title_style: Optional[str] = None,
vdomparam: Optional[str] = None)
func NewTheme(ctx *Context, name string, args *ThemeArgs, opts ...ResourceOption) (*Theme, error)
public Theme(string name, ThemeArgs? args = null, CustomResourceOptions? opts = null)
type: fortios:report:Theme
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 ThemeArgs
- 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 ThemeArgs
- 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 ThemeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ThemeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ThemeArgs
- 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 themeResource = new Fortios.Report.Theme("themeResource", new()
{
BulletListStyle = "string",
ColumnCount = "string",
DefaultHtmlStyle = "string",
DefaultPdfStyle = "string",
GraphChartStyle = "string",
Heading1Style = "string",
Heading2Style = "string",
Heading3Style = "string",
Heading4Style = "string",
HlineStyle = "string",
ImageStyle = "string",
Name = "string",
NormalTextStyle = "string",
NumberedListStyle = "string",
PageFooterStyle = "string",
PageHeaderStyle = "string",
PageOrient = "string",
PageStyle = "string",
ReportSubtitleStyle = "string",
ReportTitleStyle = "string",
TableChartCaptionStyle = "string",
TableChartEvenRowStyle = "string",
TableChartHeadStyle = "string",
TableChartOddRowStyle = "string",
TableChartStyle = "string",
TocHeading1Style = "string",
TocHeading2Style = "string",
TocHeading3Style = "string",
TocHeading4Style = "string",
TocTitleStyle = "string",
Vdomparam = "string",
});
example, err := report.NewTheme(ctx, "themeResource", &report.ThemeArgs{
BulletListStyle: pulumi.String("string"),
ColumnCount: pulumi.String("string"),
DefaultHtmlStyle: pulumi.String("string"),
DefaultPdfStyle: pulumi.String("string"),
GraphChartStyle: pulumi.String("string"),
Heading1Style: pulumi.String("string"),
Heading2Style: pulumi.String("string"),
Heading3Style: pulumi.String("string"),
Heading4Style: pulumi.String("string"),
HlineStyle: pulumi.String("string"),
ImageStyle: pulumi.String("string"),
Name: pulumi.String("string"),
NormalTextStyle: pulumi.String("string"),
NumberedListStyle: pulumi.String("string"),
PageFooterStyle: pulumi.String("string"),
PageHeaderStyle: pulumi.String("string"),
PageOrient: pulumi.String("string"),
PageStyle: pulumi.String("string"),
ReportSubtitleStyle: pulumi.String("string"),
ReportTitleStyle: pulumi.String("string"),
TableChartCaptionStyle: pulumi.String("string"),
TableChartEvenRowStyle: pulumi.String("string"),
TableChartHeadStyle: pulumi.String("string"),
TableChartOddRowStyle: pulumi.String("string"),
TableChartStyle: pulumi.String("string"),
TocHeading1Style: pulumi.String("string"),
TocHeading2Style: pulumi.String("string"),
TocHeading3Style: pulumi.String("string"),
TocHeading4Style: pulumi.String("string"),
TocTitleStyle: pulumi.String("string"),
Vdomparam: pulumi.String("string"),
})
var themeResource = new Theme("themeResource", ThemeArgs.builder()
.bulletListStyle("string")
.columnCount("string")
.defaultHtmlStyle("string")
.defaultPdfStyle("string")
.graphChartStyle("string")
.heading1Style("string")
.heading2Style("string")
.heading3Style("string")
.heading4Style("string")
.hlineStyle("string")
.imageStyle("string")
.name("string")
.normalTextStyle("string")
.numberedListStyle("string")
.pageFooterStyle("string")
.pageHeaderStyle("string")
.pageOrient("string")
.pageStyle("string")
.reportSubtitleStyle("string")
.reportTitleStyle("string")
.tableChartCaptionStyle("string")
.tableChartEvenRowStyle("string")
.tableChartHeadStyle("string")
.tableChartOddRowStyle("string")
.tableChartStyle("string")
.tocHeading1Style("string")
.tocHeading2Style("string")
.tocHeading3Style("string")
.tocHeading4Style("string")
.tocTitleStyle("string")
.vdomparam("string")
.build());
theme_resource = fortios.report.Theme("themeResource",
bullet_list_style="string",
column_count="string",
default_html_style="string",
default_pdf_style="string",
graph_chart_style="string",
heading1_style="string",
heading2_style="string",
heading3_style="string",
heading4_style="string",
hline_style="string",
image_style="string",
name="string",
normal_text_style="string",
numbered_list_style="string",
page_footer_style="string",
page_header_style="string",
page_orient="string",
page_style="string",
report_subtitle_style="string",
report_title_style="string",
table_chart_caption_style="string",
table_chart_even_row_style="string",
table_chart_head_style="string",
table_chart_odd_row_style="string",
table_chart_style="string",
toc_heading1_style="string",
toc_heading2_style="string",
toc_heading3_style="string",
toc_heading4_style="string",
toc_title_style="string",
vdomparam="string")
const themeResource = new fortios.report.Theme("themeResource", {
bulletListStyle: "string",
columnCount: "string",
defaultHtmlStyle: "string",
defaultPdfStyle: "string",
graphChartStyle: "string",
heading1Style: "string",
heading2Style: "string",
heading3Style: "string",
heading4Style: "string",
hlineStyle: "string",
imageStyle: "string",
name: "string",
normalTextStyle: "string",
numberedListStyle: "string",
pageFooterStyle: "string",
pageHeaderStyle: "string",
pageOrient: "string",
pageStyle: "string",
reportSubtitleStyle: "string",
reportTitleStyle: "string",
tableChartCaptionStyle: "string",
tableChartEvenRowStyle: "string",
tableChartHeadStyle: "string",
tableChartOddRowStyle: "string",
tableChartStyle: "string",
tocHeading1Style: "string",
tocHeading2Style: "string",
tocHeading3Style: "string",
tocHeading4Style: "string",
tocTitleStyle: "string",
vdomparam: "string",
});
type: fortios:report:Theme
properties:
bulletListStyle: string
columnCount: string
defaultHtmlStyle: string
defaultPdfStyle: string
graphChartStyle: string
heading1Style: string
heading2Style: string
heading3Style: string
heading4Style: string
hlineStyle: string
imageStyle: string
name: string
normalTextStyle: string
numberedListStyle: string
pageFooterStyle: string
pageHeaderStyle: string
pageOrient: string
pageStyle: string
reportSubtitleStyle: string
reportTitleStyle: string
tableChartCaptionStyle: string
tableChartEvenRowStyle: string
tableChartHeadStyle: string
tableChartOddRowStyle: string
tableChartStyle: string
tocHeading1Style: string
tocHeading2Style: string
tocHeading3Style: string
tocHeading4Style: string
tocTitleStyle: string
vdomparam: string
Theme 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 Theme resource accepts the following input properties:
- Bullet
List stringStyle - Bullet list style.
- Column
Count string - Report page column count. Valid values:
1
,2
,3
. - Default
Html stringStyle - Default HTML report style.
- Default
Pdf stringStyle - Default PDF report style.
- Graph
Chart stringStyle - Graph chart style.
- Heading1Style string
- Report heading style.
- Heading2Style string
- Report heading style.
- Heading3Style string
- Report heading style.
- Heading4Style string
- Report heading style.
- Hline
Style string - Horizontal line style.
- Image
Style string - Image style.
- Name string
- Report theme name.
- Normal
Text stringStyle - Normal text style.
- Numbered
List stringStyle - Numbered list style.
- string
- Report page footer style.
- Page
Header stringStyle - Report page header style.
- Page
Orient string - Report page orientation. Valid values:
portrait
,landscape
. - Page
Style string - Report page style.
- Report
Subtitle stringStyle - Report subtitle style.
- Report
Title stringStyle - Report title style.
- string
- Table chart caption style.
- Table
Chart stringEven Row Style - Table chart even row style.
- Table
Chart stringHead Style - Table chart head row style.
- Table
Chart stringOdd Row Style - Table chart odd row style.
- Table
Chart stringStyle - Table chart style.
- Toc
Heading1Style string - Table of contents heading style.
- Toc
Heading2Style string - Table of contents heading style.
- Toc
Heading3Style string - Table of contents heading style.
- Toc
Heading4Style string - Table of contents heading style.
- Toc
Title stringStyle - Table of contents title style.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Bullet
List stringStyle - Bullet list style.
- Column
Count string - Report page column count. Valid values:
1
,2
,3
. - Default
Html stringStyle - Default HTML report style.
- Default
Pdf stringStyle - Default PDF report style.
- Graph
Chart stringStyle - Graph chart style.
- Heading1Style string
- Report heading style.
- Heading2Style string
- Report heading style.
- Heading3Style string
- Report heading style.
- Heading4Style string
- Report heading style.
- Hline
Style string - Horizontal line style.
- Image
Style string - Image style.
- Name string
- Report theme name.
- Normal
Text stringStyle - Normal text style.
- Numbered
List stringStyle - Numbered list style.
- string
- Report page footer style.
- Page
Header stringStyle - Report page header style.
- Page
Orient string - Report page orientation. Valid values:
portrait
,landscape
. - Page
Style string - Report page style.
- Report
Subtitle stringStyle - Report subtitle style.
- Report
Title stringStyle - Report title style.
- string
- Table chart caption style.
- Table
Chart stringEven Row Style - Table chart even row style.
- Table
Chart stringHead Style - Table chart head row style.
- Table
Chart stringOdd Row Style - Table chart odd row style.
- Table
Chart stringStyle - Table chart style.
- Toc
Heading1Style string - Table of contents heading style.
- Toc
Heading2Style string - Table of contents heading style.
- Toc
Heading3Style string - Table of contents heading style.
- Toc
Heading4Style string - Table of contents heading style.
- Toc
Title stringStyle - Table of contents title style.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- bullet
List StringStyle - Bullet list style.
- column
Count String - Report page column count. Valid values:
1
,2
,3
. - default
Html StringStyle - Default HTML report style.
- default
Pdf StringStyle - Default PDF report style.
- graph
Chart StringStyle - Graph chart style.
- heading1Style String
- Report heading style.
- heading2Style String
- Report heading style.
- heading3Style String
- Report heading style.
- heading4Style String
- Report heading style.
- hline
Style String - Horizontal line style.
- image
Style String - Image style.
- name String
- Report theme name.
- normal
Text StringStyle - Normal text style.
- numbered
List StringStyle - Numbered list style.
- String
- Report page footer style.
- page
Header StringStyle - Report page header style.
- page
Orient String - Report page orientation. Valid values:
portrait
,landscape
. - page
Style String - Report page style.
- report
Subtitle StringStyle - Report subtitle style.
- report
Title StringStyle - Report title style.
- String
- Table chart caption style.
- table
Chart StringEven Row Style - Table chart even row style.
- table
Chart StringHead Style - Table chart head row style.
- table
Chart StringOdd Row Style - Table chart odd row style.
- table
Chart StringStyle - Table chart style.
- toc
Heading1Style String - Table of contents heading style.
- toc
Heading2Style String - Table of contents heading style.
- toc
Heading3Style String - Table of contents heading style.
- toc
Heading4Style String - Table of contents heading style.
- toc
Title StringStyle - Table of contents title style.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- bullet
List stringStyle - Bullet list style.
- column
Count string - Report page column count. Valid values:
1
,2
,3
. - default
Html stringStyle - Default HTML report style.
- default
Pdf stringStyle - Default PDF report style.
- graph
Chart stringStyle - Graph chart style.
- heading1Style string
- Report heading style.
- heading2Style string
- Report heading style.
- heading3Style string
- Report heading style.
- heading4Style string
- Report heading style.
- hline
Style string - Horizontal line style.
- image
Style string - Image style.
- name string
- Report theme name.
- normal
Text stringStyle - Normal text style.
- numbered
List stringStyle - Numbered list style.
- string
- Report page footer style.
- page
Header stringStyle - Report page header style.
- page
Orient string - Report page orientation. Valid values:
portrait
,landscape
. - page
Style string - Report page style.
- report
Subtitle stringStyle - Report subtitle style.
- report
Title stringStyle - Report title style.
- string
- Table chart caption style.
- table
Chart stringEven Row Style - Table chart even row style.
- table
Chart stringHead Style - Table chart head row style.
- table
Chart stringOdd Row Style - Table chart odd row style.
- table
Chart stringStyle - Table chart style.
- toc
Heading1Style string - Table of contents heading style.
- toc
Heading2Style string - Table of contents heading style.
- toc
Heading3Style string - Table of contents heading style.
- toc
Heading4Style string - Table of contents heading style.
- toc
Title stringStyle - Table of contents title style.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- bullet_
list_ strstyle - Bullet list style.
- column_
count str - Report page column count. Valid values:
1
,2
,3
. - default_
html_ strstyle - Default HTML report style.
- default_
pdf_ strstyle - Default PDF report style.
- graph_
chart_ strstyle - Graph chart style.
- heading1_
style str - Report heading style.
- heading2_
style str - Report heading style.
- heading3_
style str - Report heading style.
- heading4_
style str - Report heading style.
- hline_
style str - Horizontal line style.
- image_
style str - Image style.
- name str
- Report theme name.
- normal_
text_ strstyle - Normal text style.
- numbered_
list_ strstyle - Numbered list style.
- str
- Report page footer style.
- page_
header_ strstyle - Report page header style.
- page_
orient str - Report page orientation. Valid values:
portrait
,landscape
. - page_
style str - Report page style.
- report_
subtitle_ strstyle - Report subtitle style.
- report_
title_ strstyle - Report title style.
- str
- Table chart caption style.
- table_
chart_ streven_ row_ style - Table chart even row style.
- table_
chart_ strhead_ style - Table chart head row style.
- table_
chart_ strodd_ row_ style - Table chart odd row style.
- table_
chart_ strstyle - Table chart style.
- toc_
heading1_ strstyle - Table of contents heading style.
- toc_
heading2_ strstyle - Table of contents heading style.
- toc_
heading3_ strstyle - Table of contents heading style.
- toc_
heading4_ strstyle - Table of contents heading style.
- toc_
title_ strstyle - Table of contents title style.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- bullet
List StringStyle - Bullet list style.
- column
Count String - Report page column count. Valid values:
1
,2
,3
. - default
Html StringStyle - Default HTML report style.
- default
Pdf StringStyle - Default PDF report style.
- graph
Chart StringStyle - Graph chart style.
- heading1Style String
- Report heading style.
- heading2Style String
- Report heading style.
- heading3Style String
- Report heading style.
- heading4Style String
- Report heading style.
- hline
Style String - Horizontal line style.
- image
Style String - Image style.
- name String
- Report theme name.
- normal
Text StringStyle - Normal text style.
- numbered
List StringStyle - Numbered list style.
- String
- Report page footer style.
- page
Header StringStyle - Report page header style.
- page
Orient String - Report page orientation. Valid values:
portrait
,landscape
. - page
Style String - Report page style.
- report
Subtitle StringStyle - Report subtitle style.
- report
Title StringStyle - Report title style.
- String
- Table chart caption style.
- table
Chart StringEven Row Style - Table chart even row style.
- table
Chart StringHead Style - Table chart head row style.
- table
Chart StringOdd Row Style - Table chart odd row style.
- table
Chart StringStyle - Table chart style.
- toc
Heading1Style String - Table of contents heading style.
- toc
Heading2Style String - Table of contents heading style.
- toc
Heading3Style String - Table of contents heading style.
- toc
Heading4Style String - Table of contents heading style.
- toc
Title StringStyle - Table of contents title style.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Theme 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 Theme Resource
Get an existing Theme 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?: ThemeState, opts?: CustomResourceOptions): Theme
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bullet_list_style: Optional[str] = None,
column_count: Optional[str] = None,
default_html_style: Optional[str] = None,
default_pdf_style: Optional[str] = None,
graph_chart_style: Optional[str] = None,
heading1_style: Optional[str] = None,
heading2_style: Optional[str] = None,
heading3_style: Optional[str] = None,
heading4_style: Optional[str] = None,
hline_style: Optional[str] = None,
image_style: Optional[str] = None,
name: Optional[str] = None,
normal_text_style: Optional[str] = None,
numbered_list_style: Optional[str] = None,
page_footer_style: Optional[str] = None,
page_header_style: Optional[str] = None,
page_orient: Optional[str] = None,
page_style: Optional[str] = None,
report_subtitle_style: Optional[str] = None,
report_title_style: Optional[str] = None,
table_chart_caption_style: Optional[str] = None,
table_chart_even_row_style: Optional[str] = None,
table_chart_head_style: Optional[str] = None,
table_chart_odd_row_style: Optional[str] = None,
table_chart_style: Optional[str] = None,
toc_heading1_style: Optional[str] = None,
toc_heading2_style: Optional[str] = None,
toc_heading3_style: Optional[str] = None,
toc_heading4_style: Optional[str] = None,
toc_title_style: Optional[str] = None,
vdomparam: Optional[str] = None) -> Theme
func GetTheme(ctx *Context, name string, id IDInput, state *ThemeState, opts ...ResourceOption) (*Theme, error)
public static Theme Get(string name, Input<string> id, ThemeState? state, CustomResourceOptions? opts = null)
public static Theme get(String name, Output<String> id, ThemeState 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.
- Bullet
List stringStyle - Bullet list style.
- Column
Count string - Report page column count. Valid values:
1
,2
,3
. - Default
Html stringStyle - Default HTML report style.
- Default
Pdf stringStyle - Default PDF report style.
- Graph
Chart stringStyle - Graph chart style.
- Heading1Style string
- Report heading style.
- Heading2Style string
- Report heading style.
- Heading3Style string
- Report heading style.
- Heading4Style string
- Report heading style.
- Hline
Style string - Horizontal line style.
- Image
Style string - Image style.
- Name string
- Report theme name.
- Normal
Text stringStyle - Normal text style.
- Numbered
List stringStyle - Numbered list style.
- string
- Report page footer style.
- Page
Header stringStyle - Report page header style.
- Page
Orient string - Report page orientation. Valid values:
portrait
,landscape
. - Page
Style string - Report page style.
- Report
Subtitle stringStyle - Report subtitle style.
- Report
Title stringStyle - Report title style.
- string
- Table chart caption style.
- Table
Chart stringEven Row Style - Table chart even row style.
- Table
Chart stringHead Style - Table chart head row style.
- Table
Chart stringOdd Row Style - Table chart odd row style.
- Table
Chart stringStyle - Table chart style.
- Toc
Heading1Style string - Table of contents heading style.
- Toc
Heading2Style string - Table of contents heading style.
- Toc
Heading3Style string - Table of contents heading style.
- Toc
Heading4Style string - Table of contents heading style.
- Toc
Title stringStyle - Table of contents title style.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Bullet
List stringStyle - Bullet list style.
- Column
Count string - Report page column count. Valid values:
1
,2
,3
. - Default
Html stringStyle - Default HTML report style.
- Default
Pdf stringStyle - Default PDF report style.
- Graph
Chart stringStyle - Graph chart style.
- Heading1Style string
- Report heading style.
- Heading2Style string
- Report heading style.
- Heading3Style string
- Report heading style.
- Heading4Style string
- Report heading style.
- Hline
Style string - Horizontal line style.
- Image
Style string - Image style.
- Name string
- Report theme name.
- Normal
Text stringStyle - Normal text style.
- Numbered
List stringStyle - Numbered list style.
- string
- Report page footer style.
- Page
Header stringStyle - Report page header style.
- Page
Orient string - Report page orientation. Valid values:
portrait
,landscape
. - Page
Style string - Report page style.
- Report
Subtitle stringStyle - Report subtitle style.
- Report
Title stringStyle - Report title style.
- string
- Table chart caption style.
- Table
Chart stringEven Row Style - Table chart even row style.
- Table
Chart stringHead Style - Table chart head row style.
- Table
Chart stringOdd Row Style - Table chart odd row style.
- Table
Chart stringStyle - Table chart style.
- Toc
Heading1Style string - Table of contents heading style.
- Toc
Heading2Style string - Table of contents heading style.
- Toc
Heading3Style string - Table of contents heading style.
- Toc
Heading4Style string - Table of contents heading style.
- Toc
Title stringStyle - Table of contents title style.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- bullet
List StringStyle - Bullet list style.
- column
Count String - Report page column count. Valid values:
1
,2
,3
. - default
Html StringStyle - Default HTML report style.
- default
Pdf StringStyle - Default PDF report style.
- graph
Chart StringStyle - Graph chart style.
- heading1Style String
- Report heading style.
- heading2Style String
- Report heading style.
- heading3Style String
- Report heading style.
- heading4Style String
- Report heading style.
- hline
Style String - Horizontal line style.
- image
Style String - Image style.
- name String
- Report theme name.
- normal
Text StringStyle - Normal text style.
- numbered
List StringStyle - Numbered list style.
- String
- Report page footer style.
- page
Header StringStyle - Report page header style.
- page
Orient String - Report page orientation. Valid values:
portrait
,landscape
. - page
Style String - Report page style.
- report
Subtitle StringStyle - Report subtitle style.
- report
Title StringStyle - Report title style.
- String
- Table chart caption style.
- table
Chart StringEven Row Style - Table chart even row style.
- table
Chart StringHead Style - Table chart head row style.
- table
Chart StringOdd Row Style - Table chart odd row style.
- table
Chart StringStyle - Table chart style.
- toc
Heading1Style String - Table of contents heading style.
- toc
Heading2Style String - Table of contents heading style.
- toc
Heading3Style String - Table of contents heading style.
- toc
Heading4Style String - Table of contents heading style.
- toc
Title StringStyle - Table of contents title style.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- bullet
List stringStyle - Bullet list style.
- column
Count string - Report page column count. Valid values:
1
,2
,3
. - default
Html stringStyle - Default HTML report style.
- default
Pdf stringStyle - Default PDF report style.
- graph
Chart stringStyle - Graph chart style.
- heading1Style string
- Report heading style.
- heading2Style string
- Report heading style.
- heading3Style string
- Report heading style.
- heading4Style string
- Report heading style.
- hline
Style string - Horizontal line style.
- image
Style string - Image style.
- name string
- Report theme name.
- normal
Text stringStyle - Normal text style.
- numbered
List stringStyle - Numbered list style.
- string
- Report page footer style.
- page
Header stringStyle - Report page header style.
- page
Orient string - Report page orientation. Valid values:
portrait
,landscape
. - page
Style string - Report page style.
- report
Subtitle stringStyle - Report subtitle style.
- report
Title stringStyle - Report title style.
- string
- Table chart caption style.
- table
Chart stringEven Row Style - Table chart even row style.
- table
Chart stringHead Style - Table chart head row style.
- table
Chart stringOdd Row Style - Table chart odd row style.
- table
Chart stringStyle - Table chart style.
- toc
Heading1Style string - Table of contents heading style.
- toc
Heading2Style string - Table of contents heading style.
- toc
Heading3Style string - Table of contents heading style.
- toc
Heading4Style string - Table of contents heading style.
- toc
Title stringStyle - Table of contents title style.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- bullet_
list_ strstyle - Bullet list style.
- column_
count str - Report page column count. Valid values:
1
,2
,3
. - default_
html_ strstyle - Default HTML report style.
- default_
pdf_ strstyle - Default PDF report style.
- graph_
chart_ strstyle - Graph chart style.
- heading1_
style str - Report heading style.
- heading2_
style str - Report heading style.
- heading3_
style str - Report heading style.
- heading4_
style str - Report heading style.
- hline_
style str - Horizontal line style.
- image_
style str - Image style.
- name str
- Report theme name.
- normal_
text_ strstyle - Normal text style.
- numbered_
list_ strstyle - Numbered list style.
- str
- Report page footer style.
- page_
header_ strstyle - Report page header style.
- page_
orient str - Report page orientation. Valid values:
portrait
,landscape
. - page_
style str - Report page style.
- report_
subtitle_ strstyle - Report subtitle style.
- report_
title_ strstyle - Report title style.
- str
- Table chart caption style.
- table_
chart_ streven_ row_ style - Table chart even row style.
- table_
chart_ strhead_ style - Table chart head row style.
- table_
chart_ strodd_ row_ style - Table chart odd row style.
- table_
chart_ strstyle - Table chart style.
- toc_
heading1_ strstyle - Table of contents heading style.
- toc_
heading2_ strstyle - Table of contents heading style.
- toc_
heading3_ strstyle - Table of contents heading style.
- toc_
heading4_ strstyle - Table of contents heading style.
- toc_
title_ strstyle - Table of contents title style.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- bullet
List StringStyle - Bullet list style.
- column
Count String - Report page column count. Valid values:
1
,2
,3
. - default
Html StringStyle - Default HTML report style.
- default
Pdf StringStyle - Default PDF report style.
- graph
Chart StringStyle - Graph chart style.
- heading1Style String
- Report heading style.
- heading2Style String
- Report heading style.
- heading3Style String
- Report heading style.
- heading4Style String
- Report heading style.
- hline
Style String - Horizontal line style.
- image
Style String - Image style.
- name String
- Report theme name.
- normal
Text StringStyle - Normal text style.
- numbered
List StringStyle - Numbered list style.
- String
- Report page footer style.
- page
Header StringStyle - Report page header style.
- page
Orient String - Report page orientation. Valid values:
portrait
,landscape
. - page
Style String - Report page style.
- report
Subtitle StringStyle - Report subtitle style.
- report
Title StringStyle - Report title style.
- String
- Table chart caption style.
- table
Chart StringEven Row Style - Table chart even row style.
- table
Chart StringHead Style - Table chart head row style.
- table
Chart StringOdd Row Style - Table chart odd row style.
- table
Chart StringStyle - Table chart style.
- toc
Heading1Style String - Table of contents heading style.
- toc
Heading2Style String - Table of contents heading style.
- toc
Heading3Style String - Table of contents heading style.
- toc
Heading4Style String - Table of contents heading style.
- toc
Title StringStyle - Table of contents title style.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Import
Report Theme can be imported using any of these accepted formats:
$ pulumi import fortios:report/theme:Theme labelname {{name}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:report/theme:Theme labelname {{name}}
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fortios
Terraform Provider.