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

avi.getNsxtsegmentruntime

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.Nsxtsegmentruntime” sidebar_current: “docs-avi-datasource-nsxtsegmentruntime” description: |- Get information of Avi NsxtSegmentRuntime.

    avi.Nsxtsegmentruntime

    This data source is used to to get avi.Nsxtsegmentruntime objects.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const fooNsxtsegmentruntime = avi.getNsxtsegmentruntime({
        cloudRef: "/api/cloud/?tenant=admin&name=Default-Cloud",
        name: "foo",
        uuid: "nsxtsegmentruntime-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo_nsxtsegmentruntime = avi.get_nsxtsegmentruntime(cloud_ref="/api/cloud/?tenant=admin&name=Default-Cloud",
        name="foo",
        uuid="nsxtsegmentruntime-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
    
    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.LookupNsxtsegmentruntime(ctx, &avi.LookupNsxtsegmentruntimeArgs{
    			CloudRef: pulumi.StringRef("/api/cloud/?tenant=admin&name=Default-Cloud"),
    			Name:     pulumi.StringRef("foo"),
    			Uuid:     pulumi.StringRef("nsxtsegmentruntime-f9cf6b3e-a411-436f-95e2-2982ba2b217b"),
    		}, nil)
    		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 fooNsxtsegmentruntime = Avi.GetNsxtsegmentruntime.Invoke(new()
        {
            CloudRef = "/api/cloud/?tenant=admin&name=Default-Cloud",
            Name = "foo",
            Uuid = "nsxtsegmentruntime-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.AviFunctions;
    import com.pulumi.avi.inputs.GetNsxtsegmentruntimeArgs;
    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) {
            final var fooNsxtsegmentruntime = AviFunctions.getNsxtsegmentruntime(GetNsxtsegmentruntimeArgs.builder()
                .cloudRef("/api/cloud/?tenant=admin&name=Default-Cloud")
                .name("foo")
                .uuid("nsxtsegmentruntime-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
                .build());
    
        }
    }
    
    variables:
      fooNsxtsegmentruntime:
        fn::invoke:
          function: avi:getNsxtsegmentruntime
          arguments:
            cloudRef: /api/cloud/?tenant=admin&name=Default-Cloud
            name: foo
            uuid: nsxtsegmentruntime-f9cf6b3e-a411-436f-95e2-2982ba2b217b
    

    Using getNsxtsegmentruntime

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getNsxtsegmentruntime(args: GetNsxtsegmentruntimeArgs, opts?: InvokeOptions): Promise<GetNsxtsegmentruntimeResult>
    function getNsxtsegmentruntimeOutput(args: GetNsxtsegmentruntimeOutputArgs, opts?: InvokeOptions): Output<GetNsxtsegmentruntimeResult>
    def get_nsxtsegmentruntime(cloud_ref: Optional[str] = None,
                               id: Optional[str] = None,
                               name: Optional[str] = None,
                               tenant_ref: Optional[str] = None,
                               uuid: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetNsxtsegmentruntimeResult
    def get_nsxtsegmentruntime_output(cloud_ref: Optional[pulumi.Input[str]] = None,
                               id: Optional[pulumi.Input[str]] = None,
                               name: Optional[pulumi.Input[str]] = None,
                               tenant_ref: Optional[pulumi.Input[str]] = None,
                               uuid: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetNsxtsegmentruntimeResult]
    func LookupNsxtsegmentruntime(ctx *Context, args *LookupNsxtsegmentruntimeArgs, opts ...InvokeOption) (*LookupNsxtsegmentruntimeResult, error)
    func LookupNsxtsegmentruntimeOutput(ctx *Context, args *LookupNsxtsegmentruntimeOutputArgs, opts ...InvokeOption) LookupNsxtsegmentruntimeResultOutput

    > Note: This function is named LookupNsxtsegmentruntime in the Go SDK.

    public static class GetNsxtsegmentruntime 
    {
        public static Task<GetNsxtsegmentruntimeResult> InvokeAsync(GetNsxtsegmentruntimeArgs args, InvokeOptions? opts = null)
        public static Output<GetNsxtsegmentruntimeResult> Invoke(GetNsxtsegmentruntimeInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetNsxtsegmentruntimeResult> getNsxtsegmentruntime(GetNsxtsegmentruntimeArgs args, InvokeOptions options)
    public static Output<GetNsxtsegmentruntimeResult> getNsxtsegmentruntime(GetNsxtsegmentruntimeArgs args, InvokeOptions options)
    
    fn::invoke:
      function: avi:index/getNsxtsegmentruntime:getNsxtsegmentruntime
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CloudRef string
    Search NsxtSegmentRuntime by cloud_ref.
    Id string
    Name string
    Search NsxtSegmentRuntime by name.
    TenantRef string
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Search NsxtSegmentRuntime by uuid.
    CloudRef string
    Search NsxtSegmentRuntime by cloud_ref.
    Id string
    Name string
    Search NsxtSegmentRuntime by name.
    TenantRef string
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Search NsxtSegmentRuntime by uuid.
    cloudRef String
    Search NsxtSegmentRuntime by cloud_ref.
    id String
    name String
    Search NsxtSegmentRuntime by name.
    tenantRef String
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Search NsxtSegmentRuntime by uuid.
    cloudRef string
    Search NsxtSegmentRuntime by cloud_ref.
    id string
    name string
    Search NsxtSegmentRuntime by name.
    tenantRef string
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Search NsxtSegmentRuntime by uuid.
    cloud_ref str
    Search NsxtSegmentRuntime by cloud_ref.
    id str
    name str
    Search NsxtSegmentRuntime by name.
    tenant_ref str
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Search NsxtSegmentRuntime by uuid.
    cloudRef String
    Search NsxtSegmentRuntime by cloud_ref.
    id String
    name String
    Search NsxtSegmentRuntime by name.
    tenantRef String
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Search NsxtSegmentRuntime by uuid.

    getNsxtsegmentruntime Result

    The following output properties are available:

    CloudRef string
    Nsxt segment belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Dhcp6Ranges List<string>
    V6 dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DhcpEnabled string
    Ip address management scheme for this segment associated network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DhcpRanges List<string>
    Dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Id string
    Name string
    Segment object name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    NwName string
    Network name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    NwRef string
    Corresponding network object in avi. It is a reference to an object of type network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    OpaqueNetworkId string
    Opaque network id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    OriginId string
    Origin id applicable to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    SecurityOnlyNsxt string
    Nsxt segment belongs to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    SegmentGw string
    Segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    SegmentGw6 string
    V6 segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    SegmentId string
    Segment id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Segname string
    Segment name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Subnet string
    Segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Subnet6 string
    V6 segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Tier1Id string
    Tier1 router id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    VlanIds List<string>
    Segment vlan ids. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    VrfContextRef string
    Corresponding vrf context object in avi. It is a reference to an object of type vrfcontext. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CloudRef string
    Nsxt segment belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Dhcp6Ranges []string
    V6 dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DhcpEnabled string
    Ip address management scheme for this segment associated network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DhcpRanges []string
    Dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Id string
    Name string
    Segment object name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    NwName string
    Network name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    NwRef string
    Corresponding network object in avi. It is a reference to an object of type network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    OpaqueNetworkId string
    Opaque network id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    OriginId string
    Origin id applicable to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    SecurityOnlyNsxt string
    Nsxt segment belongs to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    SegmentGw string
    Segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    SegmentGw6 string
    V6 segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    SegmentId string
    Segment id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Segname string
    Segment name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Subnet string
    Segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Subnet6 string
    V6 segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Tier1Id string
    Tier1 router id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    VlanIds []string
    Segment vlan ids. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    VrfContextRef string
    Corresponding vrf context object in avi. It is a reference to an object of type vrfcontext. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    cloudRef String
    Nsxt segment belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcp6Ranges List<String>
    V6 dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcpEnabled String
    Ip address management scheme for this segment associated network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcpRanges List<String>
    Dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id String
    name String
    Segment object name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nwName String
    Network name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nwRef String
    Corresponding network object in avi. It is a reference to an object of type network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    opaqueNetworkId String
    Opaque network id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    originId String
    Origin id applicable to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    securityOnlyNsxt String
    Nsxt segment belongs to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    segmentGw String
    Segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segmentGw6 String
    V6 segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segmentId String
    Segment id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segname String
    Segment name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    subnet String
    Segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    subnet6 String
    V6 segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tier1Id String
    Tier1 router id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    vlanIds List<String>
    Segment vlan ids. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    vrfContextRef String
    Corresponding vrf context object in avi. It is a reference to an object of type vrfcontext. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    cloudRef string
    Nsxt segment belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcp6Ranges string[]
    V6 dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcpEnabled string
    Ip address management scheme for this segment associated network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcpRanges string[]
    Dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id string
    name string
    Segment object name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nwName string
    Network name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nwRef string
    Corresponding network object in avi. It is a reference to an object of type network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    opaqueNetworkId string
    Opaque network id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    originId string
    Origin id applicable to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    securityOnlyNsxt string
    Nsxt segment belongs to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    segmentGw string
    Segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segmentGw6 string
    V6 segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segmentId string
    Segment id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segname string
    Segment name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    subnet string
    Segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    subnet6 string
    V6 segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tier1Id string
    Tier1 router id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    vlanIds string[]
    Segment vlan ids. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    vrfContextRef string
    Corresponding vrf context object in avi. It is a reference to an object of type vrfcontext. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    cloud_ref str
    Nsxt segment belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcp6_ranges Sequence[str]
    V6 dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcp_enabled str
    Ip address management scheme for this segment associated network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcp_ranges Sequence[str]
    Dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id str
    name str
    Segment object name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nw_name str
    Network name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nw_ref str
    Corresponding network object in avi. It is a reference to an object of type network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    opaque_network_id str
    Opaque network id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    origin_id str
    Origin id applicable to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    security_only_nsxt str
    Nsxt segment belongs to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    segment_gw str
    Segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segment_gw6 str
    V6 segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segment_id str
    Segment id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segname str
    Segment name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    subnet str
    Segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    subnet6 str
    V6 segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tier1_id str
    Tier1 router id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    vlan_ids Sequence[str]
    Segment vlan ids. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    vrf_context_ref str
    Corresponding vrf context object in avi. It is a reference to an object of type vrfcontext. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    cloudRef String
    Nsxt segment belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcp6Ranges List<String>
    V6 dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcpEnabled String
    Ip address management scheme for this segment associated network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dhcpRanges List<String>
    Dhcp ranges configured in nsxt. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id String
    name String
    Segment object name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nwName String
    Network name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nwRef String
    Corresponding network object in avi. It is a reference to an object of type network. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    opaqueNetworkId String
    Opaque network id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    originId String
    Origin id applicable to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    securityOnlyNsxt String
    Nsxt segment belongs to security only cloud. Field introduced in 22.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    segmentGw String
    Segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segmentGw6 String
    V6 segment gateway. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segmentId String
    Segment id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    segname String
    Segment name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    subnet String
    Segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    subnet6 String
    V6 segment cidr. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    Nsxt segment belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tier1Id String
    Tier1 router id. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    vlanIds List<String>
    Segment vlan ids. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
    vrfContextRef String
    Corresponding vrf context object in avi. It is a reference to an object of type vrfcontext. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    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