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

fortimanager.ObjectVoipProfileSccp

Explore with Pulumi AI

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

    SCCP.

    This resource is a sub resource for variable sccp of resource fortimanager.ObjectVoipProfile. 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 trnameObjectVoipProfile = new fortimanager.ObjectVoipProfile("trnameObjectVoipProfile", {});
    const trnameObjectVoipProfileSccp = new fortimanager.ObjectVoipProfileSccp("trnameObjectVoipProfileSccp", {
        profile: trnameObjectVoipProfile.name,
        logCallSummary: "enable",
        logViolations: "enable",
        maxCalls: 32,
    }, {
        dependsOn: [trnameObjectVoipProfile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_voip_profile = fortimanager.ObjectVoipProfile("trnameObjectVoipProfile")
    trname_object_voip_profile_sccp = fortimanager.ObjectVoipProfileSccp("trnameObjectVoipProfileSccp",
        profile=trname_object_voip_profile.name,
        log_call_summary="enable",
        log_violations="enable",
        max_calls=32,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_voip_profile]))
    
    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 {
    		trnameObjectVoipProfile, err := fortimanager.NewObjectVoipProfile(ctx, "trnameObjectVoipProfile", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectVoipProfileSccp(ctx, "trnameObjectVoipProfileSccp", &fortimanager.ObjectVoipProfileSccpArgs{
    			Profile:        trnameObjectVoipProfile.Name,
    			LogCallSummary: pulumi.String("enable"),
    			LogViolations:  pulumi.String("enable"),
    			MaxCalls:       pulumi.Float64(32),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectVoipProfile,
    		}))
    		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 trnameObjectVoipProfile = new Fortimanager.ObjectVoipProfile("trnameObjectVoipProfile");
    
        var trnameObjectVoipProfileSccp = new Fortimanager.ObjectVoipProfileSccp("trnameObjectVoipProfileSccp", new()
        {
            Profile = trnameObjectVoipProfile.Name,
            LogCallSummary = "enable",
            LogViolations = "enable",
            MaxCalls = 32,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectVoipProfile,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectVoipProfile;
    import com.pulumi.fortimanager.ObjectVoipProfileSccp;
    import com.pulumi.fortimanager.ObjectVoipProfileSccpArgs;
    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 trnameObjectVoipProfile = new ObjectVoipProfile("trnameObjectVoipProfile");
    
            var trnameObjectVoipProfileSccp = new ObjectVoipProfileSccp("trnameObjectVoipProfileSccp", ObjectVoipProfileSccpArgs.builder()
                .profile(trnameObjectVoipProfile.name())
                .logCallSummary("enable")
                .logViolations("enable")
                .maxCalls(32)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectVoipProfile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectVoipProfileSccp:
        type: fortimanager:ObjectVoipProfileSccp
        properties:
          profile: ${trnameObjectVoipProfile.name}
          logCallSummary: enable
          logViolations: enable
          maxCalls: 32
        options:
          dependsOn:
            - ${trnameObjectVoipProfile}
      trnameObjectVoipProfile:
        type: fortimanager:ObjectVoipProfile
    

    Create ObjectVoipProfileSccp Resource

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

    Constructor syntax

    new ObjectVoipProfileSccp(name: string, args: ObjectVoipProfileSccpArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVoipProfileSccp(resource_name: str,
                              args: ObjectVoipProfileSccpInitArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVoipProfileSccp(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              profile: Optional[str] = None,
                              adom: Optional[str] = None,
                              block_mcast: Optional[str] = None,
                              log_call_summary: Optional[str] = None,
                              log_violations: Optional[str] = None,
                              max_calls: Optional[float] = None,
                              object_voip_profile_sccp_id: Optional[str] = None,
                              scopetype: Optional[str] = None,
                              status: Optional[str] = None,
                              verify_header: Optional[str] = None)
    func NewObjectVoipProfileSccp(ctx *Context, name string, args ObjectVoipProfileSccpArgs, opts ...ResourceOption) (*ObjectVoipProfileSccp, error)
    public ObjectVoipProfileSccp(string name, ObjectVoipProfileSccpArgs args, CustomResourceOptions? opts = null)
    public ObjectVoipProfileSccp(String name, ObjectVoipProfileSccpArgs args)
    public ObjectVoipProfileSccp(String name, ObjectVoipProfileSccpArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVoipProfileSccp
    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 ObjectVoipProfileSccpArgs
    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 ObjectVoipProfileSccpInitArgs
    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 ObjectVoipProfileSccpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVoipProfileSccpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVoipProfileSccpArgs
    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 objectVoipProfileSccpResource = new Fortimanager.ObjectVoipProfileSccp("objectVoipProfileSccpResource", new()
    {
        Profile = "string",
        Adom = "string",
        BlockMcast = "string",
        LogCallSummary = "string",
        LogViolations = "string",
        MaxCalls = 0,
        ObjectVoipProfileSccpId = "string",
        Scopetype = "string",
        Status = "string",
        VerifyHeader = "string",
    });
    
    example, err := fortimanager.NewObjectVoipProfileSccp(ctx, "objectVoipProfileSccpResource", &fortimanager.ObjectVoipProfileSccpArgs{
    Profile: pulumi.String("string"),
    Adom: pulumi.String("string"),
    BlockMcast: pulumi.String("string"),
    LogCallSummary: pulumi.String("string"),
    LogViolations: pulumi.String("string"),
    MaxCalls: pulumi.Float64(0),
    ObjectVoipProfileSccpId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    VerifyHeader: pulumi.String("string"),
    })
    
    var objectVoipProfileSccpResource = new ObjectVoipProfileSccp("objectVoipProfileSccpResource", ObjectVoipProfileSccpArgs.builder()
        .profile("string")
        .adom("string")
        .blockMcast("string")
        .logCallSummary("string")
        .logViolations("string")
        .maxCalls(0)
        .objectVoipProfileSccpId("string")
        .scopetype("string")
        .status("string")
        .verifyHeader("string")
        .build());
    
    object_voip_profile_sccp_resource = fortimanager.ObjectVoipProfileSccp("objectVoipProfileSccpResource",
        profile="string",
        adom="string",
        block_mcast="string",
        log_call_summary="string",
        log_violations="string",
        max_calls=0,
        object_voip_profile_sccp_id="string",
        scopetype="string",
        status="string",
        verify_header="string")
    
    const objectVoipProfileSccpResource = new fortimanager.ObjectVoipProfileSccp("objectVoipProfileSccpResource", {
        profile: "string",
        adom: "string",
        blockMcast: "string",
        logCallSummary: "string",
        logViolations: "string",
        maxCalls: 0,
        objectVoipProfileSccpId: "string",
        scopetype: "string",
        status: "string",
        verifyHeader: "string",
    });
    
    type: fortimanager:ObjectVoipProfileSccp
    properties:
        adom: string
        blockMcast: string
        logCallSummary: string
        logViolations: string
        maxCalls: 0
        objectVoipProfileSccpId: string
        profile: string
        scopetype: string
        status: string
        verifyHeader: string
    

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

    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BlockMcast string
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    LogCallSummary string
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    LogViolations string
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    MaxCalls double
    Maximum calls per minute per SCCP client (max 65535).
    ObjectVoipProfileSccpId 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.
    Status string
    Enable/disable SCCP. Valid values: disable, enable.
    VerifyHeader string
    Enable/disable verify SCCP header content. Valid values: disable, enable.
    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BlockMcast string
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    LogCallSummary string
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    LogViolations string
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    MaxCalls float64
    Maximum calls per minute per SCCP client (max 65535).
    ObjectVoipProfileSccpId 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.
    Status string
    Enable/disable SCCP. Valid values: disable, enable.
    VerifyHeader string
    Enable/disable verify SCCP header content. Valid values: disable, enable.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    blockMcast String
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    logCallSummary String
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    logViolations String
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    maxCalls Double
    Maximum calls per minute per SCCP client (max 65535).
    objectVoipProfileSccpId 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.
    status String
    Enable/disable SCCP. Valid values: disable, enable.
    verifyHeader String
    Enable/disable verify SCCP header content. Valid values: disable, enable.
    profile string
    Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    blockMcast string
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    logCallSummary string
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    logViolations string
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    maxCalls number
    Maximum calls per minute per SCCP client (max 65535).
    objectVoipProfileSccpId 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.
    status string
    Enable/disable SCCP. Valid values: disable, enable.
    verifyHeader string
    Enable/disable verify SCCP header content. Valid values: disable, enable.
    profile str
    Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    block_mcast str
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    log_call_summary str
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    log_violations str
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    max_calls float
    Maximum calls per minute per SCCP client (max 65535).
    object_voip_profile_sccp_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.
    status str
    Enable/disable SCCP. Valid values: disable, enable.
    verify_header str
    Enable/disable verify SCCP header content. Valid values: disable, enable.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    blockMcast String
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    logCallSummary String
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    logViolations String
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    maxCalls Number
    Maximum calls per minute per SCCP client (max 65535).
    objectVoipProfileSccpId 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.
    status String
    Enable/disable SCCP. Valid values: disable, enable.
    verifyHeader String
    Enable/disable verify SCCP header content. Valid values: disable, enable.

    Outputs

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

    Get an existing ObjectVoipProfileSccp 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?: ObjectVoipProfileSccpState, opts?: CustomResourceOptions): ObjectVoipProfileSccp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            block_mcast: Optional[str] = None,
            log_call_summary: Optional[str] = None,
            log_violations: Optional[str] = None,
            max_calls: Optional[float] = None,
            object_voip_profile_sccp_id: Optional[str] = None,
            profile: Optional[str] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None,
            verify_header: Optional[str] = None) -> ObjectVoipProfileSccp
    func GetObjectVoipProfileSccp(ctx *Context, name string, id IDInput, state *ObjectVoipProfileSccpState, opts ...ResourceOption) (*ObjectVoipProfileSccp, error)
    public static ObjectVoipProfileSccp Get(string name, Input<string> id, ObjectVoipProfileSccpState? state, CustomResourceOptions? opts = null)
    public static ObjectVoipProfileSccp get(String name, Output<String> id, ObjectVoipProfileSccpState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVoipProfileSccp    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BlockMcast string
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    LogCallSummary string
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    LogViolations string
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    MaxCalls double
    Maximum calls per minute per SCCP client (max 65535).
    ObjectVoipProfileSccpId string
    an identifier for the resource.
    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.
    Status string
    Enable/disable SCCP. Valid values: disable, enable.
    VerifyHeader string
    Enable/disable verify SCCP header content. 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.
    BlockMcast string
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    LogCallSummary string
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    LogViolations string
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    MaxCalls float64
    Maximum calls per minute per SCCP client (max 65535).
    ObjectVoipProfileSccpId string
    an identifier for the resource.
    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.
    Status string
    Enable/disable SCCP. Valid values: disable, enable.
    VerifyHeader string
    Enable/disable verify SCCP header content. 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.
    blockMcast String
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    logCallSummary String
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    logViolations String
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    maxCalls Double
    Maximum calls per minute per SCCP client (max 65535).
    objectVoipProfileSccpId String
    an identifier for the resource.
    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.
    status String
    Enable/disable SCCP. Valid values: disable, enable.
    verifyHeader String
    Enable/disable verify SCCP header content. 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.
    blockMcast string
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    logCallSummary string
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    logViolations string
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    maxCalls number
    Maximum calls per minute per SCCP client (max 65535).
    objectVoipProfileSccpId string
    an identifier for the resource.
    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.
    status string
    Enable/disable SCCP. Valid values: disable, enable.
    verifyHeader string
    Enable/disable verify SCCP header content. 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.
    block_mcast str
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    log_call_summary str
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    log_violations str
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    max_calls float
    Maximum calls per minute per SCCP client (max 65535).
    object_voip_profile_sccp_id str
    an identifier for the resource.
    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.
    status str
    Enable/disable SCCP. Valid values: disable, enable.
    verify_header str
    Enable/disable verify SCCP header content. 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.
    blockMcast String
    Enable/disable block multicast RTP connections. Valid values: disable, enable.
    logCallSummary String
    Enable/disable log summary of SCCP calls. Valid values: disable, enable.
    logViolations String
    Enable/disable logging of SCCP violations. Valid values: disable, enable.
    maxCalls Number
    Maximum calls per minute per SCCP client (max 65535).
    objectVoipProfileSccpId String
    an identifier for the resource.
    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.
    status String
    Enable/disable SCCP. Valid values: disable, enable.
    verifyHeader String
    Enable/disable verify SCCP header content. Valid values: disable, enable.

    Import

    ObjectVoip ProfileSccp 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/objectVoipProfileSccp:ObjectVoipProfileSccp labelname ObjectVoipProfileSccp
    

    $ 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