<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi:<span pulumi-lang-nodejs=” avi.Positivesecuritypolicy"" pulumi-lang-dotnet=" avi.Positivesecuritypolicy"" pulumi-lang-go=" Positivesecuritypolicy"" pulumi-lang-python=" Positivesecuritypolicy"" pulumi-lang-yaml=" avi.Positivesecuritypolicy"" pulumi-lang-java=" avi.Positivesecuritypolicy""> avi.Positivesecuritypolicy" sidebar_current: “docs-avi-resource-positivesecuritypolicy” description: |- Creates and manages Avi PositiveSecurityPolicy.
# avi.Positivesecuritypolicy The PositiveSecurityPolicy resource allows the creation and management of Avi PositiveSecurityPolicy
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Positivesecuritypolicy("foo", {
name: "terraform-example-foo",
tenantRef: "/api/tenant/?name=admin",
});
import pulumi
import pulumi_avi as avi
foo = avi.Positivesecuritypolicy("foo",
name="terraform-example-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.NewPositivesecuritypolicy(ctx, "foo", &avi.PositivesecuritypolicyArgs{
Name: pulumi.String("terraform-example-foo"),
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.Positivesecuritypolicy("foo", new()
{
Name = "terraform-example-foo",
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.Positivesecuritypolicy;
import com.pulumi.avi.PositivesecuritypolicyArgs;
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 Positivesecuritypolicy("foo", PositivesecuritypolicyArgs.builder()
.name("terraform-example-foo")
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Positivesecuritypolicy
properties:
name: terraform-example-foo
tenantRef: /api/tenant/?name=admin
Create Positivesecuritypolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Positivesecuritypolicy(name: string, args?: PositivesecuritypolicyArgs, opts?: CustomResourceOptions);@overload
def Positivesecuritypolicy(resource_name: str,
args: Optional[PositivesecuritypolicyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Positivesecuritypolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
configpb_attributes: Optional[Sequence[PositivesecuritypolicyConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
enable_positive_security_rule_updates: Optional[str] = None,
enable_regex_programming: Optional[str] = None,
name: Optional[str] = None,
positive_security_params: Optional[Sequence[PositivesecuritypolicyPositiveSecurityParamArgs]] = None,
positivesecuritypolicy_id: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)func NewPositivesecuritypolicy(ctx *Context, name string, args *PositivesecuritypolicyArgs, opts ...ResourceOption) (*Positivesecuritypolicy, error)public Positivesecuritypolicy(string name, PositivesecuritypolicyArgs? args = null, CustomResourceOptions? opts = null)
public Positivesecuritypolicy(String name, PositivesecuritypolicyArgs args)
public Positivesecuritypolicy(String name, PositivesecuritypolicyArgs args, CustomResourceOptions options)
type: avi:Positivesecuritypolicy
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 PositivesecuritypolicyArgs
- 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 PositivesecuritypolicyArgs
- 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 PositivesecuritypolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PositivesecuritypolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PositivesecuritypolicyArgs
- 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 positivesecuritypolicyResource = new Avi.Positivesecuritypolicy("positivesecuritypolicyResource", new()
{
ConfigpbAttributes = new[]
{
new Avi.Inputs.PositivesecuritypolicyConfigpbAttributeArgs
{
Version = "string",
},
},
Description = "string",
EnablePositiveSecurityRuleUpdates = "string",
EnableRegexProgramming = "string",
Name = "string",
PositiveSecurityParams = new[]
{
new Avi.Inputs.PositivesecuritypolicyPositiveSecurityParamArgs
{
ConfidenceOverrides = new[]
{
new Avi.Inputs.PositivesecuritypolicyPositiveSecurityParamConfidenceOverrideArgs
{
ConfidHighValue = "string",
ConfidLowValue = "string",
ConfidProbableValue = "string",
ConfidVeryHighValue = "string",
},
},
MaxParams = "string",
MaxUris = "string",
MinConfidence = "string",
MinHitsToProgram = "string",
},
},
PositivesecuritypolicyId = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewPositivesecuritypolicy(ctx, "positivesecuritypolicyResource", &avi.PositivesecuritypolicyArgs{
ConfigpbAttributes: avi.PositivesecuritypolicyConfigpbAttributeArray{
&avi.PositivesecuritypolicyConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
EnablePositiveSecurityRuleUpdates: pulumi.String("string"),
EnableRegexProgramming: pulumi.String("string"),
Name: pulumi.String("string"),
PositiveSecurityParams: avi.PositivesecuritypolicyPositiveSecurityParamArray{
&avi.PositivesecuritypolicyPositiveSecurityParamArgs{
ConfidenceOverrides: avi.PositivesecuritypolicyPositiveSecurityParamConfidenceOverrideArray{
&avi.PositivesecuritypolicyPositiveSecurityParamConfidenceOverrideArgs{
ConfidHighValue: pulumi.String("string"),
ConfidLowValue: pulumi.String("string"),
ConfidProbableValue: pulumi.String("string"),
ConfidVeryHighValue: pulumi.String("string"),
},
},
MaxParams: pulumi.String("string"),
MaxUris: pulumi.String("string"),
MinConfidence: pulumi.String("string"),
MinHitsToProgram: pulumi.String("string"),
},
},
PositivesecuritypolicyId: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var positivesecuritypolicyResource = new Positivesecuritypolicy("positivesecuritypolicyResource", PositivesecuritypolicyArgs.builder()
.configpbAttributes(PositivesecuritypolicyConfigpbAttributeArgs.builder()
.version("string")
.build())
.description("string")
.enablePositiveSecurityRuleUpdates("string")
.enableRegexProgramming("string")
.name("string")
.positiveSecurityParams(PositivesecuritypolicyPositiveSecurityParamArgs.builder()
.confidenceOverrides(PositivesecuritypolicyPositiveSecurityParamConfidenceOverrideArgs.builder()
.confidHighValue("string")
.confidLowValue("string")
.confidProbableValue("string")
.confidVeryHighValue("string")
.build())
.maxParams("string")
.maxUris("string")
.minConfidence("string")
.minHitsToProgram("string")
.build())
.positivesecuritypolicyId("string")
.tenantRef("string")
.uuid("string")
.build());
positivesecuritypolicy_resource = avi.Positivesecuritypolicy("positivesecuritypolicyResource",
configpb_attributes=[{
"version": "string",
}],
description="string",
enable_positive_security_rule_updates="string",
enable_regex_programming="string",
name="string",
positive_security_params=[{
"confidence_overrides": [{
"confid_high_value": "string",
"confid_low_value": "string",
"confid_probable_value": "string",
"confid_very_high_value": "string",
}],
"max_params": "string",
"max_uris": "string",
"min_confidence": "string",
"min_hits_to_program": "string",
}],
positivesecuritypolicy_id="string",
tenant_ref="string",
uuid="string")
const positivesecuritypolicyResource = new avi.Positivesecuritypolicy("positivesecuritypolicyResource", {
configpbAttributes: [{
version: "string",
}],
description: "string",
enablePositiveSecurityRuleUpdates: "string",
enableRegexProgramming: "string",
name: "string",
positiveSecurityParams: [{
confidenceOverrides: [{
confidHighValue: "string",
confidLowValue: "string",
confidProbableValue: "string",
confidVeryHighValue: "string",
}],
maxParams: "string",
maxUris: "string",
minConfidence: "string",
minHitsToProgram: "string",
}],
positivesecuritypolicyId: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Positivesecuritypolicy
properties:
configpbAttributes:
- version: string
description: string
enablePositiveSecurityRuleUpdates: string
enableRegexProgramming: string
name: string
positiveSecurityParams:
- confidenceOverrides:
- confidHighValue: string
confidLowValue: string
confidProbableValue: string
confidVeryHighValue: string
maxParams: string
maxUris: string
minConfidence: string
minHitsToProgram: string
positivesecuritypolicyId: string
tenantRef: string
uuid: string
Positivesecuritypolicy 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 Positivesecuritypolicy resource accepts the following input properties:
- Configpb
Attributes List<PositivesecuritypolicyConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Enable
Positive stringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Enable
Regex stringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Positive
Security List<PositivesecuritypolicyParams Positive Security Param> - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Positivesecuritypolicy
Id string - Tenant
Ref string - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes []PositivesecuritypolicyConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Enable
Positive stringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Enable
Regex stringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Positive
Security []PositivesecuritypolicyParams Positive Security Param Args - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Positivesecuritypolicy
Id string - Tenant
Ref string - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<PositivesecuritypolicyConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Positive StringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Regex StringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positive
Security List<PositivesecuritypolicyParams Positive Security Param> - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positivesecuritypolicy
Id String - tenant
Ref String - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes PositivesecuritypolicyConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Positive stringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Regex stringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positive
Security PositivesecuritypolicyParams Positive Security Param[] - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positivesecuritypolicy
Id string - tenant
Ref string - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes Sequence[PositivesecuritypolicyConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable_
positive_ strsecurity_ rule_ updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable_
regex_ strprogramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positive_
security_ Sequence[Positivesecuritypolicyparams Positive Security Param Args] - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positivesecuritypolicy_
id str - tenant_
ref str - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Positive StringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Regex StringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positive
Security List<Property Map>Params - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positivesecuritypolicy
Id String - tenant
Ref String - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Positivesecuritypolicy 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 Positivesecuritypolicy Resource
Get an existing Positivesecuritypolicy 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?: PositivesecuritypolicyState, opts?: CustomResourceOptions): Positivesecuritypolicy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configpb_attributes: Optional[Sequence[PositivesecuritypolicyConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
enable_positive_security_rule_updates: Optional[str] = None,
enable_regex_programming: Optional[str] = None,
name: Optional[str] = None,
positive_security_params: Optional[Sequence[PositivesecuritypolicyPositiveSecurityParamArgs]] = None,
positivesecuritypolicy_id: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Positivesecuritypolicyfunc GetPositivesecuritypolicy(ctx *Context, name string, id IDInput, state *PositivesecuritypolicyState, opts ...ResourceOption) (*Positivesecuritypolicy, error)public static Positivesecuritypolicy Get(string name, Input<string> id, PositivesecuritypolicyState? state, CustomResourceOptions? opts = null)public static Positivesecuritypolicy get(String name, Output<String> id, PositivesecuritypolicyState state, CustomResourceOptions options)resources: _: type: avi:Positivesecuritypolicy 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.
- Configpb
Attributes List<PositivesecuritypolicyConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Enable
Positive stringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Enable
Regex stringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Positive
Security List<PositivesecuritypolicyParams Positive Security Param> - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Positivesecuritypolicy
Id string - Tenant
Ref string - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes []PositivesecuritypolicyConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Enable
Positive stringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Enable
Regex stringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Positive
Security []PositivesecuritypolicyParams Positive Security Param Args - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Positivesecuritypolicy
Id string - Tenant
Ref string - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<PositivesecuritypolicyConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Positive StringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Regex StringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positive
Security List<PositivesecuritypolicyParams Positive Security Param> - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positivesecuritypolicy
Id String - tenant
Ref String - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes PositivesecuritypolicyConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Positive stringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Regex stringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positive
Security PositivesecuritypolicyParams Positive Security Param[] - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positivesecuritypolicy
Id string - tenant
Ref string - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes Sequence[PositivesecuritypolicyConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable_
positive_ strsecurity_ rule_ updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable_
regex_ strprogramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positive_
security_ Sequence[Positivesecuritypolicyparams Positive Security Param Args] - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positivesecuritypolicy_
id str - tenant_
ref str - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 31.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Details of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Positive StringSecurity Rule Updates - Enable positive security rule generation using the application learning data rules will be programmed in a dedicated learning group. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- enable
Regex StringProgramming - Enable dynamic regex generation for positive security rules. This is an experimental feature and shouldn't be used in production. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- The name of the positivesecurity configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positive
Security List<Property Map>Params - Parameters for generating positive security rules. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- positivesecuritypolicy
Id String - tenant
Ref String - Details of the tenant for positive security policy. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the positive security configuration. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Supporting Types
PositivesecuritypolicyConfigpbAttribute, PositivesecuritypolicyConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
PositivesecuritypolicyPositiveSecurityParam, PositivesecuritypolicyPositiveSecurityParamArgs
- confidence
Overrides List<Property Map> - max
Params String - max
Uris String - min
Confidence String - min
Hits StringTo Program
PositivesecuritypolicyPositiveSecurityParamConfidenceOverride, PositivesecuritypolicyPositiveSecurityParamConfidenceOverrideArgs
- Confid
High stringValue - Confid
Low stringValue - Confid
Probable stringValue - Confid
Very stringHigh Value
- Confid
High stringValue - Confid
Low stringValue - Confid
Probable stringValue - Confid
Very stringHigh Value
- confid
High StringValue - confid
Low StringValue - confid
Probable StringValue - confid
Very StringHigh Value
- confid
High stringValue - confid
Low stringValue - confid
Probable stringValue - confid
Very stringHigh Value
- confid
High StringValue - confid
Low StringValue - confid
Probable StringValue - confid
Very StringHigh Value
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
aviTerraform Provider.
