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:
- DisplayName string
- EntryDisplay stringName 
- EntryName string
- SchemaId string
- TemplateName string
- ArpFlag string
- DestinationFrom string
- DestinationTo string
- EntryDescription string
- EtherType string
- IpProtocol string
- MatchOnly boolFragments 
- Name string
- SchemaTemplate stringFilter Entry Id 
- SourceFrom string
- SourceTo string
- Stateful bool
- TcpSession List<string>Rules 
- DisplayName string
- EntryDisplay stringName 
- EntryName string
- SchemaId string
- TemplateName string
- ArpFlag string
- DestinationFrom string
- DestinationTo string
- EntryDescription string
- EtherType string
- IpProtocol string
- MatchOnly boolFragments 
- Name string
- SchemaTemplate stringFilter Entry Id 
- SourceFrom string
- SourceTo string
- Stateful bool
- TcpSession []stringRules 
- displayName String
- entryDisplay StringName 
- entryName String
- schemaId String
- templateName String
- arpFlag String
- destinationFrom String
- destinationTo String
- entryDescription String
- etherType String
- ipProtocol String
- matchOnly BooleanFragments 
- name String
- schemaTemplate StringFilter Entry Id 
- sourceFrom String
- sourceTo String
- stateful Boolean
- tcpSession List<String>Rules 
- displayName string
- entryDisplay stringName 
- entryName string
- schemaId string
- templateName string
- arpFlag string
- destinationFrom string
- destinationTo string
- entryDescription string
- etherType string
- ipProtocol string
- matchOnly booleanFragments 
- name string
- schemaTemplate stringFilter Entry Id 
- sourceFrom string
- sourceTo string
- stateful boolean
- tcpSession 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 
- displayName String
- entryDisplay StringName 
- entryName String
- schemaId String
- templateName String
- arpFlag String
- destinationFrom String
- destinationTo String
- entryDescription String
- etherType String
- ipProtocol String
- matchOnly BooleanFragments 
- name String
- schemaTemplate StringFilter Entry Id 
- sourceFrom String
- sourceTo String
- stateful Boolean
- tcpSession 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) -> SchemaTemplateFilterEntryfunc 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.
- ArpFlag string
- DestinationFrom string
- DestinationTo string
- DisplayName string
- EntryDescription string
- EntryDisplay stringName 
- EntryName string
- EtherType string
- IpProtocol string
- MatchOnly boolFragments 
- Name string
- SchemaId string
- SchemaTemplate stringFilter Entry Id 
- SourceFrom string
- SourceTo string
- Stateful bool
- TcpSession List<string>Rules 
- TemplateName string
- ArpFlag string
- DestinationFrom string
- DestinationTo string
- DisplayName string
- EntryDescription string
- EntryDisplay stringName 
- EntryName string
- EtherType string
- IpProtocol string
- MatchOnly boolFragments 
- Name string
- SchemaId string
- SchemaTemplate stringFilter Entry Id 
- SourceFrom string
- SourceTo string
- Stateful bool
- TcpSession []stringRules 
- TemplateName string
- arpFlag String
- destinationFrom String
- destinationTo String
- displayName String
- entryDescription String
- entryDisplay StringName 
- entryName String
- etherType String
- ipProtocol String
- matchOnly BooleanFragments 
- name String
- schemaId String
- schemaTemplate StringFilter Entry Id 
- sourceFrom String
- sourceTo String
- stateful Boolean
- tcpSession List<String>Rules 
- templateName String
- arpFlag string
- destinationFrom string
- destinationTo string
- displayName string
- entryDescription string
- entryDisplay stringName 
- entryName string
- etherType string
- ipProtocol string
- matchOnly booleanFragments 
- name string
- schemaId string
- schemaTemplate stringFilter Entry Id 
- sourceFrom string
- sourceTo string
- stateful boolean
- tcpSession string[]Rules 
- templateName 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
- arpFlag String
- destinationFrom String
- destinationTo String
- displayName String
- entryDescription String
- entryDisplay StringName 
- entryName String
- etherType String
- ipProtocol String
- matchOnly BooleanFragments 
- name String
- schemaId String
- schemaTemplate StringFilter Entry Id 
- sourceFrom String
- sourceTo String
- stateful Boolean
- tcpSession List<String>Rules 
- templateName String
Package Details
- Repository
- mso ciscodevnet/terraform-provider-mso
- License
- Notes
- This Pulumi package is based on the msoTerraform Provider.