mso.SchemaTemplateFilterEntry
Explore with Pulumi AI
Create SchemaTemplateFilterEntry Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SchemaTemplateFilterEntry(name: string, args: SchemaTemplateFilterEntryArgs, opts?: CustomResourceOptions);
@overload
def SchemaTemplateFilterEntry(resource_name: str,
args: SchemaTemplateFilterEntryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SchemaTemplateFilterEntry(resource_name: str,
opts: Optional[ResourceOptions] = None,
entry_display_name: Optional[str] = None,
template_name: Optional[str] = None,
schema_id: Optional[str] = None,
display_name: Optional[str] = None,
entry_name: Optional[str] = None,
ip_protocol: Optional[str] = None,
entry_description: Optional[str] = None,
ether_type: Optional[str] = None,
arp_flag: Optional[str] = None,
match_only_fragments: Optional[bool] = None,
name: Optional[str] = None,
destination_to: Optional[str] = None,
schema_template_filter_entry_id: Optional[str] = None,
source_from: Optional[str] = None,
source_to: Optional[str] = None,
stateful: Optional[bool] = None,
tcp_session_rules: Optional[Sequence[str]] = None,
destination_from: Optional[str] = None)
func NewSchemaTemplateFilterEntry(ctx *Context, name string, args SchemaTemplateFilterEntryArgs, opts ...ResourceOption) (*SchemaTemplateFilterEntry, error)
public SchemaTemplateFilterEntry(string name, SchemaTemplateFilterEntryArgs args, CustomResourceOptions? opts = null)
public SchemaTemplateFilterEntry(String name, SchemaTemplateFilterEntryArgs args)
public SchemaTemplateFilterEntry(String name, SchemaTemplateFilterEntryArgs args, CustomResourceOptions options)
type: mso:SchemaTemplateFilterEntry
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 SchemaTemplateFilterEntryArgs
- 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 SchemaTemplateFilterEntryArgs
- 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 SchemaTemplateFilterEntryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SchemaTemplateFilterEntryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SchemaTemplateFilterEntryArgs
- 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 schemaTemplateFilterEntryResource = new Mso.SchemaTemplateFilterEntry("schemaTemplateFilterEntryResource", new()
{
EntryDisplayName = "string",
TemplateName = "string",
SchemaId = "string",
DisplayName = "string",
EntryName = "string",
IpProtocol = "string",
EntryDescription = "string",
EtherType = "string",
ArpFlag = "string",
MatchOnlyFragments = false,
Name = "string",
DestinationTo = "string",
SchemaTemplateFilterEntryId = "string",
SourceFrom = "string",
SourceTo = "string",
Stateful = false,
TcpSessionRules = new[]
{
"string",
},
DestinationFrom = "string",
});
example, err := mso.NewSchemaTemplateFilterEntry(ctx, "schemaTemplateFilterEntryResource", &mso.SchemaTemplateFilterEntryArgs{
EntryDisplayName: pulumi.String("string"),
TemplateName: pulumi.String("string"),
SchemaId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
EntryName: pulumi.String("string"),
IpProtocol: pulumi.String("string"),
EntryDescription: pulumi.String("string"),
EtherType: pulumi.String("string"),
ArpFlag: pulumi.String("string"),
MatchOnlyFragments: pulumi.Bool(false),
Name: pulumi.String("string"),
DestinationTo: pulumi.String("string"),
SchemaTemplateFilterEntryId: pulumi.String("string"),
SourceFrom: pulumi.String("string"),
SourceTo: pulumi.String("string"),
Stateful: pulumi.Bool(false),
TcpSessionRules: pulumi.StringArray{
pulumi.String("string"),
},
DestinationFrom: pulumi.String("string"),
})
var schemaTemplateFilterEntryResource = new SchemaTemplateFilterEntry("schemaTemplateFilterEntryResource", SchemaTemplateFilterEntryArgs.builder()
.entryDisplayName("string")
.templateName("string")
.schemaId("string")
.displayName("string")
.entryName("string")
.ipProtocol("string")
.entryDescription("string")
.etherType("string")
.arpFlag("string")
.matchOnlyFragments(false)
.name("string")
.destinationTo("string")
.schemaTemplateFilterEntryId("string")
.sourceFrom("string")
.sourceTo("string")
.stateful(false)
.tcpSessionRules("string")
.destinationFrom("string")
.build());
schema_template_filter_entry_resource = mso.SchemaTemplateFilterEntry("schemaTemplateFilterEntryResource",
entry_display_name="string",
template_name="string",
schema_id="string",
display_name="string",
entry_name="string",
ip_protocol="string",
entry_description="string",
ether_type="string",
arp_flag="string",
match_only_fragments=False,
name="string",
destination_to="string",
schema_template_filter_entry_id="string",
source_from="string",
source_to="string",
stateful=False,
tcp_session_rules=["string"],
destination_from="string")
const schemaTemplateFilterEntryResource = new mso.SchemaTemplateFilterEntry("schemaTemplateFilterEntryResource", {
entryDisplayName: "string",
templateName: "string",
schemaId: "string",
displayName: "string",
entryName: "string",
ipProtocol: "string",
entryDescription: "string",
etherType: "string",
arpFlag: "string",
matchOnlyFragments: false,
name: "string",
destinationTo: "string",
schemaTemplateFilterEntryId: "string",
sourceFrom: "string",
sourceTo: "string",
stateful: false,
tcpSessionRules: ["string"],
destinationFrom: "string",
});
type: mso:SchemaTemplateFilterEntry
properties:
arpFlag: string
destinationFrom: string
destinationTo: string
displayName: string
entryDescription: string
entryDisplayName: string
entryName: string
etherType: string
ipProtocol: string
matchOnlyFragments: false
name: string
schemaId: string
schemaTemplateFilterEntryId: string
sourceFrom: string
sourceTo: string
stateful: false
tcpSessionRules:
- string
templateName: string
SchemaTemplateFilterEntry 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 SchemaTemplateFilterEntry resource accepts the following input properties:
- Display
Name string - Entry
Display stringName - Entry
Name string - Schema
Id string - Template
Name string - Arp
Flag string - Destination
From string - Destination
To string - Entry
Description string - Ether
Type string - Ip
Protocol string - Match
Only boolFragments - Name string
- Schema
Template stringFilter Entry Id - Source
From string - Source
To string - Stateful bool
- Tcp
Session List<string>Rules
- Display
Name string - Entry
Display stringName - Entry
Name string - Schema
Id string - Template
Name string - Arp
Flag string - Destination
From string - Destination
To string - Entry
Description string - Ether
Type string - Ip
Protocol string - Match
Only boolFragments - Name string
- Schema
Template stringFilter Entry Id - Source
From string - Source
To string - Stateful bool
- Tcp
Session []stringRules
- display
Name String - entry
Display StringName - entry
Name String - schema
Id String - template
Name String - arp
Flag String - destination
From String - destination
To String - entry
Description String - ether
Type String - ip
Protocol String - match
Only BooleanFragments - name String
- schema
Template StringFilter Entry Id - source
From String - source
To String - stateful Boolean
- tcp
Session List<String>Rules
- display
Name string - entry
Display stringName - entry
Name string - schema
Id string - template
Name string - arp
Flag string - destination
From string - destination
To string - entry
Description string - ether
Type string - ip
Protocol string - match
Only booleanFragments - name string
- schema
Template stringFilter Entry Id - source
From string - source
To string - stateful boolean
- tcp
Session string[]Rules
- display_
name str - entry_
display_ strname - entry_
name str - schema_
id str - template_
name str - arp_
flag str - destination_
from str - destination_
to str - entry_
description str - ether_
type str - ip_
protocol str - match_
only_ boolfragments - name str
- schema_
template_ strfilter_ entry_ id - source_
from str - source_
to str - stateful bool
- tcp_
session_ Sequence[str]rules
- display
Name String - entry
Display StringName - entry
Name String - schema
Id String - template
Name String - arp
Flag String - destination
From String - destination
To String - entry
Description String - ether
Type String - ip
Protocol String - match
Only BooleanFragments - name String
- schema
Template StringFilter Entry Id - source
From String - source
To String - stateful Boolean
- tcp
Session List<String>Rules
Outputs
All input properties are implicitly available as output properties. Additionally, the SchemaTemplateFilterEntry 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 SchemaTemplateFilterEntry Resource
Get an existing SchemaTemplateFilterEntry 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?: SchemaTemplateFilterEntryState, opts?: CustomResourceOptions): SchemaTemplateFilterEntry
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arp_flag: Optional[str] = None,
destination_from: Optional[str] = None,
destination_to: Optional[str] = None,
display_name: Optional[str] = None,
entry_description: Optional[str] = None,
entry_display_name: Optional[str] = None,
entry_name: Optional[str] = None,
ether_type: Optional[str] = None,
ip_protocol: Optional[str] = None,
match_only_fragments: Optional[bool] = None,
name: Optional[str] = None,
schema_id: Optional[str] = None,
schema_template_filter_entry_id: Optional[str] = None,
source_from: Optional[str] = None,
source_to: Optional[str] = None,
stateful: Optional[bool] = None,
tcp_session_rules: Optional[Sequence[str]] = None,
template_name: Optional[str] = None) -> SchemaTemplateFilterEntry
func GetSchemaTemplateFilterEntry(ctx *Context, name string, id IDInput, state *SchemaTemplateFilterEntryState, opts ...ResourceOption) (*SchemaTemplateFilterEntry, error)
public static SchemaTemplateFilterEntry Get(string name, Input<string> id, SchemaTemplateFilterEntryState? state, CustomResourceOptions? opts = null)
public static SchemaTemplateFilterEntry get(String name, Output<String> id, SchemaTemplateFilterEntryState state, CustomResourceOptions options)
resources: _: type: mso:SchemaTemplateFilterEntry 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.
- Arp
Flag string - Destination
From string - Destination
To string - Display
Name string - Entry
Description string - Entry
Display stringName - Entry
Name string - Ether
Type string - Ip
Protocol string - Match
Only boolFragments - Name string
- Schema
Id string - Schema
Template stringFilter Entry Id - Source
From string - Source
To string - Stateful bool
- Tcp
Session List<string>Rules - Template
Name string
- Arp
Flag string - Destination
From string - Destination
To string - Display
Name string - Entry
Description string - Entry
Display stringName - Entry
Name string - Ether
Type string - Ip
Protocol string - Match
Only boolFragments - Name string
- Schema
Id string - Schema
Template stringFilter Entry Id - Source
From string - Source
To string - Stateful bool
- Tcp
Session []stringRules - Template
Name string
- arp
Flag String - destination
From String - destination
To String - display
Name String - entry
Description String - entry
Display StringName - entry
Name String - ether
Type String - ip
Protocol String - match
Only BooleanFragments - name String
- schema
Id String - schema
Template StringFilter Entry Id - source
From String - source
To String - stateful Boolean
- tcp
Session List<String>Rules - template
Name String
- arp
Flag string - destination
From string - destination
To string - display
Name string - entry
Description string - entry
Display stringName - entry
Name string - ether
Type string - ip
Protocol string - match
Only booleanFragments - name string
- schema
Id string - schema
Template stringFilter Entry Id - source
From string - source
To string - stateful boolean
- tcp
Session string[]Rules - template
Name string
- arp_
flag str - destination_
from str - destination_
to str - display_
name str - entry_
description str - entry_
display_ strname - entry_
name str - ether_
type str - ip_
protocol str - match_
only_ boolfragments - name str
- schema_
id str - schema_
template_ strfilter_ entry_ id - source_
from str - source_
to str - stateful bool
- tcp_
session_ Sequence[str]rules - template_
name str
- arp
Flag String - destination
From String - destination
To String - display
Name String - entry
Description String - entry
Display StringName - entry
Name String - ether
Type String - ip
Protocol String - match
Only BooleanFragments - name String
- schema
Id String - schema
Template StringFilter Entry Id - source
From String - source
To String - stateful Boolean
- tcp
Session List<String>Rules - template
Name String
Package Details
- Repository
- mso ciscodevnet/terraform-provider-mso
- License
- Notes
- This Pulumi package is based on the
mso
Terraform Provider.