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

fortimanager.ObjectFirewallGtpPolicy

Explore with Pulumi AI

Policy.

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

Create ObjectFirewallGtpPolicy Resource

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

Constructor syntax

new ObjectFirewallGtpPolicy(name: string, args: ObjectFirewallGtpPolicyArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallGtpPolicy(resource_name: str,
                            args: ObjectFirewallGtpPolicyInitArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def ObjectFirewallGtpPolicy(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            gtp: Optional[str] = None,
                            imsi_prefix: Optional[str] = None,
                            messages: Optional[Sequence[str]] = None,
                            apnmember: Optional[str] = None,
                            fosid: Optional[float] = None,
                            adom: Optional[str] = None,
                            imei: Optional[str] = None,
                            imsi: Optional[str] = None,
                            action: Optional[str] = None,
                            apn_sel_modes: Optional[Sequence[str]] = None,
                            msisdn: Optional[str] = None,
                            max_apn_restriction: Optional[str] = None,
                            msisdn_prefix: Optional[str] = None,
                            object_firewall_gtp_policy_id: Optional[str] = None,
                            rai: Optional[str] = None,
                            rat_types: Optional[Sequence[str]] = None,
                            scopetype: Optional[str] = None,
                            uli: Optional[str] = None)
func NewObjectFirewallGtpPolicy(ctx *Context, name string, args ObjectFirewallGtpPolicyArgs, opts ...ResourceOption) (*ObjectFirewallGtpPolicy, error)
public ObjectFirewallGtpPolicy(string name, ObjectFirewallGtpPolicyArgs args, CustomResourceOptions? opts = null)
public ObjectFirewallGtpPolicy(String name, ObjectFirewallGtpPolicyArgs args)
public ObjectFirewallGtpPolicy(String name, ObjectFirewallGtpPolicyArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallGtpPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ObjectFirewallGtpPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ObjectFirewallGtpPolicyInitArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectFirewallGtpPolicyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectFirewallGtpPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectFirewallGtpPolicyArgs
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 objectFirewallGtpPolicyResource = new Fortimanager.ObjectFirewallGtpPolicy("objectFirewallGtpPolicyResource", new()
{
    Gtp = "string",
    ImsiPrefix = "string",
    Messages = new[]
    {
        "string",
    },
    Apnmember = "string",
    Fosid = 0,
    Adom = "string",
    Imei = "string",
    Imsi = "string",
    Action = "string",
    ApnSelModes = new[]
    {
        "string",
    },
    Msisdn = "string",
    MaxApnRestriction = "string",
    MsisdnPrefix = "string",
    ObjectFirewallGtpPolicyId = "string",
    Rai = "string",
    RatTypes = new[]
    {
        "string",
    },
    Scopetype = "string",
    Uli = "string",
});
Copy
example, err := fortimanager.NewObjectFirewallGtpPolicy(ctx, "objectFirewallGtpPolicyResource", &fortimanager.ObjectFirewallGtpPolicyArgs{
Gtp: pulumi.String("string"),
ImsiPrefix: pulumi.String("string"),
Messages: pulumi.StringArray{
pulumi.String("string"),
},
Apnmember: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Adom: pulumi.String("string"),
Imei: pulumi.String("string"),
Imsi: pulumi.String("string"),
Action: pulumi.String("string"),
ApnSelModes: pulumi.StringArray{
pulumi.String("string"),
},
Msisdn: pulumi.String("string"),
MaxApnRestriction: pulumi.String("string"),
MsisdnPrefix: pulumi.String("string"),
ObjectFirewallGtpPolicyId: pulumi.String("string"),
Rai: pulumi.String("string"),
RatTypes: pulumi.StringArray{
pulumi.String("string"),
},
Scopetype: pulumi.String("string"),
Uli: pulumi.String("string"),
})
Copy
var objectFirewallGtpPolicyResource = new ObjectFirewallGtpPolicy("objectFirewallGtpPolicyResource", ObjectFirewallGtpPolicyArgs.builder()
    .gtp("string")
    .imsiPrefix("string")
    .messages("string")
    .apnmember("string")
    .fosid(0)
    .adom("string")
    .imei("string")
    .imsi("string")
    .action("string")
    .apnSelModes("string")
    .msisdn("string")
    .maxApnRestriction("string")
    .msisdnPrefix("string")
    .objectFirewallGtpPolicyId("string")
    .rai("string")
    .ratTypes("string")
    .scopetype("string")
    .uli("string")
    .build());
Copy
object_firewall_gtp_policy_resource = fortimanager.ObjectFirewallGtpPolicy("objectFirewallGtpPolicyResource",
    gtp="string",
    imsi_prefix="string",
    messages=["string"],
    apnmember="string",
    fosid=0,
    adom="string",
    imei="string",
    imsi="string",
    action="string",
    apn_sel_modes=["string"],
    msisdn="string",
    max_apn_restriction="string",
    msisdn_prefix="string",
    object_firewall_gtp_policy_id="string",
    rai="string",
    rat_types=["string"],
    scopetype="string",
    uli="string")
Copy
const objectFirewallGtpPolicyResource = new fortimanager.ObjectFirewallGtpPolicy("objectFirewallGtpPolicyResource", {
    gtp: "string",
    imsiPrefix: "string",
    messages: ["string"],
    apnmember: "string",
    fosid: 0,
    adom: "string",
    imei: "string",
    imsi: "string",
    action: "string",
    apnSelModes: ["string"],
    msisdn: "string",
    maxApnRestriction: "string",
    msisdnPrefix: "string",
    objectFirewallGtpPolicyId: "string",
    rai: "string",
    ratTypes: ["string"],
    scopetype: "string",
    uli: "string",
});
Copy
type: fortimanager:ObjectFirewallGtpPolicy
properties:
    action: string
    adom: string
    apnSelModes:
        - string
    apnmember: string
    fosid: 0
    gtp: string
    imei: string
    imsi: string
    imsiPrefix: string
    maxApnRestriction: string
    messages:
        - string
    msisdn: string
    msisdnPrefix: string
    objectFirewallGtpPolicyId: string
    rai: string
    ratTypes:
        - string
    scopetype: string
    uli: string
Copy

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

Gtp This property is required. string
Gtp.
Action string
Action. Valid values: allow, deny.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
ApnSelModes List<string>
APN selection mode. Valid values: ms, net, vrf.
Apnmember string
APN member.
Fosid double
ID.
Imei string
IMEI pattern.
Imsi string
IMSI prefix.
ImsiPrefix string
IMSI prefix.
MaxApnRestriction string
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
Messages List<string>
GTP messages. Valid values: create-req, create-res, update-req, update-res.
Msisdn string
MSISDN prefix.
MsisdnPrefix string
MSISDN prefix.
ObjectFirewallGtpPolicyId string
an identifier for the resource with format {{fosid}}.
Rai string
RAI pattern.
RatTypes List<string>
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Uli string
ULI pattern.
Gtp This property is required. string
Gtp.
Action string
Action. Valid values: allow, deny.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
ApnSelModes []string
APN selection mode. Valid values: ms, net, vrf.
Apnmember string
APN member.
Fosid float64
ID.
Imei string
IMEI pattern.
Imsi string
IMSI prefix.
ImsiPrefix string
IMSI prefix.
MaxApnRestriction string
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
Messages []string
GTP messages. Valid values: create-req, create-res, update-req, update-res.
Msisdn string
MSISDN prefix.
MsisdnPrefix string
MSISDN prefix.
ObjectFirewallGtpPolicyId string
an identifier for the resource with format {{fosid}}.
Rai string
RAI pattern.
RatTypes []string
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Uli string
ULI pattern.
gtp This property is required. String
Gtp.
action String
Action. Valid values: allow, deny.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
apnSelModes List<String>
APN selection mode. Valid values: ms, net, vrf.
apnmember String
APN member.
fosid Double
ID.
imei String
IMEI pattern.
imsi String
IMSI prefix.
imsiPrefix String
IMSI prefix.
maxApnRestriction String
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
messages List<String>
GTP messages. Valid values: create-req, create-res, update-req, update-res.
msisdn String
MSISDN prefix.
msisdnPrefix String
MSISDN prefix.
objectFirewallGtpPolicyId String
an identifier for the resource with format {{fosid}}.
rai String
RAI pattern.
ratTypes List<String>
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uli String
ULI pattern.
gtp This property is required. string
Gtp.
action string
Action. Valid values: allow, deny.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
apnSelModes string[]
APN selection mode. Valid values: ms, net, vrf.
apnmember string
APN member.
fosid number
ID.
imei string
IMEI pattern.
imsi string
IMSI prefix.
imsiPrefix string
IMSI prefix.
maxApnRestriction string
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
messages string[]
GTP messages. Valid values: create-req, create-res, update-req, update-res.
msisdn string
MSISDN prefix.
msisdnPrefix string
MSISDN prefix.
objectFirewallGtpPolicyId string
an identifier for the resource with format {{fosid}}.
rai string
RAI pattern.
ratTypes string[]
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uli string
ULI pattern.
gtp This property is required. str
Gtp.
action str
Action. Valid values: allow, deny.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
apn_sel_modes Sequence[str]
APN selection mode. Valid values: ms, net, vrf.
apnmember str
APN member.
fosid float
ID.
imei str
IMEI pattern.
imsi str
IMSI prefix.
imsi_prefix str
IMSI prefix.
max_apn_restriction str
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
messages Sequence[str]
GTP messages. Valid values: create-req, create-res, update-req, update-res.
msisdn str
MSISDN prefix.
msisdn_prefix str
MSISDN prefix.
object_firewall_gtp_policy_id str
an identifier for the resource with format {{fosid}}.
rai str
RAI pattern.
rat_types Sequence[str]
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uli str
ULI pattern.
gtp This property is required. String
Gtp.
action String
Action. Valid values: allow, deny.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
apnSelModes List<String>
APN selection mode. Valid values: ms, net, vrf.
apnmember String
APN member.
fosid Number
ID.
imei String
IMEI pattern.
imsi String
IMSI prefix.
imsiPrefix String
IMSI prefix.
maxApnRestriction String
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
messages List<String>
GTP messages. Valid values: create-req, create-res, update-req, update-res.
msisdn String
MSISDN prefix.
msisdnPrefix String
MSISDN prefix.
objectFirewallGtpPolicyId String
an identifier for the resource with format {{fosid}}.
rai String
RAI pattern.
ratTypes List<String>
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uli String
ULI pattern.

Outputs

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

Get an existing ObjectFirewallGtpPolicy 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?: ObjectFirewallGtpPolicyState, opts?: CustomResourceOptions): ObjectFirewallGtpPolicy
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        action: Optional[str] = None,
        adom: Optional[str] = None,
        apn_sel_modes: Optional[Sequence[str]] = None,
        apnmember: Optional[str] = None,
        fosid: Optional[float] = None,
        gtp: Optional[str] = None,
        imei: Optional[str] = None,
        imsi: Optional[str] = None,
        imsi_prefix: Optional[str] = None,
        max_apn_restriction: Optional[str] = None,
        messages: Optional[Sequence[str]] = None,
        msisdn: Optional[str] = None,
        msisdn_prefix: Optional[str] = None,
        object_firewall_gtp_policy_id: Optional[str] = None,
        rai: Optional[str] = None,
        rat_types: Optional[Sequence[str]] = None,
        scopetype: Optional[str] = None,
        uli: Optional[str] = None) -> ObjectFirewallGtpPolicy
func GetObjectFirewallGtpPolicy(ctx *Context, name string, id IDInput, state *ObjectFirewallGtpPolicyState, opts ...ResourceOption) (*ObjectFirewallGtpPolicy, error)
public static ObjectFirewallGtpPolicy Get(string name, Input<string> id, ObjectFirewallGtpPolicyState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallGtpPolicy get(String name, Output<String> id, ObjectFirewallGtpPolicyState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectFirewallGtpPolicy    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Action string
Action. Valid values: allow, deny.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
ApnSelModes List<string>
APN selection mode. Valid values: ms, net, vrf.
Apnmember string
APN member.
Fosid double
ID.
Gtp string
Gtp.
Imei string
IMEI pattern.
Imsi string
IMSI prefix.
ImsiPrefix string
IMSI prefix.
MaxApnRestriction string
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
Messages List<string>
GTP messages. Valid values: create-req, create-res, update-req, update-res.
Msisdn string
MSISDN prefix.
MsisdnPrefix string
MSISDN prefix.
ObjectFirewallGtpPolicyId string
an identifier for the resource with format {{fosid}}.
Rai string
RAI pattern.
RatTypes List<string>
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Uli string
ULI pattern.
Action string
Action. Valid values: allow, deny.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
ApnSelModes []string
APN selection mode. Valid values: ms, net, vrf.
Apnmember string
APN member.
Fosid float64
ID.
Gtp string
Gtp.
Imei string
IMEI pattern.
Imsi string
IMSI prefix.
ImsiPrefix string
IMSI prefix.
MaxApnRestriction string
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
Messages []string
GTP messages. Valid values: create-req, create-res, update-req, update-res.
Msisdn string
MSISDN prefix.
MsisdnPrefix string
MSISDN prefix.
ObjectFirewallGtpPolicyId string
an identifier for the resource with format {{fosid}}.
Rai string
RAI pattern.
RatTypes []string
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Uli string
ULI pattern.
action String
Action. Valid values: allow, deny.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
apnSelModes List<String>
APN selection mode. Valid values: ms, net, vrf.
apnmember String
APN member.
fosid Double
ID.
gtp String
Gtp.
imei String
IMEI pattern.
imsi String
IMSI prefix.
imsiPrefix String
IMSI prefix.
maxApnRestriction String
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
messages List<String>
GTP messages. Valid values: create-req, create-res, update-req, update-res.
msisdn String
MSISDN prefix.
msisdnPrefix String
MSISDN prefix.
objectFirewallGtpPolicyId String
an identifier for the resource with format {{fosid}}.
rai String
RAI pattern.
ratTypes List<String>
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uli String
ULI pattern.
action string
Action. Valid values: allow, deny.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
apnSelModes string[]
APN selection mode. Valid values: ms, net, vrf.
apnmember string
APN member.
fosid number
ID.
gtp string
Gtp.
imei string
IMEI pattern.
imsi string
IMSI prefix.
imsiPrefix string
IMSI prefix.
maxApnRestriction string
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
messages string[]
GTP messages. Valid values: create-req, create-res, update-req, update-res.
msisdn string
MSISDN prefix.
msisdnPrefix string
MSISDN prefix.
objectFirewallGtpPolicyId string
an identifier for the resource with format {{fosid}}.
rai string
RAI pattern.
ratTypes string[]
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uli string
ULI pattern.
action str
Action. Valid values: allow, deny.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
apn_sel_modes Sequence[str]
APN selection mode. Valid values: ms, net, vrf.
apnmember str
APN member.
fosid float
ID.
gtp str
Gtp.
imei str
IMEI pattern.
imsi str
IMSI prefix.
imsi_prefix str
IMSI prefix.
max_apn_restriction str
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
messages Sequence[str]
GTP messages. Valid values: create-req, create-res, update-req, update-res.
msisdn str
MSISDN prefix.
msisdn_prefix str
MSISDN prefix.
object_firewall_gtp_policy_id str
an identifier for the resource with format {{fosid}}.
rai str
RAI pattern.
rat_types Sequence[str]
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uli str
ULI pattern.
action String
Action. Valid values: allow, deny.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
apnSelModes List<String>
APN selection mode. Valid values: ms, net, vrf.
apnmember String
APN member.
fosid Number
ID.
gtp String
Gtp.
imei String
IMEI pattern.
imsi String
IMSI prefix.
imsiPrefix String
IMSI prefix.
maxApnRestriction String
Maximum APN restriction value. Valid values: all, public-1, public-2, private-1, private-2.
messages List<String>
GTP messages. Valid values: create-req, create-res, update-req, update-res.
msisdn String
MSISDN prefix.
msisdnPrefix String
MSISDN prefix.
objectFirewallGtpPolicyId String
an identifier for the resource with format {{fosid}}.
rai String
RAI pattern.
ratTypes List<String>
RAT Type. Valid values: any, utran, geran, wlan, gan, hspa, eutran, virtual, nbiot.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
uli String
ULI pattern.

Import

ObjectFirewall GtpPolicy can be imported using any of these accepted formats:

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectFirewallGtpPolicy:ObjectFirewallGtpPolicy labelname {{fosid}}
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
fortimanager fortinetdev/terraform-provider-fortimanager
License
Notes
This Pulumi package is based on the fortimanager Terraform Provider.