fortios.report.Style
Explore with Pulumi AI
Report style 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.Style("trname", {
borderBottom: "\" none \"",
borderLeft: "\" none \"",
borderRight: "\" none \"",
borderTop: "\" none \"",
columnSpan: "none",
fontStyle: "normal",
fontWeight: "normal",
options: "font text color",
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.report.Style("trname",
border_bottom="\" none \"",
border_left="\" none \"",
border_right="\" none \"",
border_top="\" none \"",
column_span="none",
font_style="normal",
font_weight="normal",
options="font text color")
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.NewStyle(ctx, "trname", &report.StyleArgs{
BorderBottom: pulumi.String("\" none \""),
BorderLeft: pulumi.String("\" none \""),
BorderRight: pulumi.String("\" none \""),
BorderTop: pulumi.String("\" none \""),
ColumnSpan: pulumi.String("none"),
FontStyle: pulumi.String("normal"),
FontWeight: pulumi.String("normal"),
Options: pulumi.String("font text color"),
})
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.Style("trname", new()
{
BorderBottom = "\" none \"",
BorderLeft = "\" none \"",
BorderRight = "\" none \"",
BorderTop = "\" none \"",
ColumnSpan = "none",
FontStyle = "normal",
FontWeight = "normal",
Options = "font text color",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.report.Style;
import com.pulumi.fortios.report.StyleArgs;
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 Style("trname", StyleArgs.builder()
.borderBottom("\" none \"")
.borderLeft("\" none \"")
.borderRight("\" none \"")
.borderTop("\" none \"")
.columnSpan("none")
.fontStyle("normal")
.fontWeight("normal")
.options("font text color")
.build());
}
}
resources:
trname:
type: fortios:report:Style
properties:
borderBottom: '" none "'
borderLeft: '" none "'
borderRight: '" none "'
borderTop: '" none "'
columnSpan: none
fontStyle: normal
fontWeight: normal
options: font text color
Create Style Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Style(name: string, args?: StyleArgs, opts?: CustomResourceOptions);
@overload
def Style(resource_name: str,
args: Optional[StyleArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Style(resource_name: str,
opts: Optional[ResourceOptions] = None,
align: Optional[str] = None,
bg_color: Optional[str] = None,
border_bottom: Optional[str] = None,
border_left: Optional[str] = None,
border_right: Optional[str] = None,
border_top: Optional[str] = None,
column_gap: Optional[str] = None,
column_span: Optional[str] = None,
fg_color: Optional[str] = None,
font_family: Optional[str] = None,
font_size: Optional[str] = None,
font_style: Optional[str] = None,
font_weight: Optional[str] = None,
height: Optional[str] = None,
line_height: Optional[str] = None,
margin_bottom: Optional[str] = None,
margin_left: Optional[str] = None,
margin_right: Optional[str] = None,
margin_top: Optional[str] = None,
name: Optional[str] = None,
options: Optional[str] = None,
padding_bottom: Optional[str] = None,
padding_left: Optional[str] = None,
padding_right: Optional[str] = None,
padding_top: Optional[str] = None,
vdomparam: Optional[str] = None,
width: Optional[str] = None)
func NewStyle(ctx *Context, name string, args *StyleArgs, opts ...ResourceOption) (*Style, error)
public Style(string name, StyleArgs? args = null, CustomResourceOptions? opts = null)
type: fortios:report:Style
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 StyleArgs
- 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 StyleArgs
- 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 StyleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StyleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StyleArgs
- 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 styleResource = new Fortios.Report.Style("styleResource", new()
{
Align = "string",
BgColor = "string",
BorderBottom = "string",
BorderLeft = "string",
BorderRight = "string",
BorderTop = "string",
ColumnGap = "string",
ColumnSpan = "string",
FgColor = "string",
FontFamily = "string",
FontSize = "string",
FontStyle = "string",
FontWeight = "string",
Height = "string",
LineHeight = "string",
MarginBottom = "string",
MarginLeft = "string",
MarginRight = "string",
MarginTop = "string",
Name = "string",
Options = "string",
PaddingBottom = "string",
PaddingLeft = "string",
PaddingRight = "string",
PaddingTop = "string",
Vdomparam = "string",
Width = "string",
});
example, err := report.NewStyle(ctx, "styleResource", &report.StyleArgs{
Align: pulumi.String("string"),
BgColor: pulumi.String("string"),
BorderBottom: pulumi.String("string"),
BorderLeft: pulumi.String("string"),
BorderRight: pulumi.String("string"),
BorderTop: pulumi.String("string"),
ColumnGap: pulumi.String("string"),
ColumnSpan: pulumi.String("string"),
FgColor: pulumi.String("string"),
FontFamily: pulumi.String("string"),
FontSize: pulumi.String("string"),
FontStyle: pulumi.String("string"),
FontWeight: pulumi.String("string"),
Height: pulumi.String("string"),
LineHeight: pulumi.String("string"),
MarginBottom: pulumi.String("string"),
MarginLeft: pulumi.String("string"),
MarginRight: pulumi.String("string"),
MarginTop: pulumi.String("string"),
Name: pulumi.String("string"),
Options: pulumi.String("string"),
PaddingBottom: pulumi.String("string"),
PaddingLeft: pulumi.String("string"),
PaddingRight: pulumi.String("string"),
PaddingTop: pulumi.String("string"),
Vdomparam: pulumi.String("string"),
Width: pulumi.String("string"),
})
var styleResource = new Style("styleResource", StyleArgs.builder()
.align("string")
.bgColor("string")
.borderBottom("string")
.borderLeft("string")
.borderRight("string")
.borderTop("string")
.columnGap("string")
.columnSpan("string")
.fgColor("string")
.fontFamily("string")
.fontSize("string")
.fontStyle("string")
.fontWeight("string")
.height("string")
.lineHeight("string")
.marginBottom("string")
.marginLeft("string")
.marginRight("string")
.marginTop("string")
.name("string")
.options("string")
.paddingBottom("string")
.paddingLeft("string")
.paddingRight("string")
.paddingTop("string")
.vdomparam("string")
.width("string")
.build());
style_resource = fortios.report.Style("styleResource",
align="string",
bg_color="string",
border_bottom="string",
border_left="string",
border_right="string",
border_top="string",
column_gap="string",
column_span="string",
fg_color="string",
font_family="string",
font_size="string",
font_style="string",
font_weight="string",
height="string",
line_height="string",
margin_bottom="string",
margin_left="string",
margin_right="string",
margin_top="string",
name="string",
options="string",
padding_bottom="string",
padding_left="string",
padding_right="string",
padding_top="string",
vdomparam="string",
width="string")
const styleResource = new fortios.report.Style("styleResource", {
align: "string",
bgColor: "string",
borderBottom: "string",
borderLeft: "string",
borderRight: "string",
borderTop: "string",
columnGap: "string",
columnSpan: "string",
fgColor: "string",
fontFamily: "string",
fontSize: "string",
fontStyle: "string",
fontWeight: "string",
height: "string",
lineHeight: "string",
marginBottom: "string",
marginLeft: "string",
marginRight: "string",
marginTop: "string",
name: "string",
options: "string",
paddingBottom: "string",
paddingLeft: "string",
paddingRight: "string",
paddingTop: "string",
vdomparam: "string",
width: "string",
});
type: fortios:report:Style
properties:
align: string
bgColor: string
borderBottom: string
borderLeft: string
borderRight: string
borderTop: string
columnGap: string
columnSpan: string
fgColor: string
fontFamily: string
fontSize: string
fontStyle: string
fontWeight: string
height: string
lineHeight: string
marginBottom: string
marginLeft: string
marginRight: string
marginTop: string
name: string
options: string
paddingBottom: string
paddingLeft: string
paddingRight: string
paddingTop: string
vdomparam: string
width: string
Style 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 Style resource accepts the following input properties:
- Align string
- Alignment. Valid values:
left
,center
,right
,justify
. - Bg
Color string - Background color.
- Border
Bottom string - Border bottom.
- Border
Left string - Border left.
- Border
Right string - Border right.
- Border
Top string - Border top.
- Column
Gap string - Column gap.
- Column
Span string - Column span. Valid values:
none
,all
. - Fg
Color string - Foreground color.
- Font
Family string - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - Font
Size string - Font size.
- Font
Style string - Font style. Valid values:
normal
,italic
. - Font
Weight string - Font weight. Valid values:
normal
,bold
. - Height string
- Height.
- Line
Height string - Text line height.
- Margin
Bottom string - Margin bottom.
- Margin
Left string - Margin left.
- Margin
Right string - Margin right.
- Margin
Top string - Margin top.
- Name string
- Report style name.
- Options string
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - Padding
Bottom string - Padding bottom.
- Padding
Left string - Padding left.
- Padding
Right string - Padding right.
- Padding
Top string - Padding top.
- 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.
- Width string
- Width.
- Align string
- Alignment. Valid values:
left
,center
,right
,justify
. - Bg
Color string - Background color.
- Border
Bottom string - Border bottom.
- Border
Left string - Border left.
- Border
Right string - Border right.
- Border
Top string - Border top.
- Column
Gap string - Column gap.
- Column
Span string - Column span. Valid values:
none
,all
. - Fg
Color string - Foreground color.
- Font
Family string - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - Font
Size string - Font size.
- Font
Style string - Font style. Valid values:
normal
,italic
. - Font
Weight string - Font weight. Valid values:
normal
,bold
. - Height string
- Height.
- Line
Height string - Text line height.
- Margin
Bottom string - Margin bottom.
- Margin
Left string - Margin left.
- Margin
Right string - Margin right.
- Margin
Top string - Margin top.
- Name string
- Report style name.
- Options string
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - Padding
Bottom string - Padding bottom.
- Padding
Left string - Padding left.
- Padding
Right string - Padding right.
- Padding
Top string - Padding top.
- 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.
- Width string
- Width.
- align String
- Alignment. Valid values:
left
,center
,right
,justify
. - bg
Color String - Background color.
- border
Bottom String - Border bottom.
- border
Left String - Border left.
- border
Right String - Border right.
- border
Top String - Border top.
- column
Gap String - Column gap.
- column
Span String - Column span. Valid values:
none
,all
. - fg
Color String - Foreground color.
- font
Family String - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - font
Size String - Font size.
- font
Style String - Font style. Valid values:
normal
,italic
. - font
Weight String - Font weight. Valid values:
normal
,bold
. - height String
- Height.
- line
Height String - Text line height.
- margin
Bottom String - Margin bottom.
- margin
Left String - Margin left.
- margin
Right String - Margin right.
- margin
Top String - Margin top.
- name String
- Report style name.
- options String
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - padding
Bottom String - Padding bottom.
- padding
Left String - Padding left.
- padding
Right String - Padding right.
- padding
Top String - Padding top.
- 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.
- width String
- Width.
- align string
- Alignment. Valid values:
left
,center
,right
,justify
. - bg
Color string - Background color.
- border
Bottom string - Border bottom.
- border
Left string - Border left.
- border
Right string - Border right.
- border
Top string - Border top.
- column
Gap string - Column gap.
- column
Span string - Column span. Valid values:
none
,all
. - fg
Color string - Foreground color.
- font
Family string - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - font
Size string - Font size.
- font
Style string - Font style. Valid values:
normal
,italic
. - font
Weight string - Font weight. Valid values:
normal
,bold
. - height string
- Height.
- line
Height string - Text line height.
- margin
Bottom string - Margin bottom.
- margin
Left string - Margin left.
- margin
Right string - Margin right.
- margin
Top string - Margin top.
- name string
- Report style name.
- options string
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - padding
Bottom string - Padding bottom.
- padding
Left string - Padding left.
- padding
Right string - Padding right.
- padding
Top string - Padding top.
- 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.
- width string
- Width.
- align str
- Alignment. Valid values:
left
,center
,right
,justify
. - bg_
color str - Background color.
- border_
bottom str - Border bottom.
- border_
left str - Border left.
- border_
right str - Border right.
- border_
top str - Border top.
- column_
gap str - Column gap.
- column_
span str - Column span. Valid values:
none
,all
. - fg_
color str - Foreground color.
- font_
family str - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - font_
size str - Font size.
- font_
style str - Font style. Valid values:
normal
,italic
. - font_
weight str - Font weight. Valid values:
normal
,bold
. - height str
- Height.
- line_
height str - Text line height.
- margin_
bottom str - Margin bottom.
- margin_
left str - Margin left.
- margin_
right str - Margin right.
- margin_
top str - Margin top.
- name str
- Report style name.
- options str
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - padding_
bottom str - Padding bottom.
- padding_
left str - Padding left.
- padding_
right str - Padding right.
- padding_
top str - Padding top.
- 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.
- width str
- Width.
- align String
- Alignment. Valid values:
left
,center
,right
,justify
. - bg
Color String - Background color.
- border
Bottom String - Border bottom.
- border
Left String - Border left.
- border
Right String - Border right.
- border
Top String - Border top.
- column
Gap String - Column gap.
- column
Span String - Column span. Valid values:
none
,all
. - fg
Color String - Foreground color.
- font
Family String - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - font
Size String - Font size.
- font
Style String - Font style. Valid values:
normal
,italic
. - font
Weight String - Font weight. Valid values:
normal
,bold
. - height String
- Height.
- line
Height String - Text line height.
- margin
Bottom String - Margin bottom.
- margin
Left String - Margin left.
- margin
Right String - Margin right.
- margin
Top String - Margin top.
- name String
- Report style name.
- options String
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - padding
Bottom String - Padding bottom.
- padding
Left String - Padding left.
- padding
Right String - Padding right.
- padding
Top String - Padding top.
- 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.
- width String
- Width.
Outputs
All input properties are implicitly available as output properties. Additionally, the Style 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 Style Resource
Get an existing Style 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?: StyleState, opts?: CustomResourceOptions): Style
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
align: Optional[str] = None,
bg_color: Optional[str] = None,
border_bottom: Optional[str] = None,
border_left: Optional[str] = None,
border_right: Optional[str] = None,
border_top: Optional[str] = None,
column_gap: Optional[str] = None,
column_span: Optional[str] = None,
fg_color: Optional[str] = None,
font_family: Optional[str] = None,
font_size: Optional[str] = None,
font_style: Optional[str] = None,
font_weight: Optional[str] = None,
height: Optional[str] = None,
line_height: Optional[str] = None,
margin_bottom: Optional[str] = None,
margin_left: Optional[str] = None,
margin_right: Optional[str] = None,
margin_top: Optional[str] = None,
name: Optional[str] = None,
options: Optional[str] = None,
padding_bottom: Optional[str] = None,
padding_left: Optional[str] = None,
padding_right: Optional[str] = None,
padding_top: Optional[str] = None,
vdomparam: Optional[str] = None,
width: Optional[str] = None) -> Style
func GetStyle(ctx *Context, name string, id IDInput, state *StyleState, opts ...ResourceOption) (*Style, error)
public static Style Get(string name, Input<string> id, StyleState? state, CustomResourceOptions? opts = null)
public static Style get(String name, Output<String> id, StyleState 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.
- Align string
- Alignment. Valid values:
left
,center
,right
,justify
. - Bg
Color string - Background color.
- Border
Bottom string - Border bottom.
- Border
Left string - Border left.
- Border
Right string - Border right.
- Border
Top string - Border top.
- Column
Gap string - Column gap.
- Column
Span string - Column span. Valid values:
none
,all
. - Fg
Color string - Foreground color.
- Font
Family string - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - Font
Size string - Font size.
- Font
Style string - Font style. Valid values:
normal
,italic
. - Font
Weight string - Font weight. Valid values:
normal
,bold
. - Height string
- Height.
- Line
Height string - Text line height.
- Margin
Bottom string - Margin bottom.
- Margin
Left string - Margin left.
- Margin
Right string - Margin right.
- Margin
Top string - Margin top.
- Name string
- Report style name.
- Options string
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - Padding
Bottom string - Padding bottom.
- Padding
Left string - Padding left.
- Padding
Right string - Padding right.
- Padding
Top string - Padding top.
- 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.
- Width string
- Width.
- Align string
- Alignment. Valid values:
left
,center
,right
,justify
. - Bg
Color string - Background color.
- Border
Bottom string - Border bottom.
- Border
Left string - Border left.
- Border
Right string - Border right.
- Border
Top string - Border top.
- Column
Gap string - Column gap.
- Column
Span string - Column span. Valid values:
none
,all
. - Fg
Color string - Foreground color.
- Font
Family string - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - Font
Size string - Font size.
- Font
Style string - Font style. Valid values:
normal
,italic
. - Font
Weight string - Font weight. Valid values:
normal
,bold
. - Height string
- Height.
- Line
Height string - Text line height.
- Margin
Bottom string - Margin bottom.
- Margin
Left string - Margin left.
- Margin
Right string - Margin right.
- Margin
Top string - Margin top.
- Name string
- Report style name.
- Options string
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - Padding
Bottom string - Padding bottom.
- Padding
Left string - Padding left.
- Padding
Right string - Padding right.
- Padding
Top string - Padding top.
- 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.
- Width string
- Width.
- align String
- Alignment. Valid values:
left
,center
,right
,justify
. - bg
Color String - Background color.
- border
Bottom String - Border bottom.
- border
Left String - Border left.
- border
Right String - Border right.
- border
Top String - Border top.
- column
Gap String - Column gap.
- column
Span String - Column span. Valid values:
none
,all
. - fg
Color String - Foreground color.
- font
Family String - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - font
Size String - Font size.
- font
Style String - Font style. Valid values:
normal
,italic
. - font
Weight String - Font weight. Valid values:
normal
,bold
. - height String
- Height.
- line
Height String - Text line height.
- margin
Bottom String - Margin bottom.
- margin
Left String - Margin left.
- margin
Right String - Margin right.
- margin
Top String - Margin top.
- name String
- Report style name.
- options String
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - padding
Bottom String - Padding bottom.
- padding
Left String - Padding left.
- padding
Right String - Padding right.
- padding
Top String - Padding top.
- 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.
- width String
- Width.
- align string
- Alignment. Valid values:
left
,center
,right
,justify
. - bg
Color string - Background color.
- border
Bottom string - Border bottom.
- border
Left string - Border left.
- border
Right string - Border right.
- border
Top string - Border top.
- column
Gap string - Column gap.
- column
Span string - Column span. Valid values:
none
,all
. - fg
Color string - Foreground color.
- font
Family string - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - font
Size string - Font size.
- font
Style string - Font style. Valid values:
normal
,italic
. - font
Weight string - Font weight. Valid values:
normal
,bold
. - height string
- Height.
- line
Height string - Text line height.
- margin
Bottom string - Margin bottom.
- margin
Left string - Margin left.
- margin
Right string - Margin right.
- margin
Top string - Margin top.
- name string
- Report style name.
- options string
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - padding
Bottom string - Padding bottom.
- padding
Left string - Padding left.
- padding
Right string - Padding right.
- padding
Top string - Padding top.
- 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.
- width string
- Width.
- align str
- Alignment. Valid values:
left
,center
,right
,justify
. - bg_
color str - Background color.
- border_
bottom str - Border bottom.
- border_
left str - Border left.
- border_
right str - Border right.
- border_
top str - Border top.
- column_
gap str - Column gap.
- column_
span str - Column span. Valid values:
none
,all
. - fg_
color str - Foreground color.
- font_
family str - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - font_
size str - Font size.
- font_
style str - Font style. Valid values:
normal
,italic
. - font_
weight str - Font weight. Valid values:
normal
,bold
. - height str
- Height.
- line_
height str - Text line height.
- margin_
bottom str - Margin bottom.
- margin_
left str - Margin left.
- margin_
right str - Margin right.
- margin_
top str - Margin top.
- name str
- Report style name.
- options str
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - padding_
bottom str - Padding bottom.
- padding_
left str - Padding left.
- padding_
right str - Padding right.
- padding_
top str - Padding top.
- 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.
- width str
- Width.
- align String
- Alignment. Valid values:
left
,center
,right
,justify
. - bg
Color String - Background color.
- border
Bottom String - Border bottom.
- border
Left String - Border left.
- border
Right String - Border right.
- border
Top String - Border top.
- column
Gap String - Column gap.
- column
Span String - Column span. Valid values:
none
,all
. - fg
Color String - Foreground color.
- font
Family String - Font family. Valid values:
Verdana
,Arial
,Helvetica
,Courier
,Times
. - font
Size String - Font size.
- font
Style String - Font style. Valid values:
normal
,italic
. - font
Weight String - Font weight. Valid values:
normal
,bold
. - height String
- Height.
- line
Height String - Text line height.
- margin
Bottom String - Margin bottom.
- margin
Left String - Margin left.
- margin
Right String - Margin right.
- margin
Top String - Margin top.
- name String
- Report style name.
- options String
- Report style options. Valid values:
font
,text
,color
,align
,size
,margin
,border
,padding
,column
. - padding
Bottom String - Padding bottom.
- padding
Left String - Padding left.
- padding
Right String - Padding right.
- padding
Top String - Padding top.
- 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.
- width String
- Width.
Import
Report Style can be imported using any of these accepted formats:
$ pulumi import fortios:report/style:Style labelname {{name}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:report/style:Style 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.