1. Packages
  2. Fortios
  3. API Docs
  4. report
  5. Style
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

fortios.report.Style

Explore with Pulumi AI

fortios logo
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

    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)
    public Style(String name, StyleArgs args)
    public Style(String name, StyleArgs args, CustomResourceOptions options)
    
    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.
    BgColor string
    Background color.
    BorderBottom string
    Border bottom.
    BorderLeft string
    Border left.
    BorderRight string
    Border right.
    BorderTop string
    Border top.
    ColumnGap string
    Column gap.
    ColumnSpan string
    Column span. Valid values: none, all.
    FgColor string
    Foreground color.
    FontFamily string
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    FontSize string
    Font size.
    FontStyle string
    Font style. Valid values: normal, italic.
    FontWeight string
    Font weight. Valid values: normal, bold.
    Height string
    Height.
    LineHeight string
    Text line height.
    MarginBottom string
    Margin bottom.
    MarginLeft string
    Margin left.
    MarginRight string
    Margin right.
    MarginTop string
    Margin top.
    Name string
    Report style name.
    Options string
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    PaddingBottom string
    Padding bottom.
    PaddingLeft string
    Padding left.
    PaddingRight string
    Padding right.
    PaddingTop 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.
    BgColor string
    Background color.
    BorderBottom string
    Border bottom.
    BorderLeft string
    Border left.
    BorderRight string
    Border right.
    BorderTop string
    Border top.
    ColumnGap string
    Column gap.
    ColumnSpan string
    Column span. Valid values: none, all.
    FgColor string
    Foreground color.
    FontFamily string
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    FontSize string
    Font size.
    FontStyle string
    Font style. Valid values: normal, italic.
    FontWeight string
    Font weight. Valid values: normal, bold.
    Height string
    Height.
    LineHeight string
    Text line height.
    MarginBottom string
    Margin bottom.
    MarginLeft string
    Margin left.
    MarginRight string
    Margin right.
    MarginTop string
    Margin top.
    Name string
    Report style name.
    Options string
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    PaddingBottom string
    Padding bottom.
    PaddingLeft string
    Padding left.
    PaddingRight string
    Padding right.
    PaddingTop 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.
    bgColor String
    Background color.
    borderBottom String
    Border bottom.
    borderLeft String
    Border left.
    borderRight String
    Border right.
    borderTop String
    Border top.
    columnGap String
    Column gap.
    columnSpan String
    Column span. Valid values: none, all.
    fgColor String
    Foreground color.
    fontFamily String
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    fontSize String
    Font size.
    fontStyle String
    Font style. Valid values: normal, italic.
    fontWeight String
    Font weight. Valid values: normal, bold.
    height String
    Height.
    lineHeight String
    Text line height.
    marginBottom String
    Margin bottom.
    marginLeft String
    Margin left.
    marginRight String
    Margin right.
    marginTop String
    Margin top.
    name String
    Report style name.
    options String
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    paddingBottom String
    Padding bottom.
    paddingLeft String
    Padding left.
    paddingRight String
    Padding right.
    paddingTop 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.
    bgColor string
    Background color.
    borderBottom string
    Border bottom.
    borderLeft string
    Border left.
    borderRight string
    Border right.
    borderTop string
    Border top.
    columnGap string
    Column gap.
    columnSpan string
    Column span. Valid values: none, all.
    fgColor string
    Foreground color.
    fontFamily string
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    fontSize string
    Font size.
    fontStyle string
    Font style. Valid values: normal, italic.
    fontWeight string
    Font weight. Valid values: normal, bold.
    height string
    Height.
    lineHeight string
    Text line height.
    marginBottom string
    Margin bottom.
    marginLeft string
    Margin left.
    marginRight string
    Margin right.
    marginTop string
    Margin top.
    name string
    Report style name.
    options string
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    paddingBottom string
    Padding bottom.
    paddingLeft string
    Padding left.
    paddingRight string
    Padding right.
    paddingTop 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.
    bgColor String
    Background color.
    borderBottom String
    Border bottom.
    borderLeft String
    Border left.
    borderRight String
    Border right.
    borderTop String
    Border top.
    columnGap String
    Column gap.
    columnSpan String
    Column span. Valid values: none, all.
    fgColor String
    Foreground color.
    fontFamily String
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    fontSize String
    Font size.
    fontStyle String
    Font style. Valid values: normal, italic.
    fontWeight String
    Font weight. Valid values: normal, bold.
    height String
    Height.
    lineHeight String
    Text line height.
    marginBottom String
    Margin bottom.
    marginLeft String
    Margin left.
    marginRight String
    Margin right.
    marginTop String
    Margin top.
    name String
    Report style name.
    options String
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    paddingBottom String
    Padding bottom.
    paddingLeft String
    Padding left.
    paddingRight String
    Padding right.
    paddingTop 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.
    The following state arguments are supported:
    Align string
    Alignment. Valid values: left, center, right, justify.
    BgColor string
    Background color.
    BorderBottom string
    Border bottom.
    BorderLeft string
    Border left.
    BorderRight string
    Border right.
    BorderTop string
    Border top.
    ColumnGap string
    Column gap.
    ColumnSpan string
    Column span. Valid values: none, all.
    FgColor string
    Foreground color.
    FontFamily string
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    FontSize string
    Font size.
    FontStyle string
    Font style. Valid values: normal, italic.
    FontWeight string
    Font weight. Valid values: normal, bold.
    Height string
    Height.
    LineHeight string
    Text line height.
    MarginBottom string
    Margin bottom.
    MarginLeft string
    Margin left.
    MarginRight string
    Margin right.
    MarginTop string
    Margin top.
    Name string
    Report style name.
    Options string
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    PaddingBottom string
    Padding bottom.
    PaddingLeft string
    Padding left.
    PaddingRight string
    Padding right.
    PaddingTop 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.
    BgColor string
    Background color.
    BorderBottom string
    Border bottom.
    BorderLeft string
    Border left.
    BorderRight string
    Border right.
    BorderTop string
    Border top.
    ColumnGap string
    Column gap.
    ColumnSpan string
    Column span. Valid values: none, all.
    FgColor string
    Foreground color.
    FontFamily string
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    FontSize string
    Font size.
    FontStyle string
    Font style. Valid values: normal, italic.
    FontWeight string
    Font weight. Valid values: normal, bold.
    Height string
    Height.
    LineHeight string
    Text line height.
    MarginBottom string
    Margin bottom.
    MarginLeft string
    Margin left.
    MarginRight string
    Margin right.
    MarginTop string
    Margin top.
    Name string
    Report style name.
    Options string
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    PaddingBottom string
    Padding bottom.
    PaddingLeft string
    Padding left.
    PaddingRight string
    Padding right.
    PaddingTop 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.
    bgColor String
    Background color.
    borderBottom String
    Border bottom.
    borderLeft String
    Border left.
    borderRight String
    Border right.
    borderTop String
    Border top.
    columnGap String
    Column gap.
    columnSpan String
    Column span. Valid values: none, all.
    fgColor String
    Foreground color.
    fontFamily String
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    fontSize String
    Font size.
    fontStyle String
    Font style. Valid values: normal, italic.
    fontWeight String
    Font weight. Valid values: normal, bold.
    height String
    Height.
    lineHeight String
    Text line height.
    marginBottom String
    Margin bottom.
    marginLeft String
    Margin left.
    marginRight String
    Margin right.
    marginTop String
    Margin top.
    name String
    Report style name.
    options String
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    paddingBottom String
    Padding bottom.
    paddingLeft String
    Padding left.
    paddingRight String
    Padding right.
    paddingTop 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.
    bgColor string
    Background color.
    borderBottom string
    Border bottom.
    borderLeft string
    Border left.
    borderRight string
    Border right.
    borderTop string
    Border top.
    columnGap string
    Column gap.
    columnSpan string
    Column span. Valid values: none, all.
    fgColor string
    Foreground color.
    fontFamily string
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    fontSize string
    Font size.
    fontStyle string
    Font style. Valid values: normal, italic.
    fontWeight string
    Font weight. Valid values: normal, bold.
    height string
    Height.
    lineHeight string
    Text line height.
    marginBottom string
    Margin bottom.
    marginLeft string
    Margin left.
    marginRight string
    Margin right.
    marginTop string
    Margin top.
    name string
    Report style name.
    options string
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    paddingBottom string
    Padding bottom.
    paddingLeft string
    Padding left.
    paddingRight string
    Padding right.
    paddingTop 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.
    bgColor String
    Background color.
    borderBottom String
    Border bottom.
    borderLeft String
    Border left.
    borderRight String
    Border right.
    borderTop String
    Border top.
    columnGap String
    Column gap.
    columnSpan String
    Column span. Valid values: none, all.
    fgColor String
    Foreground color.
    fontFamily String
    Font family. Valid values: Verdana, Arial, Helvetica, Courier, Times.
    fontSize String
    Font size.
    fontStyle String
    Font style. Valid values: normal, italic.
    fontWeight String
    Font weight. Valid values: normal, bold.
    height String
    Height.
    lineHeight String
    Text line height.
    marginBottom String
    Margin bottom.
    marginLeft String
    Margin left.
    marginRight String
    Margin right.
    marginTop String
    Margin top.
    name String
    Report style name.
    options String
    Report style options. Valid values: font, text, color, align, size, margin, border, padding, column.
    paddingBottom String
    Padding bottom.
    paddingLeft String
    Padding left.
    paddingRight String
    Padding right.
    paddingTop 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.
    fortios logo
    Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse