1. Packages
  2. Avi Provider
  3. API Docs
  4. getWafapplicationsignatureprovider
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

avi.getWafapplicationsignatureprovider

Explore with Pulumi AI

avi logo
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

    <!–

    Copyright 2021 VMware, Inc.
    SPDX-License-Identifier: Mozilla Public License 2.0
    

    –>

    layout: “avi”

    page_title: “AVI: avi.Wafapplicationsignatureprovider” sidebar_current: “docs-avi-datasource-wafapplicationsignatureprovider” description: |- Get information of Avi WafApplicationSignatureProvider.

    avi.Wafapplicationsignatureprovider

    This data source is used to to get avi.Wafapplicationsignatureprovider objects.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const fooWafapplicationsignatureprovider = avi.getWafapplicationsignatureprovider({
        name: "foo",
        uuid: "wafapplicationsignatureprovider-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo_wafapplicationsignatureprovider = avi.get_wafapplicationsignatureprovider(name="foo",
        uuid="wafapplicationsignatureprovider-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avi.LookupWafapplicationsignatureprovider(ctx, &avi.LookupWafapplicationsignatureproviderArgs{
    			Name: pulumi.StringRef("foo"),
    			Uuid: pulumi.StringRef("wafapplicationsignatureprovider-f9cf6b3e-a411-436f-95e2-2982ba2b217b"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Avi = Pulumi.Avi;
    
    return await Deployment.RunAsync(() => 
    {
        var fooWafapplicationsignatureprovider = Avi.GetWafapplicationsignatureprovider.Invoke(new()
        {
            Name = "foo",
            Uuid = "wafapplicationsignatureprovider-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.AviFunctions;
    import com.pulumi.avi.inputs.GetWafapplicationsignatureproviderArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var fooWafapplicationsignatureprovider = AviFunctions.getWafapplicationsignatureprovider(GetWafapplicationsignatureproviderArgs.builder()
                .name("foo")
                .uuid("wafapplicationsignatureprovider-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
                .build());
    
        }
    }
    
    variables:
      fooWafapplicationsignatureprovider:
        fn::invoke:
          function: avi:getWafapplicationsignatureprovider
          arguments:
            name: foo
            uuid: wafapplicationsignatureprovider-f9cf6b3e-a411-436f-95e2-2982ba2b217b
    

    Using getWafapplicationsignatureprovider

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getWafapplicationsignatureprovider(args: GetWafapplicationsignatureproviderArgs, opts?: InvokeOptions): Promise<GetWafapplicationsignatureproviderResult>
    function getWafapplicationsignatureproviderOutput(args: GetWafapplicationsignatureproviderOutputArgs, opts?: InvokeOptions): Output<GetWafapplicationsignatureproviderResult>
    def get_wafapplicationsignatureprovider(id: Optional[str] = None,
                                            name: Optional[str] = None,
                                            tenant_ref: Optional[str] = None,
                                            uuid: Optional[str] = None,
                                            opts: Optional[InvokeOptions] = None) -> GetWafapplicationsignatureproviderResult
    def get_wafapplicationsignatureprovider_output(id: Optional[pulumi.Input[str]] = None,
                                            name: Optional[pulumi.Input[str]] = None,
                                            tenant_ref: Optional[pulumi.Input[str]] = None,
                                            uuid: Optional[pulumi.Input[str]] = None,
                                            opts: Optional[InvokeOptions] = None) -> Output[GetWafapplicationsignatureproviderResult]
    func LookupWafapplicationsignatureprovider(ctx *Context, args *LookupWafapplicationsignatureproviderArgs, opts ...InvokeOption) (*LookupWafapplicationsignatureproviderResult, error)
    func LookupWafapplicationsignatureproviderOutput(ctx *Context, args *LookupWafapplicationsignatureproviderOutputArgs, opts ...InvokeOption) LookupWafapplicationsignatureproviderResultOutput

    > Note: This function is named LookupWafapplicationsignatureprovider in the Go SDK.

    public static class GetWafapplicationsignatureprovider 
    {
        public static Task<GetWafapplicationsignatureproviderResult> InvokeAsync(GetWafapplicationsignatureproviderArgs args, InvokeOptions? opts = null)
        public static Output<GetWafapplicationsignatureproviderResult> Invoke(GetWafapplicationsignatureproviderInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetWafapplicationsignatureproviderResult> getWafapplicationsignatureprovider(GetWafapplicationsignatureproviderArgs args, InvokeOptions options)
    public static Output<GetWafapplicationsignatureproviderResult> getWafapplicationsignatureprovider(GetWafapplicationsignatureproviderArgs args, InvokeOptions options)
    
    fn::invoke:
      function: avi:index/getWafapplicationsignatureprovider:getWafapplicationsignatureprovider
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Search WafApplicationSignatureProvider by name.
    TenantRef string
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Search WafApplicationSignatureProvider by uuid.
    Id string
    Name string
    Search WafApplicationSignatureProvider by name.
    TenantRef string
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Search WafApplicationSignatureProvider by uuid.
    id String
    name String
    Search WafApplicationSignatureProvider by name.
    tenantRef String
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Search WafApplicationSignatureProvider by uuid.
    id string
    name string
    Search WafApplicationSignatureProvider by name.
    tenantRef string
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Search WafApplicationSignatureProvider by uuid.
    id str
    name str
    Search WafApplicationSignatureProvider by name.
    tenant_ref str
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Search WafApplicationSignatureProvider by uuid.
    id String
    name String
    Search WafApplicationSignatureProvider by name.
    tenantRef String
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Search WafApplicationSignatureProvider by uuid.

    getWafapplicationsignatureprovider Result

    The following output properties are available:

    AvailableApplications List<GetWafapplicationsignatureproviderAvailableApplication>
    Available application names and the ruleset version, when the rules for an application changed the last time. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<GetWafapplicationsignatureproviderConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    FilterRulesOnImport string
    If this is set to false, all provided rules are imported when updating this object. If this is set to true, only newer rules are considered for import. Newer rules are rules where the rule id is not in the range of 2,000,000 to 2,080,000 or where the rule has a tag with a cve from 2013 or newer. All other rules are ignored on rule import. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Id string
    Name string
    Name of application specific ruleset provider. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    RulesetVersion string
    Version of signatures. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ServiceStatuses List<GetWafapplicationsignatureproviderServiceStatus>
    If this object is managed by the application signatures update service, this field contain the status of this syncronization. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Signatures List<GetWafapplicationsignatureproviderSignature>
    The waf rules. Not visible in the api. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    AvailableApplications []GetWafapplicationsignatureproviderAvailableApplication
    Available application names and the ruleset version, when the rules for an application changed the last time. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []GetWafapplicationsignatureproviderConfigpbAttribute
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    FilterRulesOnImport string
    If this is set to false, all provided rules are imported when updating this object. If this is set to true, only newer rules are considered for import. Newer rules are rules where the rule id is not in the range of 2,000,000 to 2,080,000 or where the rule has a tag with a cve from 2013 or newer. All other rules are ignored on rule import. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Id string
    Name string
    Name of application specific ruleset provider. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    RulesetVersion string
    Version of signatures. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ServiceStatuses []GetWafapplicationsignatureproviderServiceStatus
    If this object is managed by the application signatures update service, this field contain the status of this syncronization. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Signatures []GetWafapplicationsignatureproviderSignature
    The waf rules. Not visible in the api. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    availableApplications List<GetWafapplicationsignatureproviderAvailableApplication>
    Available application names and the ruleset version, when the rules for an application changed the last time. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<GetWafapplicationsignatureproviderConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    filterRulesOnImport String
    If this is set to false, all provided rules are imported when updating this object. If this is set to true, only newer rules are considered for import. Newer rules are rules where the rule id is not in the range of 2,000,000 to 2,080,000 or where the rule has a tag with a cve from 2013 or newer. All other rules are ignored on rule import. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    id String
    name String
    Name of application specific ruleset provider. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    rulesetVersion String
    Version of signatures. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    serviceStatuses List<GetWafapplicationsignatureproviderServiceStatus>
    If this object is managed by the application signatures update service, this field contain the status of this syncronization. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    signatures List<GetWafapplicationsignatureproviderSignature>
    The waf rules. Not visible in the api. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    availableApplications GetWafapplicationsignatureproviderAvailableApplication[]
    Available application names and the ruleset version, when the rules for an application changed the last time. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes GetWafapplicationsignatureproviderConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    filterRulesOnImport string
    If this is set to false, all provided rules are imported when updating this object. If this is set to true, only newer rules are considered for import. Newer rules are rules where the rule id is not in the range of 2,000,000 to 2,080,000 or where the rule has a tag with a cve from 2013 or newer. All other rules are ignored on rule import. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    id string
    name string
    Name of application specific ruleset provider. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    rulesetVersion string
    Version of signatures. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    serviceStatuses GetWafapplicationsignatureproviderServiceStatus[]
    If this object is managed by the application signatures update service, this field contain the status of this syncronization. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    signatures GetWafapplicationsignatureproviderSignature[]
    The waf rules. Not visible in the api. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    available_applications Sequence[GetWafapplicationsignatureproviderAvailableApplication]
    Available application names and the ruleset version, when the rules for an application changed the last time. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[GetWafapplicationsignatureproviderConfigpbAttribute]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    filter_rules_on_import str
    If this is set to false, all provided rules are imported when updating this object. If this is set to true, only newer rules are considered for import. Newer rules are rules where the rule id is not in the range of 2,000,000 to 2,080,000 or where the rule has a tag with a cve from 2013 or newer. All other rules are ignored on rule import. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    id str
    name str
    Name of application specific ruleset provider. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ruleset_version str
    Version of signatures. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    service_statuses Sequence[GetWafapplicationsignatureproviderServiceStatus]
    If this object is managed by the application signatures update service, this field contain the status of this syncronization. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    signatures Sequence[GetWafapplicationsignatureproviderSignature]
    The waf rules. Not visible in the api. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    availableApplications List<Property Map>
    Available application names and the ruleset version, when the rules for an application changed the last time. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    filterRulesOnImport String
    If this is set to false, all provided rules are imported when updating this object. If this is set to true, only newer rules are considered for import. Newer rules are rules where the rule id is not in the range of 2,000,000 to 2,080,000 or where the rule has a tag with a cve from 2013 or newer. All other rules are ignored on rule import. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    id String
    name String
    Name of application specific ruleset provider. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    rulesetVersion String
    Version of signatures. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    serviceStatuses List<Property Map>
    If this object is managed by the application signatures update service, this field contain the status of this syncronization. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    signatures List<Property Map>
    The waf rules. Not visible in the api. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Supporting Types

    GetWafapplicationsignatureproviderAvailableApplication

    GetWafapplicationsignatureproviderConfigpbAttribute

    Version string
    Version string
    version String
    version string
    version String

    GetWafapplicationsignatureproviderServiceStatus

    GetWafapplicationsignatureproviderServiceStatusLastSuccessfulUpdateCheck

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    GetWafapplicationsignatureproviderServiceStatusUpstreamSyncTimestamp

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    GetWafapplicationsignatureproviderSignature

    Enable string
    ExcludeLists List<GetWafapplicationsignatureproviderSignatureExcludeList>
    Index string
    IsSensitive string
    Mode string
    Name string
    Search WafApplicationSignatureProvider by name.
    ParanoiaLevel string
    Phase string
    Rule string
    RuleId string
    Tags List<string>
    Enable string
    ExcludeLists []GetWafapplicationsignatureproviderSignatureExcludeList
    Index string
    IsSensitive string
    Mode string
    Name string
    Search WafApplicationSignatureProvider by name.
    ParanoiaLevel string
    Phase string
    Rule string
    RuleId string
    Tags []string
    enable String
    excludeLists List<GetWafapplicationsignatureproviderSignatureExcludeList>
    index String
    isSensitive String
    mode String
    name String
    Search WafApplicationSignatureProvider by name.
    paranoiaLevel String
    phase String
    rule String
    ruleId String
    tags List<String>
    enable string
    excludeLists GetWafapplicationsignatureproviderSignatureExcludeList[]
    index string
    isSensitive string
    mode string
    name string
    Search WafApplicationSignatureProvider by name.
    paranoiaLevel string
    phase string
    rule string
    ruleId string
    tags string[]
    enable str
    exclude_lists Sequence[GetWafapplicationsignatureproviderSignatureExcludeList]
    index str
    is_sensitive str
    mode str
    name str
    Search WafApplicationSignatureProvider by name.
    paranoia_level str
    phase str
    rule str
    rule_id str
    tags Sequence[str]
    enable String
    excludeLists List<Property Map>
    index String
    isSensitive String
    mode String
    name String
    Search WafApplicationSignatureProvider by name.
    paranoiaLevel String
    phase String
    rule String
    ruleId String
    tags List<String>

    GetWafapplicationsignatureproviderSignatureExcludeList

    GetWafapplicationsignatureproviderSignatureExcludeListClientSubnet

    GetWafapplicationsignatureproviderSignatureExcludeListClientSubnetIpAddr

    Addr string
    Type string
    Addr string
    Type string
    addr String
    type String
    addr string
    type string
    addr str
    type str
    addr String
    type String

    GetWafapplicationsignatureproviderSignatureExcludeListMatchElementCriteria

    MatchCase string
    MatchOp string
    MatchCase string
    MatchOp string
    matchCase String
    matchOp String
    matchCase string
    matchOp string
    matchCase String
    matchOp String

    GetWafapplicationsignatureproviderSignatureExcludeListUriMatchCriteria

    MatchCase string
    MatchOp string
    MatchCase string
    MatchOp string
    matchCase String
    matchOp String
    matchCase string
    matchOp string
    matchCase String
    matchOp String

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    avi logo
    avi 31.1.1 published on Monday, Apr 14, 2025 by vmware