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

fortimanager.ObjectVoipProfileMsrp

Explore with Pulumi AI

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

    MSRP.

    This resource is a sub resource for variable msrp 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 trnameObjectVoipProfileMsrp = new fortimanager.ObjectVoipProfileMsrp("trnameObjectVoipProfileMsrp", {
        profile: trnameObjectVoipProfile.name,
        maxMsgSize: 12,
        maxMsgSizeAction: "reset",
    }, {
        dependsOn: [trnameObjectVoipProfile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_voip_profile = fortimanager.ObjectVoipProfile("trnameObjectVoipProfile")
    trname_object_voip_profile_msrp = fortimanager.ObjectVoipProfileMsrp("trnameObjectVoipProfileMsrp",
        profile=trname_object_voip_profile.name,
        max_msg_size=12,
        max_msg_size_action="reset",
        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.NewObjectVoipProfileMsrp(ctx, "trnameObjectVoipProfileMsrp", &fortimanager.ObjectVoipProfileMsrpArgs{
    			Profile:          trnameObjectVoipProfile.Name,
    			MaxMsgSize:       pulumi.Float64(12),
    			MaxMsgSizeAction: pulumi.String("reset"),
    		}, 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 trnameObjectVoipProfileMsrp = new Fortimanager.ObjectVoipProfileMsrp("trnameObjectVoipProfileMsrp", new()
        {
            Profile = trnameObjectVoipProfile.Name,
            MaxMsgSize = 12,
            MaxMsgSizeAction = "reset",
        }, 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.ObjectVoipProfileMsrp;
    import com.pulumi.fortimanager.ObjectVoipProfileMsrpArgs;
    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 trnameObjectVoipProfileMsrp = new ObjectVoipProfileMsrp("trnameObjectVoipProfileMsrp", ObjectVoipProfileMsrpArgs.builder()
                .profile(trnameObjectVoipProfile.name())
                .maxMsgSize(12)
                .maxMsgSizeAction("reset")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectVoipProfile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectVoipProfileMsrp:
        type: fortimanager:ObjectVoipProfileMsrp
        properties:
          profile: ${trnameObjectVoipProfile.name}
          maxMsgSize: 12
          maxMsgSizeAction: reset
        options:
          dependsOn:
            - ${trnameObjectVoipProfile}
      trnameObjectVoipProfile:
        type: fortimanager:ObjectVoipProfile
    

    Create ObjectVoipProfileMsrp Resource

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

    Constructor syntax

    new ObjectVoipProfileMsrp(name: string, args: ObjectVoipProfileMsrpArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVoipProfileMsrp(resource_name: str,
                              args: ObjectVoipProfileMsrpInitArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVoipProfileMsrp(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              profile: Optional[str] = None,
                              adom: Optional[str] = None,
                              log_violations: Optional[str] = None,
                              max_msg_size: Optional[float] = None,
                              max_msg_size_action: Optional[str] = None,
                              object_voip_profile_msrp_id: Optional[str] = None,
                              scopetype: Optional[str] = None,
                              status: Optional[str] = None)
    func NewObjectVoipProfileMsrp(ctx *Context, name string, args ObjectVoipProfileMsrpArgs, opts ...ResourceOption) (*ObjectVoipProfileMsrp, error)
    public ObjectVoipProfileMsrp(string name, ObjectVoipProfileMsrpArgs args, CustomResourceOptions? opts = null)
    public ObjectVoipProfileMsrp(String name, ObjectVoipProfileMsrpArgs args)
    public ObjectVoipProfileMsrp(String name, ObjectVoipProfileMsrpArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVoipProfileMsrp
    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 ObjectVoipProfileMsrpArgs
    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 ObjectVoipProfileMsrpInitArgs
    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 ObjectVoipProfileMsrpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVoipProfileMsrpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVoipProfileMsrpArgs
    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 objectVoipProfileMsrpResource = new Fortimanager.ObjectVoipProfileMsrp("objectVoipProfileMsrpResource", new()
    {
        Profile = "string",
        Adom = "string",
        LogViolations = "string",
        MaxMsgSize = 0,
        MaxMsgSizeAction = "string",
        ObjectVoipProfileMsrpId = "string",
        Scopetype = "string",
        Status = "string",
    });
    
    example, err := fortimanager.NewObjectVoipProfileMsrp(ctx, "objectVoipProfileMsrpResource", &fortimanager.ObjectVoipProfileMsrpArgs{
    Profile: pulumi.String("string"),
    Adom: pulumi.String("string"),
    LogViolations: pulumi.String("string"),
    MaxMsgSize: pulumi.Float64(0),
    MaxMsgSizeAction: pulumi.String("string"),
    ObjectVoipProfileMsrpId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    })
    
    var objectVoipProfileMsrpResource = new ObjectVoipProfileMsrp("objectVoipProfileMsrpResource", ObjectVoipProfileMsrpArgs.builder()
        .profile("string")
        .adom("string")
        .logViolations("string")
        .maxMsgSize(0)
        .maxMsgSizeAction("string")
        .objectVoipProfileMsrpId("string")
        .scopetype("string")
        .status("string")
        .build());
    
    object_voip_profile_msrp_resource = fortimanager.ObjectVoipProfileMsrp("objectVoipProfileMsrpResource",
        profile="string",
        adom="string",
        log_violations="string",
        max_msg_size=0,
        max_msg_size_action="string",
        object_voip_profile_msrp_id="string",
        scopetype="string",
        status="string")
    
    const objectVoipProfileMsrpResource = new fortimanager.ObjectVoipProfileMsrp("objectVoipProfileMsrpResource", {
        profile: "string",
        adom: "string",
        logViolations: "string",
        maxMsgSize: 0,
        maxMsgSizeAction: "string",
        objectVoipProfileMsrpId: "string",
        scopetype: "string",
        status: "string",
    });
    
    type: fortimanager:ObjectVoipProfileMsrp
    properties:
        adom: string
        logViolations: string
        maxMsgSize: 0
        maxMsgSizeAction: string
        objectVoipProfileMsrpId: string
        profile: string
        scopetype: string
        status: string
    

    ObjectVoipProfileMsrp 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 ObjectVoipProfileMsrp 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.
    LogViolations string
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    MaxMsgSize double
    Maximum allowable MSRP message size (1-65535).
    MaxMsgSizeAction string
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    ObjectVoipProfileMsrpId 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 MSRP. 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.
    LogViolations string
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    MaxMsgSize float64
    Maximum allowable MSRP message size (1-65535).
    MaxMsgSizeAction string
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    ObjectVoipProfileMsrpId 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 MSRP. 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.
    logViolations String
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    maxMsgSize Double
    Maximum allowable MSRP message size (1-65535).
    maxMsgSizeAction String
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    objectVoipProfileMsrpId 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 MSRP. 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.
    logViolations string
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    maxMsgSize number
    Maximum allowable MSRP message size (1-65535).
    maxMsgSizeAction string
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    objectVoipProfileMsrpId 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 MSRP. 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.
    log_violations str
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    max_msg_size float
    Maximum allowable MSRP message size (1-65535).
    max_msg_size_action str
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    object_voip_profile_msrp_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 MSRP. 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.
    logViolations String
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    maxMsgSize Number
    Maximum allowable MSRP message size (1-65535).
    maxMsgSizeAction String
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    objectVoipProfileMsrpId 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 MSRP. Valid values: disable, enable.

    Outputs

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

    Get an existing ObjectVoipProfileMsrp 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?: ObjectVoipProfileMsrpState, opts?: CustomResourceOptions): ObjectVoipProfileMsrp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            log_violations: Optional[str] = None,
            max_msg_size: Optional[float] = None,
            max_msg_size_action: Optional[str] = None,
            object_voip_profile_msrp_id: Optional[str] = None,
            profile: Optional[str] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None) -> ObjectVoipProfileMsrp
    func GetObjectVoipProfileMsrp(ctx *Context, name string, id IDInput, state *ObjectVoipProfileMsrpState, opts ...ResourceOption) (*ObjectVoipProfileMsrp, error)
    public static ObjectVoipProfileMsrp Get(string name, Input<string> id, ObjectVoipProfileMsrpState? state, CustomResourceOptions? opts = null)
    public static ObjectVoipProfileMsrp get(String name, Output<String> id, ObjectVoipProfileMsrpState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVoipProfileMsrp    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.
    LogViolations string
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    MaxMsgSize double
    Maximum allowable MSRP message size (1-65535).
    MaxMsgSizeAction string
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    ObjectVoipProfileMsrpId 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 MSRP. 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.
    LogViolations string
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    MaxMsgSize float64
    Maximum allowable MSRP message size (1-65535).
    MaxMsgSizeAction string
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    ObjectVoipProfileMsrpId 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 MSRP. 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.
    logViolations String
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    maxMsgSize Double
    Maximum allowable MSRP message size (1-65535).
    maxMsgSizeAction String
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    objectVoipProfileMsrpId 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 MSRP. 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.
    logViolations string
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    maxMsgSize number
    Maximum allowable MSRP message size (1-65535).
    maxMsgSizeAction string
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    objectVoipProfileMsrpId 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 MSRP. 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.
    log_violations str
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    max_msg_size float
    Maximum allowable MSRP message size (1-65535).
    max_msg_size_action str
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    object_voip_profile_msrp_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 MSRP. 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.
    logViolations String
    Enable/disable logging of MSRP violations. Valid values: disable, enable.
    maxMsgSize Number
    Maximum allowable MSRP message size (1-65535).
    maxMsgSizeAction String
    Action for violation of max-msg-size. Valid values: pass, block, reset, monitor.
    objectVoipProfileMsrpId 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 MSRP. Valid values: disable, enable.

    Import

    ObjectVoip ProfileMsrp 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/objectVoipProfileMsrp:ObjectVoipProfileMsrp labelname ObjectVoipProfileMsrp
    

    $ 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