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

fortimanager.SystemSnmpCommunityHosts

Explore with Pulumi AI

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

    Allow hosts configuration.

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameSystemSnmpCommunity = new fortimanager.SystemSnmpCommunity("trnameSystemSnmpCommunity", {fosid: 1});
    const trnameSystemSnmpCommunityHosts = new fortimanager.SystemSnmpCommunityHosts("trnameSystemSnmpCommunityHosts", {
        community: trnameSystemSnmpCommunity.fosid,
        fosid: 3,
        "interface": "port4",
        ip: "192.168.0.1 255.255.255.255",
    }, {
        dependsOn: [trnameSystemSnmpCommunity],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_system_snmp_community = fortimanager.SystemSnmpCommunity("trnameSystemSnmpCommunity", fosid=1)
    trname_system_snmp_community_hosts = fortimanager.SystemSnmpCommunityHosts("trnameSystemSnmpCommunityHosts",
        community=trname_system_snmp_community.fosid,
        fosid=3,
        interface="port4",
        ip="192.168.0.1 255.255.255.255",
        opts = pulumi.ResourceOptions(depends_on=[trname_system_snmp_community]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		trnameSystemSnmpCommunity, err := fortimanager.NewSystemSnmpCommunity(ctx, "trnameSystemSnmpCommunity", &fortimanager.SystemSnmpCommunityArgs{
    			Fosid: pulumi.Float64(1),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewSystemSnmpCommunityHosts(ctx, "trnameSystemSnmpCommunityHosts", &fortimanager.SystemSnmpCommunityHostsArgs{
    			Community: trnameSystemSnmpCommunity.Fosid,
    			Fosid:     pulumi.Float64(3),
    			Interface: pulumi.String("port4"),
    			Ip:        pulumi.String("192.168.0.1 255.255.255.255"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameSystemSnmpCommunity,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trnameSystemSnmpCommunity = new Fortimanager.SystemSnmpCommunity("trnameSystemSnmpCommunity", new()
        {
            Fosid = 1,
        });
    
        var trnameSystemSnmpCommunityHosts = new Fortimanager.SystemSnmpCommunityHosts("trnameSystemSnmpCommunityHosts", new()
        {
            Community = trnameSystemSnmpCommunity.Fosid,
            Fosid = 3,
            Interface = "port4",
            Ip = "192.168.0.1 255.255.255.255",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameSystemSnmpCommunity,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemSnmpCommunity;
    import com.pulumi.fortimanager.SystemSnmpCommunityArgs;
    import com.pulumi.fortimanager.SystemSnmpCommunityHosts;
    import com.pulumi.fortimanager.SystemSnmpCommunityHostsArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameSystemSnmpCommunity = new SystemSnmpCommunity("trnameSystemSnmpCommunity", SystemSnmpCommunityArgs.builder()
                .fosid("1")
                .build());
    
            var trnameSystemSnmpCommunityHosts = new SystemSnmpCommunityHosts("trnameSystemSnmpCommunityHosts", SystemSnmpCommunityHostsArgs.builder()
                .community(trnameSystemSnmpCommunity.fosid())
                .fosid(3)
                .interface_("port4")
                .ip("192.168.0.1 255.255.255.255")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameSystemSnmpCommunity)
                    .build());
    
        }
    }
    
    resources:
      trnameSystemSnmpCommunityHosts:
        type: fortimanager:SystemSnmpCommunityHosts
        properties:
          community: ${trnameSystemSnmpCommunity.fosid}
          fosid: 3
          interface: port4
          ip: 192.168.0.1 255.255.255.255
        options:
          dependsOn:
            - ${trnameSystemSnmpCommunity}
      trnameSystemSnmpCommunity:
        type: fortimanager:SystemSnmpCommunity
        properties:
          fosid: '1'
    

    Create SystemSnmpCommunityHosts Resource

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

    Constructor syntax

    new SystemSnmpCommunityHosts(name: string, args: SystemSnmpCommunityHostsArgs, opts?: CustomResourceOptions);
    @overload
    def SystemSnmpCommunityHosts(resource_name: str,
                                 args: SystemSnmpCommunityHostsArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemSnmpCommunityHosts(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 community: Optional[str] = None,
                                 fosid: Optional[float] = None,
                                 interface: Optional[str] = None,
                                 ip: Optional[str] = None,
                                 system_snmp_community_hosts_id: Optional[str] = None)
    func NewSystemSnmpCommunityHosts(ctx *Context, name string, args SystemSnmpCommunityHostsArgs, opts ...ResourceOption) (*SystemSnmpCommunityHosts, error)
    public SystemSnmpCommunityHosts(string name, SystemSnmpCommunityHostsArgs args, CustomResourceOptions? opts = null)
    public SystemSnmpCommunityHosts(String name, SystemSnmpCommunityHostsArgs args)
    public SystemSnmpCommunityHosts(String name, SystemSnmpCommunityHostsArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemSnmpCommunityHosts
    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 SystemSnmpCommunityHostsArgs
    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 SystemSnmpCommunityHostsArgs
    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 SystemSnmpCommunityHostsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemSnmpCommunityHostsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemSnmpCommunityHostsArgs
    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 systemSnmpCommunityHostsResource = new Fortimanager.SystemSnmpCommunityHosts("systemSnmpCommunityHostsResource", new()
    {
        Community = "string",
        Fosid = 0,
        Interface = "string",
        Ip = "string",
        SystemSnmpCommunityHostsId = "string",
    });
    
    example, err := fortimanager.NewSystemSnmpCommunityHosts(ctx, "systemSnmpCommunityHostsResource", &fortimanager.SystemSnmpCommunityHostsArgs{
    Community: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    Interface: pulumi.String("string"),
    Ip: pulumi.String("string"),
    SystemSnmpCommunityHostsId: pulumi.String("string"),
    })
    
    var systemSnmpCommunityHostsResource = new SystemSnmpCommunityHosts("systemSnmpCommunityHostsResource", SystemSnmpCommunityHostsArgs.builder()
        .community("string")
        .fosid(0)
        .interface_("string")
        .ip("string")
        .systemSnmpCommunityHostsId("string")
        .build());
    
    system_snmp_community_hosts_resource = fortimanager.SystemSnmpCommunityHosts("systemSnmpCommunityHostsResource",
        community="string",
        fosid=0,
        interface="string",
        ip="string",
        system_snmp_community_hosts_id="string")
    
    const systemSnmpCommunityHostsResource = new fortimanager.SystemSnmpCommunityHosts("systemSnmpCommunityHostsResource", {
        community: "string",
        fosid: 0,
        "interface": "string",
        ip: "string",
        systemSnmpCommunityHostsId: "string",
    });
    
    type: fortimanager:SystemSnmpCommunityHosts
    properties:
        community: string
        fosid: 0
        interface: string
        ip: string
        systemSnmpCommunityHostsId: string
    

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

    Community string
    Community.
    Fosid double
    Host entry ID.
    Interface string
    Allow interface name.
    Ip string
    Allow host IP address.
    SystemSnmpCommunityHostsId string
    an identifier for the resource with format {{fosid}}.
    Community string
    Community.
    Fosid float64
    Host entry ID.
    Interface string
    Allow interface name.
    Ip string
    Allow host IP address.
    SystemSnmpCommunityHostsId string
    an identifier for the resource with format {{fosid}}.
    community String
    Community.
    fosid Double
    Host entry ID.
    interface_ String
    Allow interface name.
    ip String
    Allow host IP address.
    systemSnmpCommunityHostsId String
    an identifier for the resource with format {{fosid}}.
    community string
    Community.
    fosid number
    Host entry ID.
    interface string
    Allow interface name.
    ip string
    Allow host IP address.
    systemSnmpCommunityHostsId string
    an identifier for the resource with format {{fosid}}.
    community str
    Community.
    fosid float
    Host entry ID.
    interface str
    Allow interface name.
    ip str
    Allow host IP address.
    system_snmp_community_hosts_id str
    an identifier for the resource with format {{fosid}}.
    community String
    Community.
    fosid Number
    Host entry ID.
    interface String
    Allow interface name.
    ip String
    Allow host IP address.
    systemSnmpCommunityHostsId String
    an identifier for the resource with format {{fosid}}.

    Outputs

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

    Get an existing SystemSnmpCommunityHosts 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?: SystemSnmpCommunityHostsState, opts?: CustomResourceOptions): SystemSnmpCommunityHosts
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            community: Optional[str] = None,
            fosid: Optional[float] = None,
            interface: Optional[str] = None,
            ip: Optional[str] = None,
            system_snmp_community_hosts_id: Optional[str] = None) -> SystemSnmpCommunityHosts
    func GetSystemSnmpCommunityHosts(ctx *Context, name string, id IDInput, state *SystemSnmpCommunityHostsState, opts ...ResourceOption) (*SystemSnmpCommunityHosts, error)
    public static SystemSnmpCommunityHosts Get(string name, Input<string> id, SystemSnmpCommunityHostsState? state, CustomResourceOptions? opts = null)
    public static SystemSnmpCommunityHosts get(String name, Output<String> id, SystemSnmpCommunityHostsState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemSnmpCommunityHosts    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:
    Community string
    Community.
    Fosid double
    Host entry ID.
    Interface string
    Allow interface name.
    Ip string
    Allow host IP address.
    SystemSnmpCommunityHostsId string
    an identifier for the resource with format {{fosid}}.
    Community string
    Community.
    Fosid float64
    Host entry ID.
    Interface string
    Allow interface name.
    Ip string
    Allow host IP address.
    SystemSnmpCommunityHostsId string
    an identifier for the resource with format {{fosid}}.
    community String
    Community.
    fosid Double
    Host entry ID.
    interface_ String
    Allow interface name.
    ip String
    Allow host IP address.
    systemSnmpCommunityHostsId String
    an identifier for the resource with format {{fosid}}.
    community string
    Community.
    fosid number
    Host entry ID.
    interface string
    Allow interface name.
    ip string
    Allow host IP address.
    systemSnmpCommunityHostsId string
    an identifier for the resource with format {{fosid}}.
    community str
    Community.
    fosid float
    Host entry ID.
    interface str
    Allow interface name.
    ip str
    Allow host IP address.
    system_snmp_community_hosts_id str
    an identifier for the resource with format {{fosid}}.
    community String
    Community.
    fosid Number
    Host entry ID.
    interface String
    Allow interface name.
    ip String
    Allow host IP address.
    systemSnmpCommunityHostsId String
    an identifier for the resource with format {{fosid}}.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemSnmpCommunityHosts:SystemSnmpCommunityHosts labelname {{fosid}}
    

    $ 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