1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectFirewallVip6Quic
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectFirewallVip6Quic

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    QUIC setting.

    This resource is a sub resource for variable quic of resource fortimanager.ObjectFirewallVip6. Conflict and overwrite may occur if use both of them.

    Create ObjectFirewallVip6Quic Resource

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

    Constructor syntax

    new ObjectFirewallVip6Quic(name: string, args: ObjectFirewallVip6QuicArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallVip6Quic(resource_name: str,
                               args: ObjectFirewallVip6QuicInitArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallVip6Quic(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               vip6: Optional[str] = None,
                               ack_delay_exponent: Optional[float] = None,
                               active_connection_id_limit: Optional[float] = None,
                               active_migration: Optional[str] = None,
                               adom: Optional[str] = None,
                               grease_quic_bit: Optional[str] = None,
                               max_ack_delay: Optional[float] = None,
                               max_datagram_frame_size: Optional[float] = None,
                               max_idle_timeout: Optional[float] = None,
                               max_udp_payload_size: Optional[float] = None,
                               object_firewall_vip6_quic_id: Optional[str] = None,
                               scopetype: Optional[str] = None)
    func NewObjectFirewallVip6Quic(ctx *Context, name string, args ObjectFirewallVip6QuicArgs, opts ...ResourceOption) (*ObjectFirewallVip6Quic, error)
    public ObjectFirewallVip6Quic(string name, ObjectFirewallVip6QuicArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallVip6Quic(String name, ObjectFirewallVip6QuicArgs args)
    public ObjectFirewallVip6Quic(String name, ObjectFirewallVip6QuicArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallVip6Quic
    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 ObjectFirewallVip6QuicArgs
    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 ObjectFirewallVip6QuicInitArgs
    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 ObjectFirewallVip6QuicArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallVip6QuicArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallVip6QuicArgs
    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 objectFirewallVip6QuicResource = new Fortimanager.ObjectFirewallVip6Quic("objectFirewallVip6QuicResource", new()
    {
        Vip6 = "string",
        AckDelayExponent = 0,
        ActiveConnectionIdLimit = 0,
        ActiveMigration = "string",
        Adom = "string",
        GreaseQuicBit = "string",
        MaxAckDelay = 0,
        MaxDatagramFrameSize = 0,
        MaxIdleTimeout = 0,
        MaxUdpPayloadSize = 0,
        ObjectFirewallVip6QuicId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallVip6Quic(ctx, "objectFirewallVip6QuicResource", &fortimanager.ObjectFirewallVip6QuicArgs{
    Vip6: pulumi.String("string"),
    AckDelayExponent: pulumi.Float64(0),
    ActiveConnectionIdLimit: pulumi.Float64(0),
    ActiveMigration: pulumi.String("string"),
    Adom: pulumi.String("string"),
    GreaseQuicBit: pulumi.String("string"),
    MaxAckDelay: pulumi.Float64(0),
    MaxDatagramFrameSize: pulumi.Float64(0),
    MaxIdleTimeout: pulumi.Float64(0),
    MaxUdpPayloadSize: pulumi.Float64(0),
    ObjectFirewallVip6QuicId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectFirewallVip6QuicResource = new ObjectFirewallVip6Quic("objectFirewallVip6QuicResource", ObjectFirewallVip6QuicArgs.builder()
        .vip6("string")
        .ackDelayExponent(0)
        .activeConnectionIdLimit(0)
        .activeMigration("string")
        .adom("string")
        .greaseQuicBit("string")
        .maxAckDelay(0)
        .maxDatagramFrameSize(0)
        .maxIdleTimeout(0)
        .maxUdpPayloadSize(0)
        .objectFirewallVip6QuicId("string")
        .scopetype("string")
        .build());
    
    object_firewall_vip6_quic_resource = fortimanager.ObjectFirewallVip6Quic("objectFirewallVip6QuicResource",
        vip6="string",
        ack_delay_exponent=0,
        active_connection_id_limit=0,
        active_migration="string",
        adom="string",
        grease_quic_bit="string",
        max_ack_delay=0,
        max_datagram_frame_size=0,
        max_idle_timeout=0,
        max_udp_payload_size=0,
        object_firewall_vip6_quic_id="string",
        scopetype="string")
    
    const objectFirewallVip6QuicResource = new fortimanager.ObjectFirewallVip6Quic("objectFirewallVip6QuicResource", {
        vip6: "string",
        ackDelayExponent: 0,
        activeConnectionIdLimit: 0,
        activeMigration: "string",
        adom: "string",
        greaseQuicBit: "string",
        maxAckDelay: 0,
        maxDatagramFrameSize: 0,
        maxIdleTimeout: 0,
        maxUdpPayloadSize: 0,
        objectFirewallVip6QuicId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectFirewallVip6Quic
    properties:
        ackDelayExponent: 0
        activeConnectionIdLimit: 0
        activeMigration: string
        adom: string
        greaseQuicBit: string
        maxAckDelay: 0
        maxDatagramFrameSize: 0
        maxIdleTimeout: 0
        maxUdpPayloadSize: 0
        objectFirewallVip6QuicId: string
        scopetype: string
        vip6: string
    

    ObjectFirewallVip6Quic Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ObjectFirewallVip6Quic resource accepts the following input properties:

    Vip6 string
    Vip6.
    AckDelayExponent double
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    ActiveConnectionIdLimit double
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    ActiveMigration string
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    GreaseQuicBit string
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    MaxAckDelay double
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    MaxDatagramFrameSize double
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    MaxIdleTimeout double
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    MaxUdpPayloadSize double
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    ObjectFirewallVip6QuicId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Vip6 string
    Vip6.
    AckDelayExponent float64
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    ActiveConnectionIdLimit float64
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    ActiveMigration string
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    GreaseQuicBit string
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    MaxAckDelay float64
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    MaxDatagramFrameSize float64
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    MaxIdleTimeout float64
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    MaxUdpPayloadSize float64
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    ObjectFirewallVip6QuicId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vip6 String
    Vip6.
    ackDelayExponent Double
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    activeConnectionIdLimit Double
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    activeMigration String
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    greaseQuicBit String
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    maxAckDelay Double
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    maxDatagramFrameSize Double
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    maxIdleTimeout Double
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    maxUdpPayloadSize Double
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    objectFirewallVip6QuicId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vip6 string
    Vip6.
    ackDelayExponent number
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    activeConnectionIdLimit number
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    activeMigration string
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    greaseQuicBit string
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    maxAckDelay number
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    maxDatagramFrameSize number
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    maxIdleTimeout number
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    maxUdpPayloadSize number
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    objectFirewallVip6QuicId string
    an identifier for the resource.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vip6 str
    Vip6.
    ack_delay_exponent float
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    active_connection_id_limit float
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    active_migration str
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    grease_quic_bit str
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    max_ack_delay float
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    max_datagram_frame_size float
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    max_idle_timeout float
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    max_udp_payload_size float
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    object_firewall_vip6_quic_id str
    an identifier for the resource.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vip6 String
    Vip6.
    ackDelayExponent Number
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    activeConnectionIdLimit Number
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    activeMigration String
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    greaseQuicBit String
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    maxAckDelay Number
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    maxDatagramFrameSize Number
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    maxIdleTimeout Number
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    maxUdpPayloadSize Number
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    objectFirewallVip6QuicId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectFirewallVip6Quic 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 ObjectFirewallVip6Quic Resource

    Get an existing ObjectFirewallVip6Quic 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?: ObjectFirewallVip6QuicState, opts?: CustomResourceOptions): ObjectFirewallVip6Quic
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ack_delay_exponent: Optional[float] = None,
            active_connection_id_limit: Optional[float] = None,
            active_migration: Optional[str] = None,
            adom: Optional[str] = None,
            grease_quic_bit: Optional[str] = None,
            max_ack_delay: Optional[float] = None,
            max_datagram_frame_size: Optional[float] = None,
            max_idle_timeout: Optional[float] = None,
            max_udp_payload_size: Optional[float] = None,
            object_firewall_vip6_quic_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            vip6: Optional[str] = None) -> ObjectFirewallVip6Quic
    func GetObjectFirewallVip6Quic(ctx *Context, name string, id IDInput, state *ObjectFirewallVip6QuicState, opts ...ResourceOption) (*ObjectFirewallVip6Quic, error)
    public static ObjectFirewallVip6Quic Get(string name, Input<string> id, ObjectFirewallVip6QuicState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallVip6Quic get(String name, Output<String> id, ObjectFirewallVip6QuicState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallVip6Quic    get:      id: ${id}
    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:
    AckDelayExponent double
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    ActiveConnectionIdLimit double
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    ActiveMigration string
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    GreaseQuicBit string
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    MaxAckDelay double
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    MaxDatagramFrameSize double
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    MaxIdleTimeout double
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    MaxUdpPayloadSize double
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    ObjectFirewallVip6QuicId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Vip6 string
    Vip6.
    AckDelayExponent float64
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    ActiveConnectionIdLimit float64
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    ActiveMigration string
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    GreaseQuicBit string
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    MaxAckDelay float64
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    MaxDatagramFrameSize float64
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    MaxIdleTimeout float64
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    MaxUdpPayloadSize float64
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    ObjectFirewallVip6QuicId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Vip6 string
    Vip6.
    ackDelayExponent Double
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    activeConnectionIdLimit Double
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    activeMigration String
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    greaseQuicBit String
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    maxAckDelay Double
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    maxDatagramFrameSize Double
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    maxIdleTimeout Double
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    maxUdpPayloadSize Double
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    objectFirewallVip6QuicId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vip6 String
    Vip6.
    ackDelayExponent number
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    activeConnectionIdLimit number
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    activeMigration string
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    greaseQuicBit string
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    maxAckDelay number
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    maxDatagramFrameSize number
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    maxIdleTimeout number
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    maxUdpPayloadSize number
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    objectFirewallVip6QuicId string
    an identifier for the resource.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vip6 string
    Vip6.
    ack_delay_exponent float
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    active_connection_id_limit float
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    active_migration str
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    grease_quic_bit str
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    max_ack_delay float
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    max_datagram_frame_size float
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    max_idle_timeout float
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    max_udp_payload_size float
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    object_firewall_vip6_quic_id str
    an identifier for the resource.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vip6 str
    Vip6.
    ackDelayExponent Number
    Support meta variable ACK delay exponent (1 - 20, default = 3).
    activeConnectionIdLimit Number
    Support meta variable Active connection ID limit (1 - 8, default = 2).
    activeMigration String
    Enable/disable active migration (default = disable). Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    greaseQuicBit String
    Enable/disable grease QUIC bit (default = enable). Valid values: disable, enable.
    maxAckDelay Number
    Support meta variable Maximum ACK delay in milliseconds (1 - 16383, default = 25).
    maxDatagramFrameSize Number
    Support meta variable Maximum datagram frame size in bytes (1 - 1500, default = 1500).
    maxIdleTimeout Number
    Support meta variable Maximum idle timeout milliseconds (1 - 60000, default = 30000).
    maxUdpPayloadSize Number
    Support meta variable Maximum UDP payload size in bytes (1200 - 1500, default = 1500).
    objectFirewallVip6QuicId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vip6 String
    Vip6.

    Import

    ObjectFirewall Vip6Quic can be imported using any of these accepted formats:

    Set import_options = [“vip6=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallVip6Quic:ObjectFirewallVip6Quic labelname ObjectFirewallVip6Quic
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev