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

fortimanager.SystemAdminUserIpsfilter

Explore with Pulumi AI

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

    IPS filter.

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

    Create SystemAdminUserIpsfilter Resource

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

    Constructor syntax

    new SystemAdminUserIpsfilter(name: string, args: SystemAdminUserIpsfilterArgs, opts?: CustomResourceOptions);
    @overload
    def SystemAdminUserIpsfilter(resource_name: str,
                                 args: SystemAdminUserIpsfilterArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemAdminUserIpsfilter(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 user: Optional[str] = None,
                                 ips_filter_name: Optional[str] = None,
                                 system_admin_user_ipsfilter_id: Optional[str] = None)
    func NewSystemAdminUserIpsfilter(ctx *Context, name string, args SystemAdminUserIpsfilterArgs, opts ...ResourceOption) (*SystemAdminUserIpsfilter, error)
    public SystemAdminUserIpsfilter(string name, SystemAdminUserIpsfilterArgs args, CustomResourceOptions? opts = null)
    public SystemAdminUserIpsfilter(String name, SystemAdminUserIpsfilterArgs args)
    public SystemAdminUserIpsfilter(String name, SystemAdminUserIpsfilterArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemAdminUserIpsfilter
    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 SystemAdminUserIpsfilterArgs
    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 SystemAdminUserIpsfilterArgs
    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 SystemAdminUserIpsfilterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemAdminUserIpsfilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemAdminUserIpsfilterArgs
    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 systemAdminUserIpsfilterResource = new Fortimanager.SystemAdminUserIpsfilter("systemAdminUserIpsfilterResource", new()
    {
        User = "string",
        IpsFilterName = "string",
        SystemAdminUserIpsfilterId = "string",
    });
    
    example, err := fortimanager.NewSystemAdminUserIpsfilter(ctx, "systemAdminUserIpsfilterResource", &fortimanager.SystemAdminUserIpsfilterArgs{
    User: pulumi.String("string"),
    IpsFilterName: pulumi.String("string"),
    SystemAdminUserIpsfilterId: pulumi.String("string"),
    })
    
    var systemAdminUserIpsfilterResource = new SystemAdminUserIpsfilter("systemAdminUserIpsfilterResource", SystemAdminUserIpsfilterArgs.builder()
        .user("string")
        .ipsFilterName("string")
        .systemAdminUserIpsfilterId("string")
        .build());
    
    system_admin_user_ipsfilter_resource = fortimanager.SystemAdminUserIpsfilter("systemAdminUserIpsfilterResource",
        user="string",
        ips_filter_name="string",
        system_admin_user_ipsfilter_id="string")
    
    const systemAdminUserIpsfilterResource = new fortimanager.SystemAdminUserIpsfilter("systemAdminUserIpsfilterResource", {
        user: "string",
        ipsFilterName: "string",
        systemAdminUserIpsfilterId: "string",
    });
    
    type: fortimanager:SystemAdminUserIpsfilter
    properties:
        ipsFilterName: string
        systemAdminUserIpsfilterId: string
        user: string
    

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

    User string
    User.
    IpsFilterName string
    IPS filter name.
    SystemAdminUserIpsfilterId string
    an identifier for the resource with format {{ips_filter_name}}.
    User string
    User.
    IpsFilterName string
    IPS filter name.
    SystemAdminUserIpsfilterId string
    an identifier for the resource with format {{ips_filter_name}}.
    user String
    User.
    ipsFilterName String
    IPS filter name.
    systemAdminUserIpsfilterId String
    an identifier for the resource with format {{ips_filter_name}}.
    user string
    User.
    ipsFilterName string
    IPS filter name.
    systemAdminUserIpsfilterId string
    an identifier for the resource with format {{ips_filter_name}}.
    user str
    User.
    ips_filter_name str
    IPS filter name.
    system_admin_user_ipsfilter_id str
    an identifier for the resource with format {{ips_filter_name}}.
    user String
    User.
    ipsFilterName String
    IPS filter name.
    systemAdminUserIpsfilterId String
    an identifier for the resource with format {{ips_filter_name}}.

    Outputs

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

    Get an existing SystemAdminUserIpsfilter 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?: SystemAdminUserIpsfilterState, opts?: CustomResourceOptions): SystemAdminUserIpsfilter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ips_filter_name: Optional[str] = None,
            system_admin_user_ipsfilter_id: Optional[str] = None,
            user: Optional[str] = None) -> SystemAdminUserIpsfilter
    func GetSystemAdminUserIpsfilter(ctx *Context, name string, id IDInput, state *SystemAdminUserIpsfilterState, opts ...ResourceOption) (*SystemAdminUserIpsfilter, error)
    public static SystemAdminUserIpsfilter Get(string name, Input<string> id, SystemAdminUserIpsfilterState? state, CustomResourceOptions? opts = null)
    public static SystemAdminUserIpsfilter get(String name, Output<String> id, SystemAdminUserIpsfilterState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemAdminUserIpsfilter    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:
    IpsFilterName string
    IPS filter name.
    SystemAdminUserIpsfilterId string
    an identifier for the resource with format {{ips_filter_name}}.
    User string
    User.
    IpsFilterName string
    IPS filter name.
    SystemAdminUserIpsfilterId string
    an identifier for the resource with format {{ips_filter_name}}.
    User string
    User.
    ipsFilterName String
    IPS filter name.
    systemAdminUserIpsfilterId String
    an identifier for the resource with format {{ips_filter_name}}.
    user String
    User.
    ipsFilterName string
    IPS filter name.
    systemAdminUserIpsfilterId string
    an identifier for the resource with format {{ips_filter_name}}.
    user string
    User.
    ips_filter_name str
    IPS filter name.
    system_admin_user_ipsfilter_id str
    an identifier for the resource with format {{ips_filter_name}}.
    user str
    User.
    ipsFilterName String
    IPS filter name.
    systemAdminUserIpsfilterId String
    an identifier for the resource with format {{ips_filter_name}}.
    user String
    User.

    Import

    System AdminUserIpsFilter can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemAdminUserIpsfilter:SystemAdminUserIpsfilter labelname {{ips_filter_name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    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