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

fortios.report.Dataset

Explore with Pulumi AI

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

    Report dataset 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.Dataset("trname", {
        policy: 0,
        query: "select * from testdb",
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.report.Dataset("trname",
        policy=0,
        query="select * from testdb")
    
    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.NewDataset(ctx, "trname", &report.DatasetArgs{
    			Policy: pulumi.Int(0),
    			Query:  pulumi.String("select * from testdb"),
    		})
    		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.Dataset("trname", new()
        {
            Policy = 0,
            Query = "select * from testdb",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.report.Dataset;
    import com.pulumi.fortios.report.DatasetArgs;
    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 Dataset("trname", DatasetArgs.builder()        
                .policy(0)
                .query("select * from testdb")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:report:Dataset
        properties:
          policy: 0
          query: select * from testdb
    

    Create Dataset Resource

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

    Constructor syntax

    new Dataset(name: string, args?: DatasetArgs, opts?: CustomResourceOptions);
    @overload
    def Dataset(resource_name: str,
                args: Optional[DatasetArgs] = None,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Dataset(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                dynamic_sort_subtable: Optional[str] = None,
                fields: Optional[Sequence[DatasetFieldArgs]] = None,
                get_all_tables: Optional[str] = None,
                name: Optional[str] = None,
                parameters: Optional[Sequence[DatasetParameterArgs]] = None,
                policy: Optional[int] = None,
                query: Optional[str] = None,
                vdomparam: Optional[str] = None)
    func NewDataset(ctx *Context, name string, args *DatasetArgs, opts ...ResourceOption) (*Dataset, error)
    public Dataset(string name, DatasetArgs? args = null, CustomResourceOptions? opts = null)
    public Dataset(String name, DatasetArgs args)
    public Dataset(String name, DatasetArgs args, CustomResourceOptions options)
    
    type: fortios:report:Dataset
    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 DatasetArgs
    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 DatasetArgs
    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 DatasetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatasetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatasetArgs
    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 datasetResource = new Fortios.Report.Dataset("datasetResource", new()
    {
        DynamicSortSubtable = "string",
        Fields = new[]
        {
            new Fortios.Report.Inputs.DatasetFieldArgs
            {
                Displayname = "string",
                Id = 0,
                Name = "string",
                Type = "string",
            },
        },
        GetAllTables = "string",
        Name = "string",
        Parameters = new[]
        {
            new Fortios.Report.Inputs.DatasetParameterArgs
            {
                DataType = "string",
                DisplayName = "string",
                Field = "string",
                Id = 0,
            },
        },
        Policy = 0,
        Query = "string",
        Vdomparam = "string",
    });
    
    example, err := report.NewDataset(ctx, "datasetResource", &report.DatasetArgs{
    	DynamicSortSubtable: pulumi.String("string"),
    	Fields: report.DatasetFieldArray{
    		&report.DatasetFieldArgs{
    			Displayname: pulumi.String("string"),
    			Id:          pulumi.Int(0),
    			Name:        pulumi.String("string"),
    			Type:        pulumi.String("string"),
    		},
    	},
    	GetAllTables: pulumi.String("string"),
    	Name:         pulumi.String("string"),
    	Parameters: report.DatasetParameterArray{
    		&report.DatasetParameterArgs{
    			DataType:    pulumi.String("string"),
    			DisplayName: pulumi.String("string"),
    			Field:       pulumi.String("string"),
    			Id:          pulumi.Int(0),
    		},
    	},
    	Policy:    pulumi.Int(0),
    	Query:     pulumi.String("string"),
    	Vdomparam: pulumi.String("string"),
    })
    
    var datasetResource = new Dataset("datasetResource", DatasetArgs.builder()
        .dynamicSortSubtable("string")
        .fields(DatasetFieldArgs.builder()
            .displayname("string")
            .id(0)
            .name("string")
            .type("string")
            .build())
        .getAllTables("string")
        .name("string")
        .parameters(DatasetParameterArgs.builder()
            .dataType("string")
            .displayName("string")
            .field("string")
            .id(0)
            .build())
        .policy(0)
        .query("string")
        .vdomparam("string")
        .build());
    
    dataset_resource = fortios.report.Dataset("datasetResource",
        dynamic_sort_subtable="string",
        fields=[fortios.report.DatasetFieldArgs(
            displayname="string",
            id=0,
            name="string",
            type="string",
        )],
        get_all_tables="string",
        name="string",
        parameters=[fortios.report.DatasetParameterArgs(
            data_type="string",
            display_name="string",
            field="string",
            id=0,
        )],
        policy=0,
        query="string",
        vdomparam="string")
    
    const datasetResource = new fortios.report.Dataset("datasetResource", {
        dynamicSortSubtable: "string",
        fields: [{
            displayname: "string",
            id: 0,
            name: "string",
            type: "string",
        }],
        getAllTables: "string",
        name: "string",
        parameters: [{
            dataType: "string",
            displayName: "string",
            field: "string",
            id: 0,
        }],
        policy: 0,
        query: "string",
        vdomparam: "string",
    });
    
    type: fortios:report:Dataset
    properties:
        dynamicSortSubtable: string
        fields:
            - displayname: string
              id: 0
              name: string
              type: string
        getAllTables: string
        name: string
        parameters:
            - dataType: string
              displayName: string
              field: string
              id: 0
        policy: 0
        query: string
        vdomparam: string
    

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

    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    Fields List<Pulumiverse.Fortios.Report.Inputs.DatasetField>
    Fields. The structure of field block is documented below.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    Name.
    Parameters List<Pulumiverse.Fortios.Report.Inputs.DatasetParameter>
    Parameters. The structure of parameters block is documented below.
    Policy int
    Used by monitor policy.
    Query string
    SQL query statement.
    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.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    Fields []DatasetFieldArgs
    Fields. The structure of field block is documented below.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    Name.
    Parameters []DatasetParameterArgs
    Parameters. The structure of parameters block is documented below.
    Policy int
    Used by monitor policy.
    Query string
    SQL query statement.
    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.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fields List<DatasetField>
    Fields. The structure of field block is documented below.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    Name.
    parameters List<DatasetParameter>
    Parameters. The structure of parameters block is documented below.
    policy Integer
    Used by monitor policy.
    query String
    SQL query statement.
    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.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fields DatasetField[]
    Fields. The structure of field block is documented below.
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name string
    Name.
    parameters DatasetParameter[]
    Parameters. The structure of parameters block is documented below.
    policy number
    Used by monitor policy.
    query string
    SQL query statement.
    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.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fields Sequence[DatasetFieldArgs]
    Fields. The structure of field block is documented below.
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name str
    Name.
    parameters Sequence[DatasetParameterArgs]
    Parameters. The structure of parameters block is documented below.
    policy int
    Used by monitor policy.
    query str
    SQL query statement.
    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.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fields List<Property Map>
    Fields. The structure of field block is documented below.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    Name.
    parameters List<Property Map>
    Parameters. The structure of parameters block is documented below.
    policy Number
    Used by monitor policy.
    query String
    SQL query statement.
    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 Dataset 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 Dataset Resource

    Get an existing Dataset 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?: DatasetState, opts?: CustomResourceOptions): Dataset
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dynamic_sort_subtable: Optional[str] = None,
            fields: Optional[Sequence[DatasetFieldArgs]] = None,
            get_all_tables: Optional[str] = None,
            name: Optional[str] = None,
            parameters: Optional[Sequence[DatasetParameterArgs]] = None,
            policy: Optional[int] = None,
            query: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Dataset
    func GetDataset(ctx *Context, name string, id IDInput, state *DatasetState, opts ...ResourceOption) (*Dataset, error)
    public static Dataset Get(string name, Input<string> id, DatasetState? state, CustomResourceOptions? opts = null)
    public static Dataset get(String name, Output<String> id, DatasetState 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:
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    Fields List<Pulumiverse.Fortios.Report.Inputs.DatasetField>
    Fields. The structure of field block is documented below.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    Name.
    Parameters List<Pulumiverse.Fortios.Report.Inputs.DatasetParameter>
    Parameters. The structure of parameters block is documented below.
    Policy int
    Used by monitor policy.
    Query string
    SQL query statement.
    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.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    Fields []DatasetFieldArgs
    Fields. The structure of field block is documented below.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    Name.
    Parameters []DatasetParameterArgs
    Parameters. The structure of parameters block is documented below.
    Policy int
    Used by monitor policy.
    Query string
    SQL query statement.
    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.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fields List<DatasetField>
    Fields. The structure of field block is documented below.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    Name.
    parameters List<DatasetParameter>
    Parameters. The structure of parameters block is documented below.
    policy Integer
    Used by monitor policy.
    query String
    SQL query statement.
    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.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fields DatasetField[]
    Fields. The structure of field block is documented below.
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name string
    Name.
    parameters DatasetParameter[]
    Parameters. The structure of parameters block is documented below.
    policy number
    Used by monitor policy.
    query string
    SQL query statement.
    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.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fields Sequence[DatasetFieldArgs]
    Fields. The structure of field block is documented below.
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name str
    Name.
    parameters Sequence[DatasetParameterArgs]
    Parameters. The structure of parameters block is documented below.
    policy int
    Used by monitor policy.
    query str
    SQL query statement.
    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.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fields List<Property Map>
    Fields. The structure of field block is documented below.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    Name.
    parameters List<Property Map>
    Parameters. The structure of parameters block is documented below.
    policy Number
    Used by monitor policy.
    query String
    SQL query statement.
    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.

    Supporting Types

    DatasetField, DatasetFieldArgs

    Displayname string
    Display name.
    Id int
    Field ID (1 to number of columns in SQL result).
    Name string
    Name.
    Type string
    Field type. Valid values: text, integer, double.
    Displayname string
    Display name.
    Id int
    Field ID (1 to number of columns in SQL result).
    Name string
    Name.
    Type string
    Field type. Valid values: text, integer, double.
    displayname String
    Display name.
    id Integer
    Field ID (1 to number of columns in SQL result).
    name String
    Name.
    type String
    Field type. Valid values: text, integer, double.
    displayname string
    Display name.
    id number
    Field ID (1 to number of columns in SQL result).
    name string
    Name.
    type string
    Field type. Valid values: text, integer, double.
    displayname str
    Display name.
    id int
    Field ID (1 to number of columns in SQL result).
    name str
    Name.
    type str
    Field type. Valid values: text, integer, double.
    displayname String
    Display name.
    id Number
    Field ID (1 to number of columns in SQL result).
    name String
    Name.
    type String
    Field type. Valid values: text, integer, double.

    DatasetParameter, DatasetParameterArgs

    DataType string
    Data type. Valid values: text, integer, double, long-integer, date-time.
    DisplayName string
    Display name.
    Field string
    SQL field name.
    Id int
    Parameter ID (1 to number of columns in SQL result).
    DataType string
    Data type. Valid values: text, integer, double, long-integer, date-time.
    DisplayName string
    Display name.
    Field string
    SQL field name.
    Id int
    Parameter ID (1 to number of columns in SQL result).
    dataType String
    Data type. Valid values: text, integer, double, long-integer, date-time.
    displayName String
    Display name.
    field String
    SQL field name.
    id Integer
    Parameter ID (1 to number of columns in SQL result).
    dataType string
    Data type. Valid values: text, integer, double, long-integer, date-time.
    displayName string
    Display name.
    field string
    SQL field name.
    id number
    Parameter ID (1 to number of columns in SQL result).
    data_type str
    Data type. Valid values: text, integer, double, long-integer, date-time.
    display_name str
    Display name.
    field str
    SQL field name.
    id int
    Parameter ID (1 to number of columns in SQL result).
    dataType String
    Data type. Valid values: text, integer, double, long-integer, date-time.
    displayName String
    Display name.
    field String
    SQL field name.
    id Number
    Parameter ID (1 to number of columns in SQL result).

    Import

    Report Dataset can be imported using any of these accepted formats:

    $ pulumi import fortios:report/dataset:Dataset labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:report/dataset:Dataset 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