fortimanager.ObjectVoipProfileSip
Explore with Pulumi AI
SIP.
This resource is a sub resource for variable
sipof resourcefortimanager.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 trnameObjectVoipProfileSip = new fortimanager.ObjectVoipProfileSip("trnameObjectVoipProfileSip", {
    profile: trnameObjectVoipProfile.name,
    ackRate: 23,
    blockAck: "disable",
    blockBye: "disable",
    maxBodyLength: 23,
}, {
    dependsOn: [trnameObjectVoipProfile],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_voip_profile = fortimanager.ObjectVoipProfile("trnameObjectVoipProfile")
trname_object_voip_profile_sip = fortimanager.ObjectVoipProfileSip("trnameObjectVoipProfileSip",
    profile=trname_object_voip_profile.name,
    ack_rate=23,
    block_ack="disable",
    block_bye="disable",
    max_body_length=23,
    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.NewObjectVoipProfileSip(ctx, "trnameObjectVoipProfileSip", &fortimanager.ObjectVoipProfileSipArgs{
			Profile:       trnameObjectVoipProfile.Name,
			AckRate:       pulumi.Float64(23),
			BlockAck:      pulumi.String("disable"),
			BlockBye:      pulumi.String("disable"),
			MaxBodyLength: pulumi.Float64(23),
		}, 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 trnameObjectVoipProfileSip = new Fortimanager.ObjectVoipProfileSip("trnameObjectVoipProfileSip", new()
    {
        Profile = trnameObjectVoipProfile.Name,
        AckRate = 23,
        BlockAck = "disable",
        BlockBye = "disable",
        MaxBodyLength = 23,
    }, 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.ObjectVoipProfileSip;
import com.pulumi.fortimanager.ObjectVoipProfileSipArgs;
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 trnameObjectVoipProfileSip = new ObjectVoipProfileSip("trnameObjectVoipProfileSip", ObjectVoipProfileSipArgs.builder()
            .profile(trnameObjectVoipProfile.name())
            .ackRate(23)
            .blockAck("disable")
            .blockBye("disable")
            .maxBodyLength(23)
            .build(), CustomResourceOptions.builder()
                .dependsOn(trnameObjectVoipProfile)
                .build());
    }
}
resources:
  trnameObjectVoipProfileSip:
    type: fortimanager:ObjectVoipProfileSip
    properties:
      profile: ${trnameObjectVoipProfile.name}
      ackRate: 23
      blockAck: disable
      blockBye: disable
      maxBodyLength: 23
    options:
      dependsOn:
        - ${trnameObjectVoipProfile}
  trnameObjectVoipProfile:
    type: fortimanager:ObjectVoipProfile
Create ObjectVoipProfileSip Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectVoipProfileSip(name: string, args: ObjectVoipProfileSipArgs, opts?: CustomResourceOptions);@overload
def ObjectVoipProfileSip(resource_name: str,
                         args: ObjectVoipProfileSipInitArgs,
                         opts: Optional[ResourceOptions] = None)
@overload
def ObjectVoipProfileSip(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         profile: Optional[str] = None,
                         ack_rate: Optional[float] = None,
                         ack_rate_track: Optional[str] = None,
                         adom: Optional[str] = None,
                         block_ack: Optional[str] = None,
                         block_bye: Optional[str] = None,
                         block_cancel: Optional[str] = None,
                         block_geo_red_options: Optional[str] = None,
                         block_info: Optional[str] = None,
                         block_invite: Optional[str] = None,
                         block_long_lines: Optional[str] = None,
                         block_message: Optional[str] = None,
                         block_notify: Optional[str] = None,
                         block_options: Optional[str] = None,
                         block_prack: Optional[str] = None,
                         block_publish: Optional[str] = None,
                         block_refer: Optional[str] = None,
                         block_register: Optional[str] = None,
                         block_subscribe: Optional[str] = None,
                         block_unknown: Optional[str] = None,
                         block_update: Optional[str] = None,
                         bye_rate: Optional[float] = None,
                         bye_rate_track: Optional[str] = None,
                         call_id_regex: Optional[str] = None,
                         call_keepalive: Optional[float] = None,
                         cancel_rate: Optional[float] = None,
                         cancel_rate_track: Optional[str] = None,
                         contact_fixup: Optional[str] = None,
                         content_type_regex: Optional[str] = None,
                         hnt_restrict_source_ip: Optional[str] = None,
                         hosted_nat_traversal: Optional[str] = None,
                         info_rate: Optional[float] = None,
                         info_rate_track: Optional[str] = None,
                         invite_rate: Optional[float] = None,
                         invite_rate_track: Optional[str] = None,
                         ips_rtp: Optional[str] = None,
                         log_call_summary: Optional[str] = None,
                         log_violations: Optional[str] = None,
                         malformed_header_allow: Optional[str] = None,
                         malformed_header_call_id: Optional[str] = None,
                         malformed_header_contact: Optional[str] = None,
                         malformed_header_content_length: Optional[str] = None,
                         malformed_header_content_type: Optional[str] = None,
                         malformed_header_cseq: Optional[str] = None,
                         malformed_header_expires: Optional[str] = None,
                         malformed_header_from: Optional[str] = None,
                         malformed_header_max_forwards: Optional[str] = None,
                         malformed_header_no_proxy_require: Optional[str] = None,
                         malformed_header_no_require: Optional[str] = None,
                         malformed_header_passerted_identity: Optional[str] = None,
                         malformed_header_rack: Optional[str] = None,
                         malformed_header_record_route: Optional[str] = None,
                         malformed_header_route: Optional[str] = None,
                         malformed_header_rseq: Optional[str] = None,
                         malformed_header_sdp_a: Optional[str] = None,
                         malformed_header_sdp_b: Optional[str] = None,
                         malformed_header_sdp_c: Optional[str] = None,
                         malformed_header_sdp_i: Optional[str] = None,
                         malformed_header_sdp_k: Optional[str] = None,
                         malformed_header_sdp_m: Optional[str] = None,
                         malformed_header_sdp_o: Optional[str] = None,
                         malformed_header_sdp_r: Optional[str] = None,
                         malformed_header_sdp_s: Optional[str] = None,
                         malformed_header_sdp_t: Optional[str] = None,
                         malformed_header_sdp_v: Optional[str] = None,
                         malformed_header_sdp_z: Optional[str] = None,
                         malformed_header_to: Optional[str] = None,
                         malformed_header_via: Optional[str] = None,
                         malformed_request_line: Optional[str] = None,
                         max_body_length: Optional[float] = None,
                         max_dialogs: Optional[float] = None,
                         max_idle_dialogs: Optional[float] = None,
                         max_line_length: Optional[float] = None,
                         message_rate: Optional[float] = None,
                         message_rate_track: Optional[str] = None,
                         nat_port_range: Optional[str] = None,
                         nat_trace: Optional[str] = None,
                         no_sdp_fixup: Optional[str] = None,
                         notify_rate: Optional[float] = None,
                         notify_rate_track: Optional[str] = None,
                         object_voip_profile_sip_id: Optional[str] = None,
                         open_contact_pinhole: Optional[str] = None,
                         open_record_route_pinhole: Optional[str] = None,
                         open_register_pinhole: Optional[str] = None,
                         open_via_pinhole: Optional[str] = None,
                         options_rate: Optional[float] = None,
                         options_rate_track: Optional[str] = None,
                         prack_rate: Optional[float] = None,
                         prack_rate_track: Optional[str] = None,
                         preserve_override: Optional[str] = None,
                         provisional_invite_expiry_time: Optional[float] = None,
                         publish_rate: Optional[float] = None,
                         publish_rate_track: Optional[str] = None,
                         refer_rate: Optional[float] = None,
                         refer_rate_track: Optional[str] = None,
                         register_contact_trace: Optional[str] = None,
                         register_rate: Optional[float] = None,
                         register_rate_track: Optional[str] = None,
                         rfc2543_branch: Optional[str] = None,
                         rtp: Optional[str] = None,
                         scopetype: Optional[str] = None,
                         ssl_algorithm: Optional[str] = None,
                         ssl_auth_client: Optional[str] = None,
                         ssl_auth_server: Optional[str] = None,
                         ssl_client_certificate: Optional[str] = None,
                         ssl_client_renegotiation: Optional[str] = None,
                         ssl_max_version: Optional[str] = None,
                         ssl_min_version: Optional[str] = None,
                         ssl_mode: Optional[str] = None,
                         ssl_pfs: Optional[str] = None,
                         ssl_send_empty_frags: Optional[str] = None,
                         ssl_server_certificate: Optional[str] = None,
                         status: Optional[str] = None,
                         strict_register: Optional[str] = None,
                         subscribe_rate: Optional[float] = None,
                         subscribe_rate_track: Optional[str] = None,
                         unknown_header: Optional[str] = None,
                         update_rate: Optional[float] = None,
                         update_rate_track: Optional[str] = None)func NewObjectVoipProfileSip(ctx *Context, name string, args ObjectVoipProfileSipArgs, opts ...ResourceOption) (*ObjectVoipProfileSip, error)public ObjectVoipProfileSip(string name, ObjectVoipProfileSipArgs args, CustomResourceOptions? opts = null)
public ObjectVoipProfileSip(String name, ObjectVoipProfileSipArgs args)
public ObjectVoipProfileSip(String name, ObjectVoipProfileSipArgs args, CustomResourceOptions options)
type: fortimanager:ObjectVoipProfileSip
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 ObjectVoipProfileSipArgs
- 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 ObjectVoipProfileSipInitArgs
- 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 ObjectVoipProfileSipArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectVoipProfileSipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectVoipProfileSipArgs
- 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 objectVoipProfileSipResource = new Fortimanager.ObjectVoipProfileSip("objectVoipProfileSipResource", new()
{
    Profile = "string",
    AckRate = 0,
    AckRateTrack = "string",
    Adom = "string",
    BlockAck = "string",
    BlockBye = "string",
    BlockCancel = "string",
    BlockGeoRedOptions = "string",
    BlockInfo = "string",
    BlockInvite = "string",
    BlockLongLines = "string",
    BlockMessage = "string",
    BlockNotify = "string",
    BlockOptions = "string",
    BlockPrack = "string",
    BlockPublish = "string",
    BlockRefer = "string",
    BlockRegister = "string",
    BlockSubscribe = "string",
    BlockUnknown = "string",
    BlockUpdate = "string",
    ByeRate = 0,
    ByeRateTrack = "string",
    CallIdRegex = "string",
    CallKeepalive = 0,
    CancelRate = 0,
    CancelRateTrack = "string",
    ContactFixup = "string",
    ContentTypeRegex = "string",
    HntRestrictSourceIp = "string",
    HostedNatTraversal = "string",
    InfoRate = 0,
    InfoRateTrack = "string",
    InviteRate = 0,
    InviteRateTrack = "string",
    IpsRtp = "string",
    LogCallSummary = "string",
    LogViolations = "string",
    MalformedHeaderAllow = "string",
    MalformedHeaderCallId = "string",
    MalformedHeaderContact = "string",
    MalformedHeaderContentLength = "string",
    MalformedHeaderContentType = "string",
    MalformedHeaderCseq = "string",
    MalformedHeaderExpires = "string",
    MalformedHeaderFrom = "string",
    MalformedHeaderMaxForwards = "string",
    MalformedHeaderNoProxyRequire = "string",
    MalformedHeaderNoRequire = "string",
    MalformedHeaderPAssertedIdentity = "string",
    MalformedHeaderRack = "string",
    MalformedHeaderRecordRoute = "string",
    MalformedHeaderRoute = "string",
    MalformedHeaderRseq = "string",
    MalformedHeaderSdpA = "string",
    MalformedHeaderSdpB = "string",
    MalformedHeaderSdpC = "string",
    MalformedHeaderSdpI = "string",
    MalformedHeaderSdpK = "string",
    MalformedHeaderSdpM = "string",
    MalformedHeaderSdpO = "string",
    MalformedHeaderSdpR = "string",
    MalformedHeaderSdpS = "string",
    MalformedHeaderSdpT = "string",
    MalformedHeaderSdpV = "string",
    MalformedHeaderSdpZ = "string",
    MalformedHeaderTo = "string",
    MalformedHeaderVia = "string",
    MalformedRequestLine = "string",
    MaxBodyLength = 0,
    MaxDialogs = 0,
    MaxIdleDialogs = 0,
    MaxLineLength = 0,
    MessageRate = 0,
    MessageRateTrack = "string",
    NatPortRange = "string",
    NatTrace = "string",
    NoSdpFixup = "string",
    NotifyRate = 0,
    NotifyRateTrack = "string",
    ObjectVoipProfileSipId = "string",
    OpenContactPinhole = "string",
    OpenRecordRoutePinhole = "string",
    OpenRegisterPinhole = "string",
    OpenViaPinhole = "string",
    OptionsRate = 0,
    OptionsRateTrack = "string",
    PrackRate = 0,
    PrackRateTrack = "string",
    PreserveOverride = "string",
    ProvisionalInviteExpiryTime = 0,
    PublishRate = 0,
    PublishRateTrack = "string",
    ReferRate = 0,
    ReferRateTrack = "string",
    RegisterContactTrace = "string",
    RegisterRate = 0,
    RegisterRateTrack = "string",
    Rfc2543Branch = "string",
    Rtp = "string",
    Scopetype = "string",
    SslAlgorithm = "string",
    SslAuthClient = "string",
    SslAuthServer = "string",
    SslClientCertificate = "string",
    SslClientRenegotiation = "string",
    SslMaxVersion = "string",
    SslMinVersion = "string",
    SslMode = "string",
    SslPfs = "string",
    SslSendEmptyFrags = "string",
    SslServerCertificate = "string",
    Status = "string",
    StrictRegister = "string",
    SubscribeRate = 0,
    SubscribeRateTrack = "string",
    UnknownHeader = "string",
    UpdateRate = 0,
    UpdateRateTrack = "string",
});
example, err := fortimanager.NewObjectVoipProfileSip(ctx, "objectVoipProfileSipResource", &fortimanager.ObjectVoipProfileSipArgs{
Profile: pulumi.String("string"),
AckRate: pulumi.Float64(0),
AckRateTrack: pulumi.String("string"),
Adom: pulumi.String("string"),
BlockAck: pulumi.String("string"),
BlockBye: pulumi.String("string"),
BlockCancel: pulumi.String("string"),
BlockGeoRedOptions: pulumi.String("string"),
BlockInfo: pulumi.String("string"),
BlockInvite: pulumi.String("string"),
BlockLongLines: pulumi.String("string"),
BlockMessage: pulumi.String("string"),
BlockNotify: pulumi.String("string"),
BlockOptions: pulumi.String("string"),
BlockPrack: pulumi.String("string"),
BlockPublish: pulumi.String("string"),
BlockRefer: pulumi.String("string"),
BlockRegister: pulumi.String("string"),
BlockSubscribe: pulumi.String("string"),
BlockUnknown: pulumi.String("string"),
BlockUpdate: pulumi.String("string"),
ByeRate: pulumi.Float64(0),
ByeRateTrack: pulumi.String("string"),
CallIdRegex: pulumi.String("string"),
CallKeepalive: pulumi.Float64(0),
CancelRate: pulumi.Float64(0),
CancelRateTrack: pulumi.String("string"),
ContactFixup: pulumi.String("string"),
ContentTypeRegex: pulumi.String("string"),
HntRestrictSourceIp: pulumi.String("string"),
HostedNatTraversal: pulumi.String("string"),
InfoRate: pulumi.Float64(0),
InfoRateTrack: pulumi.String("string"),
InviteRate: pulumi.Float64(0),
InviteRateTrack: pulumi.String("string"),
IpsRtp: pulumi.String("string"),
LogCallSummary: pulumi.String("string"),
LogViolations: pulumi.String("string"),
MalformedHeaderAllow: pulumi.String("string"),
MalformedHeaderCallId: pulumi.String("string"),
MalformedHeaderContact: pulumi.String("string"),
MalformedHeaderContentLength: pulumi.String("string"),
MalformedHeaderContentType: pulumi.String("string"),
MalformedHeaderCseq: pulumi.String("string"),
MalformedHeaderExpires: pulumi.String("string"),
MalformedHeaderFrom: pulumi.String("string"),
MalformedHeaderMaxForwards: pulumi.String("string"),
MalformedHeaderNoProxyRequire: pulumi.String("string"),
MalformedHeaderNoRequire: pulumi.String("string"),
MalformedHeaderPAssertedIdentity: pulumi.String("string"),
MalformedHeaderRack: pulumi.String("string"),
MalformedHeaderRecordRoute: pulumi.String("string"),
MalformedHeaderRoute: pulumi.String("string"),
MalformedHeaderRseq: pulumi.String("string"),
MalformedHeaderSdpA: pulumi.String("string"),
MalformedHeaderSdpB: pulumi.String("string"),
MalformedHeaderSdpC: pulumi.String("string"),
MalformedHeaderSdpI: pulumi.String("string"),
MalformedHeaderSdpK: pulumi.String("string"),
MalformedHeaderSdpM: pulumi.String("string"),
MalformedHeaderSdpO: pulumi.String("string"),
MalformedHeaderSdpR: pulumi.String("string"),
MalformedHeaderSdpS: pulumi.String("string"),
MalformedHeaderSdpT: pulumi.String("string"),
MalformedHeaderSdpV: pulumi.String("string"),
MalformedHeaderSdpZ: pulumi.String("string"),
MalformedHeaderTo: pulumi.String("string"),
MalformedHeaderVia: pulumi.String("string"),
MalformedRequestLine: pulumi.String("string"),
MaxBodyLength: pulumi.Float64(0),
MaxDialogs: pulumi.Float64(0),
MaxIdleDialogs: pulumi.Float64(0),
MaxLineLength: pulumi.Float64(0),
MessageRate: pulumi.Float64(0),
MessageRateTrack: pulumi.String("string"),
NatPortRange: pulumi.String("string"),
NatTrace: pulumi.String("string"),
NoSdpFixup: pulumi.String("string"),
NotifyRate: pulumi.Float64(0),
NotifyRateTrack: pulumi.String("string"),
ObjectVoipProfileSipId: pulumi.String("string"),
OpenContactPinhole: pulumi.String("string"),
OpenRecordRoutePinhole: pulumi.String("string"),
OpenRegisterPinhole: pulumi.String("string"),
OpenViaPinhole: pulumi.String("string"),
OptionsRate: pulumi.Float64(0),
OptionsRateTrack: pulumi.String("string"),
PrackRate: pulumi.Float64(0),
PrackRateTrack: pulumi.String("string"),
PreserveOverride: pulumi.String("string"),
ProvisionalInviteExpiryTime: pulumi.Float64(0),
PublishRate: pulumi.Float64(0),
PublishRateTrack: pulumi.String("string"),
ReferRate: pulumi.Float64(0),
ReferRateTrack: pulumi.String("string"),
RegisterContactTrace: pulumi.String("string"),
RegisterRate: pulumi.Float64(0),
RegisterRateTrack: pulumi.String("string"),
Rfc2543Branch: pulumi.String("string"),
Rtp: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SslAlgorithm: pulumi.String("string"),
SslAuthClient: pulumi.String("string"),
SslAuthServer: pulumi.String("string"),
SslClientCertificate: pulumi.String("string"),
SslClientRenegotiation: pulumi.String("string"),
SslMaxVersion: pulumi.String("string"),
SslMinVersion: pulumi.String("string"),
SslMode: pulumi.String("string"),
SslPfs: pulumi.String("string"),
SslSendEmptyFrags: pulumi.String("string"),
SslServerCertificate: pulumi.String("string"),
Status: pulumi.String("string"),
StrictRegister: pulumi.String("string"),
SubscribeRate: pulumi.Float64(0),
SubscribeRateTrack: pulumi.String("string"),
UnknownHeader: pulumi.String("string"),
UpdateRate: pulumi.Float64(0),
UpdateRateTrack: pulumi.String("string"),
})
var objectVoipProfileSipResource = new ObjectVoipProfileSip("objectVoipProfileSipResource", ObjectVoipProfileSipArgs.builder()
    .profile("string")
    .ackRate(0)
    .ackRateTrack("string")
    .adom("string")
    .blockAck("string")
    .blockBye("string")
    .blockCancel("string")
    .blockGeoRedOptions("string")
    .blockInfo("string")
    .blockInvite("string")
    .blockLongLines("string")
    .blockMessage("string")
    .blockNotify("string")
    .blockOptions("string")
    .blockPrack("string")
    .blockPublish("string")
    .blockRefer("string")
    .blockRegister("string")
    .blockSubscribe("string")
    .blockUnknown("string")
    .blockUpdate("string")
    .byeRate(0)
    .byeRateTrack("string")
    .callIdRegex("string")
    .callKeepalive(0)
    .cancelRate(0)
    .cancelRateTrack("string")
    .contactFixup("string")
    .contentTypeRegex("string")
    .hntRestrictSourceIp("string")
    .hostedNatTraversal("string")
    .infoRate(0)
    .infoRateTrack("string")
    .inviteRate(0)
    .inviteRateTrack("string")
    .ipsRtp("string")
    .logCallSummary("string")
    .logViolations("string")
    .malformedHeaderAllow("string")
    .malformedHeaderCallId("string")
    .malformedHeaderContact("string")
    .malformedHeaderContentLength("string")
    .malformedHeaderContentType("string")
    .malformedHeaderCseq("string")
    .malformedHeaderExpires("string")
    .malformedHeaderFrom("string")
    .malformedHeaderMaxForwards("string")
    .malformedHeaderNoProxyRequire("string")
    .malformedHeaderNoRequire("string")
    .malformedHeaderPAssertedIdentity("string")
    .malformedHeaderRack("string")
    .malformedHeaderRecordRoute("string")
    .malformedHeaderRoute("string")
    .malformedHeaderRseq("string")
    .malformedHeaderSdpA("string")
    .malformedHeaderSdpB("string")
    .malformedHeaderSdpC("string")
    .malformedHeaderSdpI("string")
    .malformedHeaderSdpK("string")
    .malformedHeaderSdpM("string")
    .malformedHeaderSdpO("string")
    .malformedHeaderSdpR("string")
    .malformedHeaderSdpS("string")
    .malformedHeaderSdpT("string")
    .malformedHeaderSdpV("string")
    .malformedHeaderSdpZ("string")
    .malformedHeaderTo("string")
    .malformedHeaderVia("string")
    .malformedRequestLine("string")
    .maxBodyLength(0)
    .maxDialogs(0)
    .maxIdleDialogs(0)
    .maxLineLength(0)
    .messageRate(0)
    .messageRateTrack("string")
    .natPortRange("string")
    .natTrace("string")
    .noSdpFixup("string")
    .notifyRate(0)
    .notifyRateTrack("string")
    .objectVoipProfileSipId("string")
    .openContactPinhole("string")
    .openRecordRoutePinhole("string")
    .openRegisterPinhole("string")
    .openViaPinhole("string")
    .optionsRate(0)
    .optionsRateTrack("string")
    .prackRate(0)
    .prackRateTrack("string")
    .preserveOverride("string")
    .provisionalInviteExpiryTime(0)
    .publishRate(0)
    .publishRateTrack("string")
    .referRate(0)
    .referRateTrack("string")
    .registerContactTrace("string")
    .registerRate(0)
    .registerRateTrack("string")
    .rfc2543Branch("string")
    .rtp("string")
    .scopetype("string")
    .sslAlgorithm("string")
    .sslAuthClient("string")
    .sslAuthServer("string")
    .sslClientCertificate("string")
    .sslClientRenegotiation("string")
    .sslMaxVersion("string")
    .sslMinVersion("string")
    .sslMode("string")
    .sslPfs("string")
    .sslSendEmptyFrags("string")
    .sslServerCertificate("string")
    .status("string")
    .strictRegister("string")
    .subscribeRate(0)
    .subscribeRateTrack("string")
    .unknownHeader("string")
    .updateRate(0)
    .updateRateTrack("string")
    .build());
object_voip_profile_sip_resource = fortimanager.ObjectVoipProfileSip("objectVoipProfileSipResource",
    profile="string",
    ack_rate=0,
    ack_rate_track="string",
    adom="string",
    block_ack="string",
    block_bye="string",
    block_cancel="string",
    block_geo_red_options="string",
    block_info="string",
    block_invite="string",
    block_long_lines="string",
    block_message="string",
    block_notify="string",
    block_options="string",
    block_prack="string",
    block_publish="string",
    block_refer="string",
    block_register="string",
    block_subscribe="string",
    block_unknown="string",
    block_update="string",
    bye_rate=0,
    bye_rate_track="string",
    call_id_regex="string",
    call_keepalive=0,
    cancel_rate=0,
    cancel_rate_track="string",
    contact_fixup="string",
    content_type_regex="string",
    hnt_restrict_source_ip="string",
    hosted_nat_traversal="string",
    info_rate=0,
    info_rate_track="string",
    invite_rate=0,
    invite_rate_track="string",
    ips_rtp="string",
    log_call_summary="string",
    log_violations="string",
    malformed_header_allow="string",
    malformed_header_call_id="string",
    malformed_header_contact="string",
    malformed_header_content_length="string",
    malformed_header_content_type="string",
    malformed_header_cseq="string",
    malformed_header_expires="string",
    malformed_header_from="string",
    malformed_header_max_forwards="string",
    malformed_header_no_proxy_require="string",
    malformed_header_no_require="string",
    malformed_header_passerted_identity="string",
    malformed_header_rack="string",
    malformed_header_record_route="string",
    malformed_header_route="string",
    malformed_header_rseq="string",
    malformed_header_sdp_a="string",
    malformed_header_sdp_b="string",
    malformed_header_sdp_c="string",
    malformed_header_sdp_i="string",
    malformed_header_sdp_k="string",
    malformed_header_sdp_m="string",
    malformed_header_sdp_o="string",
    malformed_header_sdp_r="string",
    malformed_header_sdp_s="string",
    malformed_header_sdp_t="string",
    malformed_header_sdp_v="string",
    malformed_header_sdp_z="string",
    malformed_header_to="string",
    malformed_header_via="string",
    malformed_request_line="string",
    max_body_length=0,
    max_dialogs=0,
    max_idle_dialogs=0,
    max_line_length=0,
    message_rate=0,
    message_rate_track="string",
    nat_port_range="string",
    nat_trace="string",
    no_sdp_fixup="string",
    notify_rate=0,
    notify_rate_track="string",
    object_voip_profile_sip_id="string",
    open_contact_pinhole="string",
    open_record_route_pinhole="string",
    open_register_pinhole="string",
    open_via_pinhole="string",
    options_rate=0,
    options_rate_track="string",
    prack_rate=0,
    prack_rate_track="string",
    preserve_override="string",
    provisional_invite_expiry_time=0,
    publish_rate=0,
    publish_rate_track="string",
    refer_rate=0,
    refer_rate_track="string",
    register_contact_trace="string",
    register_rate=0,
    register_rate_track="string",
    rfc2543_branch="string",
    rtp="string",
    scopetype="string",
    ssl_algorithm="string",
    ssl_auth_client="string",
    ssl_auth_server="string",
    ssl_client_certificate="string",
    ssl_client_renegotiation="string",
    ssl_max_version="string",
    ssl_min_version="string",
    ssl_mode="string",
    ssl_pfs="string",
    ssl_send_empty_frags="string",
    ssl_server_certificate="string",
    status="string",
    strict_register="string",
    subscribe_rate=0,
    subscribe_rate_track="string",
    unknown_header="string",
    update_rate=0,
    update_rate_track="string")
const objectVoipProfileSipResource = new fortimanager.ObjectVoipProfileSip("objectVoipProfileSipResource", {
    profile: "string",
    ackRate: 0,
    ackRateTrack: "string",
    adom: "string",
    blockAck: "string",
    blockBye: "string",
    blockCancel: "string",
    blockGeoRedOptions: "string",
    blockInfo: "string",
    blockInvite: "string",
    blockLongLines: "string",
    blockMessage: "string",
    blockNotify: "string",
    blockOptions: "string",
    blockPrack: "string",
    blockPublish: "string",
    blockRefer: "string",
    blockRegister: "string",
    blockSubscribe: "string",
    blockUnknown: "string",
    blockUpdate: "string",
    byeRate: 0,
    byeRateTrack: "string",
    callIdRegex: "string",
    callKeepalive: 0,
    cancelRate: 0,
    cancelRateTrack: "string",
    contactFixup: "string",
    contentTypeRegex: "string",
    hntRestrictSourceIp: "string",
    hostedNatTraversal: "string",
    infoRate: 0,
    infoRateTrack: "string",
    inviteRate: 0,
    inviteRateTrack: "string",
    ipsRtp: "string",
    logCallSummary: "string",
    logViolations: "string",
    malformedHeaderAllow: "string",
    malformedHeaderCallId: "string",
    malformedHeaderContact: "string",
    malformedHeaderContentLength: "string",
    malformedHeaderContentType: "string",
    malformedHeaderCseq: "string",
    malformedHeaderExpires: "string",
    malformedHeaderFrom: "string",
    malformedHeaderMaxForwards: "string",
    malformedHeaderNoProxyRequire: "string",
    malformedHeaderNoRequire: "string",
    malformedHeaderPAssertedIdentity: "string",
    malformedHeaderRack: "string",
    malformedHeaderRecordRoute: "string",
    malformedHeaderRoute: "string",
    malformedHeaderRseq: "string",
    malformedHeaderSdpA: "string",
    malformedHeaderSdpB: "string",
    malformedHeaderSdpC: "string",
    malformedHeaderSdpI: "string",
    malformedHeaderSdpK: "string",
    malformedHeaderSdpM: "string",
    malformedHeaderSdpO: "string",
    malformedHeaderSdpR: "string",
    malformedHeaderSdpS: "string",
    malformedHeaderSdpT: "string",
    malformedHeaderSdpV: "string",
    malformedHeaderSdpZ: "string",
    malformedHeaderTo: "string",
    malformedHeaderVia: "string",
    malformedRequestLine: "string",
    maxBodyLength: 0,
    maxDialogs: 0,
    maxIdleDialogs: 0,
    maxLineLength: 0,
    messageRate: 0,
    messageRateTrack: "string",
    natPortRange: "string",
    natTrace: "string",
    noSdpFixup: "string",
    notifyRate: 0,
    notifyRateTrack: "string",
    objectVoipProfileSipId: "string",
    openContactPinhole: "string",
    openRecordRoutePinhole: "string",
    openRegisterPinhole: "string",
    openViaPinhole: "string",
    optionsRate: 0,
    optionsRateTrack: "string",
    prackRate: 0,
    prackRateTrack: "string",
    preserveOverride: "string",
    provisionalInviteExpiryTime: 0,
    publishRate: 0,
    publishRateTrack: "string",
    referRate: 0,
    referRateTrack: "string",
    registerContactTrace: "string",
    registerRate: 0,
    registerRateTrack: "string",
    rfc2543Branch: "string",
    rtp: "string",
    scopetype: "string",
    sslAlgorithm: "string",
    sslAuthClient: "string",
    sslAuthServer: "string",
    sslClientCertificate: "string",
    sslClientRenegotiation: "string",
    sslMaxVersion: "string",
    sslMinVersion: "string",
    sslMode: "string",
    sslPfs: "string",
    sslSendEmptyFrags: "string",
    sslServerCertificate: "string",
    status: "string",
    strictRegister: "string",
    subscribeRate: 0,
    subscribeRateTrack: "string",
    unknownHeader: "string",
    updateRate: 0,
    updateRateTrack: "string",
});
type: fortimanager:ObjectVoipProfileSip
properties:
    ackRate: 0
    ackRateTrack: string
    adom: string
    blockAck: string
    blockBye: string
    blockCancel: string
    blockGeoRedOptions: string
    blockInfo: string
    blockInvite: string
    blockLongLines: string
    blockMessage: string
    blockNotify: string
    blockOptions: string
    blockPrack: string
    blockPublish: string
    blockRefer: string
    blockRegister: string
    blockSubscribe: string
    blockUnknown: string
    blockUpdate: string
    byeRate: 0
    byeRateTrack: string
    callIdRegex: string
    callKeepalive: 0
    cancelRate: 0
    cancelRateTrack: string
    contactFixup: string
    contentTypeRegex: string
    hntRestrictSourceIp: string
    hostedNatTraversal: string
    infoRate: 0
    infoRateTrack: string
    inviteRate: 0
    inviteRateTrack: string
    ipsRtp: string
    logCallSummary: string
    logViolations: string
    malformedHeaderAllow: string
    malformedHeaderCallId: string
    malformedHeaderContact: string
    malformedHeaderContentLength: string
    malformedHeaderContentType: string
    malformedHeaderCseq: string
    malformedHeaderExpires: string
    malformedHeaderFrom: string
    malformedHeaderMaxForwards: string
    malformedHeaderNoProxyRequire: string
    malformedHeaderNoRequire: string
    malformedHeaderPAssertedIdentity: string
    malformedHeaderRack: string
    malformedHeaderRecordRoute: string
    malformedHeaderRoute: string
    malformedHeaderRseq: string
    malformedHeaderSdpA: string
    malformedHeaderSdpB: string
    malformedHeaderSdpC: string
    malformedHeaderSdpI: string
    malformedHeaderSdpK: string
    malformedHeaderSdpM: string
    malformedHeaderSdpO: string
    malformedHeaderSdpR: string
    malformedHeaderSdpS: string
    malformedHeaderSdpT: string
    malformedHeaderSdpV: string
    malformedHeaderSdpZ: string
    malformedHeaderTo: string
    malformedHeaderVia: string
    malformedRequestLine: string
    maxBodyLength: 0
    maxDialogs: 0
    maxIdleDialogs: 0
    maxLineLength: 0
    messageRate: 0
    messageRateTrack: string
    natPortRange: string
    natTrace: string
    noSdpFixup: string
    notifyRate: 0
    notifyRateTrack: string
    objectVoipProfileSipId: string
    openContactPinhole: string
    openRecordRoutePinhole: string
    openRegisterPinhole: string
    openViaPinhole: string
    optionsRate: 0
    optionsRateTrack: string
    prackRate: 0
    prackRateTrack: string
    preserveOverride: string
    profile: string
    provisionalInviteExpiryTime: 0
    publishRate: 0
    publishRateTrack: string
    referRate: 0
    referRateTrack: string
    registerContactTrace: string
    registerRate: 0
    registerRateTrack: string
    rfc2543Branch: string
    rtp: string
    scopetype: string
    sslAlgorithm: string
    sslAuthClient: string
    sslAuthServer: string
    sslClientCertificate: string
    sslClientRenegotiation: string
    sslMaxVersion: string
    sslMinVersion: string
    sslMode: string
    sslPfs: string
    sslSendEmptyFrags: string
    sslServerCertificate: string
    status: string
    strictRegister: string
    subscribeRate: 0
    subscribeRateTrack: string
    unknownHeader: string
    updateRate: 0
    updateRateTrack: string
ObjectVoipProfileSip 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 ObjectVoipProfileSip resource accepts the following input properties:
- Profile string
- Profile.
- AckRate double
- ACK request rate limit (per second, per policy).
- AckRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- BlockAck string
- Enable/disable block ACK requests. Valid values: disable,enable.
- BlockBye string
- Enable/disable block BYE requests. Valid values: disable,enable.
- BlockCancel string
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- BlockGeo stringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- BlockInfo string
- Enable/disable block INFO requests. Valid values: disable,enable.
- BlockInvite string
- Enable/disable block INVITE requests. Valid values: disable,enable.
- BlockLong stringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- BlockMessage string
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- BlockNotify string
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- BlockOptions string
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- BlockPrack string
- Enable/disable block prack requests. Valid values: disable,enable.
- BlockPublish string
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- BlockRefer string
- Enable/disable block REFER requests. Valid values: disable,enable.
- BlockRegister string
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- BlockSubscribe string
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- BlockUnknown string
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- BlockUpdate string
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- ByeRate double
- BYE request rate limit (per second, per policy).
- ByeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- CallId stringRegex 
- Validate PCRE regular expression for Call-Id header value.
- CallKeepalive double
- Continue tracking calls with no RTP for this many minutes.
- CancelRate double
- CANCEL request rate limit (per second, per policy).
- CancelRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ContactFixup string
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- ContentType stringRegex 
- Validate PCRE regular expression for Content-Type header value.
- HntRestrict stringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- HostedNat stringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- InfoRate double
- INFO request rate limit (per second, per policy).
- InfoRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- InviteRate double
- INVITE request rate limit (per second, per policy).
- InviteRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- IpsRtp string
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- LogCall stringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- LogViolations string
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- MalformedHeader stringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- MalformedHeader stringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- MalformedHeader stringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- MalformedHeader stringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- MalformedHeader stringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- MalformedHeader stringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- MalformedHeader stringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- MalformedHeader stringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- MalformedHeader stringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- MalformedHeader stringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- MalformedHeader stringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- MalformedHeader stringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- MalformedHeader stringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- MalformedHeader stringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- MalformedHeader stringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- MalformedHeader stringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- MalformedHeader stringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- MalformedHeader stringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- MalformedHeader stringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- MalformedRequest stringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- MaxBody doubleLength 
- Maximum SIP message body length (0 meaning no limit).
- MaxDialogs double
- Maximum number of concurrent calls/dialogs (per policy).
- MaxIdle doubleDialogs 
- Maximum number established but idle dialogs to retain (per policy).
- MaxLine doubleLength 
- Maximum SIP header line length (78-4096).
- MessageRate double
- MESSAGE request rate limit (per second, per policy).
- MessageRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- NatPort stringRange 
- RTP NAT port range.
- NatTrace string
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- NoSdp stringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- NotifyRate double
- NOTIFY request rate limit (per second, per policy).
- NotifyRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ObjectVoip stringProfile Sip Id 
- an identifier for the resource.
- OpenContact stringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- OpenRecord stringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- OpenRegister stringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- OpenVia stringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- OptionsRate double
- OPTIONS request rate limit (per second, per policy).
- OptionsRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- PrackRate double
- PRACK request rate limit (per second, per policy).
- PrackRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- PreserveOverride string
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- ProvisionalInvite doubleExpiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- PublishRate double
- PUBLISH request rate limit (per second, per policy).
- PublishRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ReferRate double
- REFER request rate limit (per second, per policy).
- ReferRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- RegisterContact stringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- RegisterRate double
- REGISTER request rate limit (per second, per policy).
- RegisterRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- Rfc2543Branch string
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- Rtp string
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- SslAlgorithm string
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- SslAuth stringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- SslAuth stringServer 
- Authenticate the server's certificate with the peer/peergrp.
- SslClient stringCertificate 
- Name of Certificate to offer to server if requested.
- SslClient stringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- SslMax stringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- SslMin stringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- SslMode string
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- SslPfs string
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- SslSend stringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- SslServer stringCertificate 
- Name of Certificate return to the client in every SSL connection.
- Status string
- Enable/disable SIP. Valid values: disable,enable.
- StrictRegister string
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- SubscribeRate double
- SUBSCRIBE request rate limit (per second, per policy).
- SubscribeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- UnknownHeader string
- Action for unknown SIP header. Valid values: pass,discard,respond.
- UpdateRate double
- UPDATE request rate limit (per second, per policy).
- UpdateRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- Profile string
- Profile.
- AckRate float64
- ACK request rate limit (per second, per policy).
- AckRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- BlockAck string
- Enable/disable block ACK requests. Valid values: disable,enable.
- BlockBye string
- Enable/disable block BYE requests. Valid values: disable,enable.
- BlockCancel string
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- BlockGeo stringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- BlockInfo string
- Enable/disable block INFO requests. Valid values: disable,enable.
- BlockInvite string
- Enable/disable block INVITE requests. Valid values: disable,enable.
- BlockLong stringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- BlockMessage string
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- BlockNotify string
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- BlockOptions string
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- BlockPrack string
- Enable/disable block prack requests. Valid values: disable,enable.
- BlockPublish string
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- BlockRefer string
- Enable/disable block REFER requests. Valid values: disable,enable.
- BlockRegister string
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- BlockSubscribe string
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- BlockUnknown string
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- BlockUpdate string
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- ByeRate float64
- BYE request rate limit (per second, per policy).
- ByeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- CallId stringRegex 
- Validate PCRE regular expression for Call-Id header value.
- CallKeepalive float64
- Continue tracking calls with no RTP for this many minutes.
- CancelRate float64
- CANCEL request rate limit (per second, per policy).
- CancelRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ContactFixup string
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- ContentType stringRegex 
- Validate PCRE regular expression for Content-Type header value.
- HntRestrict stringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- HostedNat stringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- InfoRate float64
- INFO request rate limit (per second, per policy).
- InfoRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- InviteRate float64
- INVITE request rate limit (per second, per policy).
- InviteRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- IpsRtp string
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- LogCall stringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- LogViolations string
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- MalformedHeader stringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- MalformedHeader stringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- MalformedHeader stringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- MalformedHeader stringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- MalformedHeader stringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- MalformedHeader stringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- MalformedHeader stringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- MalformedHeader stringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- MalformedHeader stringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- MalformedHeader stringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- MalformedHeader stringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- MalformedHeader stringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- MalformedHeader stringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- MalformedHeader stringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- MalformedHeader stringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- MalformedHeader stringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- MalformedHeader stringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- MalformedHeader stringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- MalformedHeader stringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- MalformedRequest stringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- MaxBody float64Length 
- Maximum SIP message body length (0 meaning no limit).
- MaxDialogs float64
- Maximum number of concurrent calls/dialogs (per policy).
- MaxIdle float64Dialogs 
- Maximum number established but idle dialogs to retain (per policy).
- MaxLine float64Length 
- Maximum SIP header line length (78-4096).
- MessageRate float64
- MESSAGE request rate limit (per second, per policy).
- MessageRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- NatPort stringRange 
- RTP NAT port range.
- NatTrace string
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- NoSdp stringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- NotifyRate float64
- NOTIFY request rate limit (per second, per policy).
- NotifyRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ObjectVoip stringProfile Sip Id 
- an identifier for the resource.
- OpenContact stringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- OpenRecord stringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- OpenRegister stringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- OpenVia stringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- OptionsRate float64
- OPTIONS request rate limit (per second, per policy).
- OptionsRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- PrackRate float64
- PRACK request rate limit (per second, per policy).
- PrackRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- PreserveOverride string
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- ProvisionalInvite float64Expiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- PublishRate float64
- PUBLISH request rate limit (per second, per policy).
- PublishRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ReferRate float64
- REFER request rate limit (per second, per policy).
- ReferRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- RegisterContact stringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- RegisterRate float64
- REGISTER request rate limit (per second, per policy).
- RegisterRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- Rfc2543Branch string
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- Rtp string
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- SslAlgorithm string
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- SslAuth stringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- SslAuth stringServer 
- Authenticate the server's certificate with the peer/peergrp.
- SslClient stringCertificate 
- Name of Certificate to offer to server if requested.
- SslClient stringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- SslMax stringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- SslMin stringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- SslMode string
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- SslPfs string
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- SslSend stringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- SslServer stringCertificate 
- Name of Certificate return to the client in every SSL connection.
- Status string
- Enable/disable SIP. Valid values: disable,enable.
- StrictRegister string
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- SubscribeRate float64
- SUBSCRIBE request rate limit (per second, per policy).
- SubscribeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- UnknownHeader string
- Action for unknown SIP header. Valid values: pass,discard,respond.
- UpdateRate float64
- UPDATE request rate limit (per second, per policy).
- UpdateRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- profile String
- Profile.
- ackRate Double
- ACK request rate limit (per second, per policy).
- ackRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- blockAck String
- Enable/disable block ACK requests. Valid values: disable,enable.
- blockBye String
- Enable/disable block BYE requests. Valid values: disable,enable.
- blockCancel String
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- blockGeo StringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- blockInfo String
- Enable/disable block INFO requests. Valid values: disable,enable.
- blockInvite String
- Enable/disable block INVITE requests. Valid values: disable,enable.
- blockLong StringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- blockMessage String
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- blockNotify String
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- blockOptions String
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- blockPrack String
- Enable/disable block prack requests. Valid values: disable,enable.
- blockPublish String
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- blockRefer String
- Enable/disable block REFER requests. Valid values: disable,enable.
- blockRegister String
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- blockSubscribe String
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- blockUnknown String
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- blockUpdate String
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- byeRate Double
- BYE request rate limit (per second, per policy).
- byeRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- callId StringRegex 
- Validate PCRE regular expression for Call-Id header value.
- callKeepalive Double
- Continue tracking calls with no RTP for this many minutes.
- cancelRate Double
- CANCEL request rate limit (per second, per policy).
- cancelRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- contactFixup String
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- contentType StringRegex 
- Validate PCRE regular expression for Content-Type header value.
- hntRestrict StringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- hostedNat StringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- infoRate Double
- INFO request rate limit (per second, per policy).
- infoRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- inviteRate Double
- INVITE request rate limit (per second, per policy).
- inviteRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ipsRtp String
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- logCall StringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- logViolations String
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- malformedHeader StringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- malformedHeader StringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- malformedHeader StringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- malformedHeader StringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- malformedHeader StringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- malformedHeader StringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- malformedHeader StringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- malformedHeader StringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- malformedHeader StringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- malformedHeader StringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- malformedHeader StringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- malformedHeader StringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- malformedHeader StringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- malformedHeader StringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- malformedHeader StringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- malformedHeader StringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- malformedHeader StringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- malformedHeader StringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- malformedHeader StringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- malformedHeader StringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- malformedHeader StringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- malformedHeader StringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- malformedHeader StringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- malformedHeader StringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- malformedHeader StringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- malformedHeader StringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- malformedHeader StringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- malformedHeader StringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- malformedHeader StringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- malformedHeader StringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- malformedRequest StringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- maxBody DoubleLength 
- Maximum SIP message body length (0 meaning no limit).
- maxDialogs Double
- Maximum number of concurrent calls/dialogs (per policy).
- maxIdle DoubleDialogs 
- Maximum number established but idle dialogs to retain (per policy).
- maxLine DoubleLength 
- Maximum SIP header line length (78-4096).
- messageRate Double
- MESSAGE request rate limit (per second, per policy).
- messageRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- natPort StringRange 
- RTP NAT port range.
- natTrace String
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- noSdp StringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- notifyRate Double
- NOTIFY request rate limit (per second, per policy).
- notifyRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- objectVoip StringProfile Sip Id 
- an identifier for the resource.
- openContact StringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- openRecord StringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- openRegister StringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- openVia StringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- optionsRate Double
- OPTIONS request rate limit (per second, per policy).
- optionsRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- prackRate Double
- PRACK request rate limit (per second, per policy).
- prackRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- preserveOverride String
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- provisionalInvite DoubleExpiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- publishRate Double
- PUBLISH request rate limit (per second, per policy).
- publishRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- referRate Double
- REFER request rate limit (per second, per policy).
- referRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- registerContact StringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- registerRate Double
- REGISTER request rate limit (per second, per policy).
- registerRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- rfc2543Branch String
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- rtp String
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sslAlgorithm String
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- sslAuth StringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- sslAuth StringServer 
- Authenticate the server's certificate with the peer/peergrp.
- sslClient StringCertificate 
- Name of Certificate to offer to server if requested.
- sslClient StringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- sslMax StringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMin StringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMode String
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- sslPfs String
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- sslSend StringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- sslServer StringCertificate 
- Name of Certificate return to the client in every SSL connection.
- status String
- Enable/disable SIP. Valid values: disable,enable.
- strictRegister String
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- subscribeRate Double
- SUBSCRIBE request rate limit (per second, per policy).
- subscribeRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- unknownHeader String
- Action for unknown SIP header. Valid values: pass,discard,respond.
- updateRate Double
- UPDATE request rate limit (per second, per policy).
- updateRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- profile string
- Profile.
- ackRate number
- ACK request rate limit (per second, per policy).
- ackRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- blockAck string
- Enable/disable block ACK requests. Valid values: disable,enable.
- blockBye string
- Enable/disable block BYE requests. Valid values: disable,enable.
- blockCancel string
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- blockGeo stringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- blockInfo string
- Enable/disable block INFO requests. Valid values: disable,enable.
- blockInvite string
- Enable/disable block INVITE requests. Valid values: disable,enable.
- blockLong stringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- blockMessage string
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- blockNotify string
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- blockOptions string
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- blockPrack string
- Enable/disable block prack requests. Valid values: disable,enable.
- blockPublish string
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- blockRefer string
- Enable/disable block REFER requests. Valid values: disable,enable.
- blockRegister string
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- blockSubscribe string
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- blockUnknown string
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- blockUpdate string
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- byeRate number
- BYE request rate limit (per second, per policy).
- byeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- callId stringRegex 
- Validate PCRE regular expression for Call-Id header value.
- callKeepalive number
- Continue tracking calls with no RTP for this many minutes.
- cancelRate number
- CANCEL request rate limit (per second, per policy).
- cancelRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- contactFixup string
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- contentType stringRegex 
- Validate PCRE regular expression for Content-Type header value.
- hntRestrict stringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- hostedNat stringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- infoRate number
- INFO request rate limit (per second, per policy).
- infoRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- inviteRate number
- INVITE request rate limit (per second, per policy).
- inviteRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ipsRtp string
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- logCall stringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- logViolations string
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- malformedHeader stringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- malformedHeader stringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- malformedHeader stringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- malformedHeader stringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- malformedHeader stringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- malformedHeader stringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- malformedHeader stringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- malformedHeader stringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- malformedHeader stringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- malformedHeader stringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- malformedHeader stringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- malformedHeader stringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- malformedHeader stringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- malformedHeader stringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- malformedHeader stringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- malformedHeader stringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- malformedHeader stringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- malformedHeader stringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- malformedHeader stringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- malformedHeader stringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- malformedHeader stringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- malformedHeader stringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- malformedHeader stringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- malformedHeader stringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- malformedHeader stringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- malformedHeader stringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- malformedHeader stringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- malformedHeader stringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- malformedHeader stringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- malformedHeader stringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- malformedRequest stringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- maxBody numberLength 
- Maximum SIP message body length (0 meaning no limit).
- maxDialogs number
- Maximum number of concurrent calls/dialogs (per policy).
- maxIdle numberDialogs 
- Maximum number established but idle dialogs to retain (per policy).
- maxLine numberLength 
- Maximum SIP header line length (78-4096).
- messageRate number
- MESSAGE request rate limit (per second, per policy).
- messageRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- natPort stringRange 
- RTP NAT port range.
- natTrace string
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- noSdp stringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- notifyRate number
- NOTIFY request rate limit (per second, per policy).
- notifyRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- objectVoip stringProfile Sip Id 
- an identifier for the resource.
- openContact stringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- openRecord stringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- openRegister stringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- openVia stringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- optionsRate number
- OPTIONS request rate limit (per second, per policy).
- optionsRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- prackRate number
- PRACK request rate limit (per second, per policy).
- prackRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- preserveOverride string
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- provisionalInvite numberExpiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- publishRate number
- PUBLISH request rate limit (per second, per policy).
- publishRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- referRate number
- REFER request rate limit (per second, per policy).
- referRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- registerContact stringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- registerRate number
- REGISTER request rate limit (per second, per policy).
- registerRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- rfc2543Branch string
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- rtp string
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sslAlgorithm string
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- sslAuth stringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- sslAuth stringServer 
- Authenticate the server's certificate with the peer/peergrp.
- sslClient stringCertificate 
- Name of Certificate to offer to server if requested.
- sslClient stringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- sslMax stringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMin stringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMode string
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- sslPfs string
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- sslSend stringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- sslServer stringCertificate 
- Name of Certificate return to the client in every SSL connection.
- status string
- Enable/disable SIP. Valid values: disable,enable.
- strictRegister string
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- subscribeRate number
- SUBSCRIBE request rate limit (per second, per policy).
- subscribeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- unknownHeader string
- Action for unknown SIP header. Valid values: pass,discard,respond.
- updateRate number
- UPDATE request rate limit (per second, per policy).
- updateRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- profile str
- Profile.
- ack_rate float
- ACK request rate limit (per second, per policy).
- ack_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- adom str
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- block_ack str
- Enable/disable block ACK requests. Valid values: disable,enable.
- block_bye str
- Enable/disable block BYE requests. Valid values: disable,enable.
- block_cancel str
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- block_geo_ strred_ options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- block_info str
- Enable/disable block INFO requests. Valid values: disable,enable.
- block_invite str
- Enable/disable block INVITE requests. Valid values: disable,enable.
- block_long_ strlines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- block_message str
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- block_notify str
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- block_options str
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- block_prack str
- Enable/disable block prack requests. Valid values: disable,enable.
- block_publish str
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- block_refer str
- Enable/disable block REFER requests. Valid values: disable,enable.
- block_register str
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- block_subscribe str
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- block_unknown str
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- block_update str
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- bye_rate float
- BYE request rate limit (per second, per policy).
- bye_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- call_id_ strregex 
- Validate PCRE regular expression for Call-Id header value.
- call_keepalive float
- Continue tracking calls with no RTP for this many minutes.
- cancel_rate float
- CANCEL request rate limit (per second, per policy).
- cancel_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- contact_fixup str
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- content_type_ strregex 
- Validate PCRE regular expression for Content-Type header value.
- hnt_restrict_ strsource_ ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- hosted_nat_ strtraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- info_rate float
- INFO request rate limit (per second, per policy).
- info_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- invite_rate float
- INVITE request rate limit (per second, per policy).
- invite_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ips_rtp str
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- log_call_ strsummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- log_violations str
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- malformed_header_ strallow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- malformed_header_ strcall_ id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- malformed_header_ strcontact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- malformed_header_ strcontent_ length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- malformed_header_ strcontent_ type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- malformed_header_ strcseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- malformed_header_ strexpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- malformed_header_ strfrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- malformed_header_ strmax_ forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- malformed_header_ strno_ proxy_ require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- malformed_header_ strno_ require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- malformed_header_ strpasserted_ identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- malformed_header_ strrack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- malformed_header_ strrecord_ route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- malformed_header_ strroute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- malformed_header_ strrseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ a 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ b 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ c 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ i 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ k 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ m 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ o 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ r 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ s 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ t 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ v 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- malformed_header_ strto 
- Action for malformed To header. Valid values: pass,discard,respond.
- malformed_header_ strvia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- malformed_request_ strline 
- Action for malformed request line. Valid values: pass,discard,respond.
- max_body_ floatlength 
- Maximum SIP message body length (0 meaning no limit).
- max_dialogs float
- Maximum number of concurrent calls/dialogs (per policy).
- max_idle_ floatdialogs 
- Maximum number established but idle dialogs to retain (per policy).
- max_line_ floatlength 
- Maximum SIP header line length (78-4096).
- message_rate float
- MESSAGE request rate limit (per second, per policy).
- message_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- nat_port_ strrange 
- RTP NAT port range.
- nat_trace str
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- no_sdp_ strfixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- notify_rate float
- NOTIFY request rate limit (per second, per policy).
- notify_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- object_voip_ strprofile_ sip_ id 
- an identifier for the resource.
- open_contact_ strpinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- open_record_ strroute_ pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- open_register_ strpinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- open_via_ strpinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- options_rate float
- OPTIONS request rate limit (per second, per policy).
- options_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- prack_rate float
- PRACK request rate limit (per second, per policy).
- prack_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- preserve_override str
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- provisional_invite_ floatexpiry_ time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- publish_rate float
- PUBLISH request rate limit (per second, per policy).
- publish_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- refer_rate float
- REFER request rate limit (per second, per policy).
- refer_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- register_contact_ strtrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- register_rate float
- REGISTER request rate limit (per second, per policy).
- register_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- rfc2543_branch str
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- rtp str
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- scopetype str
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- ssl_algorithm str
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- ssl_auth_ strclient 
- Require a client certificate and authenticate it with the peer/peergrp.
- ssl_auth_ strserver 
- Authenticate the server's certificate with the peer/peergrp.
- ssl_client_ strcertificate 
- Name of Certificate to offer to server if requested.
- ssl_client_ strrenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- ssl_max_ strversion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- ssl_min_ strversion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- ssl_mode str
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- ssl_pfs str
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- ssl_send_ strempty_ frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- ssl_server_ strcertificate 
- Name of Certificate return to the client in every SSL connection.
- status str
- Enable/disable SIP. Valid values: disable,enable.
- strict_register str
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- subscribe_rate float
- SUBSCRIBE request rate limit (per second, per policy).
- subscribe_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- unknown_header str
- Action for unknown SIP header. Valid values: pass,discard,respond.
- update_rate float
- UPDATE request rate limit (per second, per policy).
- update_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- profile String
- Profile.
- ackRate Number
- ACK request rate limit (per second, per policy).
- ackRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- blockAck String
- Enable/disable block ACK requests. Valid values: disable,enable.
- blockBye String
- Enable/disable block BYE requests. Valid values: disable,enable.
- blockCancel String
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- blockGeo StringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- blockInfo String
- Enable/disable block INFO requests. Valid values: disable,enable.
- blockInvite String
- Enable/disable block INVITE requests. Valid values: disable,enable.
- blockLong StringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- blockMessage String
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- blockNotify String
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- blockOptions String
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- blockPrack String
- Enable/disable block prack requests. Valid values: disable,enable.
- blockPublish String
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- blockRefer String
- Enable/disable block REFER requests. Valid values: disable,enable.
- blockRegister String
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- blockSubscribe String
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- blockUnknown String
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- blockUpdate String
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- byeRate Number
- BYE request rate limit (per second, per policy).
- byeRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- callId StringRegex 
- Validate PCRE regular expression for Call-Id header value.
- callKeepalive Number
- Continue tracking calls with no RTP for this many minutes.
- cancelRate Number
- CANCEL request rate limit (per second, per policy).
- cancelRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- contactFixup String
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- contentType StringRegex 
- Validate PCRE regular expression for Content-Type header value.
- hntRestrict StringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- hostedNat StringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- infoRate Number
- INFO request rate limit (per second, per policy).
- infoRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- inviteRate Number
- INVITE request rate limit (per second, per policy).
- inviteRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ipsRtp String
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- logCall StringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- logViolations String
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- malformedHeader StringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- malformedHeader StringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- malformedHeader StringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- malformedHeader StringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- malformedHeader StringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- malformedHeader StringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- malformedHeader StringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- malformedHeader StringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- malformedHeader StringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- malformedHeader StringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- malformedHeader StringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- malformedHeader StringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- malformedHeader StringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- malformedHeader StringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- malformedHeader StringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- malformedHeader StringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- malformedHeader StringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- malformedHeader StringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- malformedHeader StringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- malformedHeader StringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- malformedHeader StringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- malformedHeader StringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- malformedHeader StringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- malformedHeader StringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- malformedHeader StringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- malformedHeader StringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- malformedHeader StringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- malformedHeader StringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- malformedHeader StringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- malformedHeader StringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- malformedRequest StringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- maxBody NumberLength 
- Maximum SIP message body length (0 meaning no limit).
- maxDialogs Number
- Maximum number of concurrent calls/dialogs (per policy).
- maxIdle NumberDialogs 
- Maximum number established but idle dialogs to retain (per policy).
- maxLine NumberLength 
- Maximum SIP header line length (78-4096).
- messageRate Number
- MESSAGE request rate limit (per second, per policy).
- messageRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- natPort StringRange 
- RTP NAT port range.
- natTrace String
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- noSdp StringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- notifyRate Number
- NOTIFY request rate limit (per second, per policy).
- notifyRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- objectVoip StringProfile Sip Id 
- an identifier for the resource.
- openContact StringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- openRecord StringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- openRegister StringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- openVia StringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- optionsRate Number
- OPTIONS request rate limit (per second, per policy).
- optionsRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- prackRate Number
- PRACK request rate limit (per second, per policy).
- prackRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- preserveOverride String
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- provisionalInvite NumberExpiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- publishRate Number
- PUBLISH request rate limit (per second, per policy).
- publishRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- referRate Number
- REFER request rate limit (per second, per policy).
- referRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- registerContact StringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- registerRate Number
- REGISTER request rate limit (per second, per policy).
- registerRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- rfc2543Branch String
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- rtp String
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sslAlgorithm String
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- sslAuth StringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- sslAuth StringServer 
- Authenticate the server's certificate with the peer/peergrp.
- sslClient StringCertificate 
- Name of Certificate to offer to server if requested.
- sslClient StringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- sslMax StringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMin StringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMode String
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- sslPfs String
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- sslSend StringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- sslServer StringCertificate 
- Name of Certificate return to the client in every SSL connection.
- status String
- Enable/disable SIP. Valid values: disable,enable.
- strictRegister String
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- subscribeRate Number
- SUBSCRIBE request rate limit (per second, per policy).
- subscribeRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- unknownHeader String
- Action for unknown SIP header. Valid values: pass,discard,respond.
- updateRate Number
- UPDATE request rate limit (per second, per policy).
- updateRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectVoipProfileSip 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 ObjectVoipProfileSip Resource
Get an existing ObjectVoipProfileSip 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?: ObjectVoipProfileSipState, opts?: CustomResourceOptions): ObjectVoipProfileSip@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        ack_rate: Optional[float] = None,
        ack_rate_track: Optional[str] = None,
        adom: Optional[str] = None,
        block_ack: Optional[str] = None,
        block_bye: Optional[str] = None,
        block_cancel: Optional[str] = None,
        block_geo_red_options: Optional[str] = None,
        block_info: Optional[str] = None,
        block_invite: Optional[str] = None,
        block_long_lines: Optional[str] = None,
        block_message: Optional[str] = None,
        block_notify: Optional[str] = None,
        block_options: Optional[str] = None,
        block_prack: Optional[str] = None,
        block_publish: Optional[str] = None,
        block_refer: Optional[str] = None,
        block_register: Optional[str] = None,
        block_subscribe: Optional[str] = None,
        block_unknown: Optional[str] = None,
        block_update: Optional[str] = None,
        bye_rate: Optional[float] = None,
        bye_rate_track: Optional[str] = None,
        call_id_regex: Optional[str] = None,
        call_keepalive: Optional[float] = None,
        cancel_rate: Optional[float] = None,
        cancel_rate_track: Optional[str] = None,
        contact_fixup: Optional[str] = None,
        content_type_regex: Optional[str] = None,
        hnt_restrict_source_ip: Optional[str] = None,
        hosted_nat_traversal: Optional[str] = None,
        info_rate: Optional[float] = None,
        info_rate_track: Optional[str] = None,
        invite_rate: Optional[float] = None,
        invite_rate_track: Optional[str] = None,
        ips_rtp: Optional[str] = None,
        log_call_summary: Optional[str] = None,
        log_violations: Optional[str] = None,
        malformed_header_allow: Optional[str] = None,
        malformed_header_call_id: Optional[str] = None,
        malformed_header_contact: Optional[str] = None,
        malformed_header_content_length: Optional[str] = None,
        malformed_header_content_type: Optional[str] = None,
        malformed_header_cseq: Optional[str] = None,
        malformed_header_expires: Optional[str] = None,
        malformed_header_from: Optional[str] = None,
        malformed_header_max_forwards: Optional[str] = None,
        malformed_header_no_proxy_require: Optional[str] = None,
        malformed_header_no_require: Optional[str] = None,
        malformed_header_passerted_identity: Optional[str] = None,
        malformed_header_rack: Optional[str] = None,
        malformed_header_record_route: Optional[str] = None,
        malformed_header_route: Optional[str] = None,
        malformed_header_rseq: Optional[str] = None,
        malformed_header_sdp_a: Optional[str] = None,
        malformed_header_sdp_b: Optional[str] = None,
        malformed_header_sdp_c: Optional[str] = None,
        malformed_header_sdp_i: Optional[str] = None,
        malformed_header_sdp_k: Optional[str] = None,
        malformed_header_sdp_m: Optional[str] = None,
        malformed_header_sdp_o: Optional[str] = None,
        malformed_header_sdp_r: Optional[str] = None,
        malformed_header_sdp_s: Optional[str] = None,
        malformed_header_sdp_t: Optional[str] = None,
        malformed_header_sdp_v: Optional[str] = None,
        malformed_header_sdp_z: Optional[str] = None,
        malformed_header_to: Optional[str] = None,
        malformed_header_via: Optional[str] = None,
        malformed_request_line: Optional[str] = None,
        max_body_length: Optional[float] = None,
        max_dialogs: Optional[float] = None,
        max_idle_dialogs: Optional[float] = None,
        max_line_length: Optional[float] = None,
        message_rate: Optional[float] = None,
        message_rate_track: Optional[str] = None,
        nat_port_range: Optional[str] = None,
        nat_trace: Optional[str] = None,
        no_sdp_fixup: Optional[str] = None,
        notify_rate: Optional[float] = None,
        notify_rate_track: Optional[str] = None,
        object_voip_profile_sip_id: Optional[str] = None,
        open_contact_pinhole: Optional[str] = None,
        open_record_route_pinhole: Optional[str] = None,
        open_register_pinhole: Optional[str] = None,
        open_via_pinhole: Optional[str] = None,
        options_rate: Optional[float] = None,
        options_rate_track: Optional[str] = None,
        prack_rate: Optional[float] = None,
        prack_rate_track: Optional[str] = None,
        preserve_override: Optional[str] = None,
        profile: Optional[str] = None,
        provisional_invite_expiry_time: Optional[float] = None,
        publish_rate: Optional[float] = None,
        publish_rate_track: Optional[str] = None,
        refer_rate: Optional[float] = None,
        refer_rate_track: Optional[str] = None,
        register_contact_trace: Optional[str] = None,
        register_rate: Optional[float] = None,
        register_rate_track: Optional[str] = None,
        rfc2543_branch: Optional[str] = None,
        rtp: Optional[str] = None,
        scopetype: Optional[str] = None,
        ssl_algorithm: Optional[str] = None,
        ssl_auth_client: Optional[str] = None,
        ssl_auth_server: Optional[str] = None,
        ssl_client_certificate: Optional[str] = None,
        ssl_client_renegotiation: Optional[str] = None,
        ssl_max_version: Optional[str] = None,
        ssl_min_version: Optional[str] = None,
        ssl_mode: Optional[str] = None,
        ssl_pfs: Optional[str] = None,
        ssl_send_empty_frags: Optional[str] = None,
        ssl_server_certificate: Optional[str] = None,
        status: Optional[str] = None,
        strict_register: Optional[str] = None,
        subscribe_rate: Optional[float] = None,
        subscribe_rate_track: Optional[str] = None,
        unknown_header: Optional[str] = None,
        update_rate: Optional[float] = None,
        update_rate_track: Optional[str] = None) -> ObjectVoipProfileSipfunc GetObjectVoipProfileSip(ctx *Context, name string, id IDInput, state *ObjectVoipProfileSipState, opts ...ResourceOption) (*ObjectVoipProfileSip, error)public static ObjectVoipProfileSip Get(string name, Input<string> id, ObjectVoipProfileSipState? state, CustomResourceOptions? opts = null)public static ObjectVoipProfileSip get(String name, Output<String> id, ObjectVoipProfileSipState state, CustomResourceOptions options)resources:  _:    type: fortimanager:ObjectVoipProfileSip    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.
- AckRate double
- ACK request rate limit (per second, per policy).
- AckRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- BlockAck string
- Enable/disable block ACK requests. Valid values: disable,enable.
- BlockBye string
- Enable/disable block BYE requests. Valid values: disable,enable.
- BlockCancel string
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- BlockGeo stringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- BlockInfo string
- Enable/disable block INFO requests. Valid values: disable,enable.
- BlockInvite string
- Enable/disable block INVITE requests. Valid values: disable,enable.
- BlockLong stringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- BlockMessage string
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- BlockNotify string
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- BlockOptions string
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- BlockPrack string
- Enable/disable block prack requests. Valid values: disable,enable.
- BlockPublish string
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- BlockRefer string
- Enable/disable block REFER requests. Valid values: disable,enable.
- BlockRegister string
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- BlockSubscribe string
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- BlockUnknown string
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- BlockUpdate string
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- ByeRate double
- BYE request rate limit (per second, per policy).
- ByeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- CallId stringRegex 
- Validate PCRE regular expression for Call-Id header value.
- CallKeepalive double
- Continue tracking calls with no RTP for this many minutes.
- CancelRate double
- CANCEL request rate limit (per second, per policy).
- CancelRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ContactFixup string
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- ContentType stringRegex 
- Validate PCRE regular expression for Content-Type header value.
- HntRestrict stringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- HostedNat stringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- InfoRate double
- INFO request rate limit (per second, per policy).
- InfoRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- InviteRate double
- INVITE request rate limit (per second, per policy).
- InviteRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- IpsRtp string
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- LogCall stringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- LogViolations string
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- MalformedHeader stringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- MalformedHeader stringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- MalformedHeader stringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- MalformedHeader stringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- MalformedHeader stringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- MalformedHeader stringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- MalformedHeader stringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- MalformedHeader stringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- MalformedHeader stringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- MalformedHeader stringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- MalformedHeader stringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- MalformedHeader stringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- MalformedHeader stringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- MalformedHeader stringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- MalformedHeader stringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- MalformedHeader stringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- MalformedHeader stringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- MalformedHeader stringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- MalformedHeader stringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- MalformedRequest stringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- MaxBody doubleLength 
- Maximum SIP message body length (0 meaning no limit).
- MaxDialogs double
- Maximum number of concurrent calls/dialogs (per policy).
- MaxIdle doubleDialogs 
- Maximum number established but idle dialogs to retain (per policy).
- MaxLine doubleLength 
- Maximum SIP header line length (78-4096).
- MessageRate double
- MESSAGE request rate limit (per second, per policy).
- MessageRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- NatPort stringRange 
- RTP NAT port range.
- NatTrace string
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- NoSdp stringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- NotifyRate double
- NOTIFY request rate limit (per second, per policy).
- NotifyRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ObjectVoip stringProfile Sip Id 
- an identifier for the resource.
- OpenContact stringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- OpenRecord stringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- OpenRegister stringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- OpenVia stringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- OptionsRate double
- OPTIONS request rate limit (per second, per policy).
- OptionsRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- PrackRate double
- PRACK request rate limit (per second, per policy).
- PrackRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- PreserveOverride string
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- Profile string
- Profile.
- ProvisionalInvite doubleExpiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- PublishRate double
- PUBLISH request rate limit (per second, per policy).
- PublishRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ReferRate double
- REFER request rate limit (per second, per policy).
- ReferRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- RegisterContact stringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- RegisterRate double
- REGISTER request rate limit (per second, per policy).
- RegisterRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- Rfc2543Branch string
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- Rtp string
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- SslAlgorithm string
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- SslAuth stringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- SslAuth stringServer 
- Authenticate the server's certificate with the peer/peergrp.
- SslClient stringCertificate 
- Name of Certificate to offer to server if requested.
- SslClient stringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- SslMax stringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- SslMin stringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- SslMode string
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- SslPfs string
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- SslSend stringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- SslServer stringCertificate 
- Name of Certificate return to the client in every SSL connection.
- Status string
- Enable/disable SIP. Valid values: disable,enable.
- StrictRegister string
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- SubscribeRate double
- SUBSCRIBE request rate limit (per second, per policy).
- SubscribeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- UnknownHeader string
- Action for unknown SIP header. Valid values: pass,discard,respond.
- UpdateRate double
- UPDATE request rate limit (per second, per policy).
- UpdateRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- AckRate float64
- ACK request rate limit (per second, per policy).
- AckRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- BlockAck string
- Enable/disable block ACK requests. Valid values: disable,enable.
- BlockBye string
- Enable/disable block BYE requests. Valid values: disable,enable.
- BlockCancel string
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- BlockGeo stringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- BlockInfo string
- Enable/disable block INFO requests. Valid values: disable,enable.
- BlockInvite string
- Enable/disable block INVITE requests. Valid values: disable,enable.
- BlockLong stringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- BlockMessage string
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- BlockNotify string
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- BlockOptions string
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- BlockPrack string
- Enable/disable block prack requests. Valid values: disable,enable.
- BlockPublish string
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- BlockRefer string
- Enable/disable block REFER requests. Valid values: disable,enable.
- BlockRegister string
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- BlockSubscribe string
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- BlockUnknown string
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- BlockUpdate string
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- ByeRate float64
- BYE request rate limit (per second, per policy).
- ByeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- CallId stringRegex 
- Validate PCRE regular expression for Call-Id header value.
- CallKeepalive float64
- Continue tracking calls with no RTP for this many minutes.
- CancelRate float64
- CANCEL request rate limit (per second, per policy).
- CancelRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ContactFixup string
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- ContentType stringRegex 
- Validate PCRE regular expression for Content-Type header value.
- HntRestrict stringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- HostedNat stringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- InfoRate float64
- INFO request rate limit (per second, per policy).
- InfoRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- InviteRate float64
- INVITE request rate limit (per second, per policy).
- InviteRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- IpsRtp string
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- LogCall stringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- LogViolations string
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- MalformedHeader stringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- MalformedHeader stringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- MalformedHeader stringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- MalformedHeader stringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- MalformedHeader stringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- MalformedHeader stringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- MalformedHeader stringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- MalformedHeader stringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- MalformedHeader stringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- MalformedHeader stringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- MalformedHeader stringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- MalformedHeader stringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- MalformedHeader stringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- MalformedHeader stringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- MalformedHeader stringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- MalformedHeader stringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- MalformedHeader stringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- MalformedHeader stringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- MalformedHeader stringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- MalformedHeader stringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- MalformedRequest stringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- MaxBody float64Length 
- Maximum SIP message body length (0 meaning no limit).
- MaxDialogs float64
- Maximum number of concurrent calls/dialogs (per policy).
- MaxIdle float64Dialogs 
- Maximum number established but idle dialogs to retain (per policy).
- MaxLine float64Length 
- Maximum SIP header line length (78-4096).
- MessageRate float64
- MESSAGE request rate limit (per second, per policy).
- MessageRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- NatPort stringRange 
- RTP NAT port range.
- NatTrace string
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- NoSdp stringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- NotifyRate float64
- NOTIFY request rate limit (per second, per policy).
- NotifyRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ObjectVoip stringProfile Sip Id 
- an identifier for the resource.
- OpenContact stringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- OpenRecord stringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- OpenRegister stringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- OpenVia stringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- OptionsRate float64
- OPTIONS request rate limit (per second, per policy).
- OptionsRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- PrackRate float64
- PRACK request rate limit (per second, per policy).
- PrackRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- PreserveOverride string
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- Profile string
- Profile.
- ProvisionalInvite float64Expiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- PublishRate float64
- PUBLISH request rate limit (per second, per policy).
- PublishRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ReferRate float64
- REFER request rate limit (per second, per policy).
- ReferRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- RegisterContact stringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- RegisterRate float64
- REGISTER request rate limit (per second, per policy).
- RegisterRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- Rfc2543Branch string
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- Rtp string
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- SslAlgorithm string
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- SslAuth stringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- SslAuth stringServer 
- Authenticate the server's certificate with the peer/peergrp.
- SslClient stringCertificate 
- Name of Certificate to offer to server if requested.
- SslClient stringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- SslMax stringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- SslMin stringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- SslMode string
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- SslPfs string
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- SslSend stringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- SslServer stringCertificate 
- Name of Certificate return to the client in every SSL connection.
- Status string
- Enable/disable SIP. Valid values: disable,enable.
- StrictRegister string
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- SubscribeRate float64
- SUBSCRIBE request rate limit (per second, per policy).
- SubscribeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- UnknownHeader string
- Action for unknown SIP header. Valid values: pass,discard,respond.
- UpdateRate float64
- UPDATE request rate limit (per second, per policy).
- UpdateRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ackRate Double
- ACK request rate limit (per second, per policy).
- ackRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- blockAck String
- Enable/disable block ACK requests. Valid values: disable,enable.
- blockBye String
- Enable/disable block BYE requests. Valid values: disable,enable.
- blockCancel String
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- blockGeo StringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- blockInfo String
- Enable/disable block INFO requests. Valid values: disable,enable.
- blockInvite String
- Enable/disable block INVITE requests. Valid values: disable,enable.
- blockLong StringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- blockMessage String
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- blockNotify String
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- blockOptions String
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- blockPrack String
- Enable/disable block prack requests. Valid values: disable,enable.
- blockPublish String
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- blockRefer String
- Enable/disable block REFER requests. Valid values: disable,enable.
- blockRegister String
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- blockSubscribe String
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- blockUnknown String
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- blockUpdate String
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- byeRate Double
- BYE request rate limit (per second, per policy).
- byeRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- callId StringRegex 
- Validate PCRE regular expression for Call-Id header value.
- callKeepalive Double
- Continue tracking calls with no RTP for this many minutes.
- cancelRate Double
- CANCEL request rate limit (per second, per policy).
- cancelRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- contactFixup String
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- contentType StringRegex 
- Validate PCRE regular expression for Content-Type header value.
- hntRestrict StringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- hostedNat StringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- infoRate Double
- INFO request rate limit (per second, per policy).
- infoRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- inviteRate Double
- INVITE request rate limit (per second, per policy).
- inviteRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ipsRtp String
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- logCall StringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- logViolations String
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- malformedHeader StringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- malformedHeader StringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- malformedHeader StringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- malformedHeader StringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- malformedHeader StringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- malformedHeader StringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- malformedHeader StringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- malformedHeader StringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- malformedHeader StringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- malformedHeader StringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- malformedHeader StringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- malformedHeader StringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- malformedHeader StringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- malformedHeader StringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- malformedHeader StringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- malformedHeader StringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- malformedHeader StringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- malformedHeader StringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- malformedHeader StringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- malformedHeader StringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- malformedHeader StringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- malformedHeader StringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- malformedHeader StringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- malformedHeader StringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- malformedHeader StringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- malformedHeader StringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- malformedHeader StringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- malformedHeader StringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- malformedHeader StringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- malformedHeader StringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- malformedRequest StringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- maxBody DoubleLength 
- Maximum SIP message body length (0 meaning no limit).
- maxDialogs Double
- Maximum number of concurrent calls/dialogs (per policy).
- maxIdle DoubleDialogs 
- Maximum number established but idle dialogs to retain (per policy).
- maxLine DoubleLength 
- Maximum SIP header line length (78-4096).
- messageRate Double
- MESSAGE request rate limit (per second, per policy).
- messageRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- natPort StringRange 
- RTP NAT port range.
- natTrace String
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- noSdp StringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- notifyRate Double
- NOTIFY request rate limit (per second, per policy).
- notifyRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- objectVoip StringProfile Sip Id 
- an identifier for the resource.
- openContact StringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- openRecord StringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- openRegister StringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- openVia StringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- optionsRate Double
- OPTIONS request rate limit (per second, per policy).
- optionsRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- prackRate Double
- PRACK request rate limit (per second, per policy).
- prackRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- preserveOverride String
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- profile String
- Profile.
- provisionalInvite DoubleExpiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- publishRate Double
- PUBLISH request rate limit (per second, per policy).
- publishRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- referRate Double
- REFER request rate limit (per second, per policy).
- referRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- registerContact StringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- registerRate Double
- REGISTER request rate limit (per second, per policy).
- registerRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- rfc2543Branch String
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- rtp String
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sslAlgorithm String
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- sslAuth StringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- sslAuth StringServer 
- Authenticate the server's certificate with the peer/peergrp.
- sslClient StringCertificate 
- Name of Certificate to offer to server if requested.
- sslClient StringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- sslMax StringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMin StringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMode String
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- sslPfs String
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- sslSend StringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- sslServer StringCertificate 
- Name of Certificate return to the client in every SSL connection.
- status String
- Enable/disable SIP. Valid values: disable,enable.
- strictRegister String
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- subscribeRate Double
- SUBSCRIBE request rate limit (per second, per policy).
- subscribeRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- unknownHeader String
- Action for unknown SIP header. Valid values: pass,discard,respond.
- updateRate Double
- UPDATE request rate limit (per second, per policy).
- updateRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ackRate number
- ACK request rate limit (per second, per policy).
- ackRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- blockAck string
- Enable/disable block ACK requests. Valid values: disable,enable.
- blockBye string
- Enable/disable block BYE requests. Valid values: disable,enable.
- blockCancel string
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- blockGeo stringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- blockInfo string
- Enable/disable block INFO requests. Valid values: disable,enable.
- blockInvite string
- Enable/disable block INVITE requests. Valid values: disable,enable.
- blockLong stringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- blockMessage string
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- blockNotify string
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- blockOptions string
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- blockPrack string
- Enable/disable block prack requests. Valid values: disable,enable.
- blockPublish string
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- blockRefer string
- Enable/disable block REFER requests. Valid values: disable,enable.
- blockRegister string
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- blockSubscribe string
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- blockUnknown string
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- blockUpdate string
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- byeRate number
- BYE request rate limit (per second, per policy).
- byeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- callId stringRegex 
- Validate PCRE regular expression for Call-Id header value.
- callKeepalive number
- Continue tracking calls with no RTP for this many minutes.
- cancelRate number
- CANCEL request rate limit (per second, per policy).
- cancelRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- contactFixup string
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- contentType stringRegex 
- Validate PCRE regular expression for Content-Type header value.
- hntRestrict stringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- hostedNat stringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- infoRate number
- INFO request rate limit (per second, per policy).
- infoRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- inviteRate number
- INVITE request rate limit (per second, per policy).
- inviteRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ipsRtp string
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- logCall stringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- logViolations string
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- malformedHeader stringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- malformedHeader stringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- malformedHeader stringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- malformedHeader stringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- malformedHeader stringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- malformedHeader stringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- malformedHeader stringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- malformedHeader stringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- malformedHeader stringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- malformedHeader stringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- malformedHeader stringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- malformedHeader stringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- malformedHeader stringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- malformedHeader stringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- malformedHeader stringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- malformedHeader stringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- malformedHeader stringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- malformedHeader stringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- malformedHeader stringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- malformedHeader stringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- malformedHeader stringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- malformedHeader stringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- malformedHeader stringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- malformedHeader stringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- malformedHeader stringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- malformedHeader stringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- malformedHeader stringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- malformedHeader stringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- malformedHeader stringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- malformedHeader stringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- malformedRequest stringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- maxBody numberLength 
- Maximum SIP message body length (0 meaning no limit).
- maxDialogs number
- Maximum number of concurrent calls/dialogs (per policy).
- maxIdle numberDialogs 
- Maximum number established but idle dialogs to retain (per policy).
- maxLine numberLength 
- Maximum SIP header line length (78-4096).
- messageRate number
- MESSAGE request rate limit (per second, per policy).
- messageRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- natPort stringRange 
- RTP NAT port range.
- natTrace string
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- noSdp stringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- notifyRate number
- NOTIFY request rate limit (per second, per policy).
- notifyRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- objectVoip stringProfile Sip Id 
- an identifier for the resource.
- openContact stringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- openRecord stringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- openRegister stringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- openVia stringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- optionsRate number
- OPTIONS request rate limit (per second, per policy).
- optionsRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- prackRate number
- PRACK request rate limit (per second, per policy).
- prackRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- preserveOverride string
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- profile string
- Profile.
- provisionalInvite numberExpiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- publishRate number
- PUBLISH request rate limit (per second, per policy).
- publishRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- referRate number
- REFER request rate limit (per second, per policy).
- referRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- registerContact stringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- registerRate number
- REGISTER request rate limit (per second, per policy).
- registerRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- rfc2543Branch string
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- rtp string
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sslAlgorithm string
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- sslAuth stringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- sslAuth stringServer 
- Authenticate the server's certificate with the peer/peergrp.
- sslClient stringCertificate 
- Name of Certificate to offer to server if requested.
- sslClient stringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- sslMax stringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMin stringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMode string
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- sslPfs string
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- sslSend stringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- sslServer stringCertificate 
- Name of Certificate return to the client in every SSL connection.
- status string
- Enable/disable SIP. Valid values: disable,enable.
- strictRegister string
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- subscribeRate number
- SUBSCRIBE request rate limit (per second, per policy).
- subscribeRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- unknownHeader string
- Action for unknown SIP header. Valid values: pass,discard,respond.
- updateRate number
- UPDATE request rate limit (per second, per policy).
- updateRate stringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ack_rate float
- ACK request rate limit (per second, per policy).
- ack_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- adom str
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- block_ack str
- Enable/disable block ACK requests. Valid values: disable,enable.
- block_bye str
- Enable/disable block BYE requests. Valid values: disable,enable.
- block_cancel str
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- block_geo_ strred_ options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- block_info str
- Enable/disable block INFO requests. Valid values: disable,enable.
- block_invite str
- Enable/disable block INVITE requests. Valid values: disable,enable.
- block_long_ strlines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- block_message str
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- block_notify str
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- block_options str
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- block_prack str
- Enable/disable block prack requests. Valid values: disable,enable.
- block_publish str
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- block_refer str
- Enable/disable block REFER requests. Valid values: disable,enable.
- block_register str
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- block_subscribe str
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- block_unknown str
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- block_update str
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- bye_rate float
- BYE request rate limit (per second, per policy).
- bye_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- call_id_ strregex 
- Validate PCRE regular expression for Call-Id header value.
- call_keepalive float
- Continue tracking calls with no RTP for this many minutes.
- cancel_rate float
- CANCEL request rate limit (per second, per policy).
- cancel_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- contact_fixup str
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- content_type_ strregex 
- Validate PCRE regular expression for Content-Type header value.
- hnt_restrict_ strsource_ ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- hosted_nat_ strtraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- info_rate float
- INFO request rate limit (per second, per policy).
- info_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- invite_rate float
- INVITE request rate limit (per second, per policy).
- invite_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ips_rtp str
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- log_call_ strsummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- log_violations str
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- malformed_header_ strallow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- malformed_header_ strcall_ id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- malformed_header_ strcontact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- malformed_header_ strcontent_ length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- malformed_header_ strcontent_ type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- malformed_header_ strcseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- malformed_header_ strexpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- malformed_header_ strfrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- malformed_header_ strmax_ forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- malformed_header_ strno_ proxy_ require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- malformed_header_ strno_ require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- malformed_header_ strpasserted_ identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- malformed_header_ strrack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- malformed_header_ strrecord_ route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- malformed_header_ strroute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- malformed_header_ strrseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ a 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ b 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ c 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ i 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ k 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ m 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ o 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ r 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ s 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ t 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ v 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- malformed_header_ strsdp_ z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- malformed_header_ strto 
- Action for malformed To header. Valid values: pass,discard,respond.
- malformed_header_ strvia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- malformed_request_ strline 
- Action for malformed request line. Valid values: pass,discard,respond.
- max_body_ floatlength 
- Maximum SIP message body length (0 meaning no limit).
- max_dialogs float
- Maximum number of concurrent calls/dialogs (per policy).
- max_idle_ floatdialogs 
- Maximum number established but idle dialogs to retain (per policy).
- max_line_ floatlength 
- Maximum SIP header line length (78-4096).
- message_rate float
- MESSAGE request rate limit (per second, per policy).
- message_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- nat_port_ strrange 
- RTP NAT port range.
- nat_trace str
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- no_sdp_ strfixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- notify_rate float
- NOTIFY request rate limit (per second, per policy).
- notify_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- object_voip_ strprofile_ sip_ id 
- an identifier for the resource.
- open_contact_ strpinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- open_record_ strroute_ pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- open_register_ strpinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- open_via_ strpinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- options_rate float
- OPTIONS request rate limit (per second, per policy).
- options_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- prack_rate float
- PRACK request rate limit (per second, per policy).
- prack_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- preserve_override str
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- profile str
- Profile.
- provisional_invite_ floatexpiry_ time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- publish_rate float
- PUBLISH request rate limit (per second, per policy).
- publish_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- refer_rate float
- REFER request rate limit (per second, per policy).
- refer_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- register_contact_ strtrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- register_rate float
- REGISTER request rate limit (per second, per policy).
- register_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- rfc2543_branch str
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- rtp str
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- scopetype str
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- ssl_algorithm str
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- ssl_auth_ strclient 
- Require a client certificate and authenticate it with the peer/peergrp.
- ssl_auth_ strserver 
- Authenticate the server's certificate with the peer/peergrp.
- ssl_client_ strcertificate 
- Name of Certificate to offer to server if requested.
- ssl_client_ strrenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- ssl_max_ strversion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- ssl_min_ strversion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- ssl_mode str
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- ssl_pfs str
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- ssl_send_ strempty_ frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- ssl_server_ strcertificate 
- Name of Certificate return to the client in every SSL connection.
- status str
- Enable/disable SIP. Valid values: disable,enable.
- strict_register str
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- subscribe_rate float
- SUBSCRIBE request rate limit (per second, per policy).
- subscribe_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- unknown_header str
- Action for unknown SIP header. Valid values: pass,discard,respond.
- update_rate float
- UPDATE request rate limit (per second, per policy).
- update_rate_ strtrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ackRate Number
- ACK request rate limit (per second, per policy).
- ackRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- blockAck String
- Enable/disable block ACK requests. Valid values: disable,enable.
- blockBye String
- Enable/disable block BYE requests. Valid values: disable,enable.
- blockCancel String
- Enable/disable block CANCEL requests. Valid values: disable,enable.
- blockGeo StringRed Options 
- Enable/disable block OPTIONS requests, but OPTIONS requests still notify for redundancy. Valid values: disable,enable.
- blockInfo String
- Enable/disable block INFO requests. Valid values: disable,enable.
- blockInvite String
- Enable/disable block INVITE requests. Valid values: disable,enable.
- blockLong StringLines 
- Enable/disable block requests with headers exceeding max-line-length. Valid values: disable,enable.
- blockMessage String
- Enable/disable block MESSAGE requests. Valid values: disable,enable.
- blockNotify String
- Enable/disable block NOTIFY requests. Valid values: disable,enable.
- blockOptions String
- Enable/disable block OPTIONS requests and no OPTIONS as notifying message for redundancy either. Valid values: disable,enable.
- blockPrack String
- Enable/disable block prack requests. Valid values: disable,enable.
- blockPublish String
- Enable/disable block PUBLISH requests. Valid values: disable,enable.
- blockRefer String
- Enable/disable block REFER requests. Valid values: disable,enable.
- blockRegister String
- Enable/disable block REGISTER requests. Valid values: disable,enable.
- blockSubscribe String
- Enable/disable block SUBSCRIBE requests. Valid values: disable,enable.
- blockUnknown String
- Block unrecognized SIP requests (enabled by default). Valid values: disable,enable.
- blockUpdate String
- Enable/disable block UPDATE requests. Valid values: disable,enable.
- byeRate Number
- BYE request rate limit (per second, per policy).
- byeRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- callId StringRegex 
- Validate PCRE regular expression for Call-Id header value.
- callKeepalive Number
- Continue tracking calls with no RTP for this many minutes.
- cancelRate Number
- CANCEL request rate limit (per second, per policy).
- cancelRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- contactFixup String
- Fixup contact anyway even if contact's IP:port doesn't match session's IP:port. Valid values: disable,enable.
- contentType StringRegex 
- Validate PCRE regular expression for Content-Type header value.
- hntRestrict StringSource Ip 
- Enable/disable restrict RTP source IP to be the same as SIP source IP when HNT is enabled. Valid values: disable,enable.
- hostedNat StringTraversal 
- Hosted NAT Traversal (HNT). Valid values: disable,enable.
- infoRate Number
- INFO request rate limit (per second, per policy).
- infoRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- inviteRate Number
- INVITE request rate limit (per second, per policy).
- inviteRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- ipsRtp String
- Enable/disable allow IPS on RTP. Valid values: disable,enable.
- logCall StringSummary 
- Enable/disable logging of SIP call summary. Valid values: disable,enable.
- logViolations String
- Enable/disable logging of SIP violations. Valid values: disable,enable.
- malformedHeader StringAllow 
- Action for malformed Allow header. Valid values: pass,discard,respond.
- malformedHeader StringCall Id 
- Action for malformed Call-ID header. Valid values: pass,discard,respond.
- malformedHeader StringContact 
- Action for malformed Contact header. Valid values: pass,discard,respond.
- malformedHeader StringContent Length 
- Action for malformed Content-Length header. Valid values: pass,discard,respond.
- malformedHeader StringContent Type 
- Action for malformed Content-Type header. Valid values: pass,discard,respond.
- malformedHeader StringCseq 
- Action for malformed CSeq header. Valid values: pass,discard,respond.
- malformedHeader StringExpires 
- Action for malformed Expires header. Valid values: pass,discard,respond.
- malformedHeader StringFrom 
- Action for malformed From header. Valid values: pass,discard,respond.
- malformedHeader StringMax Forwards 
- Action for malformed Max-Forwards header. Valid values: pass,discard,respond.
- malformedHeader StringNo Proxy Require 
- Action for malformed SIP messages without Proxy-Require header. Valid values: pass,discard,respond.
- malformedHeader StringNo Require 
- Action for malformed SIP messages without Require header. Valid values: pass,discard,respond.
- malformedHeader StringPAsserted Identity 
- Action for malformed P-Asserted-Identity header. Valid values: pass,discard,respond.
- malformedHeader StringRack 
- Action for malformed RAck header. Valid values: pass,discard,respond.
- malformedHeader StringRecord Route 
- Action for malformed Record-Route header. Valid values: pass,discard,respond.
- malformedHeader StringRoute 
- Action for malformed Route header. Valid values: pass,discard,respond.
- malformedHeader StringRseq 
- Action for malformed RSeq header. Valid values: pass,discard,respond.
- malformedHeader StringSdp A 
- Action for malformed SDP a line. Valid values: pass,discard,respond.
- malformedHeader StringSdp B 
- Action for malformed SDP b line. Valid values: pass,discard,respond.
- malformedHeader StringSdp C 
- Action for malformed SDP c line. Valid values: pass,discard,respond.
- malformedHeader StringSdp I 
- Action for malformed SDP i line. Valid values: pass,discard,respond.
- malformedHeader StringSdp K 
- Action for malformed SDP k line. Valid values: pass,discard,respond.
- malformedHeader StringSdp M 
- Action for malformed SDP m line. Valid values: pass,discard,respond.
- malformedHeader StringSdp O 
- Action for malformed SDP o line. Valid values: pass,discard,respond.
- malformedHeader StringSdp R 
- Action for malformed SDP r line. Valid values: pass,discard,respond.
- malformedHeader StringSdp S 
- Action for malformed SDP s line. Valid values: pass,discard,respond.
- malformedHeader StringSdp T 
- Action for malformed SDP t line. Valid values: pass,discard,respond.
- malformedHeader StringSdp V 
- Action for malformed SDP v line. Valid values: pass,discard,respond.
- malformedHeader StringSdp Z 
- Action for malformed SDP z line. Valid values: pass,discard,respond.
- malformedHeader StringTo 
- Action for malformed To header. Valid values: pass,discard,respond.
- malformedHeader StringVia 
- Action for malformed VIA header. Valid values: pass,discard,respond.
- malformedRequest StringLine 
- Action for malformed request line. Valid values: pass,discard,respond.
- maxBody NumberLength 
- Maximum SIP message body length (0 meaning no limit).
- maxDialogs Number
- Maximum number of concurrent calls/dialogs (per policy).
- maxIdle NumberDialogs 
- Maximum number established but idle dialogs to retain (per policy).
- maxLine NumberLength 
- Maximum SIP header line length (78-4096).
- messageRate Number
- MESSAGE request rate limit (per second, per policy).
- messageRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- natPort StringRange 
- RTP NAT port range.
- natTrace String
- Enable/disable preservation of original IP in SDP i line. Valid values: disable,enable.
- noSdp StringFixup 
- Enable/disable no SDP fix-up. Valid values: disable,enable.
- notifyRate Number
- NOTIFY request rate limit (per second, per policy).
- notifyRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- objectVoip StringProfile Sip Id 
- an identifier for the resource.
- openContact StringPinhole 
- Enable/disable open pinhole for non-REGISTER Contact port. Valid values: disable,enable.
- openRecord StringRoute Pinhole 
- Enable/disable open pinhole for Record-Route port. Valid values: disable,enable.
- openRegister StringPinhole 
- Enable/disable open pinhole for REGISTER Contact port. Valid values: disable,enable.
- openVia StringPinhole 
- Enable/disable open pinhole for Via port. Valid values: disable,enable.
- optionsRate Number
- OPTIONS request rate limit (per second, per policy).
- optionsRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- prackRate Number
- PRACK request rate limit (per second, per policy).
- prackRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- preserveOverride String
- Override i line to preserve original IPS (default: append). Valid values: disable,enable.
- profile String
- Profile.
- provisionalInvite NumberExpiry Time 
- Expiry time for provisional INVITE (10 - 3600 sec).
- publishRate Number
- PUBLISH request rate limit (per second, per policy).
- publishRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- referRate Number
- REFER request rate limit (per second, per policy).
- referRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- registerContact StringTrace 
- Enable/disable trace original IP/port within the contact header of REGISTER requests. Valid values: disable,enable.
- registerRate Number
- REGISTER request rate limit (per second, per policy).
- registerRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- rfc2543Branch String
- Enable/disable support via branch compliant with RFC 2543. Valid values: disable,enable.
- rtp String
- Enable/disable create pinholes for RTP traffic to traverse firewall. Valid values: disable,enable.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- sslAlgorithm String
- Relative strength of encryption algorithms accepted in negotiation. Valid values: high,medium,low.
- sslAuth StringClient 
- Require a client certificate and authenticate it with the peer/peergrp.
- sslAuth StringServer 
- Authenticate the server's certificate with the peer/peergrp.
- sslClient StringCertificate 
- Name of Certificate to offer to server if requested.
- sslClient StringRenegotiation 
- Allow/block client renegotiation by server. Valid values: allow,deny,secure.
- sslMax StringVersion 
- Highest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMin StringVersion 
- Lowest SSL/TLS version to negotiate. Valid values: ssl-3.0,tls-1.0,tls-1.1,tls-1.2,tls-1.3.
- sslMode String
- SSL/TLS mode for encryption & decryption of traffic. Valid values: off,full.
- sslPfs String
- SSL Perfect Forward Secrecy. Valid values: require,deny,allow.
- sslSend StringEmpty Frags 
- Send empty fragments to avoid attack on CBC IV (SSL 3.0 & TLS 1.0 only). Valid values: disable,enable.
- sslServer StringCertificate 
- Name of Certificate return to the client in every SSL connection.
- status String
- Enable/disable SIP. Valid values: disable,enable.
- strictRegister String
- Enable/disable only allow the registrar to connect. Valid values: disable,enable.
- subscribeRate Number
- SUBSCRIBE request rate limit (per second, per policy).
- subscribeRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
- unknownHeader String
- Action for unknown SIP header. Valid values: pass,discard,respond.
- updateRate Number
- UPDATE request rate limit (per second, per policy).
- updateRate StringTrack 
- Track the packet protocol field. Valid values: none,src-ip,dest-ip.
Import
ObjectVoip ProfileSip 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/objectVoipProfileSip:ObjectVoipProfileSip labelname ObjectVoipProfileSip
$ 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 fortimanagerTerraform Provider.