1. Packages
  2. Mso Provider
  3. API Docs
  4. SchemaTemplateFilterEntry
mso 1.4.0 published on Monday, Apr 14, 2025 by ciscodevnet

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 This property is required. string
The unique name of the resource.
args This property is required. SchemaTemplateFilterEntryArgs
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. 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 This property is required. string
The unique name of the resource.
args This property is required. SchemaTemplateFilterEntryArgs
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. SchemaTemplateFilterEntryArgs
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. 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",
});
Copy
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"),
})
Copy
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());
Copy
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")
Copy
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",
});
Copy
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
Copy

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:

DisplayName This property is required. string
EntryDisplayName This property is required. string
EntryName This property is required. string
SchemaId This property is required. string
TemplateName This property is required. string
ArpFlag string
DestinationFrom string
DestinationTo string
EntryDescription string
EtherType string
IpProtocol string
MatchOnlyFragments bool
Name string
SchemaTemplateFilterEntryId string
SourceFrom string
SourceTo string
Stateful bool
TcpSessionRules List<string>
DisplayName This property is required. string
EntryDisplayName This property is required. string
EntryName This property is required. string
SchemaId This property is required. string
TemplateName This property is required. string
ArpFlag string
DestinationFrom string
DestinationTo string
EntryDescription string
EtherType string
IpProtocol string
MatchOnlyFragments bool
Name string
SchemaTemplateFilterEntryId string
SourceFrom string
SourceTo string
Stateful bool
TcpSessionRules []string
displayName This property is required. String
entryDisplayName This property is required. String
entryName This property is required. String
schemaId This property is required. String
templateName This property is required. String
arpFlag String
destinationFrom String
destinationTo String
entryDescription String
etherType String
ipProtocol String
matchOnlyFragments Boolean
name String
schemaTemplateFilterEntryId String
sourceFrom String
sourceTo String
stateful Boolean
tcpSessionRules List<String>
displayName This property is required. string
entryDisplayName This property is required. string
entryName This property is required. string
schemaId This property is required. string
templateName This property is required. string
arpFlag string
destinationFrom string
destinationTo string
entryDescription string
etherType string
ipProtocol string
matchOnlyFragments boolean
name string
schemaTemplateFilterEntryId string
sourceFrom string
sourceTo string
stateful boolean
tcpSessionRules string[]
display_name This property is required. str
entry_display_name This property is required. str
entry_name This property is required. str
schema_id This property is required. str
template_name This property is required. str
arp_flag str
destination_from str
destination_to str
entry_description str
ether_type str
ip_protocol str
match_only_fragments bool
name str
schema_template_filter_entry_id str
source_from str
source_to str
stateful bool
tcp_session_rules Sequence[str]
displayName This property is required. String
entryDisplayName This property is required. String
entryName This property is required. String
schemaId This property is required. String
templateName This property is required. String
arpFlag String
destinationFrom String
destinationTo String
entryDescription String
etherType String
ipProtocol String
matchOnlyFragments Boolean
name String
schemaTemplateFilterEntryId String
sourceFrom String
sourceTo String
stateful Boolean
tcpSessionRules List<String>

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 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:

Package Details

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