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",
}],
});
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",
}])
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
})
}
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",
},
},
});
});
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());
}
}
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
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Vnic
Eth If Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Cdns
List<Vnic
Eth If Cdn> - Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
- Class
Id 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Eth
Adapter List<VnicPolicies Eth If Eth Adapter Policy> - 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 List<VnicPolicies Eth If Eth Network Policy> - 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 List<VnicPolicies Eth If Eth Qos Policy> - 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 List<VnicNetwork Control Policies Eth If Fabric Eth Network Control Policy> - 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 List<VnicNetwork Group Policies Eth If Fabric Eth Network Group Policy> - 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 List<VnicEth If Ip Lease> - 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 List<VnicPolicies Eth If Iscsi Boot Policy> - 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 stringV4Address Allocation Type - (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 List<VnicV4Configs Eth If Iscsi Ip V4Config> - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- Iscsi
Ipv4Address string - (ReadOnly) IP address associated to the vNIC.
- Lan
Connectivity List<VnicPolicies Eth If Lan Connectivity Policy> - 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 List<VnicEth If Lcp Vnic> - (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 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.
- Mac
Address stringType - 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 List<VnicEth If Mac Lease> - 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 List<VnicEth If Mac Pool> - 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 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.
- Object
Type 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.
- Overridden
Lists List<string> - (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Vnic
Eth If Parent> - (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 List<VnicEth If Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pin
Group stringName - 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<Vnic
Eth If Placement> - Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
List<Vnic
Eth If Profile> - 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:
- 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.
- Sp
Vnics List<VnicEth If Sp Vnic> - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- Src
Templates List<VnicEth If Src Template> - 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 List<VnicEth If Sriov Setting> - 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 doubleId - (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 stringAddress - 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.
- List<Vnic
Eth If Tag> - This complex property has following sub-properties:
- Template
Actions List<VnicEth If Template Action> - This complex property has following sub-properties:
- Template
Sync List<VnicErrors Eth If Template Sync Error> - This complex property has following sub-properties:
- Template
Sync stringStatus - (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 List<VnicEth If Usnic Setting> - 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 List<VnicEth If Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vif
Id 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.
- Vmq
Settings List<VnicEth If Vmq Setting> - 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 stringIf Id
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Vnic
Eth If Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Cdns
[]Vnic
Eth If Cdn Args - Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
- Class
Id 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Eth
Adapter []VnicPolicies Eth If Eth Adapter Policy Args - 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 []VnicPolicies Eth If Eth Network Policy Args - 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 []VnicPolicies Eth If Eth Qos Policy Args - 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 []VnicNetwork Control Policies Eth If Fabric Eth Network Control Policy Args - 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 []VnicNetwork Group Policies Eth If Fabric Eth Network Group Policy Args - 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 []VnicEth If Ip Lease Args - 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 []VnicPolicies Eth If Iscsi Boot Policy Args - 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 stringV4Address Allocation Type - (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 []VnicV4Configs Eth If Iscsi Ip V4Config Args - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- Iscsi
Ipv4Address string - (ReadOnly) IP address associated to the vNIC.
- Lan
Connectivity []VnicPolicies Eth If Lan Connectivity Policy Args - 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 []VnicEth If Lcp Vnic Args - (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 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.
- Mac
Address stringType - 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 []VnicEth If Mac Lease Args - 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 []VnicEth If Mac Pool Args - 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 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.
- Object
Type 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.
- Overridden
Lists []string - (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Vnic
Eth If Parent Args - (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 []VnicEth If Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pin
Group stringName - 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
[]Vnic
Eth If Placement Args - Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
[]Vnic
Eth If Profile Args - 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:
- 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.
- Sp
Vnics []VnicEth If Sp Vnic Args - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- Src
Templates []VnicEth If Src Template Args - 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 []VnicEth If Sriov Setting Args - 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 float64Id - (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 stringAddress - 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.
- []Vnic
Eth If Tag Args - This complex property has following sub-properties:
- Template
Actions []VnicEth If Template Action Args - This complex property has following sub-properties:
- Template
Sync []VnicErrors Eth If Template Sync Error Args - This complex property has following sub-properties:
- Template
Sync stringStatus - (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 []VnicEth If Usnic Setting Args - 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 []VnicEth If Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vif
Id 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.
- Vmq
Settings []VnicEth If Vmq Setting Args - 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 stringIf Id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Vnic
Eth If Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
List<Vnic
Eth If Cdn> - Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
- class
Id 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- eth
Adapter List<VnicPolicies Eth If Eth Adapter Policy> - 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 List<VnicPolicies Eth If Eth Network Policy> - 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 List<VnicPolicies Eth If Eth Qos Policy> - 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 List<VnicNetwork Control Policies Eth If Fabric Eth Network Control Policy> - 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 List<VnicNetwork Group Policies Eth If Fabric Eth Network Group Policy> - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled 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.
- ip
Leases List<VnicEth If Ip Lease> - 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 List<VnicPolicies Eth If Iscsi Boot Policy> - 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 StringV4Address Allocation Type - (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 List<VnicV4Configs Eth If Iscsi Ip V4Config> - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- iscsi
Ipv4Address String - (ReadOnly) IP address associated to the vNIC.
- lan
Connectivity List<VnicPolicies Eth If Lan Connectivity Policy> - 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 List<VnicEth If Lcp Vnic> - (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 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.
- mac
Address StringType - 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 List<VnicEth If Mac Lease> - 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 List<VnicEth If Mac Pool> - 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 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.
- object
Type 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.
- overridden
Lists List<String> - (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Vnic
Eth If Parent> - (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 List<VnicEth If Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group StringName - 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<Vnic
Eth If Placement> - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
List<Vnic
Eth If Profile> - 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:
- 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.
- sp
Vnics List<VnicEth If Sp Vnic> - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- src
Templates List<VnicEth If Src Template> - 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 List<VnicEth If Sriov Setting> - 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 DoubleId - (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 StringAddress - 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.
- List<Vnic
Eth If Tag> - This complex property has following sub-properties:
- template
Actions List<VnicEth If Template Action> - This complex property has following sub-properties:
- template
Sync List<VnicErrors Eth If Template Sync Error> - This complex property has following sub-properties:
- template
Sync StringStatus - (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 List<VnicEth If Usnic Setting> - 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 List<VnicEth If Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id 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.
- vmq
Settings List<VnicEth If Vmq Setting> - 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 StringIf Id
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Vnic
Eth If Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
Vnic
Eth If Cdn[] - Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
- class
Id 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.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- eth
Adapter VnicPolicies Eth If Eth Adapter Policy[] - 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 VnicPolicies Eth If Eth Network Policy[] - 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 VnicPolicies Eth If Eth Qos Policy[] - 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 VnicNetwork Control Policies Eth If Fabric Eth Network Control Policy[] - 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 VnicNetwork Group Policies Eth If Fabric Eth Network Group Policy[] - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled 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.
- ip
Leases VnicEth If Ip Lease[] - 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 VnicPolicies Eth If Iscsi Boot Policy[] - 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 stringV4Address Allocation Type - (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 VnicV4Configs Eth If Iscsi Ip V4Config[] - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- iscsi
Ipv4Address string - (ReadOnly) IP address associated to the vNIC.
- lan
Connectivity VnicPolicies Eth If Lan Connectivity Policy[] - 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 VnicEth If Lcp Vnic[] - (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 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.
- mac
Address stringType - 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 VnicEth If Mac Lease[] - 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 VnicEth If Mac Pool[] - 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 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.
- object
Type 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.
- overridden
Lists string[] - (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Vnic
Eth If Parent[] - (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 VnicEth If Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group stringName - 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
Vnic
Eth If Placement[] - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Vnic
Eth If Profile[] - 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:
- 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.
- sp
Vnics VnicEth If Sp Vnic[] - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- src
Templates VnicEth If Src Template[] - 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 VnicEth If Sriov Setting[] - 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 numberId - (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 stringAddress - 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.
- Vnic
Eth If Tag[] - This complex property has following sub-properties:
- template
Actions VnicEth If Template Action[] - This complex property has following sub-properties:
- template
Sync VnicErrors Eth If Template Sync Error[] - This complex property has following sub-properties:
- template
Sync stringStatus - (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 VnicEth If Usnic Setting[] - 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 VnicEth If Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id 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.
- vmq
Settings VnicEth If Vmq Setting[] - 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 stringIf Id
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Vnic
Eth If Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
Sequence[Vnic
Eth If Cdn Args] - 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_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- eth_
adapter_ Sequence[Vnicpolicies Eth If Eth Adapter Policy Args] - 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_ Sequence[Vnicpolicies Eth If Eth Network Policy Args] - 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_ Sequence[Vnicpolicies Eth If Eth Qos Policy Args] - 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_ Sequence[Vnicnetwork_ control_ policies Eth If Fabric Eth Network Control Policy Args] - 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_ Sequence[Vnicnetwork_ group_ policies Eth If Fabric Eth Network Group Policy Args] - 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[VnicEth If Ip Lease Args] - 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_ Sequence[Vnicpolicies Eth If Iscsi Boot Policy Args] - 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_ strv4_ address_ allocation_ type - (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_ Sequence[Vnicv4_ configs Eth If Iscsi Ip V4Config Args] - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- iscsi_
ipv4_ straddress - (ReadOnly) IP address associated to the vNIC.
- lan_
connectivity_ Sequence[Vnicpolicies Eth If Lan Connectivity Policy Args] - 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[VnicEth If Lcp Vnic Args] - (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_ strtype - 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[VnicEth If Mac Lease Args] - 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[VnicEth If Mac Pool Args] - 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[Vnic
Eth If Parent Args] - (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[VnicEth If Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin_
group_ strname - 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[Vnic
Eth If Placement Args] - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Sequence[Vnic
Eth If Profile Args] - 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:
- 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[VnicEth If Sp Vnic Args] - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- src_
templates Sequence[VnicEth If Src Template Args] - 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[VnicEth If Sriov Setting Args] - 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_ floatid - (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_ straddress - 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.
- Sequence[Vnic
Eth If Tag Args] - This complex property has following sub-properties:
- template_
actions Sequence[VnicEth If Template Action Args] - This complex property has following sub-properties:
- template_
sync_ Sequence[Vnicerrors Eth If Template Sync Error Args] - This complex property has following sub-properties:
- template_
sync_ strstatus - (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[VnicEth If Usnic Setting Args] - 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[VnicEth If Version Context Args] - (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[VnicEth If Vmq Setting Args] - 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_ strif_ id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties 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:
- class
Id 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- eth
Adapter List<Property Map>Policies - 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 List<Property Map>Policies - 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 List<Property Map>Policies - 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 List<Property Map>Network Control Policies - 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 List<Property Map>Network Group Policies - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled 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.
- ip
Leases 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:
- iscsi
Boot List<Property Map>Policies - 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 StringV4Address Allocation Type - (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 List<Property Map>V4Configs - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- iscsi
Ipv4Address String - (ReadOnly) IP address associated to the vNIC.
- lan
Connectivity List<Property Map>Policies - 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 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:
- mac
Address 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.
- mac
Address StringType - 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 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:
- mac
Pools 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:
- mod
Time 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.
- object
Type 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.
- overridden
Lists 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group StringName - 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:
- 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.
- sp
Vnics List<Property Map> - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- src
Templates 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:
- sriov
Settings 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:
- standby
Vif NumberId - (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 StringAddress - 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.
- List<Property Map>
- This complex property has following sub-properties:
- template
Actions List<Property Map> - This complex property has following sub-properties:
- template
Sync List<Property Map>Errors - This complex property has following sub-properties:
- template
Sync StringStatus - (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 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:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id 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.
- vmq
Settings 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:
- vnic
Eth StringIf Id
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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Vnic
Eth If Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Cdns
List<Vnic
Eth If Cdn> - Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
- Class
Id 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Eth
Adapter List<VnicPolicies Eth If Eth Adapter Policy> - 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 List<VnicPolicies Eth If Eth Network Policy> - 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 List<VnicPolicies Eth If Eth Qos Policy> - 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 List<VnicNetwork Control Policies Eth If Fabric Eth Network Control Policy> - 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 List<VnicNetwork Group Policies Eth If Fabric Eth Network Group Policy> - 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 List<VnicEth If Ip Lease> - 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 List<VnicPolicies Eth If Iscsi Boot Policy> - 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 stringV4Address Allocation Type - (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 List<VnicV4Configs Eth If Iscsi Ip V4Config> - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- Iscsi
Ipv4Address string - (ReadOnly) IP address associated to the vNIC.
- Lan
Connectivity List<VnicPolicies Eth If Lan Connectivity Policy> - 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 List<VnicEth If Lcp Vnic> - (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 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.
- Mac
Address stringType - 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 List<VnicEth If Mac Lease> - 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 List<VnicEth If Mac Pool> - 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 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.
- Object
Type 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.
- Overridden
Lists List<string> - (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Vnic
Eth If Parent> - (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 List<VnicEth If Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pin
Group stringName - 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<Vnic
Eth If Placement> - Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
List<Vnic
Eth If Profile> - 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:
- 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.
- Sp
Vnics List<VnicEth If Sp Vnic> - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- Src
Templates List<VnicEth If Src Template> - 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 List<VnicEth If Sriov Setting> - 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 doubleId - (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 stringAddress - 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.
- List<Vnic
Eth If Tag> - This complex property has following sub-properties:
- Template
Actions List<VnicEth If Template Action> - This complex property has following sub-properties:
- Template
Sync List<VnicErrors Eth If Template Sync Error> - This complex property has following sub-properties:
- Template
Sync stringStatus - (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 List<VnicEth If Usnic Setting> - 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 List<VnicEth If Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vif
Id 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.
- Vmq
Settings List<VnicEth If Vmq Setting> - 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 stringIf Id
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Vnic
Eth If Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Cdns
[]Vnic
Eth If Cdn Args - Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
- Class
Id 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Eth
Adapter []VnicPolicies Eth If Eth Adapter Policy Args - 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 []VnicPolicies Eth If Eth Network Policy Args - 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 []VnicPolicies Eth If Eth Qos Policy Args - 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 []VnicNetwork Control Policies Eth If Fabric Eth Network Control Policy Args - 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 []VnicNetwork Group Policies Eth If Fabric Eth Network Group Policy Args - 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 []VnicEth If Ip Lease Args - 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 []VnicPolicies Eth If Iscsi Boot Policy Args - 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 stringV4Address Allocation Type - (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 []VnicV4Configs Eth If Iscsi Ip V4Config Args - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- Iscsi
Ipv4Address string - (ReadOnly) IP address associated to the vNIC.
- Lan
Connectivity []VnicPolicies Eth If Lan Connectivity Policy Args - 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 []VnicEth If Lcp Vnic Args - (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 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.
- Mac
Address stringType - 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 []VnicEth If Mac Lease Args - 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 []VnicEth If Mac Pool Args - 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 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.
- Object
Type 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.
- Overridden
Lists []string - (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Vnic
Eth If Parent Args - (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 []VnicEth If Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pin
Group stringName - 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
[]Vnic
Eth If Placement Args - Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
[]Vnic
Eth If Profile Args - 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:
- 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.
- Sp
Vnics []VnicEth If Sp Vnic Args - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- Src
Templates []VnicEth If Src Template Args - 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 []VnicEth If Sriov Setting Args - 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 float64Id - (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 stringAddress - 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.
- []Vnic
Eth If Tag Args - This complex property has following sub-properties:
- Template
Actions []VnicEth If Template Action Args - This complex property has following sub-properties:
- Template
Sync []VnicErrors Eth If Template Sync Error Args - This complex property has following sub-properties:
- Template
Sync stringStatus - (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 []VnicEth If Usnic Setting Args - 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 []VnicEth If Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vif
Id 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.
- Vmq
Settings []VnicEth If Vmq Setting Args - 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 stringIf Id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Vnic
Eth If Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
List<Vnic
Eth If Cdn> - Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
- class
Id 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- eth
Adapter List<VnicPolicies Eth If Eth Adapter Policy> - 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 List<VnicPolicies Eth If Eth Network Policy> - 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 List<VnicPolicies Eth If Eth Qos Policy> - 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 List<VnicNetwork Control Policies Eth If Fabric Eth Network Control Policy> - 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 List<VnicNetwork Group Policies Eth If Fabric Eth Network Group Policy> - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled 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.
- ip
Leases List<VnicEth If Ip Lease> - 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 List<VnicPolicies Eth If Iscsi Boot Policy> - 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 StringV4Address Allocation Type - (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 List<VnicV4Configs Eth If Iscsi Ip V4Config> - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- iscsi
Ipv4Address String - (ReadOnly) IP address associated to the vNIC.
- lan
Connectivity List<VnicPolicies Eth If Lan Connectivity Policy> - 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 List<VnicEth If Lcp Vnic> - (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 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.
- mac
Address StringType - 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 List<VnicEth If Mac Lease> - 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 List<VnicEth If Mac Pool> - 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 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.
- object
Type 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.
- overridden
Lists List<String> - (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Vnic
Eth If Parent> - (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 List<VnicEth If Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group StringName - 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<Vnic
Eth If Placement> - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
List<Vnic
Eth If Profile> - 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:
- 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.
- sp
Vnics List<VnicEth If Sp Vnic> - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- src
Templates List<VnicEth If Src Template> - 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 List<VnicEth If Sriov Setting> - 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 DoubleId - (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 StringAddress - 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.
- List<Vnic
Eth If Tag> - This complex property has following sub-properties:
- template
Actions List<VnicEth If Template Action> - This complex property has following sub-properties:
- template
Sync List<VnicErrors Eth If Template Sync Error> - This complex property has following sub-properties:
- template
Sync StringStatus - (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 List<VnicEth If Usnic Setting> - 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 List<VnicEth If Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id 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.
- vmq
Settings List<VnicEth If Vmq Setting> - 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 StringIf Id
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Vnic
Eth If Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
Vnic
Eth If Cdn[] - Consistent Device Naming configuration for the virtual NIC. This complex property has following sub-properties:
- class
Id 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.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- eth
Adapter VnicPolicies Eth If Eth Adapter Policy[] - 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 VnicPolicies Eth If Eth Network Policy[] - 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 VnicPolicies Eth If Eth Qos Policy[] - 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 VnicNetwork Control Policies Eth If Fabric Eth Network Control Policy[] - 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 VnicNetwork Group Policies Eth If Fabric Eth Network Group Policy[] - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled 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.
- ip
Leases VnicEth If Ip Lease[] - 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 VnicPolicies Eth If Iscsi Boot Policy[] - 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 stringV4Address Allocation Type - (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 VnicV4Configs Eth If Iscsi Ip V4Config[] - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- iscsi
Ipv4Address string - (ReadOnly) IP address associated to the vNIC.
- lan
Connectivity VnicPolicies Eth If Lan Connectivity Policy[] - 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 VnicEth If Lcp Vnic[] - (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 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.
- mac
Address stringType - 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 VnicEth If Mac Lease[] - 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 VnicEth If Mac Pool[] - 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 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.
- object
Type 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.
- overridden
Lists string[] - (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Vnic
Eth If Parent[] - (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 VnicEth If Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group stringName - 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
Vnic
Eth If Placement[] - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Vnic
Eth If Profile[] - 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:
- 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.
- sp
Vnics VnicEth If Sp Vnic[] - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- src
Templates VnicEth If Src Template[] - 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 VnicEth If Sriov Setting[] - 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 numberId - (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 stringAddress - 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.
- Vnic
Eth If Tag[] - This complex property has following sub-properties:
- template
Actions VnicEth If Template Action[] - This complex property has following sub-properties:
- template
Sync VnicErrors Eth If Template Sync Error[] - This complex property has following sub-properties:
- template
Sync stringStatus - (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 VnicEth If Usnic Setting[] - 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 VnicEth If Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id 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.
- vmq
Settings VnicEth If Vmq Setting[] - 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 stringIf Id
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Vnic
Eth If Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
Sequence[Vnic
Eth If Cdn Args] - 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_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- eth_
adapter_ Sequence[Vnicpolicies Eth If Eth Adapter Policy Args] - 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_ Sequence[Vnicpolicies Eth If Eth Network Policy Args] - 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_ Sequence[Vnicpolicies Eth If Eth Qos Policy Args] - 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_ Sequence[Vnicnetwork_ control_ policies Eth If Fabric Eth Network Control Policy Args] - 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_ Sequence[Vnicnetwork_ group_ policies Eth If Fabric Eth Network Group Policy Args] - 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[VnicEth If Ip Lease Args] - 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_ Sequence[Vnicpolicies Eth If Iscsi Boot Policy Args] - 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_ strv4_ address_ allocation_ type - (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_ Sequence[Vnicv4_ configs Eth If Iscsi Ip V4Config Args] - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- iscsi_
ipv4_ straddress - (ReadOnly) IP address associated to the vNIC.
- lan_
connectivity_ Sequence[Vnicpolicies Eth If Lan Connectivity Policy Args] - 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[VnicEth If Lcp Vnic Args] - (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_ strtype - 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[VnicEth If Mac Lease Args] - 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[VnicEth If Mac Pool Args] - 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[Vnic
Eth If Parent Args] - (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[VnicEth If Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin_
group_ strname - 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[Vnic
Eth If Placement Args] - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Sequence[Vnic
Eth If Profile Args] - 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:
- 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[VnicEth If Sp Vnic Args] - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- src_
templates Sequence[VnicEth If Src Template Args] - 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[VnicEth If Sriov Setting Args] - 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_ floatid - (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_ straddress - 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.
- Sequence[Vnic
Eth If Tag Args] - This complex property has following sub-properties:
- template_
actions Sequence[VnicEth If Template Action Args] - This complex property has following sub-properties:
- template_
sync_ Sequence[Vnicerrors Eth If Template Sync Error Args] - This complex property has following sub-properties:
- template_
sync_ strstatus - (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[VnicEth If Usnic Setting Args] - 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[VnicEth If Version Context Args] - (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[VnicEth If Vmq Setting Args] - 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_ strif_ id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties 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:
- class
Id 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- eth
Adapter List<Property Map>Policies - 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 List<Property Map>Policies - 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 List<Property Map>Policies - 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 List<Property Map>Network Control Policies - 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 List<Property Map>Network Group Policies - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled 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.
- ip
Leases 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:
- iscsi
Boot List<Property Map>Policies - 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 StringV4Address Allocation Type - (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 List<Property Map>V4Configs - (ReadOnly) IPV4 configurations such as Netmask, Gateway and DNS for iSCSI vNIC. This complex property has following sub-properties:
- iscsi
Ipv4Address String - (ReadOnly) IP address associated to the vNIC.
- lan
Connectivity List<Property Map>Policies - 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 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:
- mac
Address 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.
- mac
Address StringType - 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 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:
- mac
Pools 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:
- mod
Time 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.
- object
Type 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.
- overridden
Lists 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group StringName - 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:
- 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.
- sp
Vnics List<Property Map> - (ReadOnly) An array of relationships to vnicEthIf resources. This complex property has following sub-properties:
- src
Templates 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:
- sriov
Settings 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:
- standby
Vif NumberId - (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 StringAddress - 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.
- List<Property Map>
- This complex property has following sub-properties:
- template
Actions List<Property Map> - This complex property has following sub-properties:
- template
Sync List<Property Map>Errors - This complex property has following sub-properties:
- template
Sync StringStatus - (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 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:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id 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.
- vmq
Settings 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:
- vnic
Eth StringIf Id
Supporting Types
VnicEthIfAncestor, VnicEthIfAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Nr
Source 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. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The CDN value entered in case of user defined mode.
- Additional
Properties string - Class
Id string - Nr
Source 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. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The CDN value entered in case of user defined mode.
- additional
Properties String - class
Id String - nr
Source 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. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The CDN value entered in case of user defined mode.
- additional
Properties string - class
Id string - nr
Source 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. - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value string
- The CDN value entered in case of user defined mode.
- additional_
properties str - class_
id str - nr_
source 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 str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- The CDN value entered in case of user defined mode.
- additional
Properties String - class
Id String - nr
Source 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. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The CDN value entered in case of user defined mode.
VnicEthIfEthAdapterPolicy, VnicEthIfEthAdapterPolicyArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Gateway string
- IP address of the default IPv4 gateway.
- Netmask 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- Additional
Properties string - Class
Id string - Gateway string
- IP address of the default IPv4 gateway.
- Netmask 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties String - class
Id String - gateway String
- IP address of the default IPv4 gateway.
- netmask 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties string - class
Id string - gateway string
- IP address of the default IPv4 gateway.
- netmask 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.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- additional_
properties str - class_
id str - gateway str
- IP address of the default IPv4 gateway.
- netmask 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 str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary_
dns str - IP Address of the primary Domain Name System (DNS) server.
- secondary_
dns str - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties String - class
Id String - gateway String
- IP address of the default IPv4 gateway.
- netmask 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
VnicEthIfLanConnectivityPolicy, VnicEthIfLanConnectivityPolicyArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Auto
Pci boolLink - 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 boolId - 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 string - Id string
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Pci
Link 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.
- Pci
Link stringAssignment Mode - 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 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 double
- Adapter port on which the virtual interface will be created.
- Additional
Properties string - Auto
Pci boolLink - 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 boolId - 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 string - Id string
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Pci
Link 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.
- Pci
Link stringAssignment Mode - 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 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 float64
- Adapter port on which the virtual interface will be created.
- additional
Properties String - auto
Pci BooleanLink - 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 BooleanId - 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 String - id String
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- pci
Link 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.
- pci
Link StringAssignment Mode - 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 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 Double
- Adapter port on which the virtual interface will be created.
- additional
Properties string - auto
Pci booleanLink - 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 booleanId - 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 string - id string
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- pci
Link 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.
- pci
Link stringAssignment Mode - 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 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 number
- Adapter port on which the virtual interface will be created.
- additional_
properties str - auto_
pci_ boollink - 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_ boolid - 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 str - id str
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- pci_
link 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_ strassignment_ mode - 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 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 float
- Adapter port on which the virtual interface will be created.
- additional
Properties String - auto
Pci BooleanLink - 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 BooleanId - 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 String - id String
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- pci
Link 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.
- pci
Link StringAssignment Mode - 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 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 Number
- Adapter port on which the virtual interface will be created.
VnicEthIfProfile, VnicEthIfProfileArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Comp
Count doublePer Vf - Completion Queue resources per Virtual Function (VF).
- Enabled bool
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- Int
Count doublePer Vf - Interrupt Count resources per Virtual Function (VF).
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Rx
Count doublePer Vf - Receive Queue resources per Virtual Function (VF).
- Tx
Count doublePer Vf - Transmit Queue resources per Virtual Function (VF).
- Vf
Count double - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
- Additional
Properties string - Class
Id string - Comp
Count float64Per Vf - Completion Queue resources per Virtual Function (VF).
- Enabled bool
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- Int
Count float64Per Vf - Interrupt Count resources per Virtual Function (VF).
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Rx
Count float64Per Vf - Receive Queue resources per Virtual Function (VF).
- Tx
Count float64Per Vf - Transmit Queue resources per Virtual Function (VF).
- Vf
Count float64 - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
- additional
Properties String - class
Id String - comp
Count DoublePer Vf - Completion Queue resources per Virtual Function (VF).
- enabled Boolean
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- int
Count DoublePer Vf - Interrupt Count resources per Virtual Function (VF).
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- rx
Count DoublePer Vf - Receive Queue resources per Virtual Function (VF).
- tx
Count DoublePer Vf - Transmit Queue resources per Virtual Function (VF).
- vf
Count Double - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
- additional
Properties string - class
Id string - comp
Count numberPer Vf - Completion Queue resources per Virtual Function (VF).
- enabled boolean
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- int
Count numberPer Vf - Interrupt Count resources per Virtual Function (VF).
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- rx
Count numberPer Vf - Receive Queue resources per Virtual Function (VF).
- tx
Count numberPer Vf - Transmit Queue resources per Virtual Function (VF).
- vf
Count 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 str - class_
id str - comp_
count_ floatper_ vf - Completion Queue resources per Virtual Function (VF).
- enabled bool
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- int_
count_ floatper_ vf - Interrupt Count resources per Virtual Function (VF).
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- rx_
count_ floatper_ vf - Receive Queue resources per Virtual Function (VF).
- tx_
count_ floatper_ vf - Transmit Queue resources per Virtual Function (VF).
- vf_
count float - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
- additional
Properties String - class
Id String - comp
Count NumberPer Vf - Completion Queue resources per Virtual Function (VF).
- enabled Boolean
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- int
Count NumberPer Vf - Interrupt Count resources per Virtual Function (VF).
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- rx
Count NumberPer Vf - Receive Queue resources per Virtual Function (VF).
- tx
Count NumberPer Vf - Transmit Queue resources per Virtual Function (VF).
- vf
Count 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
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
VnicEthIfTemplateAction, VnicEthIfTemplateActionArgs
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
List<Vnic
Eth If Template Action Param> - This complex property has following sub-properties:
- Type 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 string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
[]Vnic
Eth If Template Action Param - This complex property has following sub-properties:
- Type 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 String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
List<Vnic
Eth If Template Action Param> - This complex property has following sub-properties:
- type 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 string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
Vnic
Eth If Template Action Param[] - This complex property has following sub-properties:
- type 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 str - class_
id str - object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
Sequence[Vnic
Eth If Template Action Param] - This complex property has following sub-properties:
- type 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.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params List<Property Map>
- This complex property has following sub-properties:
- type 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
- Additional
Properties string - Class
Id string - Name 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. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value 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 string - Class
Id string - Name 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. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value 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 String - class
Id String - name 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. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value 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 string - class
Id string - name 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. - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value 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 str - class_
id str - name 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 str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value 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.
- additional
Properties String - class
Id String - name 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. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value 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
- Additional
Properties string - Class
Id string - Message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Type 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 string - Class
Id string - Message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Type 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 String - class
Id String - message String
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type 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 string - class
Id string - message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type 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 str - class_
id str - message str
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type 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.
- additional
Properties String - class
Id String - message String
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type 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
- Additional
Properties string - Class
Id string - Cos double
- Class of Service to be used for traffic on the usNIC.
- Nr
Count 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Usnic
Adapter stringPolicy - Ethernet Adapter policy to be associated with the usNICs.
- Additional
Properties string - Class
Id string - Cos float64
- Class of Service to be used for traffic on the usNIC.
- Nr
Count 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Usnic
Adapter stringPolicy - Ethernet Adapter policy to be associated with the usNICs.
- additional
Properties String - class
Id String - cos Double
- Class of Service to be used for traffic on the usNIC.
- nr
Count 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- usnic
Adapter StringPolicy - Ethernet Adapter policy to be associated with the usNICs.
- additional
Properties string - class
Id string - cos number
- Class of Service to be used for traffic on the usNIC.
- nr
Count 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.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- usnic
Adapter stringPolicy - Ethernet Adapter policy to be associated with the usNICs.
- additional_
properties str - class_
id str - cos float
- Class of Service to be used for traffic on the usNIC.
- nr_
count 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 str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- usnic_
adapter_ strpolicy - Ethernet Adapter policy to be associated with the usNICs.
- additional
Properties String - class
Id String - cos Number
- Class of Service to be used for traffic on the usNIC.
- nr
Count 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- usnic
Adapter StringPolicy - Ethernet Adapter policy to be associated with the usNICs.
VnicEthIfVersionContext, VnicEthIfVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<VnicEth If Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<VnicEth If Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type 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 string - Class
Id string - Interested
Mos []VnicEth If Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []VnicEth If Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type 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 String - class
Id String - interested
Mos List<VnicEth If Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (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 String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<VnicEth If Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type 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 string - class
Id string - interested
Mos VnicEth If Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos VnicEth If Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type 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 str - class_
id str - interested_
mos Sequence[VnicEth If Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (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 str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[VnicEth If Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type 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.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (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 String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector 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 str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector 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
- Additional
Properties string - Class
Id string - Enabled bool
- Enables VMQ feature on the virtual interface.
- Multi
Queue boolSupport - 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 double - 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 doubleVnics - The number of sub vNICs to be created.
- Num
Vmqs 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Vmmq
Adapter stringPolicy - 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 string - Class
Id string - Enabled bool
- Enables VMQ feature on the virtual interface.
- Multi
Queue boolSupport - 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 float64 - 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 float64Vnics - The number of sub vNICs to be created.
- Num
Vmqs 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Vmmq
Adapter stringPolicy - 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 String - class
Id String - enabled Boolean
- Enables VMQ feature on the virtual interface.
- multi
Queue BooleanSupport - 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 Double - 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 DoubleVnics - The number of sub vNICs to be created.
- num
Vmqs 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- vmmq
Adapter StringPolicy - 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 string - class
Id string - enabled boolean
- Enables VMQ feature on the virtual interface.
- multi
Queue booleanSupport - 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 number - 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 numberVnics - The number of sub vNICs to be created.
- num
Vmqs 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.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- vmmq
Adapter stringPolicy - 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 str - class_
id str - enabled bool
- Enables VMQ feature on the virtual interface.
- multi_
queue_ boolsupport - 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 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_ floatvnics - The number of sub vNICs to be created.
- num_
vmqs 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 str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- vmmq_
adapter_ strpolicy - 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 String - class
Id String - enabled Boolean
- Enables VMQ feature on the virtual interface.
- multi
Queue BooleanSupport - 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 Number - 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 NumberVnics - The number of sub vNICs to be created.
- num
Vmqs 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- vmmq
Adapter StringPolicy - 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
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.