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

avi.Networkprofile

Explore with Pulumi AI

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

    <!–

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

    –>

    layout: “avi”

    page_title: “Avi: avi.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<NetworkprofileProfile>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<NetworkprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConnectionMirror 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<NetworkprofileMarker>
    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.
    NetworkprofileId string
    TenantRef 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 []NetworkprofileProfileArgs
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []NetworkprofileConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConnectionMirror 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 []NetworkprofileMarkerArgs
    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.
    NetworkprofileId string
    TenantRef 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<NetworkprofileProfile>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<NetworkprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    connectionMirror 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<NetworkprofileMarker>
    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.
    networkprofileId String
    tenantRef 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 NetworkprofileProfile[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes NetworkprofileConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    connectionMirror 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 NetworkprofileMarker[]
    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.
    networkprofileId string
    tenantRef 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[NetworkprofileProfileArgs]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[NetworkprofileConfigpbAttributeArgs]
    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[NetworkprofileMarkerArgs]
    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.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    connectionMirror 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.
    networkprofileId String
    tenantRef 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.
    The following state arguments are supported:
    ConfigpbAttributes List<NetworkprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConnectionMirror 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<NetworkprofileMarker>
    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.
    NetworkprofileId string
    Profiles List<NetworkprofileProfile>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. 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.
    ConfigpbAttributes []NetworkprofileConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConnectionMirror 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 []NetworkprofileMarkerArgs
    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.
    NetworkprofileId string
    Profiles []NetworkprofileProfileArgs
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. 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.
    configpbAttributes List<NetworkprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    connectionMirror 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<NetworkprofileMarker>
    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.
    networkprofileId String
    profiles List<NetworkprofileProfile>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. 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.
    configpbAttributes NetworkprofileConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    connectionMirror 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 NetworkprofileMarker[]
    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.
    networkprofileId string
    profiles NetworkprofileProfile[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    It is a reference to an object of type tenant. 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[NetworkprofileConfigpbAttributeArgs]
    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[NetworkprofileMarkerArgs]
    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[NetworkprofileProfileArgs]
    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.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    connectionMirror 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.
    networkprofileId String
    profiles List<Property Map>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. 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 String

    NetworkprofileMarker, NetworkprofileMarkerArgs

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

    NetworkprofileProfile, NetworkprofileProfileArgs

    NetworkprofileProfileSctpFastPathProfile, NetworkprofileProfileSctpFastPathProfileArgs

    NetworkprofileProfileSctpProxyProfile, NetworkprofileProfileSctpProxyProfileArgs

    NetworkprofileProfileTcpFastPathProfile, NetworkprofileProfileTcpFastPathProfileArgs

    NetworkprofileProfileTcpFastPathProfileDsrProfile, NetworkprofileProfileTcpFastPathProfileDsrProfileArgs

    DsrEncapType string
    DsrType string
    DsrEncapType string
    DsrType string
    dsrEncapType String
    dsrType String
    dsrEncapType string
    dsrType string
    dsrEncapType String
    dsrType String

    NetworkprofileProfileTcpFastPathProfileTcpFastpathOption, NetworkprofileProfileTcpFastPathProfileTcpFastpathOptionArgs

    StripSack string
    StripSack string
    stripSack String
    stripSack string
    stripSack String

    NetworkprofileProfileTcpProxyProfile, NetworkprofileProfileTcpProxyProfileArgs

    NetworkprofileProfileUdpFastPathProfile, NetworkprofileProfileUdpFastPathProfileArgs

    NetworkprofileProfileUdpFastPathProfileDsrProfile, NetworkprofileProfileUdpFastPathProfileDsrProfileArgs

    DsrEncapType string
    DsrType string
    DsrEncapType string
    DsrType string
    dsrEncapType String
    dsrType String
    dsrEncapType string
    dsrType string
    dsrEncapType String
    dsrType String

    NetworkprofileProfileUdpProxyProfile, NetworkprofileProfileUdpProxyProfileArgs

    Package Details

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