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

mso logo
mso 1.4.0 published on Monday, Apr 14, 2025 by ciscodevnet

    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:

    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.
    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.
    mso logo
    mso 1.4.0 published on Monday, Apr 14, 2025 by ciscodevnet