avi.Networksecuritypolicy
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Networksecuritypolicy” sidebar_current: “docs-avi-resource-networksecuritypolicy” description: |- Creates and manages Avi NetworkSecurityPolicy.
avi.Networksecuritypolicy
The NetworkSecurityPolicy resource allows the creation and management of Avi NetworkSecurityPolicy
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Networksecuritypolicy("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Networksecuritypolicy("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.NewNetworksecuritypolicy(ctx, "foo", &avi.NetworksecuritypolicyArgs{
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.Networksecuritypolicy("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.Networksecuritypolicy;
import com.pulumi.avi.NetworksecuritypolicyArgs;
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 Networksecuritypolicy("foo", NetworksecuritypolicyArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Networksecuritypolicy
properties:
tenantRef: /api/tenant/?name=admin
Create Networksecuritypolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Networksecuritypolicy(name: string, args?: NetworksecuritypolicyArgs, opts?: CustomResourceOptions);
@overload
def Networksecuritypolicy(resource_name: str,
args: Optional[NetworksecuritypolicyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Networksecuritypolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloud_config_cksum: Optional[str] = None,
configpb_attributes: Optional[Sequence[NetworksecuritypolicyConfigpbAttributeArgs]] = None,
created_by: Optional[str] = None,
description: Optional[str] = None,
geo_db_ref: Optional[str] = None,
internal: Optional[str] = None,
ip_reputation_db_ref: Optional[str] = None,
markers: Optional[Sequence[NetworksecuritypolicyMarkerArgs]] = None,
name: Optional[str] = None,
networksecuritypolicy_id: Optional[str] = None,
rules: Optional[Sequence[NetworksecuritypolicyRuleArgs]] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewNetworksecuritypolicy(ctx *Context, name string, args *NetworksecuritypolicyArgs, opts ...ResourceOption) (*Networksecuritypolicy, error)
public Networksecuritypolicy(string name, NetworksecuritypolicyArgs? args = null, CustomResourceOptions? opts = null)
public Networksecuritypolicy(String name, NetworksecuritypolicyArgs args)
public Networksecuritypolicy(String name, NetworksecuritypolicyArgs args, CustomResourceOptions options)
type: avi:Networksecuritypolicy
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 NetworksecuritypolicyArgs
- 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 NetworksecuritypolicyArgs
- 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 NetworksecuritypolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworksecuritypolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworksecuritypolicyArgs
- 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 networksecuritypolicyResource = new Avi.Networksecuritypolicy("networksecuritypolicyResource", new()
{
CloudConfigCksum = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.NetworksecuritypolicyConfigpbAttributeArgs
{
Version = "string",
},
},
CreatedBy = "string",
Description = "string",
GeoDbRef = "string",
Internal = "string",
IpReputationDbRef = "string",
Markers = new[]
{
new Avi.Inputs.NetworksecuritypolicyMarkerArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Name = "string",
NetworksecuritypolicyId = "string",
Rules = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleArgs
{
Action = "string",
Enable = "string",
Index = "string",
Matches = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchArgs
{
ClientIps = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchClientIpArgs
{
MatchCriteria = "string",
Addrs = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchClientIpAddrArgs
{
Addr = "string",
Type = "string",
},
},
GroupRefs = new[]
{
"string",
},
Prefixes = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchClientIpPrefixArgs
{
IpAddrs = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchClientIpPrefixIpAddrArgs
{
Addr = "string",
Type = "string",
},
},
Mask = "string",
},
},
Ranges = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchClientIpRangeArgs
{
Begins = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchClientIpRangeBeginArgs
{
Addr = "string",
Type = "string",
},
},
Ends = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchClientIpRangeEndArgs
{
Addr = "string",
Type = "string",
},
},
},
},
},
},
ClientPorts = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchClientPortArgs
{
MatchCriteria = "string",
Ports = new[]
{
0,
},
Ranges = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchClientPortRangeArgs
{
End = "string",
Start = "string",
},
},
},
},
GeoMatches = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchGeoMatchArgs
{
Attribute = "string",
MatchOperation = "string",
Values = new[]
{
"string",
},
},
},
IpReputationTypes = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchIpReputationTypeArgs
{
MatchOperation = "string",
ReputationTypes = new[]
{
"string",
},
},
},
Microservices = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchMicroserviceArgs
{
GroupRef = "string",
MatchCriteria = "string",
},
},
VsPorts = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleMatchVsPortArgs
{
MatchCriteria = "string",
Ports = new[]
{
0,
},
},
},
},
},
Name = "string",
Age = "string",
CreatedBy = "string",
Log = "string",
RlParams = new[]
{
new Avi.Inputs.NetworksecuritypolicyRuleRlParamArgs
{
BurstSize = "string",
MaxRate = "string",
},
},
},
},
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewNetworksecuritypolicy(ctx, "networksecuritypolicyResource", &avi.NetworksecuritypolicyArgs{
CloudConfigCksum: pulumi.String("string"),
ConfigpbAttributes: avi.NetworksecuritypolicyConfigpbAttributeArray{
&avi.NetworksecuritypolicyConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
CreatedBy: pulumi.String("string"),
Description: pulumi.String("string"),
GeoDbRef: pulumi.String("string"),
Internal: pulumi.String("string"),
IpReputationDbRef: pulumi.String("string"),
Markers: avi.NetworksecuritypolicyMarkerArray{
&avi.NetworksecuritypolicyMarkerArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Name: pulumi.String("string"),
NetworksecuritypolicyId: pulumi.String("string"),
Rules: avi.NetworksecuritypolicyRuleArray{
&avi.NetworksecuritypolicyRuleArgs{
Action: pulumi.String("string"),
Enable: pulumi.String("string"),
Index: pulumi.String("string"),
Matches: avi.NetworksecuritypolicyRuleMatchArray{
&avi.NetworksecuritypolicyRuleMatchArgs{
ClientIps: avi.NetworksecuritypolicyRuleMatchClientIpArray{
&avi.NetworksecuritypolicyRuleMatchClientIpArgs{
MatchCriteria: pulumi.String("string"),
Addrs: avi.NetworksecuritypolicyRuleMatchClientIpAddrArray{
&avi.NetworksecuritypolicyRuleMatchClientIpAddrArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
GroupRefs: pulumi.StringArray{
pulumi.String("string"),
},
Prefixes: avi.NetworksecuritypolicyRuleMatchClientIpPrefixArray{
&avi.NetworksecuritypolicyRuleMatchClientIpPrefixArgs{
IpAddrs: avi.NetworksecuritypolicyRuleMatchClientIpPrefixIpAddrArray{
&avi.NetworksecuritypolicyRuleMatchClientIpPrefixIpAddrArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Mask: pulumi.String("string"),
},
},
Ranges: avi.NetworksecuritypolicyRuleMatchClientIpRangeArray{
&avi.NetworksecuritypolicyRuleMatchClientIpRangeArgs{
Begins: avi.NetworksecuritypolicyRuleMatchClientIpRangeBeginArray{
&avi.NetworksecuritypolicyRuleMatchClientIpRangeBeginArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Ends: avi.NetworksecuritypolicyRuleMatchClientIpRangeEndArray{
&avi.NetworksecuritypolicyRuleMatchClientIpRangeEndArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
},
},
},
},
ClientPorts: avi.NetworksecuritypolicyRuleMatchClientPortArray{
&avi.NetworksecuritypolicyRuleMatchClientPortArgs{
MatchCriteria: pulumi.String("string"),
Ports: pulumi.Float64Array{
pulumi.Float64(0),
},
Ranges: avi.NetworksecuritypolicyRuleMatchClientPortRangeArray{
&avi.NetworksecuritypolicyRuleMatchClientPortRangeArgs{
End: pulumi.String("string"),
Start: pulumi.String("string"),
},
},
},
},
GeoMatches: avi.NetworksecuritypolicyRuleMatchGeoMatchArray{
&avi.NetworksecuritypolicyRuleMatchGeoMatchArgs{
Attribute: pulumi.String("string"),
MatchOperation: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
IpReputationTypes: avi.NetworksecuritypolicyRuleMatchIpReputationTypeArray{
&avi.NetworksecuritypolicyRuleMatchIpReputationTypeArgs{
MatchOperation: pulumi.String("string"),
ReputationTypes: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Microservices: avi.NetworksecuritypolicyRuleMatchMicroserviceArray{
&avi.NetworksecuritypolicyRuleMatchMicroserviceArgs{
GroupRef: pulumi.String("string"),
MatchCriteria: pulumi.String("string"),
},
},
VsPorts: avi.NetworksecuritypolicyRuleMatchVsPortArray{
&avi.NetworksecuritypolicyRuleMatchVsPortArgs{
MatchCriteria: pulumi.String("string"),
Ports: pulumi.Float64Array{
pulumi.Float64(0),
},
},
},
},
},
Name: pulumi.String("string"),
Age: pulumi.String("string"),
CreatedBy: pulumi.String("string"),
Log: pulumi.String("string"),
RlParams: avi.NetworksecuritypolicyRuleRlParamArray{
&avi.NetworksecuritypolicyRuleRlParamArgs{
BurstSize: pulumi.String("string"),
MaxRate: pulumi.String("string"),
},
},
},
},
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var networksecuritypolicyResource = new Networksecuritypolicy("networksecuritypolicyResource", NetworksecuritypolicyArgs.builder()
.cloudConfigCksum("string")
.configpbAttributes(NetworksecuritypolicyConfigpbAttributeArgs.builder()
.version("string")
.build())
.createdBy("string")
.description("string")
.geoDbRef("string")
.internal("string")
.ipReputationDbRef("string")
.markers(NetworksecuritypolicyMarkerArgs.builder()
.key("string")
.values("string")
.build())
.name("string")
.networksecuritypolicyId("string")
.rules(NetworksecuritypolicyRuleArgs.builder()
.action("string")
.enable("string")
.index("string")
.matches(NetworksecuritypolicyRuleMatchArgs.builder()
.clientIps(NetworksecuritypolicyRuleMatchClientIpArgs.builder()
.matchCriteria("string")
.addrs(NetworksecuritypolicyRuleMatchClientIpAddrArgs.builder()
.addr("string")
.type("string")
.build())
.groupRefs("string")
.prefixes(NetworksecuritypolicyRuleMatchClientIpPrefixArgs.builder()
.ipAddrs(NetworksecuritypolicyRuleMatchClientIpPrefixIpAddrArgs.builder()
.addr("string")
.type("string")
.build())
.mask("string")
.build())
.ranges(NetworksecuritypolicyRuleMatchClientIpRangeArgs.builder()
.begins(NetworksecuritypolicyRuleMatchClientIpRangeBeginArgs.builder()
.addr("string")
.type("string")
.build())
.ends(NetworksecuritypolicyRuleMatchClientIpRangeEndArgs.builder()
.addr("string")
.type("string")
.build())
.build())
.build())
.clientPorts(NetworksecuritypolicyRuleMatchClientPortArgs.builder()
.matchCriteria("string")
.ports(0)
.ranges(NetworksecuritypolicyRuleMatchClientPortRangeArgs.builder()
.end("string")
.start("string")
.build())
.build())
.geoMatches(NetworksecuritypolicyRuleMatchGeoMatchArgs.builder()
.attribute("string")
.matchOperation("string")
.values("string")
.build())
.ipReputationTypes(NetworksecuritypolicyRuleMatchIpReputationTypeArgs.builder()
.matchOperation("string")
.reputationTypes("string")
.build())
.microservices(NetworksecuritypolicyRuleMatchMicroserviceArgs.builder()
.groupRef("string")
.matchCriteria("string")
.build())
.vsPorts(NetworksecuritypolicyRuleMatchVsPortArgs.builder()
.matchCriteria("string")
.ports(0)
.build())
.build())
.name("string")
.age("string")
.createdBy("string")
.log("string")
.rlParams(NetworksecuritypolicyRuleRlParamArgs.builder()
.burstSize("string")
.maxRate("string")
.build())
.build())
.tenantRef("string")
.uuid("string")
.build());
networksecuritypolicy_resource = avi.Networksecuritypolicy("networksecuritypolicyResource",
cloud_config_cksum="string",
configpb_attributes=[{
"version": "string",
}],
created_by="string",
description="string",
geo_db_ref="string",
internal="string",
ip_reputation_db_ref="string",
markers=[{
"key": "string",
"values": ["string"],
}],
name="string",
networksecuritypolicy_id="string",
rules=[{
"action": "string",
"enable": "string",
"index": "string",
"matches": [{
"client_ips": [{
"match_criteria": "string",
"addrs": [{
"addr": "string",
"type": "string",
}],
"group_refs": ["string"],
"prefixes": [{
"ip_addrs": [{
"addr": "string",
"type": "string",
}],
"mask": "string",
}],
"ranges": [{
"begins": [{
"addr": "string",
"type": "string",
}],
"ends": [{
"addr": "string",
"type": "string",
}],
}],
}],
"client_ports": [{
"match_criteria": "string",
"ports": [0],
"ranges": [{
"end": "string",
"start": "string",
}],
}],
"geo_matches": [{
"attribute": "string",
"match_operation": "string",
"values": ["string"],
}],
"ip_reputation_types": [{
"match_operation": "string",
"reputation_types": ["string"],
}],
"microservices": [{
"group_ref": "string",
"match_criteria": "string",
}],
"vs_ports": [{
"match_criteria": "string",
"ports": [0],
}],
}],
"name": "string",
"age": "string",
"created_by": "string",
"log": "string",
"rl_params": [{
"burst_size": "string",
"max_rate": "string",
}],
}],
tenant_ref="string",
uuid="string")
const networksecuritypolicyResource = new avi.Networksecuritypolicy("networksecuritypolicyResource", {
cloudConfigCksum: "string",
configpbAttributes: [{
version: "string",
}],
createdBy: "string",
description: "string",
geoDbRef: "string",
internal: "string",
ipReputationDbRef: "string",
markers: [{
key: "string",
values: ["string"],
}],
name: "string",
networksecuritypolicyId: "string",
rules: [{
action: "string",
enable: "string",
index: "string",
matches: [{
clientIps: [{
matchCriteria: "string",
addrs: [{
addr: "string",
type: "string",
}],
groupRefs: ["string"],
prefixes: [{
ipAddrs: [{
addr: "string",
type: "string",
}],
mask: "string",
}],
ranges: [{
begins: [{
addr: "string",
type: "string",
}],
ends: [{
addr: "string",
type: "string",
}],
}],
}],
clientPorts: [{
matchCriteria: "string",
ports: [0],
ranges: [{
end: "string",
start: "string",
}],
}],
geoMatches: [{
attribute: "string",
matchOperation: "string",
values: ["string"],
}],
ipReputationTypes: [{
matchOperation: "string",
reputationTypes: ["string"],
}],
microservices: [{
groupRef: "string",
matchCriteria: "string",
}],
vsPorts: [{
matchCriteria: "string",
ports: [0],
}],
}],
name: "string",
age: "string",
createdBy: "string",
log: "string",
rlParams: [{
burstSize: "string",
maxRate: "string",
}],
}],
tenantRef: "string",
uuid: "string",
});
type: avi:Networksecuritypolicy
properties:
cloudConfigCksum: string
configpbAttributes:
- version: string
createdBy: string
description: string
geoDbRef: string
internal: string
ipReputationDbRef: string
markers:
- key: string
values:
- string
name: string
networksecuritypolicyId: string
rules:
- action: string
age: string
createdBy: string
enable: string
index: string
log: string
matches:
- clientIps:
- addrs:
- addr: string
type: string
groupRefs:
- string
matchCriteria: string
prefixes:
- ipAddrs:
- addr: string
type: string
mask: string
ranges:
- begins:
- addr: string
type: string
ends:
- addr: string
type: string
clientPorts:
- matchCriteria: string
ports:
- 0
ranges:
- end: string
start: string
geoMatches:
- attribute: string
matchOperation: string
values:
- string
ipReputationTypes:
- matchOperation: string
reputationTypes:
- string
microservices:
- groupRef: string
matchCriteria: string
vsPorts:
- matchCriteria: string
ports:
- 0
name: string
rlParams:
- burstSize: string
maxRate: string
tenantRef: string
uuid: string
Networksecuritypolicy 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 Networksecuritypolicy resource accepts the following input properties:
- Cloud
Config stringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<NetworksecuritypolicyConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Geo
Db stringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Internal string
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ip
Reputation stringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Markers
List<Networksecuritypolicy
Marker> - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Networksecuritypolicy
Id string - Rules
List<Networksecuritypolicy
Rule> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Cloud
Config stringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []NetworksecuritypolicyConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Geo
Db stringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Internal string
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ip
Reputation stringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Markers
[]Networksecuritypolicy
Marker Args - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Networksecuritypolicy
Id string - Rules
[]Networksecuritypolicy
Rule Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Config StringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<NetworksecuritypolicyConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- geo
Db StringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- internal String
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ip
Reputation StringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- markers
List<Networksecuritypolicy
Marker> - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networksecuritypolicy
Id String - rules
List<Networksecuritypolicy
Rule> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Config stringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes NetworksecuritypolicyConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- geo
Db stringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- internal string
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ip
Reputation stringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- markers
Networksecuritypolicy
Marker[] - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networksecuritypolicy
Id string - rules
Networksecuritypolicy
Rule[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud_
config_ strcksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[NetworksecuritypolicyConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created_
by str - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- geo_
db_ strref - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- internal str
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ip_
reputation_ strdb_ ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- markers
Sequence[Networksecuritypolicy
Marker Args] - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networksecuritypolicy_
id str - rules
Sequence[Networksecuritypolicy
Rule Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Config StringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes 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.
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- geo
Db StringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- internal String
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ip
Reputation StringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networksecuritypolicy
Id String - rules List<Property Map>
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- 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 Networksecuritypolicy 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 Networksecuritypolicy Resource
Get an existing Networksecuritypolicy 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?: NetworksecuritypolicyState, opts?: CustomResourceOptions): Networksecuritypolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cloud_config_cksum: Optional[str] = None,
configpb_attributes: Optional[Sequence[NetworksecuritypolicyConfigpbAttributeArgs]] = None,
created_by: Optional[str] = None,
description: Optional[str] = None,
geo_db_ref: Optional[str] = None,
internal: Optional[str] = None,
ip_reputation_db_ref: Optional[str] = None,
markers: Optional[Sequence[NetworksecuritypolicyMarkerArgs]] = None,
name: Optional[str] = None,
networksecuritypolicy_id: Optional[str] = None,
rules: Optional[Sequence[NetworksecuritypolicyRuleArgs]] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Networksecuritypolicy
func GetNetworksecuritypolicy(ctx *Context, name string, id IDInput, state *NetworksecuritypolicyState, opts ...ResourceOption) (*Networksecuritypolicy, error)
public static Networksecuritypolicy Get(string name, Input<string> id, NetworksecuritypolicyState? state, CustomResourceOptions? opts = null)
public static Networksecuritypolicy get(String name, Output<String> id, NetworksecuritypolicyState state, CustomResourceOptions options)
resources: _: type: avi:Networksecuritypolicy 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.
- Cloud
Config stringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<NetworksecuritypolicyConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Geo
Db stringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Internal string
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ip
Reputation stringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Markers
List<Networksecuritypolicy
Marker> - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Networksecuritypolicy
Id string - Rules
List<Networksecuritypolicy
Rule> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Cloud
Config stringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []NetworksecuritypolicyConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Geo
Db stringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Internal string
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ip
Reputation stringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Markers
[]Networksecuritypolicy
Marker Args - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Networksecuritypolicy
Id string - Rules
[]Networksecuritypolicy
Rule Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Config StringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<NetworksecuritypolicyConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- geo
Db StringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- internal String
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ip
Reputation StringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- markers
List<Networksecuritypolicy
Marker> - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networksecuritypolicy
Id String - rules
List<Networksecuritypolicy
Rule> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Config stringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes NetworksecuritypolicyConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- geo
Db stringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- internal string
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ip
Reputation stringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- markers
Networksecuritypolicy
Marker[] - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networksecuritypolicy
Id string - rules
Networksecuritypolicy
Rule[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud_
config_ strcksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[NetworksecuritypolicyConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created_
by str - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- geo_
db_ strref - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- internal str
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ip_
reputation_ strdb_ ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- markers
Sequence[Networksecuritypolicy
Marker Args] - 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networksecuritypolicy_
id str - rules
Sequence[Networksecuritypolicy
Rule Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- cloud
Config StringCksum - Checksum of cloud configuration for network sec policy. Internally set by cloud connector. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes 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.
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- geo
Db StringRef - Geo database. It is a reference to an object of type geodb. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- internal String
- Network security policy is created and modified by internal modules only. Should not be modified by users. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ip
Reputation StringDb Ref - Ip reputation database. It is a reference to an object of type ipreputationdb. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- 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
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networksecuritypolicy
Id String - rules List<Property Map>
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
NetworksecuritypolicyConfigpbAttribute, NetworksecuritypolicyConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
NetworksecuritypolicyMarker, NetworksecuritypolicyMarkerArgs
NetworksecuritypolicyRule, NetworksecuritypolicyRuleArgs
- Action string
- Enable string
- Index string
- Matches
List<Networksecuritypolicy
Rule Match> - Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Age string
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Log string
- Rl
Params List<NetworksecuritypolicyRule Rl Param>
- Action string
- Enable string
- Index string
- Matches
[]Networksecuritypolicy
Rule Match - Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Age string
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Log string
- Rl
Params []NetworksecuritypolicyRule Rl Param
- action String
- enable String
- index String
- matches
List<Networksecuritypolicy
Rule Match> - name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- age String
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- log String
- rl
Params List<NetworksecuritypolicyRule Rl Param>
- action string
- enable string
- index string
- matches
Networksecuritypolicy
Rule Match[] - name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- age string
- created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- log string
- rl
Params NetworksecuritypolicyRule Rl Param[]
- action str
- enable str
- index str
- matches
Sequence[Networksecuritypolicy
Rule Match] - name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- age str
- created_
by str - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- log str
- rl_
params Sequence[NetworksecuritypolicyRule Rl Param]
- action String
- enable String
- index String
- matches List<Property Map>
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- age String
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- log String
- rl
Params List<Property Map>
NetworksecuritypolicyRuleMatch, NetworksecuritypolicyRuleMatchArgs
- Client
Ips List<NetworksecuritypolicyRule Match Client Ip> - Client
Ports List<NetworksecuritypolicyRule Match Client Port> - Geo
Matches List<NetworksecuritypolicyRule Match Geo Match> - Ip
Reputation List<NetworksecuritypolicyTypes Rule Match Ip Reputation Type> - Microservices
List<Networksecuritypolicy
Rule Match Microservice> - Vs
Ports List<NetworksecuritypolicyRule Match Vs Port>
- Client
Ips []NetworksecuritypolicyRule Match Client Ip - Client
Ports []NetworksecuritypolicyRule Match Client Port - Geo
Matches []NetworksecuritypolicyRule Match Geo Match - Ip
Reputation []NetworksecuritypolicyTypes Rule Match Ip Reputation Type - Microservices
[]Networksecuritypolicy
Rule Match Microservice - Vs
Ports []NetworksecuritypolicyRule Match Vs Port
- client
Ips List<NetworksecuritypolicyRule Match Client Ip> - client
Ports List<NetworksecuritypolicyRule Match Client Port> - geo
Matches List<NetworksecuritypolicyRule Match Geo Match> - ip
Reputation List<NetworksecuritypolicyTypes Rule Match Ip Reputation Type> - microservices
List<Networksecuritypolicy
Rule Match Microservice> - vs
Ports List<NetworksecuritypolicyRule Match Vs Port>
- client
Ips NetworksecuritypolicyRule Match Client Ip[] - client
Ports NetworksecuritypolicyRule Match Client Port[] - geo
Matches NetworksecuritypolicyRule Match Geo Match[] - ip
Reputation NetworksecuritypolicyTypes Rule Match Ip Reputation Type[] - microservices
Networksecuritypolicy
Rule Match Microservice[] - vs
Ports NetworksecuritypolicyRule Match Vs Port[]
- client_
ips Sequence[NetworksecuritypolicyRule Match Client Ip] - client_
ports Sequence[NetworksecuritypolicyRule Match Client Port] - geo_
matches Sequence[NetworksecuritypolicyRule Match Geo Match] - ip_
reputation_ Sequence[Networksecuritypolicytypes Rule Match Ip Reputation Type] - microservices
Sequence[Networksecuritypolicy
Rule Match Microservice] - vs_
ports Sequence[NetworksecuritypolicyRule Match Vs Port]
NetworksecuritypolicyRuleMatchClientIp, NetworksecuritypolicyRuleMatchClientIpArgs
NetworksecuritypolicyRuleMatchClientIpAddr, NetworksecuritypolicyRuleMatchClientIpAddrArgs
NetworksecuritypolicyRuleMatchClientIpPrefix, NetworksecuritypolicyRuleMatchClientIpPrefixArgs
- ip
Addrs List<Property Map> - mask String
NetworksecuritypolicyRuleMatchClientIpPrefixIpAddr, NetworksecuritypolicyRuleMatchClientIpPrefixIpAddrArgs
NetworksecuritypolicyRuleMatchClientIpRange, NetworksecuritypolicyRuleMatchClientIpRangeArgs
NetworksecuritypolicyRuleMatchClientIpRangeBegin, NetworksecuritypolicyRuleMatchClientIpRangeBeginArgs
NetworksecuritypolicyRuleMatchClientIpRangeEnd, NetworksecuritypolicyRuleMatchClientIpRangeEndArgs
NetworksecuritypolicyRuleMatchClientPort, NetworksecuritypolicyRuleMatchClientPortArgs
- Match
Criteria string - Ports List<double>
- Ranges
List<Networksecuritypolicy
Rule Match Client Port Range>
- Match
Criteria string - Ports []float64
- Ranges
[]Networksecuritypolicy
Rule Match Client Port Range
- match
Criteria String - ports List<Double>
- ranges
List<Networksecuritypolicy
Rule Match Client Port Range>
- match_
criteria str - ports Sequence[float]
- ranges
Sequence[Networksecuritypolicy
Rule Match Client Port Range]
- match
Criteria String - ports List<Number>
- ranges List<Property Map>
NetworksecuritypolicyRuleMatchClientPortRange, NetworksecuritypolicyRuleMatchClientPortRangeArgs
NetworksecuritypolicyRuleMatchGeoMatch, NetworksecuritypolicyRuleMatchGeoMatchArgs
- Attribute string
- Match
Operation string - Values List<string>
- Attribute string
- Match
Operation string - Values []string
- attribute String
- match
Operation String - values List<String>
- attribute string
- match
Operation string - values string[]
- attribute str
- match_
operation str - values Sequence[str]
- attribute String
- match
Operation String - values List<String>
NetworksecuritypolicyRuleMatchIpReputationType, NetworksecuritypolicyRuleMatchIpReputationTypeArgs
- Match
Operation string - Reputation
Types List<string>
- Match
Operation string - Reputation
Types []string
- match
Operation String - reputation
Types List<String>
- match
Operation string - reputation
Types string[]
- match_
operation str - reputation_
types Sequence[str]
- match
Operation String - reputation
Types List<String>
NetworksecuritypolicyRuleMatchMicroservice, NetworksecuritypolicyRuleMatchMicroserviceArgs
- Group
Ref string - Match
Criteria string
- Group
Ref string - Match
Criteria string
- group
Ref String - match
Criteria String
- group
Ref string - match
Criteria string
- group_
ref str - match_
criteria str
- group
Ref String - match
Criteria String
NetworksecuritypolicyRuleMatchVsPort, NetworksecuritypolicyRuleMatchVsPortArgs
- Match
Criteria string - Ports List<double>
- Match
Criteria string - Ports []float64
- match
Criteria String - ports List<Double>
- match
Criteria string - ports number[]
- match_
criteria str - ports Sequence[float]
- match
Criteria String - ports List<Number>
NetworksecuritypolicyRuleRlParam, NetworksecuritypolicyRuleRlParamArgs
- burst_
size str - max_
rate str
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.