1. Packages
  2. Intersight Provider
  3. API Docs
  4. VnicEthIf
intersight 1.0.63 published on Wednesday, Apr 16, 2025 by ciscodevnet

intersight.VnicEthIf

Explore with Pulumi AI

Virtual Ethernet Interface.

Usage Example

Resource Creation

import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";

const config = new pulumi.Config();
const vnicLan1 = config.require("vnicLan1");
const vEthNetwork1 = config.require("vEthNetwork1");
const vEthAdapter1 = config.require("vEthAdapter1");
const vEthQos1 = config.require("vEthQos1");
const eth1 = new intersight.VnicEthIf("eth1", {
    order: 0,
    placements: [{
        id: "1",
        pciLink: 0,
        uplink: 0,
        objectType: "vnic.PlacementSettings",
    }],
    cdns: [{
        value: "VIC-1-eth00",
        nrSource: "user",
        objectType: "vnic.Cdn",
    }],
    usnicSettings: [{
        cos: 5,
        nrCount: 0,
        objectType: "vnic.UsnicSettings",
    }],
    vmqSettings: [{
        enabled: true,
        multiQueueSupport: false,
        numInterrupts: 1,
        numVmqs: 1,
        objectType: "vnic.VmqSettings",
    }],
    lanConnectivityPolicies: [{
        moid: vnicLan1,
        objectType: "vnic.LanConnectivityPolicy",
    }],
    ethNetworkPolicies: [{
        moid: vEthNetwork1,
        objectType: "vnic.EthNetworkPolicy",
    }],
    ethAdapterPolicies: [{
        moid: vEthAdapter1,
        objectType: "vnic.EthAdapterPolicy",
    }],
    ethQosPolicies: [{
        moid: vEthQos1,
        objectType: "vnic.EthQosPolicy",
    }],
});
Copy
import pulumi
import pulumi_intersight as intersight

