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

avi.getServiceengine

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.Serviceengine” sidebar_current: “docs-avi-datasource-serviceengine” description: |- Get information of Avi ServiceEngine.

    avi.Serviceengine

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const fooServiceengine = avi.getServiceengine({
        cloudRef: "/api/cloud/?tenant=admin&name=Default-Cloud",
        name: "foo",
        uuid: "serviceengine-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo_serviceengine = avi.get_serviceengine(cloud_ref="/api/cloud/?tenant=admin&name=Default-Cloud",
        name="foo",
        uuid="serviceengine-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.LookupServiceengine(ctx, &avi.LookupServiceengineArgs{
    			CloudRef: pulumi.StringRef("/api/cloud/?tenant=admin&name=Default-Cloud"),
    			Name:     pulumi.StringRef("foo"),
    			Uuid:     pulumi.StringRef("serviceengine-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 fooServiceengine = Avi.GetServiceengine.Invoke(new()
        {
            CloudRef = "/api/cloud/?tenant=admin&name=Default-Cloud",
            Name = "foo",
            Uuid = "serviceengine-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.GetServiceengineArgs;
    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 fooServiceengine = AviFunctions.getServiceengine(GetServiceengineArgs.builder()
                .cloudRef("/api/cloud/?tenant=admin&name=Default-Cloud")
                .name("foo")
                .uuid("serviceengine-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
                .build());
    
        }
    }
    
    variables:
      fooServiceengine:
        fn::invoke:
          function: avi:getServiceengine
          arguments:
            cloudRef: /api/cloud/?tenant=admin&name=Default-Cloud
            name: foo
            uuid: serviceengine-f9cf6b3e-a411-436f-95e2-2982ba2b217b
    

    Using getServiceengine

    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 getServiceengine(args: GetServiceengineArgs, opts?: InvokeOptions): Promise<GetServiceengineResult>
    function getServiceengineOutput(args: GetServiceengineOutputArgs, opts?: InvokeOptions): Output<GetServiceengineResult>
    def get_serviceengine(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) -> GetServiceengineResult
    def get_serviceengine_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[GetServiceengineResult]
    func LookupServiceengine(ctx *Context, args *LookupServiceengineArgs, opts ...InvokeOption) (*LookupServiceengineResult, error)
    func LookupServiceengineOutput(ctx *Context, args *LookupServiceengineOutputArgs, opts ...InvokeOption) LookupServiceengineResultOutput

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

    public static class GetServiceengine 
    {
        public static Task<GetServiceengineResult> InvokeAsync(GetServiceengineArgs args, InvokeOptions? opts = null)
        public static Output<GetServiceengineResult> Invoke(GetServiceengineInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetServiceengineResult> getServiceengine(GetServiceengineArgs args, InvokeOptions options)
    public static Output<GetServiceengineResult> getServiceengine(GetServiceengineArgs args, InvokeOptions options)
    
    fn::invoke:
      function: avi:index/getServiceengine:getServiceengine
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CloudRef string
    Search ServiceEngine by cloud_ref.
    Id string
    Name string
    Search ServiceEngine by name.
    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
    Search ServiceEngine by uuid.
    CloudRef string
    Search ServiceEngine by cloud_ref.
    Id string
    Name string
    Search ServiceEngine by name.
    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
    Search ServiceEngine by uuid.
    cloudRef String
    Search ServiceEngine by cloud_ref.
    id String
    name String
    Search ServiceEngine by name.
    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
    Search ServiceEngine by uuid.
    cloudRef string
    Search ServiceEngine by cloud_ref.
    id string
    name string
    Search ServiceEngine by name.
    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
    Search ServiceEngine by uuid.
    cloud_ref str
    Search ServiceEngine by cloud_ref.
    id str
    name str
    Search ServiceEngine by name.
    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
    Search ServiceEngine by uuid.
    cloudRef String
    Search ServiceEngine by cloud_ref.
    id String
    name String
    Search ServiceEngine by name.
    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
    Search ServiceEngine by uuid.

    getServiceengine Result

    The following output properties are available:

    AvailabilityZone string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CloudRef string
    It is a reference to an object of type cloud. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ContainerMode string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ContainerType string
    Enum options - container_type_bridge, container_type_host, container_type_host_dpdk. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ControllerCreated string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ControllerIp string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DataVnics List<GetServiceengineDataVnic>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    EnableState string
    Inorder to disable se set this field appropriately. Enum options - SE_STATE_ENABLED, SE_STATE_DISABLED_FOR_PLACEMENT, SE_STATE_DISABLED, SE_STATE_DISABLED_FORCE, SE_STATE_DISABLED_WITH_SCALEIN, SE_STATE_DISABLED_NO_TRAFFIC, SE_STATE_DISABLED_FORCE_WITH_MIGRATE. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Flavor string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    HostRef string
    It is a reference to an object of type vimgrhostruntime. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Hypervisor string
    Enum options - default, vmware_esx, kvm, vmware_vsan, xen. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Id string
    MgmtVnics List<GetServiceengineMgmtVnic>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    NsxtNoHotplug string
    If set to true, controller does not hotplugg the vnics. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Resources List<GetServiceengineResource>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    SeGroupRef string
    It is a reference to an object of type serviceenginegroup. 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
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    AvailabilityZone string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CloudRef string
    It is a reference to an object of type cloud. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ContainerMode string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ContainerType string
    Enum options - container_type_bridge, container_type_host, container_type_host_dpdk. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ControllerCreated string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ControllerIp string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DataVnics []GetServiceengineDataVnic
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    EnableState string
    Inorder to disable se set this field appropriately. Enum options - SE_STATE_ENABLED, SE_STATE_DISABLED_FOR_PLACEMENT, SE_STATE_DISABLED, SE_STATE_DISABLED_FORCE, SE_STATE_DISABLED_WITH_SCALEIN, SE_STATE_DISABLED_NO_TRAFFIC, SE_STATE_DISABLED_FORCE_WITH_MIGRATE. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Flavor string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    HostRef string
    It is a reference to an object of type vimgrhostruntime. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Hypervisor string
    Enum options - default, vmware_esx, kvm, vmware_vsan, xen. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Id string
    MgmtVnics []GetServiceengineMgmtVnic
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    NsxtNoHotplug string
    If set to true, controller does not hotplugg the vnics. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Resources []GetServiceengineResource
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    SeGroupRef string
    It is a reference to an object of type serviceenginegroup. 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
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    availabilityZone String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    cloudRef String
    It is a reference to an object of type cloud. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    containerMode String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    containerType String
    Enum options - container_type_bridge, container_type_host, container_type_host_dpdk. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    controllerCreated String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    controllerIp String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dataVnics List<GetServiceengineDataVnic>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enableState String
    Inorder to disable se set this field appropriately. Enum options - SE_STATE_ENABLED, SE_STATE_DISABLED_FOR_PLACEMENT, SE_STATE_DISABLED, SE_STATE_DISABLED_FORCE, SE_STATE_DISABLED_WITH_SCALEIN, SE_STATE_DISABLED_NO_TRAFFIC, SE_STATE_DISABLED_FORCE_WITH_MIGRATE. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    flavor String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hostRef String
    It is a reference to an object of type vimgrhostruntime. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hypervisor String
    Enum options - default, vmware_esx, kvm, vmware_vsan, xen. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id String
    mgmtVnics List<GetServiceengineMgmtVnic>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nsxtNoHotplug String
    If set to true, controller does not hotplugg the vnics. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    resources List<GetServiceengineResource>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    seGroupRef String
    It is a reference to an object of type serviceenginegroup. 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
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    availabilityZone string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    cloudRef string
    It is a reference to an object of type cloud. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    containerMode string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    containerType string
    Enum options - container_type_bridge, container_type_host, container_type_host_dpdk. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    controllerCreated string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    controllerIp string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dataVnics GetServiceengineDataVnic[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enableState string
    Inorder to disable se set this field appropriately. Enum options - SE_STATE_ENABLED, SE_STATE_DISABLED_FOR_PLACEMENT, SE_STATE_DISABLED, SE_STATE_DISABLED_FORCE, SE_STATE_DISABLED_WITH_SCALEIN, SE_STATE_DISABLED_NO_TRAFFIC, SE_STATE_DISABLED_FORCE_WITH_MIGRATE. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    flavor string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hostRef string
    It is a reference to an object of type vimgrhostruntime. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hypervisor string
    Enum options - default, vmware_esx, kvm, vmware_vsan, xen. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id string
    mgmtVnics GetServiceengineMgmtVnic[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nsxtNoHotplug string
    If set to true, controller does not hotplugg the vnics. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    resources GetServiceengineResource[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    seGroupRef string
    It is a reference to an object of type serviceenginegroup. 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
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    availability_zone str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    cloud_ref str
    It is a reference to an object of type cloud. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    container_mode str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    container_type str
    Enum options - container_type_bridge, container_type_host, container_type_host_dpdk. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    controller_created str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    controller_ip str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    data_vnics Sequence[GetServiceengineDataVnic]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enable_state str
    Inorder to disable se set this field appropriately. Enum options - SE_STATE_ENABLED, SE_STATE_DISABLED_FOR_PLACEMENT, SE_STATE_DISABLED, SE_STATE_DISABLED_FORCE, SE_STATE_DISABLED_WITH_SCALEIN, SE_STATE_DISABLED_NO_TRAFFIC, SE_STATE_DISABLED_FORCE_WITH_MIGRATE. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    flavor str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    host_ref str
    It is a reference to an object of type vimgrhostruntime. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hypervisor str
    Enum options - default, vmware_esx, kvm, vmware_vsan, xen. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id str
    mgmt_vnics Sequence[GetServiceengineMgmtVnic]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nsxt_no_hotplug str
    If set to true, controller does not hotplugg the vnics. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    resources Sequence[GetServiceengineResource]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    se_group_ref str
    It is a reference to an object of type serviceenginegroup. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    availabilityZone String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    cloudRef String
    It is a reference to an object of type cloud. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    containerMode String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    containerType String
    Enum options - container_type_bridge, container_type_host, container_type_host_dpdk. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    controllerCreated String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    controllerIp String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dataVnics List<Property Map>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enableState String
    Inorder to disable se set this field appropriately. Enum options - SE_STATE_ENABLED, SE_STATE_DISABLED_FOR_PLACEMENT, SE_STATE_DISABLED, SE_STATE_DISABLED_FORCE, SE_STATE_DISABLED_WITH_SCALEIN, SE_STATE_DISABLED_NO_TRAFFIC, SE_STATE_DISABLED_FORCE_WITH_MIGRATE. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    flavor String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hostRef String
    It is a reference to an object of type vimgrhostruntime. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hypervisor String
    Enum options - default, vmware_esx, kvm, vmware_vsan, xen. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id String
    mgmtVnics List<Property Map>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    nsxtNoHotplug String
    If set to true, controller does not hotplugg the vnics. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    resources List<Property Map>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    seGroupRef String
    It is a reference to an object of type serviceenginegroup. 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
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Supporting Types

    GetServiceengineDataVnic

    GetServiceengineDataVnicMember

    Active string
    IfName string
    MacAddress string
    Active string
    IfName string
    MacAddress string
    active String
    ifName String
    macAddress String
    active string
    ifName string
    macAddress string
    active String
    ifName String
    macAddress String

    GetServiceengineDataVnicVlanInterface

    GetServiceengineDataVnicVlanInterfaceVnicNetwork

    GetServiceengineDataVnicVlanInterfaceVnicNetworkIp

    GetServiceengineDataVnicVlanInterfaceVnicNetworkIpIpAddr

    Addr string
    Type string
    Addr string
    Type string
    addr String
    type String
    addr string
    type string
    addr str
    type str
    addr String
    type String

    GetServiceengineDataVnicVnicNetwork

    GetServiceengineDataVnicVnicNetworkIp

    GetServiceengineDataVnicVnicNetworkIpIpAddr

    Addr string
    Type string
    Addr string
    Type string
    addr String
    type String
    addr string
    type string
    addr str
    type str
    addr String
    type String

    GetServiceengineMgmtVnic

    GetServiceengineMgmtVnicMember

    Active string
    IfName string
    MacAddress string
    Active string
    IfName string
    MacAddress string
    active String
    ifName String
    macAddress String
    active string
    ifName string
    macAddress string
    active String
    ifName String
    macAddress String

    GetServiceengineMgmtVnicVlanInterface

    GetServiceengineMgmtVnicVlanInterfaceVnicNetwork

    GetServiceengineMgmtVnicVlanInterfaceVnicNetworkIp

    GetServiceengineMgmtVnicVlanInterfaceVnicNetworkIpIpAddr

    Addr string
    Type string
    Addr string
    Type string
    addr String
    type String
    addr string
    type string
    addr str
    type str
    addr String
    type String

    GetServiceengineMgmtVnicVnicNetwork

    GetServiceengineMgmtVnicVnicNetworkIp

    GetServiceengineMgmtVnicVnicNetworkIpIpAddr

    Addr string
    Type string
    Addr string
    Type string
    addr String
    type String
    addr string
    type string
    addr str
    type str
    addr String
    type String

    GetServiceengineResource

    CoresPerSocket string
    Disk string
    HyperThreading string
    HypervisorMode string
    Memory string
    NumDatapathProcesses string
    NumVcpus string
    QatMode string
    Sockets string
    CoresPerSocket string
    Disk string
    HyperThreading string
    HypervisorMode string
    Memory string
    NumDatapathProcesses string
    NumVcpus string
    QatMode string
    Sockets string
    coresPerSocket String
    disk String
    hyperThreading String
    hypervisorMode String
    memory String
    numDatapathProcesses String
    numVcpus String
    qatMode String
    sockets String
    coresPerSocket string
    disk string
    hyperThreading string
    hypervisorMode string
    memory string
    numDatapathProcesses string
    numVcpus string
    qatMode string
    sockets string
    coresPerSocket String
    disk String
    hyperThreading String
    hypervisorMode String
    memory String
    numDatapathProcesses String
    numVcpus String
    qatMode String
    sockets String

    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