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

fortimanager.ObjectIcapProfileRespmodforwardrules

Explore with Pulumi AI

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

    ICAP response mode forward rules.

    This resource is a sub resource for variable respmod_forward_rules of resource fortimanager.ObjectIcapProfile. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • header_group: fortimanager.ObjectIcapProfileRespmodforwardrulesHeadergroup

    Create ObjectIcapProfileRespmodforwardrules Resource

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

    Constructor syntax

    new ObjectIcapProfileRespmodforwardrules(name: string, args: ObjectIcapProfileRespmodforwardrulesArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectIcapProfileRespmodforwardrules(resource_name: str,
                                             args: ObjectIcapProfileRespmodforwardrulesArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectIcapProfileRespmodforwardrules(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             profile: Optional[str] = None,
                                             action: Optional[str] = None,
                                             adom: Optional[str] = None,
                                             dynamic_sort_subtable: Optional[str] = None,
                                             header_groups: Optional[Sequence[ObjectIcapProfileRespmodforwardrulesHeaderGroupArgs]] = None,
                                             host: Optional[str] = None,
                                             http_resp_status_codes: Optional[Sequence[float]] = None,
                                             name: Optional[str] = None,
                                             object_icap_profile_respmodforwardrules_id: Optional[str] = None,
                                             scopetype: Optional[str] = None)
    func NewObjectIcapProfileRespmodforwardrules(ctx *Context, name string, args ObjectIcapProfileRespmodforwardrulesArgs, opts ...ResourceOption) (*ObjectIcapProfileRespmodforwardrules, error)
    public ObjectIcapProfileRespmodforwardrules(string name, ObjectIcapProfileRespmodforwardrulesArgs args, CustomResourceOptions? opts = null)
    public ObjectIcapProfileRespmodforwardrules(String name, ObjectIcapProfileRespmodforwardrulesArgs args)
    public ObjectIcapProfileRespmodforwardrules(String name, ObjectIcapProfileRespmodforwardrulesArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectIcapProfileRespmodforwardrules
    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 ObjectIcapProfileRespmodforwardrulesArgs
    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 ObjectIcapProfileRespmodforwardrulesArgs
    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 ObjectIcapProfileRespmodforwardrulesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectIcapProfileRespmodforwardrulesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectIcapProfileRespmodforwardrulesArgs
    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 objectIcapProfileRespmodforwardrulesResource = new Fortimanager.ObjectIcapProfileRespmodforwardrules("objectIcapProfileRespmodforwardrulesResource", new()
    {
        Profile = "string",
        Action = "string",
        Adom = "string",
        DynamicSortSubtable = "string",
        HeaderGroups = new[]
        {
            new Fortimanager.Inputs.ObjectIcapProfileRespmodforwardrulesHeaderGroupArgs
            {
                CaseSensitivity = "string",
                Header = "string",
                HeaderName = "string",
                Id = 0,
            },
        },
        Host = "string",
        HttpRespStatusCodes = new[]
        {
            0,
        },
        Name = "string",
        ObjectIcapProfileRespmodforwardrulesId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectIcapProfileRespmodforwardrules(ctx, "objectIcapProfileRespmodforwardrulesResource", &fortimanager.ObjectIcapProfileRespmodforwardrulesArgs{
    Profile: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    HeaderGroups: .ObjectIcapProfileRespmodforwardrulesHeaderGroupTypeArray{
    &.ObjectIcapProfileRespmodforwardrulesHeaderGroupTypeArgs{
    CaseSensitivity: pulumi.String("string"),
    Header: pulumi.String("string"),
    HeaderName: pulumi.String("string"),
    Id: pulumi.Float64(0),
    },
    },
    Host: pulumi.String("string"),
    HttpRespStatusCodes: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Name: pulumi.String("string"),
    ObjectIcapProfileRespmodforwardrulesId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectIcapProfileRespmodforwardrulesResource = new ObjectIcapProfileRespmodforwardrules("objectIcapProfileRespmodforwardrulesResource", ObjectIcapProfileRespmodforwardrulesArgs.builder()
        .profile("string")
        .action("string")
        .adom("string")
        .dynamicSortSubtable("string")
        .headerGroups(ObjectIcapProfileRespmodforwardrulesHeaderGroupArgs.builder()
            .caseSensitivity("string")
            .header("string")
            .headerName("string")
            .id(0)
            .build())
        .host("string")
        .httpRespStatusCodes(0)
        .name("string")
        .objectIcapProfileRespmodforwardrulesId("string")
        .scopetype("string")
        .build());
    
    object_icap_profile_respmodforwardrules_resource = fortimanager.ObjectIcapProfileRespmodforwardrules("objectIcapProfileRespmodforwardrulesResource",
        profile="string",
        action="string",
        adom="string",
        dynamic_sort_subtable="string",
        header_groups=[{
            "case_sensitivity": "string",
            "header": "string",
            "header_name": "string",
            "id": 0,
        }],
        host="string",
        http_resp_status_codes=[0],
        name="string",
        object_icap_profile_respmodforwardrules_id="string",
        scopetype="string")
    
    const objectIcapProfileRespmodforwardrulesResource = new fortimanager.ObjectIcapProfileRespmodforwardrules("objectIcapProfileRespmodforwardrulesResource", {
        profile: "string",
        action: "string",
        adom: "string",
        dynamicSortSubtable: "string",
        headerGroups: [{
            caseSensitivity: "string",
            header: "string",
            headerName: "string",
            id: 0,
        }],
        host: "string",
        httpRespStatusCodes: [0],
        name: "string",
        objectIcapProfileRespmodforwardrulesId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectIcapProfileRespmodforwardrules
    properties:
        action: string
        adom: string
        dynamicSortSubtable: string
        headerGroups:
            - caseSensitivity: string
              header: string
              headerName: string
              id: 0
        host: string
        httpRespStatusCodes:
            - 0
        name: string
        objectIcapProfileRespmodforwardrulesId: string
        profile: string
        scopetype: string
    

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

    Profile string
    Profile.
    Action string
    Action to be taken for ICAP server. Valid values: bypass, forward.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    HeaderGroups List<ObjectIcapProfileRespmodforwardrulesHeaderGroup>
    Header-Group. The structure of header_group block is documented below.
    Host string
    Address object for the host.
    HttpRespStatusCodes List<double>
    HTTP response status code.
    Name string
    Address name.
    ObjectIcapProfileRespmodforwardrulesId string
    an identifier for the resource with format {{name}}.
    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.
    Profile string
    Profile.
    Action string
    Action to be taken for ICAP server. Valid values: bypass, forward.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    HeaderGroups []ObjectIcapProfileRespmodforwardrulesHeaderGroupTypeArgs
    Header-Group. The structure of header_group block is documented below.
    Host string
    Address object for the host.
    HttpRespStatusCodes []float64
    HTTP response status code.
    Name string
    Address name.
    ObjectIcapProfileRespmodforwardrulesId string
    an identifier for the resource with format {{name}}.
    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.
    profile String
    Profile.
    action String
    Action to be taken for ICAP server. Valid values: bypass, forward.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    headerGroups List<ObjectIcapProfileRespmodforwardrulesHeaderGroup>
    Header-Group. The structure of header_group block is documented below.
    host String
    Address object for the host.
    httpRespStatusCodes List<Double>
    HTTP response status code.
    name String
    Address name.
    objectIcapProfileRespmodforwardrulesId String
    an identifier for the resource with format {{name}}.
    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.
    profile string
    Profile.
    action string
    Action to be taken for ICAP server. Valid values: bypass, forward.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    headerGroups ObjectIcapProfileRespmodforwardrulesHeaderGroup[]
    Header-Group. The structure of header_group block is documented below.
    host string
    Address object for the host.
    httpRespStatusCodes number[]
    HTTP response status code.
    name string
    Address name.
    objectIcapProfileRespmodforwardrulesId string
    an identifier for the resource with format {{name}}.
    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.
    profile str
    Profile.
    action str
    Action to be taken for ICAP server. Valid values: bypass, forward.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    header_groups Sequence[ObjectIcapProfileRespmodforwardrulesHeaderGroupArgs]
    Header-Group. The structure of header_group block is documented below.
    host str
    Address object for the host.
    http_resp_status_codes Sequence[float]
    HTTP response status code.
    name str
    Address name.
    object_icap_profile_respmodforwardrules_id str
    an identifier for the resource with format {{name}}.
    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.
    profile String
    Profile.
    action String
    Action to be taken for ICAP server. Valid values: bypass, forward.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    headerGroups List<Property Map>
    Header-Group. The structure of header_group block is documented below.
    host String
    Address object for the host.
    httpRespStatusCodes List<Number>
    HTTP response status code.
    name String
    Address name.
    objectIcapProfileRespmodforwardrulesId String
    an identifier for the resource with format {{name}}.
    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 ObjectIcapProfileRespmodforwardrules 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 ObjectIcapProfileRespmodforwardrules Resource

    Get an existing ObjectIcapProfileRespmodforwardrules 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?: ObjectIcapProfileRespmodforwardrulesState, opts?: CustomResourceOptions): ObjectIcapProfileRespmodforwardrules
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            header_groups: Optional[Sequence[ObjectIcapProfileRespmodforwardrulesHeaderGroupArgs]] = None,
            host: Optional[str] = None,
            http_resp_status_codes: Optional[Sequence[float]] = None,
            name: Optional[str] = None,
            object_icap_profile_respmodforwardrules_id: Optional[str] = None,
            profile: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectIcapProfileRespmodforwardrules
    func GetObjectIcapProfileRespmodforwardrules(ctx *Context, name string, id IDInput, state *ObjectIcapProfileRespmodforwardrulesState, opts ...ResourceOption) (*ObjectIcapProfileRespmodforwardrules, error)
    public static ObjectIcapProfileRespmodforwardrules Get(string name, Input<string> id, ObjectIcapProfileRespmodforwardrulesState? state, CustomResourceOptions? opts = null)
    public static ObjectIcapProfileRespmodforwardrules get(String name, Output<String> id, ObjectIcapProfileRespmodforwardrulesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectIcapProfileRespmodforwardrules    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:
    Action string
    Action to be taken for ICAP server. Valid values: bypass, forward.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    HeaderGroups List<ObjectIcapProfileRespmodforwardrulesHeaderGroup>
    Header-Group. The structure of header_group block is documented below.
    Host string
    Address object for the host.
    HttpRespStatusCodes List<double>
    HTTP response status code.
    Name string
    Address name.
    ObjectIcapProfileRespmodforwardrulesId string
    an identifier for the resource with format {{name}}.
    Profile string
    Profile.
    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.
    Action string
    Action to be taken for ICAP server. Valid values: bypass, forward.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    HeaderGroups []ObjectIcapProfileRespmodforwardrulesHeaderGroupTypeArgs
    Header-Group. The structure of header_group block is documented below.
    Host string
    Address object for the host.
    HttpRespStatusCodes []float64
    HTTP response status code.
    Name string
    Address name.
    ObjectIcapProfileRespmodforwardrulesId string
    an identifier for the resource with format {{name}}.
    Profile string
    Profile.
    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.
    action String
    Action to be taken for ICAP server. Valid values: bypass, forward.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    headerGroups List<ObjectIcapProfileRespmodforwardrulesHeaderGroup>
    Header-Group. The structure of header_group block is documented below.
    host String
    Address object for the host.
    httpRespStatusCodes List<Double>
    HTTP response status code.
    name String
    Address name.
    objectIcapProfileRespmodforwardrulesId String
    an identifier for the resource with format {{name}}.
    profile String
    Profile.
    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.
    action string
    Action to be taken for ICAP server. Valid values: bypass, forward.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    headerGroups ObjectIcapProfileRespmodforwardrulesHeaderGroup[]
    Header-Group. The structure of header_group block is documented below.
    host string
    Address object for the host.
    httpRespStatusCodes number[]
    HTTP response status code.
    name string
    Address name.
    objectIcapProfileRespmodforwardrulesId string
    an identifier for the resource with format {{name}}.
    profile string
    Profile.
    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.
    action str
    Action to be taken for ICAP server. Valid values: bypass, forward.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    header_groups Sequence[ObjectIcapProfileRespmodforwardrulesHeaderGroupArgs]
    Header-Group. The structure of header_group block is documented below.
    host str
    Address object for the host.
    http_resp_status_codes Sequence[float]
    HTTP response status code.
    name str
    Address name.
    object_icap_profile_respmodforwardrules_id str
    an identifier for the resource with format {{name}}.
    profile str
    Profile.
    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.
    action String
    Action to be taken for ICAP server. Valid values: bypass, forward.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    headerGroups List<Property Map>
    Header-Group. The structure of header_group block is documented below.
    host String
    Address object for the host.
    httpRespStatusCodes List<Number>
    HTTP response status code.
    name String
    Address name.
    objectIcapProfileRespmodforwardrulesId String
    an identifier for the resource with format {{name}}.
    profile String
    Profile.
    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.

    Supporting Types

    ObjectIcapProfileRespmodforwardrulesHeaderGroup, ObjectIcapProfileRespmodforwardrulesHeaderGroupArgs

    CaseSensitivity string
    Enable/disable case sensitivity when matching header. Valid values: disable, enable.
    Header string
    HTTP header regular expression.
    HeaderName string
    HTTP header.
    Id double
    ID.
    CaseSensitivity string
    Enable/disable case sensitivity when matching header. Valid values: disable, enable.
    Header string
    HTTP header regular expression.
    HeaderName string
    HTTP header.
    Id float64
    ID.
    caseSensitivity String
    Enable/disable case sensitivity when matching header. Valid values: disable, enable.
    header String
    HTTP header regular expression.
    headerName String
    HTTP header.
    id Double
    ID.
    caseSensitivity string
    Enable/disable case sensitivity when matching header. Valid values: disable, enable.
    header string
    HTTP header regular expression.
    headerName string
    HTTP header.
    id number
    ID.
    case_sensitivity str
    Enable/disable case sensitivity when matching header. Valid values: disable, enable.
    header str
    HTTP header regular expression.
    header_name str
    HTTP header.
    id float
    ID.
    caseSensitivity String
    Enable/disable case sensitivity when matching header. Valid values: disable, enable.
    header String
    HTTP header regular expression.
    headerName String
    HTTP header.
    id Number
    ID.

    Import

    ObjectIcap ProfileRespmodForwardRules can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectIcapProfileRespmodforwardrules:ObjectIcapProfileRespmodforwardrules labelname {{name}}
    

    $ 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