config = pulumi.Config()
vnic_lan1 = config.require("vnicLan1")
v_eth_network1 = config.require("vEthNetwork1")
v_eth_adapter1 = config.require("vEthAdapter1")
v_eth_qos1 = config.require("vEthQos1")
eth1 = intersight.VnicEthIf("eth1",
    order=0,
    placements=[{
        "id": "1",
        "pci_link": 0,
        "uplink": 0,
        "object_type": "vnic.PlacementSettings",
    }],
    cdns=[{
        "value": "VIC-1-eth00",
        "nr_source": "user",
        "object_type": "vnic.Cdn",
    }],
    usnic_settings=[{
        "cos": 5,
        "nr_count": 0,
        "object_type": "vnic.UsnicSettings",
    }],
    vmq_settings=[{
        "enabled": True,
        "multi_queue_support": False,
        "num_interrupts": 1,
        "num_vmqs": 1,
        "object_type": "vnic.VmqSettings",
    }],
    lan_connectivity_policies=[{
        "moid": vnic_lan1,
        "object_type": "vnic.LanConnectivityPolicy",
    }],
    eth_network_policies=[{
        "moid": v_eth_network1,
        "object_type": "vnic.EthNetworkPolicy",
    }],
    eth_adapter_policies=[{
        "moid": v_eth_adapter1,
        "object_type": "vnic.EthAdapterPolicy",
    }],
    eth_qos_policies=[{
        "moid": v_eth_qos1,
        "object_type": "vnic.EthQosPolicy",
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		vnicLan1 := cfg.Require("vnicLan1")
		vEthNetwork1 := cfg.Require("vEthNetwork1")
		vEthAdapter1 := cfg.Require("vEthAdapter1")
		vEthQos1 := cfg.Require("vEthQos1")
		_, err := intersight.NewVnicEthIf(ctx, "eth1", &intersight.VnicEthIfArgs{
			Order: pulumi.Float64(0),
			Placements: intersight.VnicEthIfPlacementArray{
				&intersight.VnicEthIfPlacementArgs{
					Id:         pulumi.String("1"),
					PciLink:    pulumi.Float64(0),
					Uplink:     pulumi.Float64(0),
					ObjectType: pulumi.String("vnic.PlacementSettings"),
				},
			},
			Cdns: intersight.VnicEthIfCdnArray{
				&intersight.VnicEthIfCdnArgs{
					Value:      pulumi.String("VIC-1-eth00"),
					NrSource:   pulumi.String("user"),
					ObjectType: pulumi.String("vnic.Cdn"),
				},
			},
			UsnicSettings: intersight.VnicEthIfUsnicSettingArray{
				&intersight.VnicEthIfUsnicSettingArgs{
					Cos:        pulumi.Float64(5),
					NrCount:    pulumi.Float64(0),
					ObjectType: pulumi.String("vnic.UsnicSettings"),
				},
			},
			VmqSettings: intersight.VnicEthIfVmqSettingArray{
				&intersight.VnicEthIfVmqSettingArgs{
					Enabled:           pulumi.Bool(true),
					MultiQueueSupport: pulumi.Bool(false),
					NumInterrupts:     pulumi.Float64(1),
					NumVmqs:           pulumi.Float64(1),
					ObjectType:        pulumi.String("vnic.VmqSettings"),
				},
			},
			LanConnectivityPolicies: intersight.VnicEthIfLanConnectivityPolicyArray{
				&intersight.VnicEthIfLanConnectivityPolicyArgs{
					Moid:       pulumi.String(vnicLan1),
					ObjectType: pulumi.String("vnic.LanConnectivityPolicy"),
				},
			},
			EthNetworkPolicies: intersight.VnicEthIfEthNetworkPolicyArray{
				&intersight.VnicEthIfEthNetworkPolicyArgs{
					Moid:       pulumi.String(vEthNetwork1),
					ObjectType: pulumi.String("vnic.EthNetworkPolicy"),
				},
			},
			EthAdapterPolicies: intersight.VnicEthIfEthAdapterPolicyArray{
				&intersight.VnicEthIfEthAdapterPolicyArgs{
					Moid:       pulumi.String(vEthAdapter1),
					ObjectType: pulumi.String("vnic.EthAdapterPolicy"),
				},
			},
			EthQosPolicies: intersight.VnicEthIfEthQosPolicyArray{
				&intersight.VnicEthIfEthQosPolicyArgs{
					Moid:       pulumi.String(vEthQos1),
					ObjectType: pulumi.String("vnic.EthQosPolicy"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var vnicLan1 = config.Require("vnicLan1");
    var vEthNetwork1 = config.Require("vEthNetwork1");
    var vEthAdapter1 = config.Require("vEthAdapter1");
    var vEthQos1 = config.Require("vEthQos1");
    var eth1 = new Intersight.VnicEthIf("eth1", new()
    {
        Order = 0,
        Placements = new[]
        {
            new Intersight.Inputs.VnicEthIfPlacementArgs
            {
                Id = "1",
                PciLink = 0,
                Uplink = 0,
                ObjectType = "vnic.PlacementSettings",
            },
        },
        Cdns = new[]
        {
            new Intersight.Inputs.VnicEthIfCdnArgs
            {
                Value = "VIC-1-eth00",
                NrSource = "user",
                ObjectType = "vnic.Cdn",
            },
        },
        UsnicSettings = new[]
        {
            new Intersight.Inputs.VnicEthIfUsnicSettingArgs
            {
                Cos = 5,
                NrCount = 0,
                ObjectType = "vnic.UsnicSettings",
            },
        },
        VmqSettings = new[]
        {
            new Intersight.Inputs.VnicEthIfVmqSettingArgs
            {
                Enabled = true,
                MultiQueueSupport = false,
                NumInterrupts = 1,
                NumVmqs = 1,
                ObjectType = "vnic.VmqSettings",
            },
        },
        LanConnectivityPolicies = new[]
        {
            new Intersight.Inputs.VnicEthIfLanConnectivityPolicyArgs
            {
                Moid = vnicLan1,
                ObjectType = "vnic.LanConnectivityPolicy",
            },
        },
        EthNetworkPolicies = new[]
        {
            new Intersight.Inputs.VnicEthIfEthNetworkPolicyArgs
            {
                Moid = vEthNetwork1,
                ObjectType = "vnic.EthNetworkPolicy",
            },
        },
        EthAdapterPolicies = new[]
        {
            new Intersight.Inputs.VnicEthIfEthAdapterPolicyArgs
            {
                Moid = vEthAdapter1,
                ObjectType = "vnic.EthAdapterPolicy",
            },
        },
        EthQosPolicies = new[]
        {
            new Intersight.Inputs.VnicEthIfEthQosPolicyArgs
            {
                Moid = vEthQos1,
                ObjectType = "vnic.EthQosPolicy",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.VnicEthIf;
import com.pulumi.intersight.VnicEthIfArgs;
import com.pulumi.intersight.inputs.VnicEthIfPlacementArgs;
import com.pulumi.intersight.inputs.VnicEthIfCdnArgs;
import com.pulumi.intersight.inputs.VnicEthIfUsnicSettingArgs;
import com.pulumi.intersight.inputs.VnicEthIfVmqSettingArgs;
import com.pulumi.intersight.inputs.VnicEthIfLanConnectivityPolicyArgs;
import com.pulumi.intersight.inputs.VnicEthIfEthNetworkPolicyArgs;
import com.pulumi.intersight.inputs.VnicEthIfEthAdapterPolicyArgs;
import com.pulumi.intersight.inputs.VnicEthIfEthQosPolicyArgs;
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 config = ctx.config();
        final var vnicLan1 = config.get("vnicLan1");
        final var vEthNetwork1 = config.get("vEthNetwork1");
        final var vEthAdapter1 = config.get("vEthAdapter1");
        final var vEthQos1 = config.get("vEthQos1");
        var eth1 = new VnicEthIf("eth1", VnicEthIfArgs.builder()
            .order(0)
            .placements(VnicEthIfPlacementArgs.builder()
                .id("1")
                .pciLink(0)
                .uplink(0)
                .objectType("vnic.PlacementSettings")
                .build())
            .cdns(VnicEthIfCdnArgs.builder()
                .value("VIC-1-eth00")
                .nrSource("user")
                .objectType("vnic.Cdn")
                .build())
            .usnicSettings(VnicEthIfUsnicSettingArgs.builder()
                .cos(5)
                .nrCount(0)
                .objectType("vnic.UsnicSettings")
                .build())
            .vmqSettings(VnicEthIfVmqSettingArgs.builder()
                .enabled(true)
                .multiQueueSupport(false)
                .numInterrupts(1)
                .numVmqs(1)
                .objectType("vnic.VmqSettings")
                .build())
            .lanConnectivityPolicies(VnicEthIfLanConnectivityPolicyArgs.builder()
                .moid(vnicLan1)
                .objectType("vnic.LanConnectivityPolicy")
                .build())
            .ethNetworkPolicies(VnicEthIfEthNetworkPolicyArgs.builder()
                .moid(vEthNetwork1)
                .objectType("vnic.EthNetworkPolicy")
                .build())
            .ethAdapterPolicies(VnicEthIfEthAdapterPolicyArgs.builder()
                .moid(vEthAdapter1)
                .objectType("vnic.EthAdapterPolicy")
                .build())
            .ethQosPolicies(VnicEthIfEthQosPolicyArgs.builder()
                .moid(vEthQos1)
                .objectType("vnic.EthQosPolicy")
                .build())
            .build());

    }
}
Copy
configuration:
  vnicLan1:
    type: string
  vEthNetwork1:
    type: string
  vEthAdapter1:
    type: string
  vEthQos1:
    type: string
resources:
  eth1:
    type: intersight:VnicEthIf
    properties:
      order: 0
      placements:
        - id: '1'
          pciLink: 0
          uplink: 0
          objectType: vnic.PlacementSettings
      cdns:
        - value: VIC-1-eth00
          nrSource: user
          objectType: vnic.Cdn
      usnicSettings:
        - cos: 5
          nrCount: 0
          objectType: vnic.UsnicSettings
      vmqSettings:
        - enabled: true
          multiQueueSupport: false
          numInterrupts: 1
          numVmqs: 1
          objectType: vnic.VmqSettings
      lanConnectivityPolicies:
        - moid: ${vnicLan1}
          objectType: vnic.LanConnectivityPolicy
      ethNetworkPolicies:
        - moid: ${vEthNetwork1}
          objectType: vnic.EthNetworkPolicy
      ethAdapterPolicies:
        - moid: ${vEthAdapter1}
          objectType: vnic.EthAdapterPolicy
      ethQosPolicies:
        - moid: ${vEthQos1}
          objectType: vnic.EthQosPolicy
Copy

Create VnicEthIf Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new VnicEthIf(name: string, args?: VnicEthIfArgs, opts?: CustomResourceOptions);
@overload
def VnicEthIf(resource_name: str,
              args: Optional[VnicEthIfArgs] = None,
              opts: Optional[ResourceOptions] = None)

@overload
def VnicEthIf(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              account_moid: Optional[str] = None,
              additional_properties: Optional[str] = None,
              ancestors: Optional[Sequence[VnicEthIfAncestorArgs]] = None,
              cdns: Optional[Sequence[VnicEthIfCdnArgs]] = None,
              class_id: Optional[str] = None,
              create_time: Optional[str] = None,
              domain_group_moid: Optional[str] = None,
              eth_adapter_policies: Optional[Sequence[VnicEthIfEthAdapterPolicyArgs]] = None,
              eth_network_policies: Optional[Sequence[VnicEthIfEthNetworkPolicyArgs]] = None,
              eth_qos_policies: Optional[Sequence[VnicEthIfEthQosPolicyArgs]] = None,
              fabric_eth_network_control_policies: Optional[Sequence[VnicEthIfFabricEthNetworkControlPolicyArgs]] = None,
              fabric_eth_network_group_policies: Optional[Sequence[VnicEthIfFabricEthNetworkGroupPolicyArgs]] = None,
              failover_enabled: Optional[bool] = None,
              ip_leases: Optional[Sequence[VnicEthIfIpLeaseArgs]] = None,
              iscsi_boot_policies: Optional[Sequence[VnicEthIfIscsiBootPolicyArgs]] = None,
              iscsi_ip_v4_address_allocation_type: Optional[str] = None,
              iscsi_ip_v4_configs: Optional[Sequence[VnicEthIfIscsiIpV4ConfigArgs]] = None,
              iscsi_ipv4_address: Optional[str] = None,
              lan_connectivity_policies: Optional[Sequence[VnicEthIfLanConnectivityPolicyArgs]] = None,
              lcp_vnics: Optional[Sequence[VnicEthIfLcpVnicArgs]] = None,
              mac_address: Optional[str] = None,
              mac_address_type: Optional[str] = None,
              mac_leases: Optional[Sequence[VnicEthIfMacLeaseArgs]] = None,
              mac_pools: Optional[Sequence[VnicEthIfMacPoolArgs]] = None,
              mod_time: Optional[str] = None,
              moid: Optional[str] = None,
              name: Optional[str] = None,
              object_type: Optional[str] = None,
              order: Optional[float] = None,
              overridden_lists: Optional[Sequence[str]] = None,
              owners: Optional[Sequence[str]] = None,
              parents: Optional[Sequence[VnicEthIfParentArgs]] = None,
              permission_resources: Optional[Sequence[VnicEthIfPermissionResourceArgs]] = None,
              pin_group_name: Optional[str] = None,
              placements: Optional[Sequence[VnicEthIfPlacementArgs]] = None,
              profiles: Optional[Sequence[VnicEthIfProfileArgs]] = None,
              shared_scope: Optional[str] = None,
              sp_vnics: Optional[Sequence[VnicEthIfSpVnicArgs]] = None,
              src_templates: Optional[Sequence[VnicEthIfSrcTemplateArgs]] = None,
              sriov_settings: Optional[Sequence[VnicEthIfSriovSettingArgs]] = None,
              standby_vif_id: Optional[float] = None,
              static_mac_address: Optional[str] = None,
              tags: Optional[Sequence[VnicEthIfTagArgs]] = None,
              template_actions: Optional[Sequence[VnicEthIfTemplateActionArgs]] = None,
              template_sync_errors: Optional[Sequence[VnicEthIfTemplateSyncErrorArgs]] = None,
              template_sync_status: Optional[str] = None,
              usnic_settings: Optional[Sequence[VnicEthIfUsnicSettingArgs]] = None,
              version_contexts: Optional[Sequence[VnicEthIfVersionContextArgs]] = None,
              vif_id: Optional[float] = None,
              vmq_settings: Optional[Sequence[VnicEthIfVmqSettingArgs]] = None,
              vnic_eth_if_id: Optional[str] = None)
func NewVnicEthIf(ctx *Context, name string, args *VnicEthIfArgs, opts ...ResourceOption) (*VnicEthIf, error)
public VnicEthIf(string name, VnicEthIfArgs? args = null, CustomResourceOptions? opts = null)
public VnicEthIf(String name, VnicEthIfArgs args)
public VnicEthIf(String name, VnicEthIfArgs args, CustomResourceOptions options)
type: intersight:VnicEthIf
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args VnicEthIfArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args VnicEthIfArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args VnicEthIfArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args VnicEthIfArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VnicEthIfArgs
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 vnicEthIfResource = new Intersight.VnicEthIf("vnicEthIfResource", new()
{
    AccountMoid = "string",
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.VnicEthIfAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Cdns = new[]
    {
        new Intersight.Inputs.VnicEthIfCdnArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            NrSource = "string",
            ObjectType = "string",
            Value = "string",
        },
    },
    ClassId = "string",
    CreateTime = "string",
    DomainGroupMoid = "string",
    EthAdapterPolicies = new[]
    {
        new Intersight.Inputs.VnicEthIfEthAdapterPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    EthNetworkPolicies = new[]
    {
        new Intersight.Inputs.VnicEthIfEthNetworkPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    EthQosPolicies = new[]
    {
        new Intersight.Inputs.VnicEthIfEthQosPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    FabricEthNetworkControlPolicies = new[]
    {
        new Intersight.Inputs.VnicEthIfFabricEthNetworkControlPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    FabricEthNetworkGroupPolicies = new[]
    {
        new Intersight.Inputs.VnicEthIfFabricEthNetworkGroupPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    FailoverEnabled = false,
    IpLeases = new[]
    {
        new Intersight.Inputs.VnicEthIfIpLeaseArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    IscsiBootPolicies = new[]
    {
        new Intersight.Inputs.VnicEthIfIscsiBootPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    IscsiIpV4AddressAllocationType = "string",
    IscsiIpV4Configs = new[]
    {
        new Intersight.Inputs.VnicEthIfIscsiIpV4ConfigArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Gateway = "string",
            Netmask = "string",
            ObjectType = "string",
            PrimaryDns = "string",
            SecondaryDns = "string",
        },
    },
    IscsiIpv4Address = "string",
    LanConnectivityPolicies = new[]
    {
        new Intersight.Inputs.VnicEthIfLanConnectivityPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    LcpVnics = new[]
    {
        new Intersight.Inputs.VnicEthIfLcpVnicArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    MacAddress = "string",
    MacAddressType = "string",
    MacLeases = new[]
    {
        new Intersight.Inputs.VnicEthIfMacLeaseArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    MacPools = new[]
    {
        new Intersight.Inputs.VnicEthIfMacPoolArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ModTime = "string",
    Moid = "string",
    Name = "string",
    ObjectType = "string",
    Order = 0,
    OverriddenLists = new[]
    {
        "string",
    },
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.VnicEthIfParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.VnicEthIfPermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PinGroupName = "string",
    Placements = new[]
    {
        new Intersight.Inputs.VnicEthIfPlacementArgs
        {
            AdditionalProperties = "string",
            AutoPciLink = false,
            AutoSlotId = false,
            ClassId = "string",
            Id = "string",
            ObjectType = "string",
            PciLink = 0,
            PciLinkAssignmentMode = "string",
            SwitchId = "string",
            Uplink = 0,
        },
    },
    Profiles = new[]
    {
        new Intersight.Inputs.VnicEthIfProfileArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SharedScope = "string",
    SpVnics = new[]
    {
        new Intersight.Inputs.VnicEthIfSpVnicArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SrcTemplates = new[]
    {
        new Intersight.Inputs.VnicEthIfSrcTemplateArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SriovSettings = new[]
    {
        new Intersight.Inputs.VnicEthIfSriovSettingArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            CompCountPerVf = 0,
            Enabled = false,
            IntCountPerVf = 0,
            ObjectType = "string",
            RxCountPerVf = 0,
            TxCountPerVf = 0,
            VfCount = 0,
        },
    },
    StandbyVifId = 0,
    StaticMacAddress = "string",
    Tags = new[]
    {
        new Intersight.Inputs.VnicEthIfTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    TemplateActions = new[]
    {
        new Intersight.Inputs.VnicEthIfTemplateActionArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
            Params = new[]
            {
                new Intersight.Inputs.VnicEthIfTemplateActionParamArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Name = "string",
                    ObjectType = "string",
                    Value = "string",
                },
            },
            Type = "string",
        },
    },
    TemplateSyncErrors = new[]
    {
        new Intersight.Inputs.VnicEthIfTemplateSyncErrorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Message = "string",
            ObjectType = "string",
            Type = "string",
        },
    },
    TemplateSyncStatus = "string",
    UsnicSettings = new[]
    {
        new Intersight.Inputs.VnicEthIfUsnicSettingArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Cos = 0,
            NrCount = 0,
            ObjectType = "string",
            UsnicAdapterPolicy = "string",
        },
    },
    VersionContexts = new[]
    {
        new Intersight.Inputs.VnicEthIfVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.VnicEthIfVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.VnicEthIfVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
    VifId = 0,
    VmqSettings = new[]
    {
        new Intersight.Inputs.VnicEthIfVmqSettingArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Enabled = false,
            MultiQueueSupport = false,
            NumInterrupts = 0,
            NumSubVnics = 0,
            NumVmqs = 0,
            ObjectType = "string",
            VmmqAdapterPolicy = "string",
        },
    },
    VnicEthIfId = "string",
});
Copy
example, err := intersight.NewVnicEthIf(ctx, "vnicEthIfResource", &intersight.VnicEthIfArgs{
	AccountMoid:          pulumi.String("string"),
	AdditionalProperties: pulumi.String("string"),
	Ancestors: intersight.VnicEthIfAncestorArray{
		&intersight.VnicEthIfAncestorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Cdns: intersight.VnicEthIfCdnArray{
		&intersight.VnicEthIfCdnArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			NrSource:             pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	ClassId:         pulumi.String("string"),
	CreateTime:      pulumi.String("string"),
	DomainGroupMoid: pulumi.String("string"),
	EthAdapterPolicies: intersight.VnicEthIfEthAdapterPolicyArray{
		&intersight.VnicEthIfEthAdapterPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	EthNetworkPolicies: intersight.VnicEthIfEthNetworkPolicyArray{
		&intersight.VnicEthIfEthNetworkPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	EthQosPolicies: intersight.VnicEthIfEthQosPolicyArray{
		&intersight.VnicEthIfEthQosPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	FabricEthNetworkControlPolicies: intersight.VnicEthIfFabricEthNetworkControlPolicyArray{
		&intersight.VnicEthIfFabricEthNetworkControlPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	FabricEthNetworkGroupPolicies: intersight.VnicEthIfFabricEthNetworkGroupPolicyArray{
		&intersight.VnicEthIfFabricEthNetworkGroupPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	FailoverEnabled: pulumi.Bool(false),
	IpLeases: intersight.VnicEthIfIpLeaseArray{
		&intersight.VnicEthIfIpLeaseArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	IscsiBootPolicies: intersight.VnicEthIfIscsiBootPolicyArray{
		&intersight.VnicEthIfIscsiBootPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	IscsiIpV4AddressAllocationType: pulumi.String("string"),
	IscsiIpV4Configs: intersight.VnicEthIfIscsiIpV4ConfigArray{
		&intersight.VnicEthIfIscsiIpV4ConfigArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Gateway:              pulumi.String("string"),
			Netmask:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			PrimaryDns:           pulumi.String("string"),
			SecondaryDns:         pulumi.String("string"),
		},
	},
	IscsiIpv4Address: pulumi.String("string"),
	LanConnectivityPolicies: intersight.VnicEthIfLanConnectivityPolicyArray{
		&intersight.VnicEthIfLanConnectivityPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	LcpVnics: intersight.VnicEthIfLcpVnicArray{
		&intersight.VnicEthIfLcpVnicArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	MacAddress:     pulumi.String("string"),
	MacAddressType: pulumi.String("string"),
	MacLeases: intersight.VnicEthIfMacLeaseArray{
		&intersight.VnicEthIfMacLeaseArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	MacPools: intersight.VnicEthIfMacPoolArray{
		&intersight.VnicEthIfMacPoolArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ModTime:    pulumi.String("string"),
	Moid:       pulumi.String("string"),
	Name:       pulumi.String("string"),
	ObjectType: pulumi.String("string"),
	Order:      pulumi.Float64(0),
	OverriddenLists: pulumi.StringArray{
		pulumi.String("string"),
	},
	Owners: pulumi.StringArray{
		pulumi.String("string"),
	},
	Parents: intersight.VnicEthIfParentArray{
		&intersight.VnicEthIfParentArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PermissionResources: intersight.VnicEthIfPermissionResourceArray{
		&intersight.VnicEthIfPermissionResourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PinGroupName: pulumi.String("string"),
	Placements: intersight.VnicEthIfPlacementArray{
		&intersight.VnicEthIfPlacementArgs{
			AdditionalProperties:  pulumi.String("string"),
			AutoPciLink:           pulumi.Bool(false),
			AutoSlotId:            pulumi.Bool(false),
			ClassId:               pulumi.String("string"),
			Id:                    pulumi.String("string"),
			ObjectType:            pulumi.String("string"),
			PciLink:               pulumi.Float64(0),
			PciLinkAssignmentMode: pulumi.String("string"),
			SwitchId:              pulumi.String("string"),
			Uplink:                pulumi.Float64(0),
		},
	},
	Profiles: intersight.VnicEthIfProfileArray{
		&intersight.VnicEthIfProfileArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SharedScope: pulumi.String("string"),
	SpVnics: intersight.VnicEthIfSpVnicArray{
		&intersight.VnicEthIfSpVnicArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SrcTemplates: intersight.VnicEthIfSrcTemplateArray{
		&intersight.VnicEthIfSrcTemplateArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SriovSettings: intersight.VnicEthIfSriovSettingArray{
		&intersight.VnicEthIfSriovSettingArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			CompCountPerVf:       pulumi.Float64(0),
			Enabled:              pulumi.Bool(false),
			IntCountPerVf:        pulumi.Float64(0),
			ObjectType:           pulumi.String("string"),
			RxCountPerVf:         pulumi.Float64(0),
			TxCountPerVf:         pulumi.Float64(0),
			VfCount:              pulumi.Float64(0),
		},
	},
	StandbyVifId:     pulumi.Float64(0),
	StaticMacAddress: pulumi.String("string"),
	Tags: intersight.VnicEthIfTagArray{
		&intersight.VnicEthIfTagArgs{
			AdditionalProperties: pulumi.String("string"),
			Key:                  pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	TemplateActions: intersight.VnicEthIfTemplateActionArray{
		&intersight.VnicEthIfTemplateActionArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Params: intersight.VnicEthIfTemplateActionParamArray{
				&intersight.VnicEthIfTemplateActionParamArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Name:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Value:                pulumi.String("string"),
				},
			},
			Type: pulumi.String("string"),
		},
	},
	TemplateSyncErrors: intersight.VnicEthIfTemplateSyncErrorArray{
		&intersight.VnicEthIfTemplateSyncErrorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Message:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Type:                 pulumi.String("string"),
		},
	},
	TemplateSyncStatus: pulumi.String("string"),
	UsnicSettings: intersight.VnicEthIfUsnicSettingArray{
		&intersight.VnicEthIfUsnicSettingArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Cos:                  pulumi.Float64(0),
			NrCount:              pulumi.Float64(0),
			ObjectType:           pulumi.String("string"),
			UsnicAdapterPolicy:   pulumi.String("string"),
		},
	},
	VersionContexts: intersight.VnicEthIfVersionContextArray{
		&intersight.VnicEthIfVersionContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			InterestedMos: intersight.VnicEthIfVersionContextInterestedMoArray{
				&intersight.VnicEthIfVersionContextInterestedMoArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Moid:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Selector:             pulumi.String("string"),
				},
			},
			MarkedForDeletion: pulumi.Bool(false),
			NrVersion:         pulumi.String("string"),
			ObjectType:        pulumi.String("string"),
			RefMos: intersight.VnicEthIfVersionContextRefMoArray{
				&intersight.VnicEthIfVersionContextRefMoArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Moid:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Selector:             pulumi.String("string"),
				},
			},
			Timestamp:   pulumi.String("string"),
			VersionType: pulumi.String("string"),
		},
	},
	VifId: pulumi.Float64(0),
	VmqSettings: intersight.VnicEthIfVmqSettingArray{
		&intersight.VnicEthIfVmqSettingArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Enabled:              pulumi.Bool(false),
			MultiQueueSupport:    pulumi.Bool(false),
			NumInterrupts:        pulumi.Float64(0),
			NumSubVnics:          pulumi.Float64(0),
			NumVmqs:              pulumi.Float64(0),
			ObjectType:           pulumi.String("string"),
			VmmqAdapterPolicy:    pulumi.String("string"),
		},
	},
	VnicEthIfId: pulumi.String("string"),
})
Copy
var vnicEthIfResource = new VnicEthIf("vnicEthIfResource", VnicEthIfArgs.builder()
    .accountMoid("string")
    .additionalProperties("string")
    .ancestors(VnicEthIfAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .cdns(VnicEthIfCdnArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .nrSource("string")
        .objectType("string")
        .value("string")
        .build())
    .classId("string")
    .createTime("string")
    .domainGroupMoid("string")
    .ethAdapterPolicies(VnicEthIfEthAdapterPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .ethNetworkPolicies(VnicEthIfEthNetworkPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .ethQosPolicies(VnicEthIfEthQosPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .fabricEthNetworkControlPolicies(VnicEthIfFabricEthNetworkControlPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .fabricEthNetworkGroupPolicies(VnicEthIfFabricEthNetworkGroupPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .failoverEnabled(false)
    .ipLeases(VnicEthIfIpLeaseArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .iscsiBootPolicies(VnicEthIfIscsiBootPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .iscsiIpV4AddressAllocationType("string")
    .iscsiIpV4Configs(VnicEthIfIscsiIpV4ConfigArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .gateway("string")
        .netmask("string")
        .objectType("string")
        .primaryDns("string")
        .secondaryDns("string")
        .build())
    .iscsiIpv4Address("string")
    .lanConnectivityPolicies(VnicEthIfLanConnectivityPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .lcpVnics(VnicEthIfLcpVnicArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .macAddress("string")
    .macAddressType("string")
    .macLeases(VnicEthIfMacLeaseArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .macPools(VnicEthIfMacPoolArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .modTime("string")
    .moid("string")
    .name("string")
    .objectType("string")
    .order(0)
    .overriddenLists("string")
    .owners("string")
    .parents(VnicEthIfParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(VnicEthIfPermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .pinGroupName("string")
    .placements(VnicEthIfPlacementArgs.builder()
        .additionalProperties("string")
        .autoPciLink(false)
        .autoSlotId(false)
        .classId("string")
        .id("string")
        .objectType("string")
        .pciLink(0)
        .pciLinkAssignmentMode("string")
        .switchId("string")
        .uplink(0)
        .build())
    .profiles(VnicEthIfProfileArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .sharedScope("string")
    .spVnics(VnicEthIfSpVnicArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .srcTemplates(VnicEthIfSrcTemplateArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .sriovSettings(VnicEthIfSriovSettingArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .compCountPerVf(0)
        .enabled(false)
        .intCountPerVf(0)
        .objectType("string")
        .rxCountPerVf(0)
        .txCountPerVf(0)
        .vfCount(0)
        .build())
    .standbyVifId(0)
    .staticMacAddress("string")
    .tags(VnicEthIfTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .templateActions(VnicEthIfTemplateActionArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .params(VnicEthIfTemplateActionParamArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .value("string")
            .build())
        .type("string")
        .build())
    .templateSyncErrors(VnicEthIfTemplateSyncErrorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .message("string")
        .objectType("string")
        .type("string")
        .build())
    .templateSyncStatus("string")
    .usnicSettings(VnicEthIfUsnicSettingArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .cos(0)
        .nrCount(0)
        .objectType("string")
        .usnicAdapterPolicy("string")
        .build())
    .versionContexts(VnicEthIfVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(VnicEthIfVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(VnicEthIfVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .vifId(0)
    .vmqSettings(VnicEthIfVmqSettingArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .enabled(false)
        .multiQueueSupport(false)
        .numInterrupts(0)
        .numSubVnics(0)
        .numVmqs(0)
        .objectType("string")
        .vmmqAdapterPolicy("string")
        .build())
    .vnicEthIfId("string")
    .build());
Copy
vnic_eth_if_resource = intersight.VnicEthIf("vnicEthIfResource",
    account_moid="string",
    additional_properties="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    cdns=[{
        "additional_properties": "string",
        "class_id": "string",
        "nr_source": "string",
        "object_type": "string",
        "value": "string",
    }],
    class_id="string",
    create_time="string",
    domain_group_moid="string",
    eth_adapter_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    eth_network_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    eth_qos_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    fabric_eth_network_control_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    fabric_eth_network_group_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    failover_enabled=False,
    ip_leases=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    iscsi_boot_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    iscsi_ip_v4_address_allocation_type="string",
    iscsi_ip_v4_configs=[{
        "additional_properties": "string",
        "class_id": "string",
        "gateway": "string",
        "netmask": "string",
        "object_type": "string",
        "primary_dns": "string",
        "secondary_dns": "string",
    }],
    iscsi_ipv4_address="string",
    lan_connectivity_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    lcp_vnics=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    mac_address="string",
    mac_address_type="string",
    mac_leases=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    mac_pools=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    mod_time="string",
    moid="string",
    name="string",
    object_type="string",
    order=0,
    overridden_lists=["string"],
    owners=["string"],
    parents=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    permission_resources=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    pin_group_name="string",
    placements=[{
        "additional_properties": "string",
        "auto_pci_link": False,
        "auto_slot_id": False,
        "class_id": "string",
        "id": "string",
        "object_type": "string",
        "pci_link": 0,
        "pci_link_assignment_mode": "string",
        "switch_id": "string",
        "uplink": 0,
    }],
    profiles=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    shared_scope="string",
    sp_vnics=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    src_templates=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    sriov_settings=[{
        "additional_properties": "string",
        "class_id": "string",
        "comp_count_per_vf": 0,
        "enabled": False,
        "int_count_per_vf": 0,
        "object_type": "string",
        "rx_count_per_vf": 0,
        "tx_count_per_vf": 0,
        "vf_count": 0,
    }],
    standby_vif_id=0,
    static_mac_address="string",
    tags=[{
        "additional_properties": "string",
        "key": "string",
        "value": "string",
    }],
    template_actions=[{
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "string",
        "params": [{
            "additional_properties": "string",
            "class_id": "string",
            "name": "string",
            "object_type": "string",
            "value": "string",
        }],
        "type": "string",
    }],
    template_sync_errors=[{
        "additional_properties": "string",
        "class_id": "string",
        "message": "string",
        "object_type": "string",
        "type": "string",
    }],
    template_sync_status="string",
    usnic_settings=[{
        "additional_properties": "string",
        "class_id": "string",
        "cos": 0,
        "nr_count": 0,
        "object_type": "string",
        "usnic_adapter_policy": "string",
    }],
    version_contexts=[{
        "additional_properties": "string",
        "class_id": "string",
        "interested_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "marked_for_deletion": False,
        "nr_version": "string",
        "object_type": "string",
        "ref_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "timestamp": "string",
        "version_type": "string",
    }],
    vif_id=0,
    vmq_settings=[{
        "additional_properties": "string",
        "class_id": "string",
        "enabled": False,
        "multi_queue_support": False,
        "num_interrupts": 0,
        "num_sub_vnics": 0,
        "num_vmqs": 0,
        "object_type": "string",
        "vmmq_adapter_policy": "string",
    }],
    vnic_eth_if_id="string")
Copy
const vnicEthIfResource = new intersight.VnicEthIf("vnicEthIfResource", {
    accountMoid: "string",
    additionalProperties: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    cdns: [{
        additionalProperties: "string",
        classId: "string",
        nrSource: "string",
        objectType: "string",
        value: "string",
    }],
    classId: "string",
    createTime: "string",
    domainGroupMoid: "string",
    ethAdapterPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    ethNetworkPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    ethQosPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    fabricEthNetworkControlPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    fabricEthNetworkGroupPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    failoverEnabled: false,
    ipLeases: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    iscsiBootPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    iscsiIpV4AddressAllocationType: "string",
    iscsiIpV4Configs: [{
        additionalProperties: "string",
        classId: "string",
        gateway: "string",
        netmask: "string",
        objectType: "string",
        primaryDns: "string",
        secondaryDns: "string",
    }],
    iscsiIpv4Address: "string",
    lanConnectivityPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    lcpVnics: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    macAddress: "string",
    macAddressType: "string",
    macLeases: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    macPools: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    modTime: "string",
    moid: "string",
    name: "string",
    objectType: "string",
    order: 0,
    overriddenLists: ["string"],
    owners: ["string"],
    parents: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    permissionResources: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    pinGroupName: "string",
    placements: [{
        additionalProperties: "string",
        autoPciLink: false,
        autoSlotId: false,
        classId: "string",
        id: "string",
        objectType: "string",
        pciLink: 0,
        pciLinkAssignmentMode: "string",
        switchId: "string",
        uplink: 0,
    }],
    profiles: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    sharedScope: "string",
    spVnics: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    srcTemplates: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    sriovSettings: [{
        additionalProperties: "string",
        classId: "string",
        compCountPerVf: 0,
        enabled: false,
        intCountPerVf: 0,
        objectType: "string",
        rxCountPerVf: 0,
        txCountPerVf: 0,
        vfCount: 0,
    }],
    standbyVifId: 0,
    staticMacAddress: "string",
    tags: [{
        additionalProperties: "string",
        key: "string",
        value: "string",
    }],
    templateActions: [{
        additionalProperties: "string",
        classId: "string",
        objectType: "string",
        params: [{
            additionalProperties: "string",
            classId: "string",
            name: "string",
            objectType: "string",
            value: "string",
        }],
        type: "string",
    }],
    templateSyncErrors: [{
        additionalProperties: "string",
        classId: "string",
        message: "string",
        objectType: "string",
        type: "string",
    }],
    templateSyncStatus: "string",
    usnicSettings: [{
        additionalProperties: "string",
        classId: "string",
        cos: 0,
        nrCount: 0,
        objectType: "string",
        usnicAdapterPolicy: "string",
    }],
    versionContexts: [{
        additionalProperties: "string",
        classId: "string",
        interestedMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        markedForDeletion: false,
        nrVersion: "string",
        objectType: "string",
        refMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        timestamp: "string",
        versionType: "string",
    }],
    vifId: 0,
    vmqSettings: [{
        additionalProperties: "string",
        classId: "string",
        enabled: false,
        multiQueueSupport: false,
        numInterrupts: 0,
        numSubVnics: 0,
        numVmqs: 0,
        objectType: "string",
        vmmqAdapterPolicy: "string",
    }],
    vnicEthIfId: "string",
});
Copy
type: intersight:VnicEthIf
properties:
    accountMoid: string
    additionalProperties: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    cdns:
        - additionalProperties: string
          classId: string
          nrSource: string
          objectType: string
          value: string
    classId: string
    createTime: string
    domainGroupMoid: string
    ethAdapterPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    ethNetworkPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    ethQosPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    fabricEthNetworkControlPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    fabricEthNetworkGroupPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    failoverEnabled: false
    ipLeases:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    iscsiBootPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    iscsiIpV4AddressAllocationType: string
    iscsiIpV4Configs:
        - additionalProperties: string
          classId: string
          gateway: string
          netmask: string
          objectType: string
          primaryDns: string
          secondaryDns: string
    iscsiIpv4Address: string
    lanConnectivityPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    lcpVnics:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    macAddress: string
    macAddressType: string
    macLeases:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    macPools:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    modTime: string
    moid: string
    name: string
    objectType: string
    order: 0
    overriddenLists:
        - string
    owners:
        - string
    parents:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    permissionResources:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    pinGroupName: string
    placements:
        - additionalProperties: string
          autoPciLink: false
          autoSlotId: false
          classId: string
          id: string
          objectType: string
          pciLink: 0
          pciLinkAssignmentMode: string
          switchId: string
          uplink: 0
    profiles:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    sharedScope: string
    spVnics:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    srcTemplates:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    sriovSettings:
        - additionalProperties: string
          classId: string
          compCountPerVf: 0
          enabled: false
          intCountPerVf: 0
          objectType: string
          rxCountPerVf: 0
          txCountPerVf: 0
          vfCount: 0
    standbyVifId: 0
    staticMacAddress: string
    tags:
        - additionalProperties: string
          key: string
          value: string
    templateActions:
        - additionalProperties: string
          classId: string
          objectType: string
          params:
            - additionalProperties: string
              classId: string
              name: string
              objectType: string
              value: string
          type: string
    templateSyncErrors:
        - additionalProperties: string
          classId: string
          message: string
          objectType: string
          type: string
    templateSyncStatus: string
    usnicSettings:
        - additionalProperties: string
          classId: string
          cos: 0
          nrCount: 0
          objectType: string
          usnicAdapterPolicy: string
    versionContexts:
        - additionalProperties: string
          classId: string
          interestedMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          markedForDeletion: false
          nrVersion: string
          objectType: string
          refMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          timestamp: string
          versionType: string
    vifId: 0
    vmqSettings:
        - additionalProperties: string
          classId: string
          enabled: false
          multiQueueSupport: false
          numInterrupts: 0
          numSubVnics: 0
          numVmqs: 0
          objectType: string
          vmmqAdapterPolicy: string
    vnicEthIfId: string
Copy

VnicEthIf 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 VnicEthIf resource accepts the following input properties:

AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors List<VnicEthIfAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
Cdns List<VnicEthIfCdn>
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
EthAdapterPolicies List<VnicEthIfEthAdapterPolicy>
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
EthNetworkPolicies List<VnicEthIfEthNetworkPolicy>
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
EthQosPolicies List<VnicEthIfEthQosPolicy>
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
FabricEthNetworkControlPolicies List<VnicEthIfFabricEthNetworkControlPolicy>
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
FabricEthNetworkGroupPolicies List<VnicEthIfFabricEthNetworkGroupPolicy>
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
FailoverEnabled bool
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
IpLeases List<VnicEthIfIpLease>
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
IscsiBootPolicies List<VnicEthIfIscsiBootPolicy>
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
IscsiIpV4AddressAllocationType string
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
IscsiIpV4Configs List<VnicEthIfIscsiIpV4Config>
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
IscsiIpv4Address string
(ReadOnly) IP address associated to the vNIC.
LanConnectivityPolicies List<VnicEthIfLanConnectivityPolicy>
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
LcpVnics List<VnicEthIfLcpVnic>
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacAddress string
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
MacAddressType string
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
MacLeases List<VnicEthIfMacLease>
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacPools List<VnicEthIfMacPool>
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the virtual ethernet interface.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Order double
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
OverriddenLists List<string>
(Array of schema.TypeString) -
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<VnicEthIfParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<VnicEthIfPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PinGroupName string
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
Placements List<VnicEthIfPlacement>
Placement Settings for the virtual interface. This complex property has following sub-properties:
Profiles List<VnicEthIfProfile>
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SpVnics List<VnicEthIfSpVnic>
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
SrcTemplates List<VnicEthIfSrcTemplate>
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SriovSettings List<VnicEthIfSriovSetting>
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
StandbyVifId double
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
StaticMacAddress string
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
Tags List<VnicEthIfTag>
This complex property has following sub-properties:
TemplateActions List<VnicEthIfTemplateAction>
This complex property has following sub-properties:
TemplateSyncErrors List<VnicEthIfTemplateSyncError>
This complex property has following sub-properties:
TemplateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
UsnicSettings List<VnicEthIfUsnicSetting>
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
VersionContexts List<VnicEthIfVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
VifId double
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
VmqSettings List<VnicEthIfVmqSetting>
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
VnicEthIfId string
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors []VnicEthIfAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
Cdns []VnicEthIfCdnArgs
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
EthAdapterPolicies []VnicEthIfEthAdapterPolicyArgs
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
EthNetworkPolicies []VnicEthIfEthNetworkPolicyArgs
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
EthQosPolicies []VnicEthIfEthQosPolicyArgs
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
FabricEthNetworkControlPolicies []VnicEthIfFabricEthNetworkControlPolicyArgs
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
FabricEthNetworkGroupPolicies []VnicEthIfFabricEthNetworkGroupPolicyArgs
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
FailoverEnabled bool
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
IpLeases []VnicEthIfIpLeaseArgs
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
IscsiBootPolicies []VnicEthIfIscsiBootPolicyArgs
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
IscsiIpV4AddressAllocationType string
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
IscsiIpV4Configs []VnicEthIfIscsiIpV4ConfigArgs
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
IscsiIpv4Address string
(ReadOnly) IP address associated to the vNIC.
LanConnectivityPolicies []VnicEthIfLanConnectivityPolicyArgs
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
LcpVnics []VnicEthIfLcpVnicArgs
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacAddress string
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
MacAddressType string
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
MacLeases []VnicEthIfMacLeaseArgs
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacPools []VnicEthIfMacPoolArgs
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the virtual ethernet interface.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Order float64
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
OverriddenLists []string
(Array of schema.TypeString) -
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []VnicEthIfParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []VnicEthIfPermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PinGroupName string
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
Placements []VnicEthIfPlacementArgs
Placement Settings for the virtual interface. This complex property has following sub-properties:
Profiles []VnicEthIfProfileArgs
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SpVnics []VnicEthIfSpVnicArgs
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
SrcTemplates []VnicEthIfSrcTemplateArgs
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SriovSettings []VnicEthIfSriovSettingArgs
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
StandbyVifId float64
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
StaticMacAddress string
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
Tags []VnicEthIfTagArgs
This complex property has following sub-properties:
TemplateActions []VnicEthIfTemplateActionArgs
This complex property has following sub-properties:
TemplateSyncErrors []VnicEthIfTemplateSyncErrorArgs
This complex property has following sub-properties:
TemplateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
UsnicSettings []VnicEthIfUsnicSettingArgs
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
VersionContexts []VnicEthIfVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
VifId float64
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
VmqSettings []VnicEthIfVmqSettingArgs
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
VnicEthIfId string
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<VnicEthIfAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
cdns List<VnicEthIfCdn>
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
ethAdapterPolicies List<VnicEthIfEthAdapterPolicy>
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethNetworkPolicies List<VnicEthIfEthNetworkPolicy>
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethQosPolicies List<VnicEthIfEthQosPolicy>
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkControlPolicies List<VnicEthIfFabricEthNetworkControlPolicy>
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkGroupPolicies List<VnicEthIfFabricEthNetworkGroupPolicy>
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
failoverEnabled Boolean
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
ipLeases List<VnicEthIfIpLease>
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiBootPolicies List<VnicEthIfIscsiBootPolicy>
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiIpV4AddressAllocationType String
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
iscsiIpV4Configs List<VnicEthIfIscsiIpV4Config>
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
iscsiIpv4Address String
(ReadOnly) IP address associated to the vNIC.
lanConnectivityPolicies List<VnicEthIfLanConnectivityPolicy>
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
lcpVnics List<VnicEthIfLcpVnic>
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddress String
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
macAddressType String
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
macLeases List<VnicEthIfMacLease>
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macPools List<VnicEthIfMacPool>
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the virtual ethernet interface.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order Double
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists List<String>
(Array of schema.TypeString) -
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<VnicEthIfParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<VnicEthIfPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
pinGroupName String
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
placements List<VnicEthIfPlacement>
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles List<VnicEthIfProfile>
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVnics List<VnicEthIfSpVnic>
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
srcTemplates List<VnicEthIfSrcTemplate>
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sriovSettings List<VnicEthIfSriovSetting>
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
standbyVifId Double
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
staticMacAddress String
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
tags List<VnicEthIfTag>
This complex property has following sub-properties:
templateActions List<VnicEthIfTemplateAction>
This complex property has following sub-properties:
templateSyncErrors List<VnicEthIfTemplateSyncError>
This complex property has following sub-properties:
templateSyncStatus String
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usnicSettings List<VnicEthIfUsnicSetting>
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
versionContexts List<VnicEthIfVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId Double
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
vmqSettings List<VnicEthIfVmqSetting>
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
vnicEthIfId String
accountMoid string
(ReadOnly) The Account ID for this managed object.
additionalProperties string
ancestors VnicEthIfAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
cdns VnicEthIfCdn[]
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime string
(ReadOnly) The time when this managed object was created.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ethAdapterPolicies VnicEthIfEthAdapterPolicy[]
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethNetworkPolicies VnicEthIfEthNetworkPolicy[]
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethQosPolicies VnicEthIfEthQosPolicy[]
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkControlPolicies VnicEthIfFabricEthNetworkControlPolicy[]
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkGroupPolicies VnicEthIfFabricEthNetworkGroupPolicy[]
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
failoverEnabled boolean
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
ipLeases VnicEthIfIpLease[]
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiBootPolicies VnicEthIfIscsiBootPolicy[]
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiIpV4AddressAllocationType string
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
iscsiIpV4Configs VnicEthIfIscsiIpV4Config[]
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
iscsiIpv4Address string
(ReadOnly) IP address associated to the vNIC.
lanConnectivityPolicies VnicEthIfLanConnectivityPolicy[]
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
lcpVnics VnicEthIfLcpVnic[]
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddress string
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
macAddressType string
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
macLeases VnicEthIfMacLease[]
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macPools VnicEthIfMacPool[]
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the virtual ethernet interface.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order number
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists string[]
(Array of schema.TypeString) -
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents VnicEthIfParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources VnicEthIfPermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
pinGroupName string
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
placements VnicEthIfPlacement[]
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles VnicEthIfProfile[]
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVnics VnicEthIfSpVnic[]
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
srcTemplates VnicEthIfSrcTemplate[]
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sriovSettings VnicEthIfSriovSetting[]
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
standbyVifId number
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
staticMacAddress string
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
tags VnicEthIfTag[]
This complex property has following sub-properties:
templateActions VnicEthIfTemplateAction[]
This complex property has following sub-properties:
templateSyncErrors VnicEthIfTemplateSyncError[]
This complex property has following sub-properties:
templateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usnicSettings VnicEthIfUsnicSetting[]
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
versionContexts VnicEthIfVersionContext[]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId number
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
vmqSettings VnicEthIfVmqSetting[]
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
vnicEthIfId string
account_moid str
(ReadOnly) The Account ID for this managed object.
additional_properties str
ancestors Sequence[VnicEthIfAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
cdns Sequence[VnicEthIfCdnArgs]
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
create_time str
(ReadOnly) The time when this managed object was created.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
eth_adapter_policies Sequence[VnicEthIfEthAdapterPolicyArgs]
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
eth_network_policies Sequence[VnicEthIfEthNetworkPolicyArgs]
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
eth_qos_policies Sequence[VnicEthIfEthQosPolicyArgs]
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabric_eth_network_control_policies Sequence[VnicEthIfFabricEthNetworkControlPolicyArgs]
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabric_eth_network_group_policies Sequence[VnicEthIfFabricEthNetworkGroupPolicyArgs]
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
failover_enabled bool
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
ip_leases Sequence[VnicEthIfIpLeaseArgs]
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsi_boot_policies Sequence[VnicEthIfIscsiBootPolicyArgs]
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsi_ip_v4_address_allocation_type str
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
iscsi_ip_v4_configs Sequence[VnicEthIfIscsiIpV4ConfigArgs]
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
iscsi_ipv4_address str
(ReadOnly) IP address associated to the vNIC.
lan_connectivity_policies Sequence[VnicEthIfLanConnectivityPolicyArgs]
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
lcp_vnics Sequence[VnicEthIfLcpVnicArgs]
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
mac_address str
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
mac_address_type str
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
mac_leases Sequence[VnicEthIfMacLeaseArgs]
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
mac_pools Sequence[VnicEthIfMacPoolArgs]
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
mod_time str
(ReadOnly) The time when this managed object was last modified.
moid str
The unique identifier of this Managed Object instance.
name str
Name of the virtual ethernet interface.
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order float
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overridden_lists Sequence[str]
(Array of schema.TypeString) -
owners Sequence[str]
(Array of schema.TypeString) -(ReadOnly)
parents Sequence[VnicEthIfParentArgs]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permission_resources Sequence[VnicEthIfPermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
pin_group_name str
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
placements Sequence[VnicEthIfPlacementArgs]
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles Sequence[VnicEthIfProfileArgs]
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
sp_vnics Sequence[VnicEthIfSpVnicArgs]
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
src_templates Sequence[VnicEthIfSrcTemplateArgs]
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sriov_settings Sequence[VnicEthIfSriovSettingArgs]
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
standby_vif_id float
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
static_mac_address str
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
tags Sequence[VnicEthIfTagArgs]
This complex property has following sub-properties:
template_actions Sequence[VnicEthIfTemplateActionArgs]
This complex property has following sub-properties:
template_sync_errors Sequence[VnicEthIfTemplateSyncErrorArgs]
This complex property has following sub-properties:
template_sync_status str
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usnic_settings Sequence[VnicEthIfUsnicSettingArgs]
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
version_contexts Sequence[VnicEthIfVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vif_id float
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
vmq_settings Sequence[VnicEthIfVmqSettingArgs]
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
vnic_eth_if_id str
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
cdns List<Property Map>
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
ethAdapterPolicies List<Property Map>
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethNetworkPolicies List<Property Map>
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethQosPolicies List<Property Map>
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkControlPolicies List<Property Map>
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkGroupPolicies List<Property Map>
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
failoverEnabled Boolean
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
ipLeases List<Property Map>
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiBootPolicies List<Property Map>
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiIpV4AddressAllocationType String
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
iscsiIpV4Configs List<Property Map>
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
iscsiIpv4Address String
(ReadOnly) IP address associated to the vNIC.
lanConnectivityPolicies List<Property Map>
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
lcpVnics List<Property Map>
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddress String
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
macAddressType String
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
macLeases List<Property Map>
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macPools List<Property Map>
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the virtual ethernet interface.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order Number
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists List<String>
(Array of schema.TypeString) -
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
pinGroupName String
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
placements List<Property Map>
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles List<Property Map>
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVnics List<Property Map>
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
srcTemplates List<Property Map>
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sriovSettings List<Property Map>
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
standbyVifId Number
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
staticMacAddress String
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
tags List<Property Map>
This complex property has following sub-properties:
templateActions List<Property Map>
This complex property has following sub-properties:
templateSyncErrors List<Property Map>
This complex property has following sub-properties:
templateSyncStatus String
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usnicSettings List<Property Map>
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId Number
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
vmqSettings List<Property Map>
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
vnicEthIfId String

Outputs

All input properties are implicitly available as output properties. Additionally, the VnicEthIf 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 VnicEthIf Resource

Get an existing VnicEthIf 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?: VnicEthIfState, opts?: CustomResourceOptions): VnicEthIf
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_moid: Optional[str] = None,
        additional_properties: Optional[str] = None,
        ancestors: Optional[Sequence[VnicEthIfAncestorArgs]] = None,
        cdns: Optional[Sequence[VnicEthIfCdnArgs]] = None,
        class_id: Optional[str] = None,
        create_time: Optional[str] = None,
        domain_group_moid: Optional[str] = None,
        eth_adapter_policies: Optional[Sequence[VnicEthIfEthAdapterPolicyArgs]] = None,
        eth_network_policies: Optional[Sequence[VnicEthIfEthNetworkPolicyArgs]] = None,
        eth_qos_policies: Optional[Sequence[VnicEthIfEthQosPolicyArgs]] = None,
        fabric_eth_network_control_policies: Optional[Sequence[VnicEthIfFabricEthNetworkControlPolicyArgs]] = None,
        fabric_eth_network_group_policies: Optional[Sequence[VnicEthIfFabricEthNetworkGroupPolicyArgs]] = None,
        failover_enabled: Optional[bool] = None,
        ip_leases: Optional[Sequence[VnicEthIfIpLeaseArgs]] = None,
        iscsi_boot_policies: Optional[Sequence[VnicEthIfIscsiBootPolicyArgs]] = None,
        iscsi_ip_v4_address_allocation_type: Optional[str] = None,
        iscsi_ip_v4_configs: Optional[Sequence[VnicEthIfIscsiIpV4ConfigArgs]] = None,
        iscsi_ipv4_address: Optional[str] = None,
        lan_connectivity_policies: Optional[Sequence[VnicEthIfLanConnectivityPolicyArgs]] = None,
        lcp_vnics: Optional[Sequence[VnicEthIfLcpVnicArgs]] = None,
        mac_address: Optional[str] = None,
        mac_address_type: Optional[str] = None,
        mac_leases: Optional[Sequence[VnicEthIfMacLeaseArgs]] = None,
        mac_pools: Optional[Sequence[VnicEthIfMacPoolArgs]] = None,
        mod_time: Optional[str] = None,
        moid: Optional[str] = None,
        name: Optional[str] = None,
        object_type: Optional[str] = None,
        order: Optional[float] = None,
        overridden_lists: Optional[Sequence[str]] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[VnicEthIfParentArgs]] = None,
        permission_resources: Optional[Sequence[VnicEthIfPermissionResourceArgs]] = None,
        pin_group_name: Optional[str] = None,
        placements: Optional[Sequence[VnicEthIfPlacementArgs]] = None,
        profiles: Optional[Sequence[VnicEthIfProfileArgs]] = None,
        shared_scope: Optional[str] = None,
        sp_vnics: Optional[Sequence[VnicEthIfSpVnicArgs]] = None,
        src_templates: Optional[Sequence[VnicEthIfSrcTemplateArgs]] = None,
        sriov_settings: Optional[Sequence[VnicEthIfSriovSettingArgs]] = None,
        standby_vif_id: Optional[float] = None,
        static_mac_address: Optional[str] = None,
        tags: Optional[Sequence[VnicEthIfTagArgs]] = None,
        template_actions: Optional[Sequence[VnicEthIfTemplateActionArgs]] = None,
        template_sync_errors: Optional[Sequence[VnicEthIfTemplateSyncErrorArgs]] = None,
        template_sync_status: Optional[str] = None,
        usnic_settings: Optional[Sequence[VnicEthIfUsnicSettingArgs]] = None,
        version_contexts: Optional[Sequence[VnicEthIfVersionContextArgs]] = None,
        vif_id: Optional[float] = None,
        vmq_settings: Optional[Sequence[VnicEthIfVmqSettingArgs]] = None,
        vnic_eth_if_id: Optional[str] = None) -> VnicEthIf
func GetVnicEthIf(ctx *Context, name string, id IDInput, state *VnicEthIfState, opts ...ResourceOption) (*VnicEthIf, error)
public static VnicEthIf Get(string name, Input<string> id, VnicEthIfState? state, CustomResourceOptions? opts = null)
public static VnicEthIf get(String name, Output<String> id, VnicEthIfState state, CustomResourceOptions options)
resources:  _:    type: intersight:VnicEthIf    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors List<VnicEthIfAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
Cdns List<VnicEthIfCdn>
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
EthAdapterPolicies List<VnicEthIfEthAdapterPolicy>
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
EthNetworkPolicies List<VnicEthIfEthNetworkPolicy>
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
EthQosPolicies List<VnicEthIfEthQosPolicy>
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
FabricEthNetworkControlPolicies List<VnicEthIfFabricEthNetworkControlPolicy>
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
FabricEthNetworkGroupPolicies List<VnicEthIfFabricEthNetworkGroupPolicy>
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
FailoverEnabled bool
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
IpLeases List<VnicEthIfIpLease>
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
IscsiBootPolicies List<VnicEthIfIscsiBootPolicy>
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
IscsiIpV4AddressAllocationType string
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
IscsiIpV4Configs List<VnicEthIfIscsiIpV4Config>
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
IscsiIpv4Address string
(ReadOnly) IP address associated to the vNIC.
LanConnectivityPolicies List<VnicEthIfLanConnectivityPolicy>
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
LcpVnics List<VnicEthIfLcpVnic>
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacAddress string
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
MacAddressType string
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
MacLeases List<VnicEthIfMacLease>
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacPools List<VnicEthIfMacPool>
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the virtual ethernet interface.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Order double
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
OverriddenLists List<string>
(Array of schema.TypeString) -
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<VnicEthIfParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<VnicEthIfPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PinGroupName string
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
Placements List<VnicEthIfPlacement>
Placement Settings for the virtual interface. This complex property has following sub-properties:
Profiles List<VnicEthIfProfile>
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SpVnics List<VnicEthIfSpVnic>
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
SrcTemplates List<VnicEthIfSrcTemplate>
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SriovSettings List<VnicEthIfSriovSetting>
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
StandbyVifId double
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
StaticMacAddress string
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
Tags List<VnicEthIfTag>
This complex property has following sub-properties:
TemplateActions List<VnicEthIfTemplateAction>
This complex property has following sub-properties:
TemplateSyncErrors List<VnicEthIfTemplateSyncError>
This complex property has following sub-properties:
TemplateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
UsnicSettings List<VnicEthIfUsnicSetting>
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
VersionContexts List<VnicEthIfVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
VifId double
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
VmqSettings List<VnicEthIfVmqSetting>
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
VnicEthIfId string
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors []VnicEthIfAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
Cdns []VnicEthIfCdnArgs
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
EthAdapterPolicies []VnicEthIfEthAdapterPolicyArgs
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
EthNetworkPolicies []VnicEthIfEthNetworkPolicyArgs
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
EthQosPolicies []VnicEthIfEthQosPolicyArgs
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
FabricEthNetworkControlPolicies []VnicEthIfFabricEthNetworkControlPolicyArgs
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
FabricEthNetworkGroupPolicies []VnicEthIfFabricEthNetworkGroupPolicyArgs
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
FailoverEnabled bool
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
IpLeases []VnicEthIfIpLeaseArgs
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
IscsiBootPolicies []VnicEthIfIscsiBootPolicyArgs
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
IscsiIpV4AddressAllocationType string
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
IscsiIpV4Configs []VnicEthIfIscsiIpV4ConfigArgs
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
IscsiIpv4Address string
(ReadOnly) IP address associated to the vNIC.
LanConnectivityPolicies []VnicEthIfLanConnectivityPolicyArgs
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
LcpVnics []VnicEthIfLcpVnicArgs
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacAddress string
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
MacAddressType string
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
MacLeases []VnicEthIfMacLeaseArgs
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacPools []VnicEthIfMacPoolArgs
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the virtual ethernet interface.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Order float64
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
OverriddenLists []string
(Array of schema.TypeString) -
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []VnicEthIfParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []VnicEthIfPermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PinGroupName string
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
Placements []VnicEthIfPlacementArgs
Placement Settings for the virtual interface. This complex property has following sub-properties:
Profiles []VnicEthIfProfileArgs
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SpVnics []VnicEthIfSpVnicArgs
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
SrcTemplates []VnicEthIfSrcTemplateArgs
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SriovSettings []VnicEthIfSriovSettingArgs
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
StandbyVifId float64
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
StaticMacAddress string
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
Tags []VnicEthIfTagArgs
This complex property has following sub-properties:
TemplateActions []VnicEthIfTemplateActionArgs
This complex property has following sub-properties:
TemplateSyncErrors []VnicEthIfTemplateSyncErrorArgs
This complex property has following sub-properties:
TemplateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
UsnicSettings []VnicEthIfUsnicSettingArgs
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
VersionContexts []VnicEthIfVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
VifId float64
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
VmqSettings []VnicEthIfVmqSettingArgs
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
VnicEthIfId string
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<VnicEthIfAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
cdns List<VnicEthIfCdn>
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
ethAdapterPolicies List<VnicEthIfEthAdapterPolicy>
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethNetworkPolicies List<VnicEthIfEthNetworkPolicy>
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethQosPolicies List<VnicEthIfEthQosPolicy>
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkControlPolicies List<VnicEthIfFabricEthNetworkControlPolicy>
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkGroupPolicies List<VnicEthIfFabricEthNetworkGroupPolicy>
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
failoverEnabled Boolean
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
ipLeases List<VnicEthIfIpLease>
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiBootPolicies List<VnicEthIfIscsiBootPolicy>
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiIpV4AddressAllocationType String
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
iscsiIpV4Configs List<VnicEthIfIscsiIpV4Config>
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
iscsiIpv4Address String
(ReadOnly) IP address associated to the vNIC.
lanConnectivityPolicies List<VnicEthIfLanConnectivityPolicy>
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
lcpVnics List<VnicEthIfLcpVnic>
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddress String
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
macAddressType String
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
macLeases List<VnicEthIfMacLease>
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macPools List<VnicEthIfMacPool>
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the virtual ethernet interface.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order Double
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists List<String>
(Array of schema.TypeString) -
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<VnicEthIfParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<VnicEthIfPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
pinGroupName String
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
placements List<VnicEthIfPlacement>
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles List<VnicEthIfProfile>
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVnics List<VnicEthIfSpVnic>
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
srcTemplates List<VnicEthIfSrcTemplate>
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sriovSettings List<VnicEthIfSriovSetting>
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
standbyVifId Double
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
staticMacAddress String
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
tags List<VnicEthIfTag>
This complex property has following sub-properties:
templateActions List<VnicEthIfTemplateAction>
This complex property has following sub-properties:
templateSyncErrors List<VnicEthIfTemplateSyncError>
This complex property has following sub-properties:
templateSyncStatus String
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usnicSettings List<VnicEthIfUsnicSetting>
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
versionContexts List<VnicEthIfVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId Double
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
vmqSettings List<VnicEthIfVmqSetting>
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
vnicEthIfId String
accountMoid string
(ReadOnly) The Account ID for this managed object.
additionalProperties string
ancestors VnicEthIfAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
cdns VnicEthIfCdn[]
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime string
(ReadOnly) The time when this managed object was created.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ethAdapterPolicies VnicEthIfEthAdapterPolicy[]
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethNetworkPolicies VnicEthIfEthNetworkPolicy[]
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethQosPolicies VnicEthIfEthQosPolicy[]
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkControlPolicies VnicEthIfFabricEthNetworkControlPolicy[]
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkGroupPolicies VnicEthIfFabricEthNetworkGroupPolicy[]
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
failoverEnabled boolean
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
ipLeases VnicEthIfIpLease[]
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiBootPolicies VnicEthIfIscsiBootPolicy[]
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiIpV4AddressAllocationType string
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
iscsiIpV4Configs VnicEthIfIscsiIpV4Config[]
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
iscsiIpv4Address string
(ReadOnly) IP address associated to the vNIC.
lanConnectivityPolicies VnicEthIfLanConnectivityPolicy[]
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
lcpVnics VnicEthIfLcpVnic[]
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddress string
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
macAddressType string
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
macLeases VnicEthIfMacLease[]
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macPools VnicEthIfMacPool[]
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the virtual ethernet interface.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order number
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists string[]
(Array of schema.TypeString) -
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents VnicEthIfParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources VnicEthIfPermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
pinGroupName string
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
placements VnicEthIfPlacement[]
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles VnicEthIfProfile[]
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVnics VnicEthIfSpVnic[]
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
srcTemplates VnicEthIfSrcTemplate[]
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sriovSettings VnicEthIfSriovSetting[]
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
standbyVifId number
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
staticMacAddress string
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
tags VnicEthIfTag[]
This complex property has following sub-properties:
templateActions VnicEthIfTemplateAction[]
This complex property has following sub-properties:
templateSyncErrors VnicEthIfTemplateSyncError[]
This complex property has following sub-properties:
templateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usnicSettings VnicEthIfUsnicSetting[]
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
versionContexts VnicEthIfVersionContext[]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId number
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
vmqSettings VnicEthIfVmqSetting[]
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
vnicEthIfId string
account_moid str
(ReadOnly) The Account ID for this managed object.
additional_properties str
ancestors Sequence[VnicEthIfAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
cdns Sequence[VnicEthIfCdnArgs]
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
create_time str
(ReadOnly) The time when this managed object was created.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
eth_adapter_policies Sequence[VnicEthIfEthAdapterPolicyArgs]
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
eth_network_policies Sequence[VnicEthIfEthNetworkPolicyArgs]
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
eth_qos_policies Sequence[VnicEthIfEthQosPolicyArgs]
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabric_eth_network_control_policies Sequence[VnicEthIfFabricEthNetworkControlPolicyArgs]
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabric_eth_network_group_policies Sequence[VnicEthIfFabricEthNetworkGroupPolicyArgs]
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
failover_enabled bool
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
ip_leases Sequence[VnicEthIfIpLeaseArgs]
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsi_boot_policies Sequence[VnicEthIfIscsiBootPolicyArgs]
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsi_ip_v4_address_allocation_type str
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
iscsi_ip_v4_configs Sequence[VnicEthIfIscsiIpV4ConfigArgs]
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
iscsi_ipv4_address str
(ReadOnly) IP address associated to the vNIC.
lan_connectivity_policies Sequence[VnicEthIfLanConnectivityPolicyArgs]
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
lcp_vnics Sequence[VnicEthIfLcpVnicArgs]
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
mac_address str
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
mac_address_type str
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
mac_leases Sequence[VnicEthIfMacLeaseArgs]
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
mac_pools Sequence[VnicEthIfMacPoolArgs]
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
mod_time str
(ReadOnly) The time when this managed object was last modified.
moid str
The unique identifier of this Managed Object instance.
name str
Name of the virtual ethernet interface.
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order float
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overridden_lists Sequence[str]
(Array of schema.TypeString) -
owners Sequence[str]
(Array of schema.TypeString) -(ReadOnly)
parents Sequence[VnicEthIfParentArgs]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permission_resources Sequence[VnicEthIfPermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
pin_group_name str
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
placements Sequence[VnicEthIfPlacementArgs]
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles Sequence[VnicEthIfProfileArgs]
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
sp_vnics Sequence[VnicEthIfSpVnicArgs]
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
src_templates Sequence[VnicEthIfSrcTemplateArgs]
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sriov_settings Sequence[VnicEthIfSriovSettingArgs]
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
standby_vif_id float
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
static_mac_address str
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
tags Sequence[VnicEthIfTagArgs]
This complex property has following sub-properties:
template_actions Sequence[VnicEthIfTemplateActionArgs]
This complex property has following sub-properties:
template_sync_errors Sequence[VnicEthIfTemplateSyncErrorArgs]
This complex property has following sub-properties:
template_sync_status str
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usnic_settings Sequence[VnicEthIfUsnicSettingArgs]
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
version_contexts Sequence[VnicEthIfVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vif_id float
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
vmq_settings Sequence[VnicEthIfVmqSettingArgs]
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
vnic_eth_if_id str
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
cdns List<Property Map>
Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
ethAdapterPolicies List<Property Map>
A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethNetworkPolicies List<Property Map>
A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ethQosPolicies List<Property Map>
A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkControlPolicies List<Property Map>
A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
fabricEthNetworkGroupPolicies List<Property Map>
An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
failoverEnabled Boolean
Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
ipLeases List<Property Map>
A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiBootPolicies List<Property Map>
A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
iscsiIpV4AddressAllocationType String
(ReadOnly) Static/Pool/DHCP Type of IP address allocated to the vNIC. It is derived from iSCSI boot policy IP Address type.* None - Type indicates that there is no IP associated to an vnic.* DHCP - The IP address is assigned using DHCP, if available.* Static - Static IPv4 address is assigned to the iSCSI boot interface based on the information entered in this area.* Pool - An IPv4 address is assigned to the iSCSI boot interface from the management IP address pool.
iscsiIpV4Configs List<Property Map>
(ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
iscsiIpv4Address String
(ReadOnly) IP address associated to the vNIC.
lanConnectivityPolicies List<Property Map>
A reference to a vnicLanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
lcpVnics List<Property Map>
(ReadOnly) A reference to a vnicEthIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddress String
(ReadOnly) The MAC address that is assigned to the vNIC based on the MAC pool that has been assigned to the LAN Connectivity Policy.
macAddressType String
Type of allocation selected to assign a MAC address for the vnic.* POOL - The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.* STATIC - The user assigns a static mac/wwn address for the Virtual Interface.
macLeases List<Property Map>
A reference to a macpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macPools List<Property Map>
A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the virtual ethernet interface.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order Number
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists List<String>
(Array of schema.TypeString) -
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
pinGroupName String
Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
placements List<Property Map>
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles List<Property Map>
A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVnics List<Property Map>
(ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
srcTemplates List<Property Map>
A reference to a vnicVnicTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sriovSettings List<Property Map>
Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
standbyVifId Number
(ReadOnly) The Standby VIF Id is applicable for failover enabled vNICS. It should be the same as the channel number of the standby vethernet created on switch in order to set up the standby data path.
staticMacAddress String
The MAC address must be in hexadecimal format xx:xx:xx:xx:xx:xx.To ensure uniqueness of MACs in the LAN fabric, you are strongly encouraged to use thefollowing MAC prefix 00:25:B5:xx:xx:xx.
tags List<Property Map>
This complex property has following sub-properties:
templateActions List<Property Map>
This complex property has following sub-properties:
templateSyncErrors List<Property Map>
This complex property has following sub-properties:
templateSyncStatus String
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usnicSettings List<Property Map>
User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId Number
(ReadOnly) The Vif Id should be same as the channel number of the vethernet created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vethernet is created on the switch for every vNIC.
vmqSettings List<Property Map>
Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
vnicEthIfId String

Supporting Types

VnicEthIfAncestor
, VnicEthIfAncestorArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfCdn
, VnicEthIfCdnArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
NrSource This property is required. string
Source of the CDN. It can either be user specified or be the same as the vNIC name.* vnic - Source of the CDN is the same as the vNIC name.* user - Source of the CDN is specified by the user.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The CDN value entered in case of user defined mode.
AdditionalProperties This property is required. string
ClassId This property is required. string
NrSource This property is required. string
Source of the CDN. It can either be user specified or be the same as the vNIC name.* vnic - Source of the CDN is the same as the vNIC name.* user - Source of the CDN is specified by the user.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The CDN value entered in case of user defined mode.
additionalProperties This property is required. String
classId This property is required. String
nrSource This property is required. String
Source of the CDN. It can either be user specified or be the same as the vNIC name.* vnic - Source of the CDN is the same as the vNIC name.* user - Source of the CDN is specified by the user.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The CDN value entered in case of user defined mode.
additionalProperties This property is required. string
classId This property is required. string
nrSource This property is required. string
Source of the CDN. It can either be user specified or be the same as the vNIC name.* vnic - Source of the CDN is the same as the vNIC name.* user - Source of the CDN is specified by the user.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. string
The CDN value entered in case of user defined mode.
additional_properties This property is required. str
class_id This property is required. str
nr_source This property is required. str
Source of the CDN. It can either be user specified or be the same as the vNIC name.* vnic - Source of the CDN is the same as the vNIC name.* user - Source of the CDN is specified by the user.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. str
The CDN value entered in case of user defined mode.
additionalProperties This property is required. String
classId This property is required. String
nrSource This property is required. String
Source of the CDN. It can either be user specified or be the same as the vNIC name.* vnic - Source of the CDN is the same as the vNIC name.* user - Source of the CDN is specified by the user.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The CDN value entered in case of user defined mode.

VnicEthIfEthAdapterPolicy
, VnicEthIfEthAdapterPolicyArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfEthNetworkPolicy
, VnicEthIfEthNetworkPolicyArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfEthQosPolicy
, VnicEthIfEthQosPolicyArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfFabricEthNetworkControlPolicy
, VnicEthIfFabricEthNetworkControlPolicyArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfFabricEthNetworkGroupPolicy
, VnicEthIfFabricEthNetworkGroupPolicyArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfIpLease
, VnicEthIfIpLeaseArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfIscsiBootPolicy
, VnicEthIfIscsiBootPolicyArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfIscsiIpV4Config
, VnicEthIfIscsiIpV4ConfigArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Gateway This property is required. string
IP address of the default IPv4 gateway.
Netmask This property is required. string
A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PrimaryDns This property is required. string
IP Address of the primary Domain Name System (DNS) server.
SecondaryDns This property is required. string
IP Address of the secondary Domain Name System (DNS) server.
AdditionalProperties This property is required. string
ClassId This property is required. string
Gateway This property is required. string
IP address of the default IPv4 gateway.
Netmask This property is required. string
A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PrimaryDns This property is required. string
IP Address of the primary Domain Name System (DNS) server.
SecondaryDns This property is required. string
IP Address of the secondary Domain Name System (DNS) server.
additionalProperties This property is required. String
classId This property is required. String
gateway This property is required. String
IP address of the default IPv4 gateway.
netmask This property is required. String
A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
primaryDns This property is required. String
IP Address of the primary Domain Name System (DNS) server.
secondaryDns This property is required. String
IP Address of the secondary Domain Name System (DNS) server.
additionalProperties This property is required. string
classId This property is required. string
gateway This property is required. string
IP address of the default IPv4 gateway.
netmask This property is required. string
A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
primaryDns This property is required. string
IP Address of the primary Domain Name System (DNS) server.
secondaryDns This property is required. string
IP Address of the secondary Domain Name System (DNS) server.
additional_properties This property is required. str
class_id This property is required. str
gateway This property is required. str
IP address of the default IPv4 gateway.
netmask This property is required. str
A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
primary_dns This property is required. str
IP Address of the primary Domain Name System (DNS) server.
secondary_dns This property is required. str
IP Address of the secondary Domain Name System (DNS) server.
additionalProperties This property is required. String
classId This property is required. String
gateway This property is required. String
IP address of the default IPv4 gateway.
netmask This property is required. String
A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
primaryDns This property is required. String
IP Address of the primary Domain Name System (DNS) server.
secondaryDns This property is required. String
IP Address of the secondary Domain Name System (DNS) server.

VnicEthIfLanConnectivityPolicy
, VnicEthIfLanConnectivityPolicyArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfLcpVnic
, VnicEthIfLcpVnicArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfMacLease
, VnicEthIfMacLeaseArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfMacPool
, VnicEthIfMacPoolArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfParent
, VnicEthIfParentArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfPermissionResource
, VnicEthIfPermissionResourceArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfPlacement
, VnicEthIfPlacementArgs

AdditionalProperties This property is required. string
AutoPciLink This property is required. bool
Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
AutoSlotId This property is required. bool
Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
ClassId This property is required. string
Id This property is required. string
PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PciLink This property is required. double
The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored.
PciLinkAssignmentMode This property is required. string
If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom - The user needs to specify the PCI Link manually.* Load-Balanced - The system will uniformly distribute the interfaces across the PCI Links.* None - Assignment is not applicable and will be set when the AutoPciLink is set to true.
SwitchId This property is required. string
The fabric port to which the vNICs will be associated.* None - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.* A - Fabric A of the FI cluster.* B - Fabric B of the FI cluster.
Uplink This property is required. double
Adapter port on which the virtual interface will be created.
AdditionalProperties This property is required. string
AutoPciLink This property is required. bool
Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
AutoSlotId This property is required. bool
Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
ClassId This property is required. string
Id This property is required. string
PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PciLink This property is required. float64
The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored.
PciLinkAssignmentMode This property is required. string
If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom - The user needs to specify the PCI Link manually.* Load-Balanced - The system will uniformly distribute the interfaces across the PCI Links.* None - Assignment is not applicable and will be set when the AutoPciLink is set to true.
SwitchId This property is required. string
The fabric port to which the vNICs will be associated.* None - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.* A - Fabric A of the FI cluster.* B - Fabric B of the FI cluster.
Uplink This property is required. float64
Adapter port on which the virtual interface will be created.
additionalProperties This property is required. String
autoPciLink This property is required. Boolean
Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
autoSlotId This property is required. Boolean
Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
classId This property is required. String
id This property is required. String
PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
pciLink This property is required. Double
The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored.
pciLinkAssignmentMode This property is required. String
If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom - The user needs to specify the PCI Link manually.* Load-Balanced - The system will uniformly distribute the interfaces across the PCI Links.* None - Assignment is not applicable and will be set when the AutoPciLink is set to true.
switchId This property is required. String
The fabric port to which the vNICs will be associated.* None - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.* A - Fabric A of the FI cluster.* B - Fabric B of the FI cluster.
uplink This property is required. Double
Adapter port on which the virtual interface will be created.
additionalProperties This property is required. string
autoPciLink This property is required. boolean
Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
autoSlotId This property is required. boolean
Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
classId This property is required. string
id This property is required. string
PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
pciLink This property is required. number
The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored.
pciLinkAssignmentMode This property is required. string
If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom - The user needs to specify the PCI Link manually.* Load-Balanced - The system will uniformly distribute the interfaces across the PCI Links.* None - Assignment is not applicable and will be set when the AutoPciLink is set to true.
switchId This property is required. string
The fabric port to which the vNICs will be associated.* None - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.* A - Fabric A of the FI cluster.* B - Fabric B of the FI cluster.
uplink This property is required. number
Adapter port on which the virtual interface will be created.
additional_properties This property is required. str
auto_pci_link This property is required. bool
Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
auto_slot_id This property is required. bool
Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
class_id This property is required. str
id This property is required. str
PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
pci_link This property is required. float
The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored.
pci_link_assignment_mode This property is required. str
If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom - The user needs to specify the PCI Link manually.* Load-Balanced - The system will uniformly distribute the interfaces across the PCI Links.* None - Assignment is not applicable and will be set when the AutoPciLink is set to true.
switch_id This property is required. str
The fabric port to which the vNICs will be associated.* None - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.* A - Fabric A of the FI cluster.* B - Fabric B of the FI cluster.
uplink This property is required. float
Adapter port on which the virtual interface will be created.
additionalProperties This property is required. String
autoPciLink This property is required. Boolean
Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
autoSlotId This property is required. Boolean
Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
classId This property is required. String
id This property is required. String
PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
pciLink This property is required. Number
The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored.
pciLinkAssignmentMode This property is required. String
If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom - The user needs to specify the PCI Link manually.* Load-Balanced - The system will uniformly distribute the interfaces across the PCI Links.* None - Assignment is not applicable and will be set when the AutoPciLink is set to true.
switchId This property is required. String
The fabric port to which the vNICs will be associated.* None - Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.* A - Fabric A of the FI cluster.* B - Fabric B of the FI cluster.
uplink This property is required. Number
Adapter port on which the virtual interface will be created.

VnicEthIfProfile
, VnicEthIfProfileArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfSpVnic
, VnicEthIfSpVnicArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfSrcTemplate
, VnicEthIfSrcTemplateArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfSriovSetting
, VnicEthIfSriovSettingArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
CompCountPerVf This property is required. double
Completion Queue resources per Virtual Function (VF).
Enabled This property is required. bool
If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
IntCountPerVf This property is required. double
Interrupt Count resources per Virtual Function (VF).
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RxCountPerVf This property is required. double
Receive Queue resources per Virtual Function (VF).
TxCountPerVf This property is required. double
Transmit Queue resources per Virtual Function (VF).
VfCount This property is required. double
Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
AdditionalProperties This property is required. string
ClassId This property is required. string
CompCountPerVf This property is required. float64
Completion Queue resources per Virtual Function (VF).
Enabled This property is required. bool
If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
IntCountPerVf This property is required. float64
Interrupt Count resources per Virtual Function (VF).
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RxCountPerVf This property is required. float64
Receive Queue resources per Virtual Function (VF).
TxCountPerVf This property is required. float64
Transmit Queue resources per Virtual Function (VF).
VfCount This property is required. float64
Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
additionalProperties This property is required. String
classId This property is required. String
compCountPerVf This property is required. Double
Completion Queue resources per Virtual Function (VF).
enabled This property is required. Boolean
If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
intCountPerVf This property is required. Double
Interrupt Count resources per Virtual Function (VF).
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
rxCountPerVf This property is required. Double
Receive Queue resources per Virtual Function (VF).
txCountPerVf This property is required. Double
Transmit Queue resources per Virtual Function (VF).
vfCount This property is required. Double
Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
additionalProperties This property is required. string
classId This property is required. string
compCountPerVf This property is required. number
Completion Queue resources per Virtual Function (VF).
enabled This property is required. boolean
If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
intCountPerVf This property is required. number
Interrupt Count resources per Virtual Function (VF).
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
rxCountPerVf This property is required. number
Receive Queue resources per Virtual Function (VF).
txCountPerVf This property is required. number
Transmit Queue resources per Virtual Function (VF).
vfCount This property is required. number
Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
additional_properties This property is required. str
class_id This property is required. str
comp_count_per_vf This property is required. float
Completion Queue resources per Virtual Function (VF).
enabled This property is required. bool
If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
int_count_per_vf This property is required. float
Interrupt Count resources per Virtual Function (VF).
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
rx_count_per_vf This property is required. float
Receive Queue resources per Virtual Function (VF).
tx_count_per_vf This property is required. float
Transmit Queue resources per Virtual Function (VF).
vf_count This property is required. float
Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
additionalProperties This property is required. String
classId This property is required. String
compCountPerVf This property is required. Number
Completion Queue resources per Virtual Function (VF).
enabled This property is required. Boolean
If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
intCountPerVf This property is required. Number
Interrupt Count resources per Virtual Function (VF).
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
rxCountPerVf This property is required. Number
Receive Queue resources per Virtual Function (VF).
txCountPerVf This property is required. Number
Transmit Queue resources per Virtual Function (VF).
vfCount This property is required. Number
Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.

VnicEthIfTag
, VnicEthIfTagArgs

AdditionalProperties This property is required. string
Key This property is required. string
The string representation of a tag key.
Value This property is required. string
The string representation of a tag value.
AdditionalProperties This property is required. string
Key This property is required. string
The string representation of a tag key.
Value This property is required. string
The string representation of a tag value.
additionalProperties This property is required. String
key This property is required. String
The string representation of a tag key.
value This property is required. String
The string representation of a tag value.
additionalProperties This property is required. string
key This property is required. string
The string representation of a tag key.
value This property is required. string
The string representation of a tag value.
additional_properties This property is required. str
key This property is required. str
The string representation of a tag key.
value This property is required. str
The string representation of a tag value.
additionalProperties This property is required. String
key This property is required. String
The string representation of a tag key.
value This property is required. String
The string representation of a tag value.

VnicEthIfTemplateAction
, VnicEthIfTemplateActionArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Params This property is required. List<VnicEthIfTemplateActionParam>
This complex property has following sub-properties:
Type This property is required. string
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Params This property is required. []VnicEthIfTemplateActionParam
This complex property has following sub-properties:
Type This property is required. string
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
params This property is required. List<VnicEthIfTemplateActionParam>
This complex property has following sub-properties:
type This property is required. String
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
additionalProperties This property is required. string
classId This property is required. string
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
params This property is required. VnicEthIfTemplateActionParam[]
This complex property has following sub-properties:
type This property is required. string
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
additional_properties This property is required. str
class_id This property is required. str
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
params This property is required. Sequence[VnicEthIfTemplateActionParam]
This complex property has following sub-properties:
type This property is required. str
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
params This property is required. List<Property Map>
This complex property has following sub-properties:
type This property is required. String
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.

VnicEthIfTemplateActionParam
, VnicEthIfTemplateActionParamArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
additionalProperties This property is required. string
classId This property is required. string
name This property is required. string
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. string
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
additional_properties This property is required. str
class_id This property is required. str
name This property is required. str
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. str
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.

VnicEthIfTemplateSyncError
, VnicEthIfTemplateSyncErrorArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Message This property is required. string
(ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Type This property is required. string
(ReadOnly) The error type that indicates the point of failure.* Transient - Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.* Validation - When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.* User - Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.* Internal - Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
AdditionalProperties This property is required. string
ClassId This property is required. string
Message This property is required. string
(ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Type This property is required. string
(ReadOnly) The error type that indicates the point of failure.* Transient - Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.* Validation - When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.* User - Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.* Internal - Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
additionalProperties This property is required. String
classId This property is required. String
message This property is required. String
(ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
type This property is required. String
(ReadOnly) The error type that indicates the point of failure.* Transient - Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.* Validation - When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.* User - Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.* Internal - Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
additionalProperties This property is required. string
classId This property is required. string
message This property is required. string
(ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
type This property is required. string
(ReadOnly) The error type that indicates the point of failure.* Transient - Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.* Validation - When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.* User - Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.* Internal - Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
additional_properties This property is required. str
class_id This property is required. str
message This property is required. str
(ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
type This property is required. str
(ReadOnly) The error type that indicates the point of failure.* Transient - Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.* Validation - When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.* User - Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.* Internal - Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
additionalProperties This property is required. String
classId This property is required. String
message This property is required. String
(ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
type This property is required. String
(ReadOnly) The error type that indicates the point of failure.* Transient - Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.* Validation - When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.* User - Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.* Internal - Any application internal errors are displayed under this category. This error type is considered fatal and not retried.

VnicEthIfUsnicSetting
, VnicEthIfUsnicSettingArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Cos This property is required. double
Class of Service to be used for traffic on the usNIC.
NrCount This property is required. double
Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
UsnicAdapterPolicy This property is required. string
Ethernet Adapter policy to be associated with the usNICs.
AdditionalProperties This property is required. string
ClassId This property is required. string
Cos This property is required. float64
Class of Service to be used for traffic on the usNIC.
NrCount This property is required. float64
Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
UsnicAdapterPolicy This property is required. string
Ethernet Adapter policy to be associated with the usNICs.
additionalProperties This property is required. String
classId This property is required. String
cos This property is required. Double
Class of Service to be used for traffic on the usNIC.
nrCount This property is required. Double
Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
usnicAdapterPolicy This property is required. String
Ethernet Adapter policy to be associated with the usNICs.
additionalProperties This property is required. string
classId This property is required. string
cos This property is required. number
Class of Service to be used for traffic on the usNIC.
nrCount This property is required. number
Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
usnicAdapterPolicy This property is required. string
Ethernet Adapter policy to be associated with the usNICs.
additional_properties This property is required. str
class_id This property is required. str
cos This property is required. float
Class of Service to be used for traffic on the usNIC.
nr_count This property is required. float
Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
usnic_adapter_policy This property is required. str
Ethernet Adapter policy to be associated with the usNICs.
additionalProperties This property is required. String
classId This property is required. String
cos This property is required. Number
Class of Service to be used for traffic on the usNIC.
nrCount This property is required. Number
Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
usnicAdapterPolicy This property is required. String
Ethernet Adapter policy to be associated with the usNICs.

VnicEthIfVersionContext
, VnicEthIfVersionContextArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
InterestedMos This property is required. List<VnicEthIfVersionContextInterestedMo>
This complex property has following sub-properties:
MarkedForDeletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
NrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RefMos This property is required. List<VnicEthIfVersionContextRefMo>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
Timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
VersionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
AdditionalProperties This property is required. string
ClassId This property is required. string
InterestedMos This property is required. []VnicEthIfVersionContextInterestedMo
This complex property has following sub-properties:
MarkedForDeletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
NrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RefMos This property is required. []VnicEthIfVersionContextRefMo
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
Timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
VersionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. String
classId This property is required. String
interestedMos This property is required. List<VnicEthIfVersionContextInterestedMo>
This complex property has following sub-properties:
markedForDeletion This property is required. Boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. String
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. List<VnicEthIfVersionContextRefMo>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. String
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. String
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. string
classId This property is required. string
interestedMos This property is required. VnicEthIfVersionContextInterestedMo[]
This complex property has following sub-properties:
markedForDeletion This property is required. boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. VnicEthIfVersionContextRefMo[]
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additional_properties This property is required. str
class_id This property is required. str
interested_mos This property is required. Sequence[VnicEthIfVersionContextInterestedMo]
This complex property has following sub-properties:
marked_for_deletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nr_version This property is required. str
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ref_mos This property is required. Sequence[VnicEthIfVersionContextRefMo]
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. str
(ReadOnly) The time this versioned Managed Object was created.
version_type This property is required. str
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. String
classId This property is required. String
interestedMos This property is required. List<Property Map>
This complex property has following sub-properties:
markedForDeletion This property is required. Boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. String
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. List<Property Map>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. String
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. String
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.

VnicEthIfVersionContextInterestedMo
, VnicEthIfVersionContextInterestedMoArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfVersionContextRefMo
, VnicEthIfVersionContextRefMoArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

VnicEthIfVmqSetting
, VnicEthIfVmqSettingArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Enabled This property is required. bool
Enables VMQ feature on the virtual interface.
MultiQueueSupport This property is required. bool
Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
NumInterrupts This property is required. double
The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
NumSubVnics This property is required. double
The number of sub vNICs to be created.
NumVmqs This property is required. double
The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
VmmqAdapterPolicy This property is required. string
Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
AdditionalProperties This property is required. string
ClassId This property is required. string
Enabled This property is required. bool
Enables VMQ feature on the virtual interface.
MultiQueueSupport This property is required. bool
Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
NumInterrupts This property is required. float64
The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
NumSubVnics This property is required. float64
The number of sub vNICs to be created.
NumVmqs This property is required. float64
The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
VmmqAdapterPolicy This property is required. string
Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
additionalProperties This property is required. String
classId This property is required. String
enabled This property is required. Boolean
Enables VMQ feature on the virtual interface.
multiQueueSupport This property is required. Boolean
Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
numInterrupts This property is required. Double
The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
numSubVnics This property is required. Double
The number of sub vNICs to be created.
numVmqs This property is required. Double
The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vmmqAdapterPolicy This property is required. String
Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
additionalProperties This property is required. string
classId This property is required. string
enabled This property is required. boolean
Enables VMQ feature on the virtual interface.
multiQueueSupport This property is required. boolean
Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
numInterrupts This property is required. number
The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
numSubVnics This property is required. number
The number of sub vNICs to be created.
numVmqs This property is required. number
The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vmmqAdapterPolicy This property is required. string
Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
additional_properties This property is required. str
class_id This property is required. str
enabled This property is required. bool
Enables VMQ feature on the virtual interface.
multi_queue_support This property is required. bool
Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
num_interrupts This property is required. float
The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
num_sub_vnics This property is required. float
The number of sub vNICs to be created.
num_vmqs This property is required. float
The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vmmq_adapter_policy This property is required. str
Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
additionalProperties This property is required. String
classId This property is required. String
enabled This property is required. Boolean
Enables VMQ feature on the virtual interface.
multiQueueSupport This property is required. Boolean
Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
numInterrupts This property is required. Number
The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
numSubVnics This property is required. Number
The number of sub vNICs to be created.
numVmqs This property is required. Number
The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vmmqAdapterPolicy This property is required. String
Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.

Import

intersight_vnic_eth_if can be imported using the Moid of the object, e.g.

$ pulumi import intersight:index/vnicEthIf:VnicEthIf example 1234567890987654321abcde
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
intersight ciscodevnet/terraform-provider-intersight
License
Notes
This Pulumi package is based on the intersight Terraform Provider.