fortimanager.ObjectSctpfilterProfile
Explore with Pulumi AI
Configure SCTP filter profiles.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
ppid_filters
:fortimanager.ObjectSctpfilterProfilePpidfilters
Create ObjectSctpfilterProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSctpfilterProfile(name: string, args?: ObjectSctpfilterProfileArgs, opts?: CustomResourceOptions);
@overload
def ObjectSctpfilterProfile(resource_name: str,
args: Optional[ObjectSctpfilterProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSctpfilterProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
name: Optional[str] = None,
object_sctpfilter_profile_id: Optional[str] = None,
ppid_filters: Optional[Sequence[ObjectSctpfilterProfilePpidFilterArgs]] = None,
scopetype: Optional[str] = None)
func NewObjectSctpfilterProfile(ctx *Context, name string, args *ObjectSctpfilterProfileArgs, opts ...ResourceOption) (*ObjectSctpfilterProfile, error)
public ObjectSctpfilterProfile(string name, ObjectSctpfilterProfileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSctpfilterProfile(String name, ObjectSctpfilterProfileArgs args)
public ObjectSctpfilterProfile(String name, ObjectSctpfilterProfileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSctpfilterProfile
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 ObjectSctpfilterProfileArgs
- 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 ObjectSctpfilterProfileArgs
- 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 ObjectSctpfilterProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSctpfilterProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSctpfilterProfileArgs
- 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 objectSctpfilterProfileResource = new Fortimanager.ObjectSctpfilterProfile("objectSctpfilterProfileResource", new()
{
Adom = "string",
Comment = "string",
DynamicSortSubtable = "string",
Name = "string",
ObjectSctpfilterProfileId = "string",
PpidFilters = new[]
{
new Fortimanager.Inputs.ObjectSctpfilterProfilePpidFilterArgs
{
Action = "string",
Comment = "string",
Id = 0,
Ppid = 0,
},
},
Scopetype = "string",
});
example, err := fortimanager.NewObjectSctpfilterProfile(ctx, "objectSctpfilterProfileResource", &fortimanager.ObjectSctpfilterProfileArgs{
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectSctpfilterProfileId: pulumi.String("string"),
PpidFilters: .ObjectSctpfilterProfilePpidFilterArray{
&.ObjectSctpfilterProfilePpidFilterArgs{
Action: pulumi.String("string"),
Comment: pulumi.String("string"),
Id: pulumi.Float64(0),
Ppid: pulumi.Float64(0),
},
},
Scopetype: pulumi.String("string"),
})
var objectSctpfilterProfileResource = new ObjectSctpfilterProfile("objectSctpfilterProfileResource", ObjectSctpfilterProfileArgs.builder()
.adom("string")
.comment("string")
.dynamicSortSubtable("string")
.name("string")
.objectSctpfilterProfileId("string")
.ppidFilters(ObjectSctpfilterProfilePpidFilterArgs.builder()
.action("string")
.comment("string")
.id(0)
.ppid(0)
.build())
.scopetype("string")
.build());
object_sctpfilter_profile_resource = fortimanager.ObjectSctpfilterProfile("objectSctpfilterProfileResource",
adom="string",
comment="string",
dynamic_sort_subtable="string",
name="string",
object_sctpfilter_profile_id="string",
ppid_filters=[{
"action": "string",
"comment": "string",
"id": 0,
"ppid": 0,
}],
scopetype="string")
const objectSctpfilterProfileResource = new fortimanager.ObjectSctpfilterProfile("objectSctpfilterProfileResource", {
adom: "string",
comment: "string",
dynamicSortSubtable: "string",
name: "string",
objectSctpfilterProfileId: "string",
ppidFilters: [{
action: "string",
comment: "string",
id: 0,
ppid: 0,
}],
scopetype: "string",
});
type: fortimanager:ObjectSctpfilterProfile
properties:
adom: string
comment: string
dynamicSortSubtable: string
name: string
objectSctpfilterProfileId: string
ppidFilters:
- action: string
comment: string
id: 0
ppid: 0
scopetype: string
ObjectSctpfilterProfile 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 ObjectSctpfilterProfile resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- Profile name.
- Object
Sctpfilter stringProfile Id - an identifier for the resource with format {{name}}.
- Ppid
Filters List<ObjectSctpfilter Profile Ppid Filter> - Ppid-Filters. The structure of
ppid_filters
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- Profile name.
- Object
Sctpfilter stringProfile Id - an identifier for the resource with format {{name}}.
- Ppid
Filters []ObjectSctpfilter Profile Ppid Filter Args - Ppid-Filters. The structure of
ppid_filters
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- Profile name.
- object
Sctpfilter StringProfile Id - an identifier for the resource with format {{name}}.
- ppid
Filters List<ObjectSctpfilter Profile Ppid Filter> - Ppid-Filters. The structure of
ppid_filters
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name string
- Profile name.
- object
Sctpfilter stringProfile Id - an identifier for the resource with format {{name}}.
- ppid
Filters ObjectSctpfilter Profile Ppid Filter[] - Ppid-Filters. The structure of
ppid_filters
block is documented below. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comment.
- dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name str
- Profile name.
- object_
sctpfilter_ strprofile_ id - an identifier for the resource with format {{name}}.
- ppid_
filters Sequence[ObjectSctpfilter Profile Ppid Filter Args] - Ppid-Filters. The structure of
ppid_filters
block is documented below. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- Profile name.
- object
Sctpfilter StringProfile Id - an identifier for the resource with format {{name}}.
- ppid
Filters List<Property Map> - Ppid-Filters. The structure of
ppid_filters
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSctpfilterProfile 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 ObjectSctpfilterProfile Resource
Get an existing ObjectSctpfilterProfile 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?: ObjectSctpfilterProfileState, opts?: CustomResourceOptions): ObjectSctpfilterProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
name: Optional[str] = None,
object_sctpfilter_profile_id: Optional[str] = None,
ppid_filters: Optional[Sequence[ObjectSctpfilterProfilePpidFilterArgs]] = None,
scopetype: Optional[str] = None) -> ObjectSctpfilterProfile
func GetObjectSctpfilterProfile(ctx *Context, name string, id IDInput, state *ObjectSctpfilterProfileState, opts ...ResourceOption) (*ObjectSctpfilterProfile, error)
public static ObjectSctpfilterProfile Get(string name, Input<string> id, ObjectSctpfilterProfileState? state, CustomResourceOptions? opts = null)
public static ObjectSctpfilterProfile get(String name, Output<String> id, ObjectSctpfilterProfileState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSctpfilterProfile 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- Profile name.
- Object
Sctpfilter stringProfile Id - an identifier for the resource with format {{name}}.
- Ppid
Filters List<ObjectSctpfilter Profile Ppid Filter> - Ppid-Filters. The structure of
ppid_filters
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- Profile name.
- Object
Sctpfilter stringProfile Id - an identifier for the resource with format {{name}}.
- Ppid
Filters []ObjectSctpfilter Profile Ppid Filter Args - Ppid-Filters. The structure of
ppid_filters
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- Profile name.
- object
Sctpfilter StringProfile Id - an identifier for the resource with format {{name}}.
- ppid
Filters List<ObjectSctpfilter Profile Ppid Filter> - Ppid-Filters. The structure of
ppid_filters
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name string
- Profile name.
- object
Sctpfilter stringProfile Id - an identifier for the resource with format {{name}}.
- ppid
Filters ObjectSctpfilter Profile Ppid Filter[] - Ppid-Filters. The structure of
ppid_filters
block is documented below. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comment.
- dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name str
- Profile name.
- object_
sctpfilter_ strprofile_ id - an identifier for the resource with format {{name}}.
- ppid_
filters Sequence[ObjectSctpfilter Profile Ppid Filter Args] - Ppid-Filters. The structure of
ppid_filters
block is documented below. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- Profile name.
- object
Sctpfilter StringProfile Id - an identifier for the resource with format {{name}}.
- ppid
Filters List<Property Map> - Ppid-Filters. The structure of
ppid_filters
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Supporting Types
ObjectSctpfilterProfilePpidFilter, ObjectSctpfilterProfilePpidFilterArgs
Import
ObjectSctpFilter Profile can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSctpfilterProfile:ObjectSctpfilterProfile labelname {{name}}
$ 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.