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

avi.Ipreputationdb

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.Ipreputationdb” sidebar_current: “docs-avi-resource-ipreputationdb” description: |- Creates and manages Avi IPReputationDB.

    avi.Ipreputationdb

    The IPReputationDB resource allows the creation and management of Avi IPReputationDB

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Ipreputationdb("foo", {tenantRef: "/api/tenant/?name=admin"});
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Ipreputationdb("foo", tenant_ref="/api/tenant/?name=admin")
    
    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.NewIpreputationdb(ctx, "foo", &avi.IpreputationdbArgs{
    			TenantRef: pulumi.String("/api/tenant/?name=admin"),
    		})
    		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 foo = new Avi.Ipreputationdb("foo", new()
        {
            TenantRef = "/api/tenant/?name=admin",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.Ipreputationdb;
    import com.pulumi.avi.IpreputationdbArgs;
    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) {
            var foo = new Ipreputationdb("foo", IpreputationdbArgs.builder()
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Ipreputationdb
        properties:
          tenantRef: /api/tenant/?name=admin
    

    Create Ipreputationdb Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Ipreputationdb(name: string, args: IpreputationdbArgs, opts?: CustomResourceOptions);
    @overload
    def Ipreputationdb(resource_name: str,
                       args: IpreputationdbArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def Ipreputationdb(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       vendor: Optional[str] = None,
                       ipreputationdb_id: Optional[str] = None,
                       name: Optional[str] = None,
                       description: Optional[str] = None,
                       incremental_file_refs: Optional[Sequence[str]] = None,
                       incremental_file_v6_refs: Optional[Sequence[str]] = None,
                       base_file_refs: Optional[Sequence[str]] = None,
                       markers: Optional[Sequence[IpreputationdbMarkerArgs]] = None,
                       configpb_attributes: Optional[Sequence[IpreputationdbConfigpbAttributeArgs]] = None,
                       service_statuses: Optional[Sequence[IpreputationdbServiceStatusArgs]] = None,
                       tenant_ref: Optional[str] = None,
                       uuid: Optional[str] = None,
                       v6_version: Optional[str] = None,
                       base_file_v6_refs: Optional[Sequence[str]] = None,
                       version: Optional[str] = None)
    func NewIpreputationdb(ctx *Context, name string, args IpreputationdbArgs, opts ...ResourceOption) (*Ipreputationdb, error)
    public Ipreputationdb(string name, IpreputationdbArgs args, CustomResourceOptions? opts = null)
    public Ipreputationdb(String name, IpreputationdbArgs args)
    public Ipreputationdb(String name, IpreputationdbArgs args, CustomResourceOptions options)
    
    type: avi:Ipreputationdb
    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 IpreputationdbArgs
    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 IpreputationdbArgs
    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 IpreputationdbArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IpreputationdbArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IpreputationdbArgs
    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 ipreputationdbResource = new Avi.Ipreputationdb("ipreputationdbResource", new()
    {
        Vendor = "string",
        IpreputationdbId = "string",
        Name = "string",
        Description = "string",
        IncrementalFileRefs = new[]
        {
            "string",
        },
        IncrementalFileV6Refs = new[]
        {
            "string",
        },
        BaseFileRefs = new[]
        {
            "string",
        },
        Markers = new[]
        {
            new Avi.Inputs.IpreputationdbMarkerArgs
            {
                Key = "string",
                Values = new[]
                {
                    "string",
                },
            },
        },
        ConfigpbAttributes = new[]
        {
            new Avi.Inputs.IpreputationdbConfigpbAttributeArgs
            {
                Version = "string",
            },
        },
        ServiceStatuses = new[]
        {
            new Avi.Inputs.IpreputationdbServiceStatusArgs
            {
                Error = "string",
                LastSuccessfulUpdateChecks = new[]
                {
                    new Avi.Inputs.IpreputationdbServiceStatusLastSuccessfulUpdateCheckArgs
                    {
                        Secs = "string",
                        Usecs = "string",
                    },
                },
            },
        },
        TenantRef = "string",
        Uuid = "string",
        V6Version = "string",
        BaseFileV6Refs = new[]
        {
            "string",
        },
        Version = "string",
    });
    
    example, err := avi.NewIpreputationdb(ctx, "ipreputationdbResource", &avi.IpreputationdbArgs{
    	Vendor:           pulumi.String("string"),
    	IpreputationdbId: pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	Description:      pulumi.String("string"),
    	IncrementalFileRefs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	IncrementalFileV6Refs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	BaseFileRefs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Markers: avi.IpreputationdbMarkerArray{
    		&avi.IpreputationdbMarkerArgs{
    			Key: pulumi.String("string"),
    			Values: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	ConfigpbAttributes: avi.IpreputationdbConfigpbAttributeArray{
    		&avi.IpreputationdbConfigpbAttributeArgs{
    			Version: pulumi.String("string"),
    		},
    	},
    	ServiceStatuses: avi.IpreputationdbServiceStatusArray{
    		&avi.IpreputationdbServiceStatusArgs{
    			Error: pulumi.String("string"),
    			LastSuccessfulUpdateChecks: avi.IpreputationdbServiceStatusLastSuccessfulUpdateCheckArray{
    				&avi.IpreputationdbServiceStatusLastSuccessfulUpdateCheckArgs{
    					Secs:  pulumi.String("string"),
    					Usecs: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	TenantRef: pulumi.String("string"),
    	Uuid:      pulumi.String("string"),
    	V6Version: pulumi.String("string"),
    	BaseFileV6Refs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Version: pulumi.String("string"),
    })
    
    var ipreputationdbResource = new Ipreputationdb("ipreputationdbResource", IpreputationdbArgs.builder()
        .vendor("string")
        .ipreputationdbId("string")
        .name("string")
        .description("string")
        .incrementalFileRefs("string")
        .incrementalFileV6Refs("string")
        .baseFileRefs("string")
        .markers(IpreputationdbMarkerArgs.builder()
            .key("string")
            .values("string")
            .build())
        .configpbAttributes(IpreputationdbConfigpbAttributeArgs.builder()
            .version("string")
            .build())
        .serviceStatuses(IpreputationdbServiceStatusArgs.builder()
            .error("string")
            .lastSuccessfulUpdateChecks(IpreputationdbServiceStatusLastSuccessfulUpdateCheckArgs.builder()
                .secs("string")
                .usecs("string")
                .build())
            .build())
        .tenantRef("string")
        .uuid("string")
        .v6Version("string")
        .baseFileV6Refs("string")
        .version("string")
        .build());
    
    ipreputationdb_resource = avi.Ipreputationdb("ipreputationdbResource",
        vendor="string",
        ipreputationdb_id="string",
        name="string",
        description="string",
        incremental_file_refs=["string"],
        incremental_file_v6_refs=["string"],
        base_file_refs=["string"],
        markers=[{
            "key": "string",
            "values": ["string"],
        }],
        configpb_attributes=[{
            "version": "string",
        }],
        service_statuses=[{
            "error": "string",
            "last_successful_update_checks": [{
                "secs": "string",
                "usecs": "string",
            }],
        }],
        tenant_ref="string",
        uuid="string",
        v6_version="string",
        base_file_v6_refs=["string"],
        version="string")
    
    const ipreputationdbResource = new avi.Ipreputationdb("ipreputationdbResource", {
        vendor: "string",
        ipreputationdbId: "string",
        name: "string",
        description: "string",
        incrementalFileRefs: ["string"],
        incrementalFileV6Refs: ["string"],
        baseFileRefs: ["string"],
        markers: [{
            key: "string",
            values: ["string"],
        }],
        configpbAttributes: [{
            version: "string",
        }],
        serviceStatuses: [{
            error: "string",
            lastSuccessfulUpdateChecks: [{
                secs: "string",
                usecs: "string",
            }],
        }],
        tenantRef: "string",
        uuid: "string",
        v6Version: "string",
        baseFileV6Refs: ["string"],
        version: "string",
    });
    
    type: avi:Ipreputationdb
    properties:
        baseFileRefs:
            - string
        baseFileV6Refs:
            - string
        configpbAttributes:
            - version: string
        description: string
        incrementalFileRefs:
            - string
        incrementalFileV6Refs:
            - string
        ipreputationdbId: string
        markers:
            - key: string
              values:
                - string
        name: string
        serviceStatuses:
            - error: string
              lastSuccessfulUpdateChecks:
                - secs: string
                  usecs: string
        tenantRef: string
        uuid: string
        v6Version: string
        vendor: string
        version: string
    

    Ipreputationdb 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 Ipreputationdb resource accepts the following input properties:

    Vendor string
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    BaseFileRefs List<string>
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    BaseFileV6Refs List<string>
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigpbAttributes List<IpreputationdbConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IncrementalFileRefs List<string>
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IncrementalFileV6Refs List<string>
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    IpreputationdbId string
    Markers List<IpreputationdbMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ServiceStatuses List<IpreputationdbServiceStatus>
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    V6Version string
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Version string
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Vendor string
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    BaseFileRefs []string
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    BaseFileV6Refs []string
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigpbAttributes []IpreputationdbConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IncrementalFileRefs []string
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IncrementalFileV6Refs []string
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    IpreputationdbId string
    Markers []IpreputationdbMarkerArgs
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ServiceStatuses []IpreputationdbServiceStatusArgs
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    V6Version string
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Version string
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    vendor String
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileRefs List<String>
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileV6Refs List<String>
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes List<IpreputationdbConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileRefs List<String>
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileV6Refs List<String>
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ipreputationdbId String
    markers List<IpreputationdbMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    serviceStatuses List<IpreputationdbServiceStatus>
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    v6Version String
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    version String
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    vendor string
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileRefs string[]
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileV6Refs string[]
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes IpreputationdbConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description string
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileRefs string[]
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileV6Refs string[]
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ipreputationdbId string
    markers IpreputationdbMarker[]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    serviceStatuses IpreputationdbServiceStatus[]
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    v6Version string
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    version string
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    vendor str
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    base_file_refs Sequence[str]
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    base_file_v6_refs Sequence[str]
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpb_attributes Sequence[IpreputationdbConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description str
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incremental_file_refs Sequence[str]
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incremental_file_v6_refs Sequence[str]
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ipreputationdb_id str
    markers Sequence[IpreputationdbMarkerArgs]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    service_statuses Sequence[IpreputationdbServiceStatusArgs]
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    v6_version str
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    version str
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    vendor String
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileRefs List<String>
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileV6Refs List<String>
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, 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.
    description String
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileRefs List<String>
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileV6Refs List<String>
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ipreputationdbId String
    markers List<Property Map>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Ip reputation db name. 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 ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    v6Version String
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    version String
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Ipreputationdb 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 Ipreputationdb Resource

    Get an existing Ipreputationdb 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?: IpreputationdbState, opts?: CustomResourceOptions): Ipreputationdb
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            base_file_refs: Optional[Sequence[str]] = None,
            base_file_v6_refs: Optional[Sequence[str]] = None,
            configpb_attributes: Optional[Sequence[IpreputationdbConfigpbAttributeArgs]] = None,
            description: Optional[str] = None,
            incremental_file_refs: Optional[Sequence[str]] = None,
            incremental_file_v6_refs: Optional[Sequence[str]] = None,
            ipreputationdb_id: Optional[str] = None,
            markers: Optional[Sequence[IpreputationdbMarkerArgs]] = None,
            name: Optional[str] = None,
            service_statuses: Optional[Sequence[IpreputationdbServiceStatusArgs]] = None,
            tenant_ref: Optional[str] = None,
            uuid: Optional[str] = None,
            v6_version: Optional[str] = None,
            vendor: Optional[str] = None,
            version: Optional[str] = None) -> Ipreputationdb
    func GetIpreputationdb(ctx *Context, name string, id IDInput, state *IpreputationdbState, opts ...ResourceOption) (*Ipreputationdb, error)
    public static Ipreputationdb Get(string name, Input<string> id, IpreputationdbState? state, CustomResourceOptions? opts = null)
    public static Ipreputationdb get(String name, Output<String> id, IpreputationdbState state, CustomResourceOptions options)
    resources:  _:    type: avi:Ipreputationdb    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:
    BaseFileRefs List<string>
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    BaseFileV6Refs List<string>
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigpbAttributes List<IpreputationdbConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IncrementalFileRefs List<string>
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IncrementalFileV6Refs List<string>
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    IpreputationdbId string
    Markers List<IpreputationdbMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ServiceStatuses List<IpreputationdbServiceStatus>
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    V6Version string
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Vendor string
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Version string
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    BaseFileRefs []string
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    BaseFileV6Refs []string
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigpbAttributes []IpreputationdbConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Description string
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IncrementalFileRefs []string
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IncrementalFileV6Refs []string
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    IpreputationdbId string
    Markers []IpreputationdbMarkerArgs
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ServiceStatuses []IpreputationdbServiceStatusArgs
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    V6Version string
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Vendor string
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Version string
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileRefs List<String>
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileV6Refs List<String>
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes List<IpreputationdbConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description String
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileRefs List<String>
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileV6Refs List<String>
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ipreputationdbId String
    markers List<IpreputationdbMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    serviceStatuses List<IpreputationdbServiceStatus>
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    v6Version String
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    vendor String
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    version String
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileRefs string[]
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileV6Refs string[]
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes IpreputationdbConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description string
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileRefs string[]
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileV6Refs string[]
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ipreputationdbId string
    markers IpreputationdbMarker[]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    serviceStatuses IpreputationdbServiceStatus[]
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    v6Version string
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    vendor string
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    version string
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    base_file_refs Sequence[str]
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    base_file_v6_refs Sequence[str]
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpb_attributes Sequence[IpreputationdbConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    description str
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incremental_file_refs Sequence[str]
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incremental_file_v6_refs Sequence[str]
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ipreputationdb_id str
    markers Sequence[IpreputationdbMarkerArgs]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Ip reputation db name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    service_statuses Sequence[IpreputationdbServiceStatusArgs]
    If this object is managed by the ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    v6_version str
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    vendor str
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    version str
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileRefs List<String>
    Ip reputation db base file. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    baseFileV6Refs List<String>
    Ip reputation db base file for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, 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.
    description String
    Description. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileRefs List<String>
    Ip reputation db incremental update files. It is a reference to an object of type fileobject. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    incrementalFileV6Refs List<String>
    Ip reputation db incremental update files for ipv6. It is a reference to an object of type fileobject. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ipreputationdbId String
    markers List<Property Map>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Ip reputation db name. 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 ip reputation service, this field contain the status of this syncronization. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    Tenant that this object belongs to. 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
    Uuid of this object. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    v6Version String
    A version number for ipv6 files for the object. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    vendor String
    Organization providing ip reputation data. Enum options - IP_REPUTATION_VENDOR_WEBROOT. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    version String
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Supporting Types

    IpreputationdbConfigpbAttribute, IpreputationdbConfigpbAttributeArgs

    Version string
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Version string
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    version String
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    version string
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    version str
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    version String
    A version number for this database object. This is informal for the consumer of this api only, a tool which manages this object can store version information here. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    IpreputationdbMarker, IpreputationdbMarkerArgs

    Key string
    Values List<string>
    Key string
    Values []string
    key String
    values List<String>
    key string
    values string[]
    key str
    values Sequence[str]
    key String
    values List<String>

    IpreputationdbServiceStatus, IpreputationdbServiceStatusArgs

    IpreputationdbServiceStatusLastSuccessfulUpdateCheck, IpreputationdbServiceStatusLastSuccessfulUpdateCheckArgs

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs 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