intersight.VnicFcIf
Explore with Pulumi AI
Virtual Fibre Channel Interface.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const vnicSan1 = config.require("vnicSan1");
const vFcNetwork1 = config.require("vFcNetwork1");
const vFcAdapter1 = config.require("vFcAdapter1");
const vFcQos1 = config.require("vFcQos1");
const fc1 = new intersight.VnicFcIf("fc1", {
order: 1,
placements: [{
id: "1",
pciLink: 0,
uplink: 0,
objectType: "vnic.PlacementSettings",
}],
persistentBindings: true,
sanConnectivityPolicies: [{
moid: vnicSan1,
objectType: "vnic.SanConnectivityPolicy",
}],
fcNetworkPolicies: [{
moid: vFcNetwork1,
objectType: "vnic.FcNetworkPolicy",
}],
fcAdapterPolicies: [{
moid: vFcAdapter1,
objectType: "vnic.FcAdapterPolicy",
}],
fcQosPolicies: [{
moid: vFcQos1,
objectType: "vnic.FcQosPolicy",
}],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
vnic_san1 = config.require("vnicSan1")
v_fc_network1 = config.require("vFcNetwork1")
v_fc_adapter1 = config.require("vFcAdapter1")
v_fc_qos1 = config.require("vFcQos1")
fc1 = intersight.VnicFcIf("fc1",
order=1,
placements=[{
"id": "1",
"pci_link": 0,
"uplink": 0,
"object_type": "vnic.PlacementSettings",
}],
persistent_bindings=True,
san_connectivity_policies=[{
"moid": vnic_san1,
"object_type": "vnic.SanConnectivityPolicy",
}],
fc_network_policies=[{
"moid": v_fc_network1,
"object_type": "vnic.FcNetworkPolicy",
}],
fc_adapter_policies=[{
"moid": v_fc_adapter1,
"object_type": "vnic.FcAdapterPolicy",
}],
fc_qos_policies=[{
"moid": v_fc_qos1,
"object_type": "vnic.FcQosPolicy",
}])
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, "")
vnicSan1 := cfg.Require("vnicSan1")
vFcNetwork1 := cfg.Require("vFcNetwork1")
vFcAdapter1 := cfg.Require("vFcAdapter1")
vFcQos1 := cfg.Require("vFcQos1")
_, err := intersight.NewVnicFcIf(ctx, "fc1", &intersight.VnicFcIfArgs{
Order: pulumi.Float64(1),
Placements: intersight.VnicFcIfPlacementArray{
&intersight.VnicFcIfPlacementArgs{
Id: pulumi.String("1"),
PciLink: pulumi.Float64(0),
Uplink: pulumi.Float64(0),
ObjectType: pulumi.String("vnic.PlacementSettings"),
},
},
PersistentBindings: pulumi.Bool(true),
SanConnectivityPolicies: intersight.VnicFcIfSanConnectivityPolicyArray{
&intersight.VnicFcIfSanConnectivityPolicyArgs{
Moid: pulumi.String(vnicSan1),
ObjectType: pulumi.String("vnic.SanConnectivityPolicy"),
},
},
FcNetworkPolicies: intersight.VnicFcIfFcNetworkPolicyArray{
&intersight.VnicFcIfFcNetworkPolicyArgs{
Moid: pulumi.String(vFcNetwork1),
ObjectType: pulumi.String("vnic.FcNetworkPolicy"),
},
},
FcAdapterPolicies: intersight.VnicFcIfFcAdapterPolicyArray{
&intersight.VnicFcIfFcAdapterPolicyArgs{
Moid: pulumi.String(vFcAdapter1),
ObjectType: pulumi.String("vnic.FcAdapterPolicy"),
},
},
FcQosPolicies: intersight.VnicFcIfFcQosPolicyArray{
&intersight.VnicFcIfFcQosPolicyArgs{
Moid: pulumi.String(vFcQos1),
ObjectType: pulumi.String("vnic.FcQosPolicy"),
},
},
})
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 vnicSan1 = config.Require("vnicSan1");
var vFcNetwork1 = config.Require("vFcNetwork1");
var vFcAdapter1 = config.Require("vFcAdapter1");
var vFcQos1 = config.Require("vFcQos1");
var fc1 = new Intersight.VnicFcIf("fc1", new()
{
Order = 1,
Placements = new[]
{
new Intersight.Inputs.VnicFcIfPlacementArgs
{
Id = "1",
PciLink = 0,
Uplink = 0,
ObjectType = "vnic.PlacementSettings",
},
},
PersistentBindings = true,
SanConnectivityPolicies = new[]
{
new Intersight.Inputs.VnicFcIfSanConnectivityPolicyArgs
{
Moid = vnicSan1,
ObjectType = "vnic.SanConnectivityPolicy",
},
},
FcNetworkPolicies = new[]
{
new Intersight.Inputs.VnicFcIfFcNetworkPolicyArgs
{
Moid = vFcNetwork1,
ObjectType = "vnic.FcNetworkPolicy",
},
},
FcAdapterPolicies = new[]
{
new Intersight.Inputs.VnicFcIfFcAdapterPolicyArgs
{
Moid = vFcAdapter1,
ObjectType = "vnic.FcAdapterPolicy",
},
},
FcQosPolicies = new[]
{
new Intersight.Inputs.VnicFcIfFcQosPolicyArgs
{
Moid = vFcQos1,
ObjectType = "vnic.FcQosPolicy",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.VnicFcIf;
import com.pulumi.intersight.VnicFcIfArgs;
import com.pulumi.intersight.inputs.VnicFcIfPlacementArgs;
import com.pulumi.intersight.inputs.VnicFcIfSanConnectivityPolicyArgs;
import com.pulumi.intersight.inputs.VnicFcIfFcNetworkPolicyArgs;
import com.pulumi.intersight.inputs.VnicFcIfFcAdapterPolicyArgs;
import com.pulumi.intersight.inputs.VnicFcIfFcQosPolicyArgs;
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 vnicSan1 = config.get("vnicSan1");
final var vFcNetwork1 = config.get("vFcNetwork1");
final var vFcAdapter1 = config.get("vFcAdapter1");
final var vFcQos1 = config.get("vFcQos1");
var fc1 = new VnicFcIf("fc1", VnicFcIfArgs.builder()
.order(1)
.placements(VnicFcIfPlacementArgs.builder()
.id("1")
.pciLink(0)
.uplink(0)
.objectType("vnic.PlacementSettings")
.build())
.persistentBindings(true)
.sanConnectivityPolicies(VnicFcIfSanConnectivityPolicyArgs.builder()
.moid(vnicSan1)
.objectType("vnic.SanConnectivityPolicy")
.build())
.fcNetworkPolicies(VnicFcIfFcNetworkPolicyArgs.builder()
.moid(vFcNetwork1)
.objectType("vnic.FcNetworkPolicy")
.build())
.fcAdapterPolicies(VnicFcIfFcAdapterPolicyArgs.builder()
.moid(vFcAdapter1)
.objectType("vnic.FcAdapterPolicy")
.build())
.fcQosPolicies(VnicFcIfFcQosPolicyArgs.builder()
.moid(vFcQos1)
.objectType("vnic.FcQosPolicy")
.build())
.build());
}
}
configuration:
vnicSan1:
type: string
vFcNetwork1:
type: string
vFcAdapter1:
type: string
vFcQos1:
type: string
resources:
fc1:
type: intersight:VnicFcIf
properties:
order: 1
placements:
- id: '1'
pciLink: 0
uplink: 0
objectType: vnic.PlacementSettings
persistentBindings: true
sanConnectivityPolicies:
- moid: ${vnicSan1}
objectType: vnic.SanConnectivityPolicy
fcNetworkPolicies:
- moid: ${vFcNetwork1}
objectType: vnic.FcNetworkPolicy
fcAdapterPolicies:
- moid: ${vFcAdapter1}
objectType: vnic.FcAdapterPolicy
fcQosPolicies:
- moid: ${vFcQos1}
objectType: vnic.FcQosPolicy
Create VnicFcIf Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VnicFcIf(name: string, args?: VnicFcIfArgs, opts?: CustomResourceOptions);
@overload
def VnicFcIf(resource_name: str,
args: Optional[VnicFcIfArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def VnicFcIf(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[VnicFcIfAncestorArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
domain_group_moid: Optional[str] = None,
fc_adapter_policies: Optional[Sequence[VnicFcIfFcAdapterPolicyArgs]] = None,
fc_network_policies: Optional[Sequence[VnicFcIfFcNetworkPolicyArgs]] = None,
fc_qos_policies: Optional[Sequence[VnicFcIfFcQosPolicyArgs]] = None,
fc_zone_policies: Optional[Sequence[VnicFcIfFcZonePolicyArgs]] = 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[VnicFcIfParentArgs]] = None,
permission_resources: Optional[Sequence[VnicFcIfPermissionResourceArgs]] = None,
persistent_bindings: Optional[bool] = None,
pin_group_name: Optional[str] = None,
placements: Optional[Sequence[VnicFcIfPlacementArgs]] = None,
profiles: Optional[Sequence[VnicFcIfProfileArgs]] = None,
san_connectivity_policies: Optional[Sequence[VnicFcIfSanConnectivityPolicyArgs]] = None,
scp_vhbas: Optional[Sequence[VnicFcIfScpVhbaArgs]] = None,
shared_scope: Optional[str] = None,
sp_vhbas: Optional[Sequence[VnicFcIfSpVhbaArgs]] = None,
src_templates: Optional[Sequence[VnicFcIfSrcTemplateArgs]] = None,
static_wwpn_address: Optional[str] = None,
tags: Optional[Sequence[VnicFcIfTagArgs]] = None,
template_actions: Optional[Sequence[VnicFcIfTemplateActionArgs]] = None,
template_sync_errors: Optional[Sequence[VnicFcIfTemplateSyncErrorArgs]] = None,
template_sync_status: Optional[str] = None,
type: Optional[str] = None,
version_contexts: Optional[Sequence[VnicFcIfVersionContextArgs]] = None,
vif_id: Optional[float] = None,
vnic_fc_if_id: Optional[str] = None,
wwpn: Optional[str] = None,
wwpn_address_type: Optional[str] = None,
wwpn_leases: Optional[Sequence[VnicFcIfWwpnLeaseArgs]] = None,
wwpn_pools: Optional[Sequence[VnicFcIfWwpnPoolArgs]] = None)
func NewVnicFcIf(ctx *Context, name string, args *VnicFcIfArgs, opts ...ResourceOption) (*VnicFcIf, error)
public VnicFcIf(string name, VnicFcIfArgs? args = null, CustomResourceOptions? opts = null)
public VnicFcIf(String name, VnicFcIfArgs args)
public VnicFcIf(String name, VnicFcIfArgs args, CustomResourceOptions options)
type: intersight:VnicFcIf
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 VnicFcIfArgs
- 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 VnicFcIfArgs
- 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 VnicFcIfArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VnicFcIfArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VnicFcIfArgs
- 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 vnicFcIfResource = new Intersight.VnicFcIf("vnicFcIfResource", new()
{
AccountMoid = "string",
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.VnicFcIfAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ClassId = "string",
CreateTime = "string",
DomainGroupMoid = "string",
FcAdapterPolicies = new[]
{
new Intersight.Inputs.VnicFcIfFcAdapterPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
FcNetworkPolicies = new[]
{
new Intersight.Inputs.VnicFcIfFcNetworkPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
FcQosPolicies = new[]
{
new Intersight.Inputs.VnicFcIfFcQosPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
FcZonePolicies = new[]
{
new Intersight.Inputs.VnicFcIfFcZonePolicyArgs
{
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.VnicFcIfParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.VnicFcIfPermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PersistentBindings = false,
PinGroupName = "string",
Placements = new[]
{
new Intersight.Inputs.VnicFcIfPlacementArgs
{
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.VnicFcIfProfileArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
SanConnectivityPolicies = new[]
{
new Intersight.Inputs.VnicFcIfSanConnectivityPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ScpVhbas = new[]
{
new Intersight.Inputs.VnicFcIfScpVhbaArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
SharedScope = "string",
SpVhbas = new[]
{
new Intersight.Inputs.VnicFcIfSpVhbaArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
SrcTemplates = new[]
{
new Intersight.Inputs.VnicFcIfSrcTemplateArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
StaticWwpnAddress = "string",
Tags = new[]
{
new Intersight.Inputs.VnicFcIfTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
TemplateActions = new[]
{
new Intersight.Inputs.VnicFcIfTemplateActionArgs
{
AdditionalProperties = "string",
ClassId = "string",
ObjectType = "string",
Params = new[]
{
new Intersight.Inputs.VnicFcIfTemplateActionParamArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Value = "string",
},
},
Type = "string",
},
},
TemplateSyncErrors = new[]
{
new Intersight.Inputs.VnicFcIfTemplateSyncErrorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Message = "string",
ObjectType = "string",
Type = "string",
},
},
TemplateSyncStatus = "string",
Type = "string",
VersionContexts = new[]
{
new Intersight.Inputs.VnicFcIfVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.VnicFcIfVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.VnicFcIfVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
VifId = 0,
VnicFcIfId = "string",
Wwpn = "string",
WwpnAddressType = "string",
WwpnLeases = new[]
{
new Intersight.Inputs.VnicFcIfWwpnLeaseArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
WwpnPools = new[]
{
new Intersight.Inputs.VnicFcIfWwpnPoolArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
});
example, err := intersight.NewVnicFcIf(ctx, "vnicFcIfResource", &intersight.VnicFcIfArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.VnicFcIfAncestorArray{
&intersight.VnicFcIfAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
FcAdapterPolicies: intersight.VnicFcIfFcAdapterPolicyArray{
&intersight.VnicFcIfFcAdapterPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
FcNetworkPolicies: intersight.VnicFcIfFcNetworkPolicyArray{
&intersight.VnicFcIfFcNetworkPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
FcQosPolicies: intersight.VnicFcIfFcQosPolicyArray{
&intersight.VnicFcIfFcQosPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
FcZonePolicies: intersight.VnicFcIfFcZonePolicyArray{
&intersight.VnicFcIfFcZonePolicyArgs{
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.VnicFcIfParentArray{
&intersight.VnicFcIfParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.VnicFcIfPermissionResourceArray{
&intersight.VnicFcIfPermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PersistentBindings: pulumi.Bool(false),
PinGroupName: pulumi.String("string"),
Placements: intersight.VnicFcIfPlacementArray{
&intersight.VnicFcIfPlacementArgs{
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.VnicFcIfProfileArray{
&intersight.VnicFcIfProfileArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SanConnectivityPolicies: intersight.VnicFcIfSanConnectivityPolicyArray{
&intersight.VnicFcIfSanConnectivityPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ScpVhbas: intersight.VnicFcIfScpVhbaArray{
&intersight.VnicFcIfScpVhbaArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SharedScope: pulumi.String("string"),
SpVhbas: intersight.VnicFcIfSpVhbaArray{
&intersight.VnicFcIfSpVhbaArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SrcTemplates: intersight.VnicFcIfSrcTemplateArray{
&intersight.VnicFcIfSrcTemplateArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
StaticWwpnAddress: pulumi.String("string"),
Tags: intersight.VnicFcIfTagArray{
&intersight.VnicFcIfTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TemplateActions: intersight.VnicFcIfTemplateActionArray{
&intersight.VnicFcIfTemplateActionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Params: intersight.VnicFcIfTemplateActionParamArray{
&intersight.VnicFcIfTemplateActionParamArgs{
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.VnicFcIfTemplateSyncErrorArray{
&intersight.VnicFcIfTemplateSyncErrorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Message: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
TemplateSyncStatus: pulumi.String("string"),
Type: pulumi.String("string"),
VersionContexts: intersight.VnicFcIfVersionContextArray{
&intersight.VnicFcIfVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.VnicFcIfVersionContextInterestedMoArray{
&intersight.VnicFcIfVersionContextInterestedMoArgs{
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.VnicFcIfVersionContextRefMoArray{
&intersight.VnicFcIfVersionContextRefMoArgs{
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),
VnicFcIfId: pulumi.String("string"),
Wwpn: pulumi.String("string"),
WwpnAddressType: pulumi.String("string"),
WwpnLeases: intersight.VnicFcIfWwpnLeaseArray{
&intersight.VnicFcIfWwpnLeaseArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
WwpnPools: intersight.VnicFcIfWwpnPoolArray{
&intersight.VnicFcIfWwpnPoolArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
})
var vnicFcIfResource = new VnicFcIf("vnicFcIfResource", VnicFcIfArgs.builder()
.accountMoid("string")
.additionalProperties("string")
.ancestors(VnicFcIfAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.classId("string")
.createTime("string")
.domainGroupMoid("string")
.fcAdapterPolicies(VnicFcIfFcAdapterPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.fcNetworkPolicies(VnicFcIfFcNetworkPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.fcQosPolicies(VnicFcIfFcQosPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.fcZonePolicies(VnicFcIfFcZonePolicyArgs.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(VnicFcIfParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(VnicFcIfPermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.persistentBindings(false)
.pinGroupName("string")
.placements(VnicFcIfPlacementArgs.builder()
.additionalProperties("string")
.autoPciLink(false)
.autoSlotId(false)
.classId("string")
.id("string")
.objectType("string")
.pciLink(0)
.pciLinkAssignmentMode("string")
.switchId("string")
.uplink(0)
.build())
.profiles(VnicFcIfProfileArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.sanConnectivityPolicies(VnicFcIfSanConnectivityPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.scpVhbas(VnicFcIfScpVhbaArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.sharedScope("string")
.spVhbas(VnicFcIfSpVhbaArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.srcTemplates(VnicFcIfSrcTemplateArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.staticWwpnAddress("string")
.tags(VnicFcIfTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.templateActions(VnicFcIfTemplateActionArgs.builder()
.additionalProperties("string")
.classId("string")
.objectType("string")
.params(VnicFcIfTemplateActionParamArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.value("string")
.build())
.type("string")
.build())
.templateSyncErrors(VnicFcIfTemplateSyncErrorArgs.builder()
.additionalProperties("string")
.classId("string")
.message("string")
.objectType("string")
.type("string")
.build())
.templateSyncStatus("string")
.type("string")
.versionContexts(VnicFcIfVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(VnicFcIfVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(VnicFcIfVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.vifId(0)
.vnicFcIfId("string")
.wwpn("string")
.wwpnAddressType("string")
.wwpnLeases(VnicFcIfWwpnLeaseArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.wwpnPools(VnicFcIfWwpnPoolArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.build());
vnic_fc_if_resource = intersight.VnicFcIf("vnicFcIfResource",
account_moid="string",
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
class_id="string",
create_time="string",
domain_group_moid="string",
fc_adapter_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
fc_network_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
fc_qos_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
fc_zone_policies=[{
"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",
}],
persistent_bindings=False,
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",
}],
san_connectivity_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
scp_vhbas=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
shared_scope="string",
sp_vhbas=[{
"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",
}],
static_wwpn_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",
type="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,
vnic_fc_if_id="string",
wwpn="string",
wwpn_address_type="string",
wwpn_leases=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
wwpn_pools=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}])
const vnicFcIfResource = new intersight.VnicFcIf("vnicFcIfResource", {
accountMoid: "string",
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
classId: "string",
createTime: "string",
domainGroupMoid: "string",
fcAdapterPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
fcNetworkPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
fcQosPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
fcZonePolicies: [{
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",
}],
persistentBindings: false,
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",
}],
sanConnectivityPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
scpVhbas: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
sharedScope: "string",
spVhbas: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
srcTemplates: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
staticWwpnAddress: "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",
type: "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,
vnicFcIfId: "string",
wwpn: "string",
wwpnAddressType: "string",
wwpnLeases: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
wwpnPools: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
});
type: intersight:VnicFcIf
properties:
accountMoid: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
classId: string
createTime: string
domainGroupMoid: string
fcAdapterPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
fcNetworkPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
fcQosPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
fcZonePolicies:
- 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
persistentBindings: false
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
sanConnectivityPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
scpVhbas:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
sharedScope: string
spVhbas:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
srcTemplates:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
staticWwpnAddress: 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
type: 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
vnicFcIfId: string
wwpn: string
wwpnAddressType: string
wwpnLeases:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
wwpnPools:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
VnicFcIf 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 VnicFcIf resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Vnic
Fc If Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Fc
Adapter List<VnicPolicies Fc If Fc Adapter Policy> - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Network List<VnicPolicies Fc If Fc Network Policy> - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Qos List<VnicPolicies Fc If Fc Qos Policy> - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Zone List<VnicPolicies Fc If Fc Zone Policy> - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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<VnicFc If Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Persistent
Bindings bool - Enables retention of LUN ID associations in memory until they are manually cleared.
- Pin
Group stringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- Placements
List<Vnic
Fc If Placement> - Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
List<Vnic
Fc 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:
- San
Connectivity List<VnicPolicies Fc If San Connectivity Policy> - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Scp
Vhbas List<VnicFc If Scp Vhba> - (ReadOnly) A reference to a vnicFcIf 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
Vhbas List<VnicFc If Sp Vhba> - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- Src
Templates List<VnicFc If Src Template> - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Static
Wwpn stringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- List<Vnic
Fc If Tag> - This complex property has following sub-properties:
- Template
Actions List<VnicFc If Template Action> - This complex property has following sub-properties:
- Template
Sync List<VnicErrors Fc 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. - Type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - Version
Contexts List<VnicFc If Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vif
Id double - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- Vnic
Fc stringIf Id - Wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- Wwpn
Address stringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - Wwpn
Leases List<VnicFc If Wwpn Lease> - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Wwpn
Pools List<VnicFc If Wwpn Pool> - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Vnic
Fc If Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Fc
Adapter []VnicPolicies Fc If Fc Adapter Policy Args - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Network []VnicPolicies Fc If Fc Network Policy Args - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Qos []VnicPolicies Fc If Fc Qos Policy Args - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Zone []VnicPolicies Fc If Fc Zone Policy Args - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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 []VnicFc If Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Persistent
Bindings bool - Enables retention of LUN ID associations in memory until they are manually cleared.
- Pin
Group stringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- Placements
[]Vnic
Fc If Placement Args - Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
[]Vnic
Fc 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:
- San
Connectivity []VnicPolicies Fc If San Connectivity Policy Args - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Scp
Vhbas []VnicFc If Scp Vhba Args - (ReadOnly) A reference to a vnicFcIf 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
Vhbas []VnicFc If Sp Vhba Args - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- Src
Templates []VnicFc If Src Template Args - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Static
Wwpn stringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- []Vnic
Fc If Tag Args - This complex property has following sub-properties:
- Template
Actions []VnicFc If Template Action Args - This complex property has following sub-properties:
- Template
Sync []VnicErrors Fc 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. - Type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - Version
Contexts []VnicFc If Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vif
Id float64 - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- Vnic
Fc stringIf Id - Wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- Wwpn
Address stringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - Wwpn
Leases []VnicFc If Wwpn Lease Args - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Wwpn
Pools []VnicFc If Wwpn Pool Args - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Vnic
Fc If Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- fc
Adapter List<VnicPolicies Fc If Fc Adapter Policy> - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Network List<VnicPolicies Fc If Fc Network Policy> - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Qos List<VnicPolicies Fc If Fc Qos Policy> - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Zone List<VnicPolicies Fc If Fc Zone Policy> - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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<VnicFc If Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- persistent
Bindings Boolean - Enables retention of LUN ID associations in memory until they are manually cleared.
- pin
Group StringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
List<Vnic
Fc If Placement> - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
List<Vnic
Fc 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:
- san
Connectivity List<VnicPolicies Fc If San Connectivity Policy> - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp
Vhbas List<VnicFc If Scp Vhba> - (ReadOnly) A reference to a vnicFcIf 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
Vhbas List<VnicFc If Sp Vhba> - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src
Templates List<VnicFc If Src Template> - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static
Wwpn StringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- List<Vnic
Fc If Tag> - This complex property has following sub-properties:
- template
Actions List<VnicFc If Template Action> - This complex property has following sub-properties:
- template
Sync List<VnicErrors Fc 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. - type String
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - version
Contexts List<VnicFc If Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id Double - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic
Fc StringIf Id - wwpn String
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn
Address StringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - wwpn
Leases List<VnicFc If Wwpn Lease> - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn
Pools List<VnicFc If Wwpn Pool> - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Vnic
Fc If Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- fc
Adapter VnicPolicies Fc If Fc Adapter Policy[] - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Network VnicPolicies Fc If Fc Network Policy[] - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Qos VnicPolicies Fc If Fc Qos Policy[] - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Zone VnicPolicies Fc If Fc Zone Policy[] - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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 VnicFc If Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- persistent
Bindings boolean - Enables retention of LUN ID associations in memory until they are manually cleared.
- pin
Group stringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
Vnic
Fc If Placement[] - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Vnic
Fc 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:
- san
Connectivity VnicPolicies Fc If San Connectivity Policy[] - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp
Vhbas VnicFc If Scp Vhba[] - (ReadOnly) A reference to a vnicFcIf 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
Vhbas VnicFc If Sp Vhba[] - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src
Templates VnicFc If Src Template[] - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static
Wwpn stringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- Vnic
Fc If Tag[] - This complex property has following sub-properties:
- template
Actions VnicFc If Template Action[] - This complex property has following sub-properties:
- template
Sync VnicErrors Fc 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. - type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - version
Contexts VnicFc If Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id number - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic
Fc stringIf Id - wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn
Address stringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - wwpn
Leases VnicFc If Wwpn Lease[] - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn
Pools VnicFc If Wwpn Pool[] - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Vnic
Fc If Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- fc_
adapter_ Sequence[Vnicpolicies Fc If Fc Adapter Policy Args] - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_
network_ Sequence[Vnicpolicies Fc If Fc Network Policy Args] - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_
qos_ Sequence[Vnicpolicies Fc If Fc Qos Policy Args] - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_
zone_ Sequence[Vnicpolicies Fc If Fc Zone Policy Args] - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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[VnicFc If Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- persistent_
bindings bool - Enables retention of LUN ID associations in memory until they are manually cleared.
- pin_
group_ strname - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
Sequence[Vnic
Fc If Placement Args] - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Sequence[Vnic
Fc 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:
- san_
connectivity_ Sequence[Vnicpolicies Fc If San Connectivity Policy Args] - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp_
vhbas Sequence[VnicFc If Scp Vhba Args] - (ReadOnly) A reference to a vnicFcIf 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_
vhbas Sequence[VnicFc If Sp Vhba Args] - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src_
templates Sequence[VnicFc If Src Template Args] - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static_
wwpn_ straddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- Sequence[Vnic
Fc If Tag Args] - This complex property has following sub-properties:
- template_
actions Sequence[VnicFc If Template Action Args] - This complex property has following sub-properties:
- template_
sync_ Sequence[Vnicerrors Fc 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. - type str
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - version_
contexts Sequence[VnicFc If Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif_
id float - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic_
fc_ strif_ id - wwpn str
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn_
address_ strtype - Type of allocation selected to assign a WWPN address to the vhba.*
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. - wwpn_
leases Sequence[VnicFc If Wwpn Lease Args] - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn_
pools Sequence[VnicFc If Wwpn Pool Args] - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- 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.
- fc
Adapter List<Property Map>Policies - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Network List<Property Map>Policies - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Qos List<Property Map>Policies - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Zone List<Property Map>Policies - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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:
- persistent
Bindings Boolean - Enables retention of LUN ID associations in memory until they are manually cleared.
- pin
Group StringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc 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:
- san
Connectivity List<Property Map>Policies - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp
Vhbas List<Property Map> - (ReadOnly) A reference to a vnicFcIf 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
Vhbas List<Property Map> - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src
Templates List<Property Map> - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static
Wwpn StringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00: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. - type String
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id Number - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic
Fc StringIf Id - wwpn String
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn
Address StringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - wwpn
Leases List<Property Map> - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn
Pools List<Property Map> - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the VnicFcIf 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 VnicFcIf Resource
Get an existing VnicFcIf 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?: VnicFcIfState, opts?: CustomResourceOptions): VnicFcIf
@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[VnicFcIfAncestorArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
domain_group_moid: Optional[str] = None,
fc_adapter_policies: Optional[Sequence[VnicFcIfFcAdapterPolicyArgs]] = None,
fc_network_policies: Optional[Sequence[VnicFcIfFcNetworkPolicyArgs]] = None,
fc_qos_policies: Optional[Sequence[VnicFcIfFcQosPolicyArgs]] = None,
fc_zone_policies: Optional[Sequence[VnicFcIfFcZonePolicyArgs]] = 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[VnicFcIfParentArgs]] = None,
permission_resources: Optional[Sequence[VnicFcIfPermissionResourceArgs]] = None,
persistent_bindings: Optional[bool] = None,
pin_group_name: Optional[str] = None,
placements: Optional[Sequence[VnicFcIfPlacementArgs]] = None,
profiles: Optional[Sequence[VnicFcIfProfileArgs]] = None,
san_connectivity_policies: Optional[Sequence[VnicFcIfSanConnectivityPolicyArgs]] = None,
scp_vhbas: Optional[Sequence[VnicFcIfScpVhbaArgs]] = None,
shared_scope: Optional[str] = None,
sp_vhbas: Optional[Sequence[VnicFcIfSpVhbaArgs]] = None,
src_templates: Optional[Sequence[VnicFcIfSrcTemplateArgs]] = None,
static_wwpn_address: Optional[str] = None,
tags: Optional[Sequence[VnicFcIfTagArgs]] = None,
template_actions: Optional[Sequence[VnicFcIfTemplateActionArgs]] = None,
template_sync_errors: Optional[Sequence[VnicFcIfTemplateSyncErrorArgs]] = None,
template_sync_status: Optional[str] = None,
type: Optional[str] = None,
version_contexts: Optional[Sequence[VnicFcIfVersionContextArgs]] = None,
vif_id: Optional[float] = None,
vnic_fc_if_id: Optional[str] = None,
wwpn: Optional[str] = None,
wwpn_address_type: Optional[str] = None,
wwpn_leases: Optional[Sequence[VnicFcIfWwpnLeaseArgs]] = None,
wwpn_pools: Optional[Sequence[VnicFcIfWwpnPoolArgs]] = None) -> VnicFcIf
func GetVnicFcIf(ctx *Context, name string, id IDInput, state *VnicFcIfState, opts ...ResourceOption) (*VnicFcIf, error)
public static VnicFcIf Get(string name, Input<string> id, VnicFcIfState? state, CustomResourceOptions? opts = null)
public static VnicFcIf get(String name, Output<String> id, VnicFcIfState state, CustomResourceOptions options)
resources: _: type: intersight:VnicFcIf 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
Fc If Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Fc
Adapter List<VnicPolicies Fc If Fc Adapter Policy> - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Network List<VnicPolicies Fc If Fc Network Policy> - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Qos List<VnicPolicies Fc If Fc Qos Policy> - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Zone List<VnicPolicies Fc If Fc Zone Policy> - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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<VnicFc If Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Persistent
Bindings bool - Enables retention of LUN ID associations in memory until they are manually cleared.
- Pin
Group stringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- Placements
List<Vnic
Fc If Placement> - Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
List<Vnic
Fc 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:
- San
Connectivity List<VnicPolicies Fc If San Connectivity Policy> - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Scp
Vhbas List<VnicFc If Scp Vhba> - (ReadOnly) A reference to a vnicFcIf 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
Vhbas List<VnicFc If Sp Vhba> - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- Src
Templates List<VnicFc If Src Template> - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Static
Wwpn stringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- List<Vnic
Fc If Tag> - This complex property has following sub-properties:
- Template
Actions List<VnicFc If Template Action> - This complex property has following sub-properties:
- Template
Sync List<VnicErrors Fc 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. - Type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - Version
Contexts List<VnicFc If Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vif
Id double - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- Vnic
Fc stringIf Id - Wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- Wwpn
Address stringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - Wwpn
Leases List<VnicFc If Wwpn Lease> - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Wwpn
Pools List<VnicFc If Wwpn Pool> - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Vnic
Fc If Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Fc
Adapter []VnicPolicies Fc If Fc Adapter Policy Args - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Network []VnicPolicies Fc If Fc Network Policy Args - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Qos []VnicPolicies Fc If Fc Qos Policy Args - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fc
Zone []VnicPolicies Fc If Fc Zone Policy Args - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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 []VnicFc If Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Persistent
Bindings bool - Enables retention of LUN ID associations in memory until they are manually cleared.
- Pin
Group stringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- Placements
[]Vnic
Fc If Placement Args - Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
[]Vnic
Fc 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:
- San
Connectivity []VnicPolicies Fc If San Connectivity Policy Args - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Scp
Vhbas []VnicFc If Scp Vhba Args - (ReadOnly) A reference to a vnicFcIf 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
Vhbas []VnicFc If Sp Vhba Args - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- Src
Templates []VnicFc If Src Template Args - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Static
Wwpn stringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- []Vnic
Fc If Tag Args - This complex property has following sub-properties:
- Template
Actions []VnicFc If Template Action Args - This complex property has following sub-properties:
- Template
Sync []VnicErrors Fc 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. - Type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - Version
Contexts []VnicFc If Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vif
Id float64 - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- Vnic
Fc stringIf Id - Wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- Wwpn
Address stringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - Wwpn
Leases []VnicFc If Wwpn Lease Args - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Wwpn
Pools []VnicFc If Wwpn Pool Args - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Vnic
Fc If Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- fc
Adapter List<VnicPolicies Fc If Fc Adapter Policy> - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Network List<VnicPolicies Fc If Fc Network Policy> - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Qos List<VnicPolicies Fc If Fc Qos Policy> - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Zone List<VnicPolicies Fc If Fc Zone Policy> - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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<VnicFc If Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- persistent
Bindings Boolean - Enables retention of LUN ID associations in memory until they are manually cleared.
- pin
Group StringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
List<Vnic
Fc If Placement> - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
List<Vnic
Fc 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:
- san
Connectivity List<VnicPolicies Fc If San Connectivity Policy> - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp
Vhbas List<VnicFc If Scp Vhba> - (ReadOnly) A reference to a vnicFcIf 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
Vhbas List<VnicFc If Sp Vhba> - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src
Templates List<VnicFc If Src Template> - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static
Wwpn StringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- List<Vnic
Fc If Tag> - This complex property has following sub-properties:
- template
Actions List<VnicFc If Template Action> - This complex property has following sub-properties:
- template
Sync List<VnicErrors Fc 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. - type String
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - version
Contexts List<VnicFc If Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id Double - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic
Fc StringIf Id - wwpn String
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn
Address StringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - wwpn
Leases List<VnicFc If Wwpn Lease> - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn
Pools List<VnicFc If Wwpn Pool> - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Vnic
Fc If Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- fc
Adapter VnicPolicies Fc If Fc Adapter Policy[] - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Network VnicPolicies Fc If Fc Network Policy[] - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Qos VnicPolicies Fc If Fc Qos Policy[] - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Zone VnicPolicies Fc If Fc Zone Policy[] - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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 VnicFc If Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- persistent
Bindings boolean - Enables retention of LUN ID associations in memory until they are manually cleared.
- pin
Group stringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
Vnic
Fc If Placement[] - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Vnic
Fc 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:
- san
Connectivity VnicPolicies Fc If San Connectivity Policy[] - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp
Vhbas VnicFc If Scp Vhba[] - (ReadOnly) A reference to a vnicFcIf 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
Vhbas VnicFc If Sp Vhba[] - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src
Templates VnicFc If Src Template[] - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static
Wwpn stringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- Vnic
Fc If Tag[] - This complex property has following sub-properties:
- template
Actions VnicFc If Template Action[] - This complex property has following sub-properties:
- template
Sync VnicErrors Fc 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. - type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - version
Contexts VnicFc If Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id number - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic
Fc stringIf Id - wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn
Address stringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - wwpn
Leases VnicFc If Wwpn Lease[] - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn
Pools VnicFc If Wwpn Pool[] - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Vnic
Fc If Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- fc_
adapter_ Sequence[Vnicpolicies Fc If Fc Adapter Policy Args] - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_
network_ Sequence[Vnicpolicies Fc If Fc Network Policy Args] - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_
qos_ Sequence[Vnicpolicies Fc If Fc Qos Policy Args] - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_
zone_ Sequence[Vnicpolicies Fc If Fc Zone Policy Args] - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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
Fc 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[VnicFc If Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- persistent_
bindings bool - Enables retention of LUN ID associations in memory until they are manually cleared.
- pin_
group_ strname - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
Sequence[Vnic
Fc If Placement Args] - Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Sequence[Vnic
Fc 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:
- san_
connectivity_ Sequence[Vnicpolicies Fc If San Connectivity Policy Args] - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp_
vhbas Sequence[VnicFc If Scp Vhba Args] - (ReadOnly) A reference to a vnicFcIf 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_
vhbas Sequence[VnicFc If Sp Vhba Args] - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src_
templates Sequence[VnicFc If Src Template Args] - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static_
wwpn_ straddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- Sequence[Vnic
Fc If Tag Args] - This complex property has following sub-properties:
- template_
actions Sequence[VnicFc If Template Action Args] - This complex property has following sub-properties:
- template_
sync_ Sequence[Vnicerrors Fc 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. - type str
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - version_
contexts Sequence[VnicFc If Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif_
id float - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic_
fc_ strif_ id - wwpn str
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn_
address_ strtype - Type of allocation selected to assign a WWPN address to the vhba.*
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. - wwpn_
leases Sequence[VnicFc If Wwpn Lease Args] - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn_
pools Sequence[VnicFc If Wwpn Pool Args] - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- 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.
- fc
Adapter List<Property Map>Policies - A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Network List<Property Map>Policies - A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Qos List<Property Map>Policies - A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc
Zone List<Property Map>Policies - An array of relationships to fabricFcZonePolicy resources. 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 fibre channel 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:
- persistent
Bindings Boolean - Enables retention of LUN ID associations in memory until they are manually cleared.
- pin
Group StringName - Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc 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:
- san
Connectivity List<Property Map>Policies - A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp
Vhbas List<Property Map> - (ReadOnly) A reference to a vnicFcIf 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
Vhbas List<Property Map> - (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src
Templates List<Property Map> - A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static
Wwpn StringAddress - The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00: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. - type String
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.*
fc-initiator
- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator
- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target
- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target
- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver. - version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif
Id Number - (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic
Fc StringIf Id - wwpn String
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn
Address StringType - Type of allocation selected to assign a WWPN address to the vhba.*
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. - wwpn
Leases List<Property Map> - A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn
Pools List<Property Map> - A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Supporting Types
VnicFcIfAncestor, VnicFcIfAncestorArgs
- 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'.
VnicFcIfFcAdapterPolicy, VnicFcIfFcAdapterPolicyArgs
- 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'.
VnicFcIfFcNetworkPolicy, VnicFcIfFcNetworkPolicyArgs
- 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'.
VnicFcIfFcQosPolicy, VnicFcIfFcQosPolicyArgs
- 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'.
VnicFcIfFcZonePolicy, VnicFcIfFcZonePolicyArgs
- 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'.
VnicFcIfParent, VnicFcIfParentArgs
- 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'.
VnicFcIfPermissionResource, VnicFcIfPermissionResourceArgs
- 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'.
VnicFcIfPlacement, VnicFcIfPlacementArgs
- 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.
VnicFcIfProfile, VnicFcIfProfileArgs
- 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'.
VnicFcIfSanConnectivityPolicy, VnicFcIfSanConnectivityPolicyArgs
- 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'.
VnicFcIfScpVhba, VnicFcIfScpVhbaArgs
- 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'.
VnicFcIfSpVhba, VnicFcIfSpVhbaArgs
- 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'.
VnicFcIfSrcTemplate, VnicFcIfSrcTemplateArgs
- 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'.
VnicFcIfTag, VnicFcIfTagArgs
- 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.
VnicFcIfTemplateAction, VnicFcIfTemplateActionArgs
- 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
Fc 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
Fc 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
Fc 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
Fc 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
Fc 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.
VnicFcIfTemplateActionParam, VnicFcIfTemplateActionParamArgs
- 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.
VnicFcIfTemplateSyncError, VnicFcIfTemplateSyncErrorArgs
- 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.
VnicFcIfVersionContext, VnicFcIfVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<VnicFc 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<VnicFc 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 []VnicFc 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 []VnicFc 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<VnicFc 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<VnicFc 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 VnicFc 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 VnicFc 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[VnicFc 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[VnicFc 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.
VnicFcIfVersionContextInterestedMo, VnicFcIfVersionContextInterestedMoArgs
- 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'.
VnicFcIfVersionContextRefMo, VnicFcIfVersionContextRefMoArgs
- 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'.
VnicFcIfWwpnLease, VnicFcIfWwpnLeaseArgs
- 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'.
VnicFcIfWwpnPool, VnicFcIfWwpnPoolArgs
- 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'.
Import
intersight_vnic_fc_if
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/vnicFcIf:VnicFcIf 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.