avi.Networkprofile
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Networkprofile” sidebar_current: “docs-avi-resource-networkprofile” description: |- Creates and manages Avi NetworkProfile.
avi.Networkprofile
The NetworkProfile resource allows the creation and management of Avi NetworkProfile
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Networkprofile("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Networkprofile("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.NewNetworkprofile(ctx, "foo", &avi.NetworkprofileArgs{
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.Networkprofile("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.Networkprofile;
import com.pulumi.avi.NetworkprofileArgs;
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 Networkprofile("foo", NetworkprofileArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Networkprofile
properties:
tenantRef: /api/tenant/?name=admin
Create Networkprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Networkprofile(name: string, args: NetworkprofileArgs, opts?: CustomResourceOptions);
@overload
def Networkprofile(resource_name: str,
args: NetworkprofileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Networkprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
profiles: Optional[Sequence[NetworkprofileProfileArgs]] = None,
configpb_attributes: Optional[Sequence[NetworkprofileConfigpbAttributeArgs]] = None,
connection_mirror: Optional[str] = None,
description: Optional[str] = None,
markers: Optional[Sequence[NetworkprofileMarkerArgs]] = None,
name: Optional[str] = None,
networkprofile_id: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewNetworkprofile(ctx *Context, name string, args NetworkprofileArgs, opts ...ResourceOption) (*Networkprofile, error)
public Networkprofile(string name, NetworkprofileArgs args, CustomResourceOptions? opts = null)
public Networkprofile(String name, NetworkprofileArgs args)
public Networkprofile(String name, NetworkprofileArgs args, CustomResourceOptions options)
type: avi:Networkprofile
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 NetworkprofileArgs
- 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 NetworkprofileArgs
- 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 NetworkprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkprofileArgs
- 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 networkprofileResource = new Avi.Networkprofile("networkprofileResource", new()
{
Profiles = new[]
{
new Avi.Inputs.NetworkprofileProfileArgs
{
Type = "string",
SctpFastPathProfiles = new[]
{
new Avi.Inputs.NetworkprofileProfileSctpFastPathProfileArgs
{
EnableInitChunkProtection = "string",
IdleTimeout = "string",
},
},
SctpProxyProfiles = new[]
{
new Avi.Inputs.NetworkprofileProfileSctpProxyProfileArgs
{
CookieExpirationTimeout = "string",
HeartbeatInterval = "string",
IdleTimeout = "string",
MaxRetransmissionsAssociation = "string",
MaxRetransmissionsInitChunks = "string",
NumberOfStreams = "string",
ReceiveWindow = "string",
ResetTimeout = "string",
},
},
TcpFastPathProfiles = new[]
{
new Avi.Inputs.NetworkprofileProfileTcpFastPathProfileArgs
{
DsrProfiles = new[]
{
new Avi.Inputs.NetworkprofileProfileTcpFastPathProfileDsrProfileArgs
{
DsrEncapType = "string",
DsrType = "string",
},
},
EnableSynProtection = "string",
SessionIdleTimeout = "string",
TcpFastpathOptions = new[]
{
new Avi.Inputs.NetworkprofileProfileTcpFastPathProfileTcpFastpathOptionArgs
{
StripSack = "string",
},
},
},
},
TcpProxyProfiles = new[]
{
new Avi.Inputs.NetworkprofileProfileTcpProxyProfileArgs
{
AckOnPush = "string",
AggressiveCongestionAvoidance = "string",
AutoWindowGrowth = "string",
Automatic = "string",
CcAlgo = "string",
CongestionRecoveryScalingFactor = "string",
DelayedAckTimerDelay = "string",
IdleConnectionTimeout = "string",
IdleConnectionType = "string",
IgnoreTimeWait = "string",
IpDscp = "string",
KeepaliveInHalfcloseState = "string",
MaxRetransmissions = "string",
MaxSegmentSize = "string",
MaxSynRetransmissions = "string",
MinRexmtTimeout = "string",
NaglesAlgorithm = "string",
ReassemblyQueueSize = "string",
ReceiveWindow = "string",
ReorderThreshold = "string",
SlowStartScalingFactor = "string",
TimeWaitDelay = "string",
UseInterfaceMtu = "string",
},
},
UdpFastPathProfiles = new[]
{
new Avi.Inputs.NetworkprofileProfileUdpFastPathProfileArgs
{
DsrProfiles = new[]
{
new Avi.Inputs.NetworkprofileProfileUdpFastPathProfileDsrProfileArgs
{
DsrEncapType = "string",
DsrType = "string",
},
},
PerPktLoadbalance = "string",
SessionIdleTimeout = "string",
Snat = "string",
},
},
UdpProxyProfiles = new[]
{
new Avi.Inputs.NetworkprofileProfileUdpProxyProfileArgs
{
SessionIdleTimeout = "string",
},
},
},
},
ConfigpbAttributes = new[]
{
new Avi.Inputs.NetworkprofileConfigpbAttributeArgs
{
Version = "string",
},
},
ConnectionMirror = "string",
Description = "string",
Markers = new[]
{
new Avi.Inputs.NetworkprofileMarkerArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Name = "string",
NetworkprofileId = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewNetworkprofile(ctx, "networkprofileResource", &avi.NetworkprofileArgs{
Profiles: avi.NetworkprofileProfileArray{
&avi.NetworkprofileProfileArgs{
Type: pulumi.String("string"),
SctpFastPathProfiles: avi.NetworkprofileProfileSctpFastPathProfileArray{
&avi.NetworkprofileProfileSctpFastPathProfileArgs{
EnableInitChunkProtection: pulumi.String("string"),
IdleTimeout: pulumi.String("string"),
},
},
SctpProxyProfiles: avi.NetworkprofileProfileSctpProxyProfileArray{
&avi.NetworkprofileProfileSctpProxyProfileArgs{
CookieExpirationTimeout: pulumi.String("string"),
HeartbeatInterval: pulumi.String("string"),
IdleTimeout: pulumi.String("string"),
MaxRetransmissionsAssociation: pulumi.String("string"),
MaxRetransmissionsInitChunks: pulumi.String("string"),
NumberOfStreams: pulumi.String("string"),
ReceiveWindow: pulumi.String("string"),
ResetTimeout: pulumi.String("string"),
},
},
TcpFastPathProfiles: avi.NetworkprofileProfileTcpFastPathProfileArray{
&avi.NetworkprofileProfileTcpFastPathProfileArgs{
DsrProfiles: avi.NetworkprofileProfileTcpFastPathProfileDsrProfileArray{
&avi.NetworkprofileProfileTcpFastPathProfileDsrProfileArgs{
DsrEncapType: pulumi.String("string"),
DsrType: pulumi.String("string"),
},
},
EnableSynProtection: pulumi.String("string"),
SessionIdleTimeout: pulumi.String("string"),
TcpFastpathOptions: avi.NetworkprofileProfileTcpFastPathProfileTcpFastpathOptionArray{
&avi.NetworkprofileProfileTcpFastPathProfileTcpFastpathOptionArgs{
StripSack: pulumi.String("string"),
},
},
},
},
TcpProxyProfiles: avi.NetworkprofileProfileTcpProxyProfileArray{
&avi.NetworkprofileProfileTcpProxyProfileArgs{
AckOnPush: pulumi.String("string"),
AggressiveCongestionAvoidance: pulumi.String("string"),
AutoWindowGrowth: pulumi.String("string"),
Automatic: pulumi.String("string"),
CcAlgo: pulumi.String("string"),
CongestionRecoveryScalingFactor: pulumi.String("string"),
DelayedAckTimerDelay: pulumi.String("string"),
IdleConnectionTimeout: pulumi.String("string"),
IdleConnectionType: pulumi.String("string"),
IgnoreTimeWait: pulumi.String("string"),
IpDscp: pulumi.String("string"),
KeepaliveInHalfcloseState: pulumi.String("string"),
MaxRetransmissions: pulumi.String("string"),
MaxSegmentSize: pulumi.String("string"),
MaxSynRetransmissions: pulumi.String("string"),
MinRexmtTimeout: pulumi.String("string"),
NaglesAlgorithm: pulumi.String("string"),
ReassemblyQueueSize: pulumi.String("string"),
ReceiveWindow: pulumi.String("string"),
ReorderThreshold: pulumi.String("string"),
SlowStartScalingFactor: pulumi.String("string"),
TimeWaitDelay: pulumi.String("string"),
UseInterfaceMtu: pulumi.String("string"),
},
},
UdpFastPathProfiles: avi.NetworkprofileProfileUdpFastPathProfileArray{
&avi.NetworkprofileProfileUdpFastPathProfileArgs{
DsrProfiles: avi.NetworkprofileProfileUdpFastPathProfileDsrProfileArray{
&avi.NetworkprofileProfileUdpFastPathProfileDsrProfileArgs{
DsrEncapType: pulumi.String("string"),
DsrType: pulumi.String("string"),
},
},
PerPktLoadbalance: pulumi.String("string"),
SessionIdleTimeout: pulumi.String("string"),
Snat: pulumi.String("string"),
},
},
UdpProxyProfiles: avi.NetworkprofileProfileUdpProxyProfileArray{
&avi.NetworkprofileProfileUdpProxyProfileArgs{
SessionIdleTimeout: pulumi.String("string"),
},
},
},
},
ConfigpbAttributes: avi.NetworkprofileConfigpbAttributeArray{
&avi.NetworkprofileConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
ConnectionMirror: pulumi.String("string"),
Description: pulumi.String("string"),
Markers: avi.NetworkprofileMarkerArray{
&avi.NetworkprofileMarkerArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Name: pulumi.String("string"),
NetworkprofileId: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var networkprofileResource = new Networkprofile("networkprofileResource", NetworkprofileArgs.builder()
.profiles(NetworkprofileProfileArgs.builder()
.type("string")
.sctpFastPathProfiles(NetworkprofileProfileSctpFastPathProfileArgs.builder()
.enableInitChunkProtection("string")
.idleTimeout("string")
.build())
.sctpProxyProfiles(NetworkprofileProfileSctpProxyProfileArgs.builder()
.cookieExpirationTimeout("string")
.heartbeatInterval("string")
.idleTimeout("string")
.maxRetransmissionsAssociation("string")
.maxRetransmissionsInitChunks("string")
.numberOfStreams("string")
.receiveWindow("string")
.resetTimeout("string")
.build())
.tcpFastPathProfiles(NetworkprofileProfileTcpFastPathProfileArgs.builder()
.dsrProfiles(NetworkprofileProfileTcpFastPathProfileDsrProfileArgs.builder()
.dsrEncapType("string")
.dsrType("string")
.build())
.enableSynProtection("string")
.sessionIdleTimeout("string")
.tcpFastpathOptions(NetworkprofileProfileTcpFastPathProfileTcpFastpathOptionArgs.builder()
.stripSack("string")
.build())
.build())
.tcpProxyProfiles(NetworkprofileProfileTcpProxyProfileArgs.builder()
.ackOnPush("string")
.aggressiveCongestionAvoidance("string")
.autoWindowGrowth("string")
.automatic("string")
.ccAlgo("string")
.congestionRecoveryScalingFactor("string")
.delayedAckTimerDelay("string")
.idleConnectionTimeout("string")
.idleConnectionType("string")
.ignoreTimeWait("string")
.ipDscp("string")
.keepaliveInHalfcloseState("string")
.maxRetransmissions("string")
.maxSegmentSize("string")
.maxSynRetransmissions("string")
.minRexmtTimeout("string")
.naglesAlgorithm("string")
.reassemblyQueueSize("string")
.receiveWindow("string")
.reorderThreshold("string")
.slowStartScalingFactor("string")
.timeWaitDelay("string")
.useInterfaceMtu("string")
.build())
.udpFastPathProfiles(NetworkprofileProfileUdpFastPathProfileArgs.builder()
.dsrProfiles(NetworkprofileProfileUdpFastPathProfileDsrProfileArgs.builder()
.dsrEncapType("string")
.dsrType("string")
.build())
.perPktLoadbalance("string")
.sessionIdleTimeout("string")
.snat("string")
.build())
.udpProxyProfiles(NetworkprofileProfileUdpProxyProfileArgs.builder()
.sessionIdleTimeout("string")
.build())
.build())
.configpbAttributes(NetworkprofileConfigpbAttributeArgs.builder()
.version("string")
.build())
.connectionMirror("string")
.description("string")
.markers(NetworkprofileMarkerArgs.builder()
.key("string")
.values("string")
.build())
.name("string")
.networkprofileId("string")
.tenantRef("string")
.uuid("string")
.build());
networkprofile_resource = avi.Networkprofile("networkprofileResource",
profiles=[{
"type": "string",
"sctp_fast_path_profiles": [{
"enable_init_chunk_protection": "string",
"idle_timeout": "string",
}],
"sctp_proxy_profiles": [{
"cookie_expiration_timeout": "string",
"heartbeat_interval": "string",
"idle_timeout": "string",
"max_retransmissions_association": "string",
"max_retransmissions_init_chunks": "string",
"number_of_streams": "string",
"receive_window": "string",
"reset_timeout": "string",
}],
"tcp_fast_path_profiles": [{
"dsr_profiles": [{
"dsr_encap_type": "string",
"dsr_type": "string",
}],
"enable_syn_protection": "string",
"session_idle_timeout": "string",
"tcp_fastpath_options": [{
"strip_sack": "string",
}],
}],
"tcp_proxy_profiles": [{
"ack_on_push": "string",
"aggressive_congestion_avoidance": "string",
"auto_window_growth": "string",
"automatic": "string",
"cc_algo": "string",
"congestion_recovery_scaling_factor": "string",
"delayed_ack_timer_delay": "string",
"idle_connection_timeout": "string",
"idle_connection_type": "string",
"ignore_time_wait": "string",
"ip_dscp": "string",
"keepalive_in_halfclose_state": "string",
"max_retransmissions": "string",
"max_segment_size": "string",
"max_syn_retransmissions": "string",
"min_rexmt_timeout": "string",
"nagles_algorithm": "string",
"reassembly_queue_size": "string",
"receive_window": "string",
"reorder_threshold": "string",
"slow_start_scaling_factor": "string",
"time_wait_delay": "string",
"use_interface_mtu": "string",
}],
"udp_fast_path_profiles": [{
"dsr_profiles": [{
"dsr_encap_type": "string",
"dsr_type": "string",
}],
"per_pkt_loadbalance": "string",
"session_idle_timeout": "string",
"snat": "string",
}],
"udp_proxy_profiles": [{
"session_idle_timeout": "string",
}],
}],
configpb_attributes=[{
"version": "string",
}],
connection_mirror="string",
description="string",
markers=[{
"key": "string",
"values": ["string"],
}],
name="string",
networkprofile_id="string",
tenant_ref="string",
uuid="string")
const networkprofileResource = new avi.Networkprofile("networkprofileResource", {
profiles: [{
type: "string",
sctpFastPathProfiles: [{
enableInitChunkProtection: "string",
idleTimeout: "string",
}],
sctpProxyProfiles: [{
cookieExpirationTimeout: "string",
heartbeatInterval: "string",
idleTimeout: "string",
maxRetransmissionsAssociation: "string",
maxRetransmissionsInitChunks: "string",
numberOfStreams: "string",
receiveWindow: "string",
resetTimeout: "string",
}],
tcpFastPathProfiles: [{
dsrProfiles: [{
dsrEncapType: "string",
dsrType: "string",
}],
enableSynProtection: "string",
sessionIdleTimeout: "string",
tcpFastpathOptions: [{
stripSack: "string",
}],
}],
tcpProxyProfiles: [{
ackOnPush: "string",
aggressiveCongestionAvoidance: "string",
autoWindowGrowth: "string",
automatic: "string",
ccAlgo: "string",
congestionRecoveryScalingFactor: "string",
delayedAckTimerDelay: "string",
idleConnectionTimeout: "string",
idleConnectionType: "string",
ignoreTimeWait: "string",
ipDscp: "string",
keepaliveInHalfcloseState: "string",
maxRetransmissions: "string",
maxSegmentSize: "string",
maxSynRetransmissions: "string",
minRexmtTimeout: "string",
naglesAlgorithm: "string",
reassemblyQueueSize: "string",
receiveWindow: "string",
reorderThreshold: "string",
slowStartScalingFactor: "string",
timeWaitDelay: "string",
useInterfaceMtu: "string",
}],
udpFastPathProfiles: [{
dsrProfiles: [{
dsrEncapType: "string",
dsrType: "string",
}],
perPktLoadbalance: "string",
sessionIdleTimeout: "string",
snat: "string",
}],
udpProxyProfiles: [{
sessionIdleTimeout: "string",
}],
}],
configpbAttributes: [{
version: "string",
}],
connectionMirror: "string",
description: "string",
markers: [{
key: "string",
values: ["string"],
}],
name: "string",
networkprofileId: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Networkprofile
properties:
configpbAttributes:
- version: string
connectionMirror: string
description: string
markers:
- key: string
values:
- string
name: string
networkprofileId: string
profiles:
- sctpFastPathProfiles:
- enableInitChunkProtection: string
idleTimeout: string
sctpProxyProfiles:
- cookieExpirationTimeout: string
heartbeatInterval: string
idleTimeout: string
maxRetransmissionsAssociation: string
maxRetransmissionsInitChunks: string
numberOfStreams: string
receiveWindow: string
resetTimeout: string
tcpFastPathProfiles:
- dsrProfiles:
- dsrEncapType: string
dsrType: string
enableSynProtection: string
sessionIdleTimeout: string
tcpFastpathOptions:
- stripSack: string
tcpProxyProfiles:
- ackOnPush: string
aggressiveCongestionAvoidance: string
autoWindowGrowth: string
automatic: string
ccAlgo: string
congestionRecoveryScalingFactor: string
delayedAckTimerDelay: string
idleConnectionTimeout: string
idleConnectionType: string
ignoreTimeWait: string
ipDscp: string
keepaliveInHalfcloseState: string
maxRetransmissions: string
maxSegmentSize: string
maxSynRetransmissions: string
minRexmtTimeout: string
naglesAlgorithm: string
reassemblyQueueSize: string
receiveWindow: string
reorderThreshold: string
slowStartScalingFactor: string
timeWaitDelay: string
useInterfaceMtu: string
type: string
udpFastPathProfiles:
- dsrProfiles:
- dsrEncapType: string
dsrType: string
perPktLoadbalance: string
sessionIdleTimeout: string
snat: string
udpProxyProfiles:
- sessionIdleTimeout: string
tenantRef: string
uuid: string
Networkprofile 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 Networkprofile resource accepts the following input properties:
- Profiles
List<Networkprofile
Profile> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<NetworkprofileConfigpb 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.
- Connection
Mirror string - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Networkprofile
Id string - 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Profiles
[]Networkprofile
Profile Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []NetworkprofileConfigpb 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.
- Connection
Mirror string - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Networkprofile
Id string - 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- profiles
List<Networkprofile
Profile> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<NetworkprofileConfigpb 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.
- connection
Mirror String - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networkprofile
Id String - 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- profiles
Networkprofile
Profile[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes NetworkprofileConfigpb 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.
- connection
Mirror string - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networkprofile
Id string - 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- profiles
Sequence[Networkprofile
Profile Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[NetworkprofileConfigpb 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.
- connection_
mirror str - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networkprofile_
id str - 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- profiles List<Property Map>
- 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.
- connection
Mirror String - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- description String
- Allowed with any value in enterprise, essentials, basic, 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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networkprofile
Id String - 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
- Uuid of the network profile. 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 Networkprofile 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 Networkprofile Resource
Get an existing Networkprofile 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?: NetworkprofileState, opts?: CustomResourceOptions): Networkprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configpb_attributes: Optional[Sequence[NetworkprofileConfigpbAttributeArgs]] = None,
connection_mirror: Optional[str] = None,
description: Optional[str] = None,
markers: Optional[Sequence[NetworkprofileMarkerArgs]] = None,
name: Optional[str] = None,
networkprofile_id: Optional[str] = None,
profiles: Optional[Sequence[NetworkprofileProfileArgs]] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Networkprofile
func GetNetworkprofile(ctx *Context, name string, id IDInput, state *NetworkprofileState, opts ...ResourceOption) (*Networkprofile, error)
public static Networkprofile Get(string name, Input<string> id, NetworkprofileState? state, CustomResourceOptions? opts = null)
public static Networkprofile get(String name, Output<String> id, NetworkprofileState state, CustomResourceOptions options)
resources: _: type: avi:Networkprofile 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<NetworkprofileConfigpb 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.
- Connection
Mirror string - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Networkprofile
Id string - Profiles
List<Networkprofile
Profile> - 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []NetworkprofileConfigpb 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.
- Connection
Mirror string - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Networkprofile
Id string - Profiles
[]Networkprofile
Profile 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<NetworkprofileConfigpb 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.
- connection
Mirror String - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networkprofile
Id String - profiles
List<Networkprofile
Profile> - 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes NetworkprofileConfigpb 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.
- connection
Mirror string - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networkprofile
Id string - profiles
Networkprofile
Profile[] - 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[NetworkprofileConfigpb 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.
- connection_
mirror str - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Networkprofile
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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networkprofile_
id str - profiles
Sequence[Networkprofile
Profile 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
- Uuid of the network profile. 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.
- connection
Mirror String - When enabled, avi mirrors all tcp fastpath connections to standby. Applicable only in legacy ha mode. Field introduced in 18.1.3,18.2.1. Allowed with any value in enterprise, basic, enterprise with cloud services edition. Allowed in essentials (allowed values- false) edition.
- description String
- Allowed with any value in enterprise, essentials, basic, 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
- The name of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- networkprofile
Id String - profiles 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
- Uuid of the network profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
NetworkprofileConfigpbAttribute, NetworkprofileConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
NetworkprofileMarker, NetworkprofileMarkerArgs
NetworkprofileProfile, NetworkprofileProfileArgs
- Type string
- Sctp
Fast List<NetworkprofilePath Profiles Profile Sctp Fast Path Profile> - Sctp
Proxy List<NetworkprofileProfiles Profile Sctp Proxy Profile> - Tcp
Fast List<NetworkprofilePath Profiles Profile Tcp Fast Path Profile> - Tcp
Proxy List<NetworkprofileProfiles Profile Tcp Proxy Profile> - Udp
Fast List<NetworkprofilePath Profiles Profile Udp Fast Path Profile> - Udp
Proxy List<NetworkprofileProfiles Profile Udp Proxy Profile>
- Type string
- Sctp
Fast []NetworkprofilePath Profiles Profile Sctp Fast Path Profile - Sctp
Proxy []NetworkprofileProfiles Profile Sctp Proxy Profile - Tcp
Fast []NetworkprofilePath Profiles Profile Tcp Fast Path Profile - Tcp
Proxy []NetworkprofileProfiles Profile Tcp Proxy Profile - Udp
Fast []NetworkprofilePath Profiles Profile Udp Fast Path Profile - Udp
Proxy []NetworkprofileProfiles Profile Udp Proxy Profile
- type String
- sctp
Fast List<NetworkprofilePath Profiles Profile Sctp Fast Path Profile> - sctp
Proxy List<NetworkprofileProfiles Profile Sctp Proxy Profile> - tcp
Fast List<NetworkprofilePath Profiles Profile Tcp Fast Path Profile> - tcp
Proxy List<NetworkprofileProfiles Profile Tcp Proxy Profile> - udp
Fast List<NetworkprofilePath Profiles Profile Udp Fast Path Profile> - udp
Proxy List<NetworkprofileProfiles Profile Udp Proxy Profile>
- type string
- sctp
Fast NetworkprofilePath Profiles Profile Sctp Fast Path Profile[] - sctp
Proxy NetworkprofileProfiles Profile Sctp Proxy Profile[] - tcp
Fast NetworkprofilePath Profiles Profile Tcp Fast Path Profile[] - tcp
Proxy NetworkprofileProfiles Profile Tcp Proxy Profile[] - udp
Fast NetworkprofilePath Profiles Profile Udp Fast Path Profile[] - udp
Proxy NetworkprofileProfiles Profile Udp Proxy Profile[]
- type str
- sctp_
fast_ Sequence[Networkprofilepath_ profiles Profile Sctp Fast Path Profile] - sctp_
proxy_ Sequence[Networkprofileprofiles Profile Sctp Proxy Profile] - tcp_
fast_ Sequence[Networkprofilepath_ profiles Profile Tcp Fast Path Profile] - tcp_
proxy_ Sequence[Networkprofileprofiles Profile Tcp Proxy Profile] - udp_
fast_ Sequence[Networkprofilepath_ profiles Profile Udp Fast Path Profile] - udp_
proxy_ Sequence[Networkprofileprofiles Profile Udp Proxy Profile]
NetworkprofileProfileSctpFastPathProfile, NetworkprofileProfileSctpFastPathProfileArgs
- Enable
Init stringChunk Protection - Idle
Timeout string
- Enable
Init stringChunk Protection - Idle
Timeout string
- enable
Init StringChunk Protection - idle
Timeout String
- enable
Init stringChunk Protection - idle
Timeout string
- enable
Init StringChunk Protection - idle
Timeout String
NetworkprofileProfileSctpProxyProfile, NetworkprofileProfileSctpProxyProfileArgs
- string
- Heartbeat
Interval string - Idle
Timeout string - Max
Retransmissions stringAssociation - Max
Retransmissions stringInit Chunks - Number
Of stringStreams - Receive
Window string - Reset
Timeout string
- string
- Heartbeat
Interval string - Idle
Timeout string - Max
Retransmissions stringAssociation - Max
Retransmissions stringInit Chunks - Number
Of stringStreams - Receive
Window string - Reset
Timeout string
- String
- heartbeat
Interval String - idle
Timeout String - max
Retransmissions StringAssociation - max
Retransmissions StringInit Chunks - number
Of StringStreams - receive
Window String - reset
Timeout String
- string
- heartbeat
Interval string - idle
Timeout string - max
Retransmissions stringAssociation - max
Retransmissions stringInit Chunks - number
Of stringStreams - receive
Window string - reset
Timeout string
- String
- heartbeat
Interval String - idle
Timeout String - max
Retransmissions StringAssociation - max
Retransmissions StringInit Chunks - number
Of StringStreams - receive
Window String - reset
Timeout String
NetworkprofileProfileTcpFastPathProfile, NetworkprofileProfileTcpFastPathProfileArgs
NetworkprofileProfileTcpFastPathProfileDsrProfile, NetworkprofileProfileTcpFastPathProfileDsrProfileArgs
- Dsr
Encap stringType - Dsr
Type string
- Dsr
Encap stringType - Dsr
Type string
- dsr
Encap StringType - dsr
Type String
- dsr
Encap stringType - dsr
Type string
- dsr_
encap_ strtype - dsr_
type str
- dsr
Encap StringType - dsr
Type String
NetworkprofileProfileTcpFastPathProfileTcpFastpathOption, NetworkprofileProfileTcpFastPathProfileTcpFastpathOptionArgs
- Strip
Sack string
- Strip
Sack string
- strip
Sack String
- strip
Sack string
- strip_
sack str
- strip
Sack String
NetworkprofileProfileTcpProxyProfile, NetworkprofileProfileTcpProxyProfileArgs
- Ack
On stringPush - string
- Auto
Window stringGrowth - Automatic string
- Cc
Algo string - Congestion
Recovery stringScaling Factor - Delayed
Ack stringTimer Delay - Idle
Connection stringTimeout - Idle
Connection stringType - Ignore
Time stringWait - Ip
Dscp string - Keepalive
In stringHalfclose State - Max
Retransmissions string - Max
Segment stringSize - Max
Syn stringRetransmissions - Min
Rexmt stringTimeout - Nagles
Algorithm string - Reassembly
Queue stringSize - Receive
Window string - Reorder
Threshold string - Slow
Start stringScaling Factor - Time
Wait stringDelay - Use
Interface stringMtu
- Ack
On stringPush - string
- Auto
Window stringGrowth - Automatic string
- Cc
Algo string - Congestion
Recovery stringScaling Factor - Delayed
Ack stringTimer Delay - Idle
Connection stringTimeout - Idle
Connection stringType - Ignore
Time stringWait - Ip
Dscp string - Keepalive
In stringHalfclose State - Max
Retransmissions string - Max
Segment stringSize - Max
Syn stringRetransmissions - Min
Rexmt stringTimeout - Nagles
Algorithm string - Reassembly
Queue stringSize - Receive
Window string - Reorder
Threshold string - Slow
Start stringScaling Factor - Time
Wait stringDelay - Use
Interface stringMtu
- ack
On StringPush - String
- auto
Window StringGrowth - automatic String
- cc
Algo String - congestion
Recovery StringScaling Factor - delayed
Ack StringTimer Delay - idle
Connection StringTimeout - idle
Connection StringType - ignore
Time StringWait - ip
Dscp String - keepalive
In StringHalfclose State - max
Retransmissions String - max
Segment StringSize - max
Syn StringRetransmissions - min
Rexmt StringTimeout - nagles
Algorithm String - reassembly
Queue StringSize - receive
Window String - reorder
Threshold String - slow
Start StringScaling Factor - time
Wait StringDelay - use
Interface StringMtu
- ack
On stringPush - string
- auto
Window stringGrowth - automatic string
- cc
Algo string - congestion
Recovery stringScaling Factor - delayed
Ack stringTimer Delay - idle
Connection stringTimeout - idle
Connection stringType - ignore
Time stringWait - ip
Dscp string - keepalive
In stringHalfclose State - max
Retransmissions string - max
Segment stringSize - max
Syn stringRetransmissions - min
Rexmt stringTimeout - nagles
Algorithm string - reassembly
Queue stringSize - receive
Window string - reorder
Threshold string - slow
Start stringScaling Factor - time
Wait stringDelay - use
Interface stringMtu
- ack_
on_ strpush - aggressive_
congestion_ stravoidance - auto_
window_ strgrowth - automatic str
- cc_
algo str - congestion_
recovery_ strscaling_ factor - delayed_
ack_ strtimer_ delay - idle_
connection_ strtimeout - idle_
connection_ strtype - ignore_
time_ strwait - ip_
dscp str - keepalive_
in_ strhalfclose_ state - max_
retransmissions str - max_
segment_ strsize - max_
syn_ strretransmissions - min_
rexmt_ strtimeout - nagles_
algorithm str - reassembly_
queue_ strsize - receive_
window str - reorder_
threshold str - slow_
start_ strscaling_ factor - time_
wait_ strdelay - use_
interface_ strmtu
- ack
On StringPush - String
- auto
Window StringGrowth - automatic String
- cc
Algo String - congestion
Recovery StringScaling Factor - delayed
Ack StringTimer Delay - idle
Connection StringTimeout - idle
Connection StringType - ignore
Time StringWait - ip
Dscp String - keepalive
In StringHalfclose State - max
Retransmissions String - max
Segment StringSize - max
Syn StringRetransmissions - min
Rexmt StringTimeout - nagles
Algorithm String - reassembly
Queue StringSize - receive
Window String - reorder
Threshold String - slow
Start StringScaling Factor - time
Wait StringDelay - use
Interface StringMtu
NetworkprofileProfileUdpFastPathProfile, NetworkprofileProfileUdpFastPathProfileArgs
- dsr
Profiles List<Property Map> - per
Pkt StringLoadbalance - session
Idle StringTimeout - snat String
NetworkprofileProfileUdpFastPathProfileDsrProfile, NetworkprofileProfileUdpFastPathProfileDsrProfileArgs
- Dsr
Encap stringType - Dsr
Type string
- Dsr
Encap stringType - Dsr
Type string
- dsr
Encap StringType - dsr
Type String
- dsr
Encap stringType - dsr
Type string
- dsr_
encap_ strtype - dsr_
type str
- dsr
Encap StringType - dsr
Type String
NetworkprofileProfileUdpProxyProfile, NetworkprofileProfileUdpProxyProfileArgs
- Session
Idle stringTimeout
- Session
Idle stringTimeout
- session
Idle StringTimeout
- session
Idle stringTimeout
- session
Idle StringTimeout
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.