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

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",
    }],
});
Copy
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",
    }])
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		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
	})
}
Copy
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",
            },
        },
    });

});
Copy
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());

    }
}
Copy
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
Copy

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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. 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",
        },
    },
});
Copy
example, err := intersight.NewVnicFcIf(ctx, "vnicFcIfResource", &intersight.VnicFcIfArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: .VnicFcIfAncestorArray{
&.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: .VnicFcIfFcAdapterPolicyArray{
&.VnicFcIfFcAdapterPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
FcNetworkPolicies: .VnicFcIfFcNetworkPolicyArray{
&.VnicFcIfFcNetworkPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
FcQosPolicies: .VnicFcIfFcQosPolicyArray{
&.VnicFcIfFcQosPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
FcZonePolicies: .VnicFcIfFcZonePolicyArray{
&.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: .VnicFcIfParentArray{
&.VnicFcIfParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: .VnicFcIfPermissionResourceArray{
&.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: .VnicFcIfPlacementArray{
&.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: .VnicFcIfProfileArray{
&.VnicFcIfProfileArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SanConnectivityPolicies: .VnicFcIfSanConnectivityPolicyArray{
&.VnicFcIfSanConnectivityPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ScpVhbas: .VnicFcIfScpVhbaArray{
&.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: .VnicFcIfSpVhbaArray{
&.VnicFcIfSpVhbaArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SrcTemplates: .VnicFcIfSrcTemplateArray{
&.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: .VnicFcIfTagArray{
&.VnicFcIfTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TemplateActions: .VnicFcIfTemplateActionArray{
&.VnicFcIfTemplateActionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Params: .VnicFcIfTemplateActionParamArray{
&.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: .VnicFcIfTemplateSyncErrorArray{
&.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: .VnicFcIfVersionContextArray{
&.VnicFcIfVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: .VnicFcIfVersionContextInterestedMoArray{
&.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: .VnicFcIfVersionContextRefMoArray{
&.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: .VnicFcIfWwpnLeaseArray{
&.VnicFcIfWwpnLeaseArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
WwpnPools: .VnicFcIfWwpnPoolArray{
&.VnicFcIfWwpnPoolArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
})
Copy
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());
Copy
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",
    }])
Copy
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",
    }],
});
Copy
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
Copy

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:

AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors List<VnicFcIfAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
FcAdapterPolicies List<VnicFcIfFcAdapterPolicy>
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:
FcNetworkPolicies List<VnicFcIfFcNetworkPolicy>
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:
FcQosPolicies List<VnicFcIfFcQosPolicy>
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:
FcZonePolicies List<VnicFcIfFcZonePolicy>
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the virtual fibre channel interface.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Order double
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
OverriddenLists List<string>
(Array of schema.TypeString) -
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<VnicFcIfParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<VnicFcIfPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PersistentBindings bool
Enables retention of LUN ID associations in memory until they are manually cleared.
PinGroupName string
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<VnicFcIfPlacement>
Placement Settings for the virtual interface. This complex property has following sub-properties:
Profiles List<VnicFcIfProfile>
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:
SanConnectivityPolicies List<VnicFcIfSanConnectivityPolicy>
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:
ScpVhbas List<VnicFcIfScpVhba>
(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:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SpVhbas List<VnicFcIfSpVhba>
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
SrcTemplates List<VnicFcIfSrcTemplate>
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:
StaticWwpnAddress string
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.
Tags List<VnicFcIfTag>
This complex property has following sub-properties:
TemplateActions List<VnicFcIfTemplateAction>
This complex property has following sub-properties:
TemplateSyncErrors List<VnicFcIfTemplateSyncError>
This complex property has following sub-properties:
TemplateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
VersionContexts List<VnicFcIfVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
VifId 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.
VnicFcIfId string
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.
WwpnAddressType string
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.
WwpnLeases List<VnicFcIfWwpnLease>
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:
WwpnPools List<VnicFcIfWwpnPool>
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:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors []VnicFcIfAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
FcAdapterPolicies []VnicFcIfFcAdapterPolicyArgs
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:
FcNetworkPolicies []VnicFcIfFcNetworkPolicyArgs
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:
FcQosPolicies []VnicFcIfFcQosPolicyArgs
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:
FcZonePolicies []VnicFcIfFcZonePolicyArgs
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the virtual fibre channel interface.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Order float64
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
OverriddenLists []string
(Array of schema.TypeString) -
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []VnicFcIfParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []VnicFcIfPermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PersistentBindings bool
Enables retention of LUN ID associations in memory until they are manually cleared.
PinGroupName string
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 []VnicFcIfPlacementArgs
Placement Settings for the virtual interface. This complex property has following sub-properties:
Profiles []VnicFcIfProfileArgs
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:
SanConnectivityPolicies []VnicFcIfSanConnectivityPolicyArgs
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:
ScpVhbas []VnicFcIfScpVhbaArgs
(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:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SpVhbas []VnicFcIfSpVhbaArgs
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
SrcTemplates []VnicFcIfSrcTemplateArgs
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:
StaticWwpnAddress string
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.
Tags []VnicFcIfTagArgs
This complex property has following sub-properties:
TemplateActions []VnicFcIfTemplateActionArgs
This complex property has following sub-properties:
TemplateSyncErrors []VnicFcIfTemplateSyncErrorArgs
This complex property has following sub-properties:
TemplateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
VersionContexts []VnicFcIfVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
VifId 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.
VnicFcIfId string
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.
WwpnAddressType string
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.
WwpnLeases []VnicFcIfWwpnLeaseArgs
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:
WwpnPools []VnicFcIfWwpnPoolArgs
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:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<VnicFcIfAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
fcAdapterPolicies List<VnicFcIfFcAdapterPolicy>
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:
fcNetworkPolicies List<VnicFcIfFcNetworkPolicy>
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:
fcQosPolicies List<VnicFcIfFcQosPolicy>
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:
fcZonePolicies List<VnicFcIfFcZonePolicy>
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the virtual fibre channel interface.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order Double
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists List<String>
(Array of schema.TypeString) -
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<VnicFcIfParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<VnicFcIfPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
persistentBindings Boolean
Enables retention of LUN ID associations in memory until they are manually cleared.
pinGroupName String
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<VnicFcIfPlacement>
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles List<VnicFcIfProfile>
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:
sanConnectivityPolicies List<VnicFcIfSanConnectivityPolicy>
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:
scpVhbas List<VnicFcIfScpVhba>
(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:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVhbas List<VnicFcIfSpVhba>
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
srcTemplates List<VnicFcIfSrcTemplate>
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:
staticWwpnAddress String
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.
tags List<VnicFcIfTag>
This complex property has following sub-properties:
templateActions List<VnicFcIfTemplateAction>
This complex property has following sub-properties:
templateSyncErrors List<VnicFcIfTemplateSyncError>
This complex property has following sub-properties:
templateSyncStatus String
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
versionContexts List<VnicFcIfVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId 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.
vnicFcIfId String
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.
wwpnAddressType String
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.
wwpnLeases List<VnicFcIfWwpnLease>
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:
wwpnPools List<VnicFcIfWwpnPool>
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:
accountMoid string
(ReadOnly) The Account ID for this managed object.
additionalProperties string
ancestors VnicFcIfAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime string
(ReadOnly) The time when this managed object was created.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
fcAdapterPolicies VnicFcIfFcAdapterPolicy[]
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:
fcNetworkPolicies VnicFcIfFcNetworkPolicy[]
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:
fcQosPolicies VnicFcIfFcQosPolicy[]
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:
fcZonePolicies VnicFcIfFcZonePolicy[]
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the virtual fibre channel interface.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order number
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists string[]
(Array of schema.TypeString) -
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents VnicFcIfParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources VnicFcIfPermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
persistentBindings boolean
Enables retention of LUN ID associations in memory until they are manually cleared.
pinGroupName string
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 VnicFcIfPlacement[]
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles VnicFcIfProfile[]
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:
sanConnectivityPolicies VnicFcIfSanConnectivityPolicy[]
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:
scpVhbas VnicFcIfScpVhba[]
(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:
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVhbas VnicFcIfSpVhba[]
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
srcTemplates VnicFcIfSrcTemplate[]
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:
staticWwpnAddress string
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.
tags VnicFcIfTag[]
This complex property has following sub-properties:
templateActions VnicFcIfTemplateAction[]
This complex property has following sub-properties:
templateSyncErrors VnicFcIfTemplateSyncError[]
This complex property has following sub-properties:
templateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
versionContexts VnicFcIfVersionContext[]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId 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.
vnicFcIfId string
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.
wwpnAddressType string
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.
wwpnLeases VnicFcIfWwpnLease[]
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:
wwpnPools VnicFcIfWwpnPool[]
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[VnicFcIfAncestorArgs]
(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_moid str
(ReadOnly) The DomainGroup ID for this managed object.
fc_adapter_policies Sequence[VnicFcIfFcAdapterPolicyArgs]
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_policies Sequence[VnicFcIfFcNetworkPolicyArgs]
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_policies Sequence[VnicFcIfFcQosPolicyArgs]
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_policies Sequence[VnicFcIfFcZonePolicyArgs]
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[VnicFcIfParentArgs]
(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[VnicFcIfPermissionResourceArgs]
(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_name str
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[VnicFcIfPlacementArgs]
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles Sequence[VnicFcIfProfileArgs]
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_policies Sequence[VnicFcIfSanConnectivityPolicyArgs]
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[VnicFcIfScpVhbaArgs]
(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:
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
sp_vhbas Sequence[VnicFcIfSpVhbaArgs]
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
src_templates Sequence[VnicFcIfSrcTemplateArgs]
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_address str
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.
tags Sequence[VnicFcIfTagArgs]
This complex property has following sub-properties:
template_actions Sequence[VnicFcIfTemplateActionArgs]
This complex property has following sub-properties:
template_sync_errors Sequence[VnicFcIfTemplateSyncErrorArgs]
This complex property has following sub-properties:
template_sync_status str
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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[VnicFcIfVersionContextArgs]
(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_if_id str
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_type str
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[VnicFcIfWwpnLeaseArgs]
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[VnicFcIfWwpnPoolArgs]
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:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
fcAdapterPolicies List<Property Map>
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:
fcNetworkPolicies List<Property Map>
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:
fcQosPolicies List<Property Map>
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:
fcZonePolicies List<Property Map>
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the virtual fibre channel interface.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order Number
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists List<String>
(Array of schema.TypeString) -
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
persistentBindings Boolean
Enables retention of LUN ID associations in memory until they are manually cleared.
pinGroupName String
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:
sanConnectivityPolicies List<Property Map>
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:
scpVhbas 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:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVhbas List<Property Map>
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
srcTemplates 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:
staticWwpnAddress String
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.
tags List<Property Map>
This complex property has following sub-properties:
templateActions List<Property Map>
This complex property has following sub-properties:
templateSyncErrors List<Property Map>
This complex property has following sub-properties:
templateSyncStatus String
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId 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.
vnicFcIfId String
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.
wwpnAddressType String
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.
wwpnLeases 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:
wwpnPools 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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors List<VnicFcIfAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
FcAdapterPolicies List<VnicFcIfFcAdapterPolicy>
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:
FcNetworkPolicies List<VnicFcIfFcNetworkPolicy>
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:
FcQosPolicies List<VnicFcIfFcQosPolicy>
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:
FcZonePolicies List<VnicFcIfFcZonePolicy>
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the virtual fibre channel interface.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Order double
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
OverriddenLists List<string>
(Array of schema.TypeString) -
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<VnicFcIfParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<VnicFcIfPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PersistentBindings bool
Enables retention of LUN ID associations in memory until they are manually cleared.
PinGroupName string
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<VnicFcIfPlacement>
Placement Settings for the virtual interface. This complex property has following sub-properties:
Profiles List<VnicFcIfProfile>
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:
SanConnectivityPolicies List<VnicFcIfSanConnectivityPolicy>
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:
ScpVhbas List<VnicFcIfScpVhba>
(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:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SpVhbas List<VnicFcIfSpVhba>
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
SrcTemplates List<VnicFcIfSrcTemplate>
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:
StaticWwpnAddress string
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.
Tags List<VnicFcIfTag>
This complex property has following sub-properties:
TemplateActions List<VnicFcIfTemplateAction>
This complex property has following sub-properties:
TemplateSyncErrors List<VnicFcIfTemplateSyncError>
This complex property has following sub-properties:
TemplateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
VersionContexts List<VnicFcIfVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
VifId 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.
VnicFcIfId string
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.
WwpnAddressType string
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.
WwpnLeases List<VnicFcIfWwpnLease>
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:
WwpnPools List<VnicFcIfWwpnPool>
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:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors []VnicFcIfAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
FcAdapterPolicies []VnicFcIfFcAdapterPolicyArgs
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:
FcNetworkPolicies []VnicFcIfFcNetworkPolicyArgs
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:
FcQosPolicies []VnicFcIfFcQosPolicyArgs
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:
FcZonePolicies []VnicFcIfFcZonePolicyArgs
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the virtual fibre channel interface.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Order float64
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
OverriddenLists []string
(Array of schema.TypeString) -
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []VnicFcIfParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []VnicFcIfPermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PersistentBindings bool
Enables retention of LUN ID associations in memory until they are manually cleared.
PinGroupName string
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 []VnicFcIfPlacementArgs
Placement Settings for the virtual interface. This complex property has following sub-properties:
Profiles []VnicFcIfProfileArgs
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:
SanConnectivityPolicies []VnicFcIfSanConnectivityPolicyArgs
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:
ScpVhbas []VnicFcIfScpVhbaArgs
(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:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SpVhbas []VnicFcIfSpVhbaArgs
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
SrcTemplates []VnicFcIfSrcTemplateArgs
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:
StaticWwpnAddress string
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.
Tags []VnicFcIfTagArgs
This complex property has following sub-properties:
TemplateActions []VnicFcIfTemplateActionArgs
This complex property has following sub-properties:
TemplateSyncErrors []VnicFcIfTemplateSyncErrorArgs
This complex property has following sub-properties:
TemplateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
VersionContexts []VnicFcIfVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
VifId 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.
VnicFcIfId string
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.
WwpnAddressType string
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.
WwpnLeases []VnicFcIfWwpnLeaseArgs
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:
WwpnPools []VnicFcIfWwpnPoolArgs
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:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<VnicFcIfAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
fcAdapterPolicies List<VnicFcIfFcAdapterPolicy>
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:
fcNetworkPolicies List<VnicFcIfFcNetworkPolicy>
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:
fcQosPolicies List<VnicFcIfFcQosPolicy>
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:
fcZonePolicies List<VnicFcIfFcZonePolicy>
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the virtual fibre channel interface.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order Double
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists List<String>
(Array of schema.TypeString) -
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<VnicFcIfParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<VnicFcIfPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
persistentBindings Boolean
Enables retention of LUN ID associations in memory until they are manually cleared.
pinGroupName String
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<VnicFcIfPlacement>
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles List<VnicFcIfProfile>
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:
sanConnectivityPolicies List<VnicFcIfSanConnectivityPolicy>
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:
scpVhbas List<VnicFcIfScpVhba>
(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:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVhbas List<VnicFcIfSpVhba>
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
srcTemplates List<VnicFcIfSrcTemplate>
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:
staticWwpnAddress String
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.
tags List<VnicFcIfTag>
This complex property has following sub-properties:
templateActions List<VnicFcIfTemplateAction>
This complex property has following sub-properties:
templateSyncErrors List<VnicFcIfTemplateSyncError>
This complex property has following sub-properties:
templateSyncStatus String
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
versionContexts List<VnicFcIfVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId 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.
vnicFcIfId String
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.
wwpnAddressType String
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.
wwpnLeases List<VnicFcIfWwpnLease>
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:
wwpnPools List<VnicFcIfWwpnPool>
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:
accountMoid string
(ReadOnly) The Account ID for this managed object.
additionalProperties string
ancestors VnicFcIfAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime string
(ReadOnly) The time when this managed object was created.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
fcAdapterPolicies VnicFcIfFcAdapterPolicy[]
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:
fcNetworkPolicies VnicFcIfFcNetworkPolicy[]
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:
fcQosPolicies VnicFcIfFcQosPolicy[]
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:
fcZonePolicies VnicFcIfFcZonePolicy[]
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the virtual fibre channel interface.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order number
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists string[]
(Array of schema.TypeString) -
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents VnicFcIfParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources VnicFcIfPermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
persistentBindings boolean
Enables retention of LUN ID associations in memory until they are manually cleared.
pinGroupName string
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 VnicFcIfPlacement[]
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles VnicFcIfProfile[]
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:
sanConnectivityPolicies VnicFcIfSanConnectivityPolicy[]
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:
scpVhbas VnicFcIfScpVhba[]
(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:
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVhbas VnicFcIfSpVhba[]
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
srcTemplates VnicFcIfSrcTemplate[]
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:
staticWwpnAddress string
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.
tags VnicFcIfTag[]
This complex property has following sub-properties:
templateActions VnicFcIfTemplateAction[]
This complex property has following sub-properties:
templateSyncErrors VnicFcIfTemplateSyncError[]
This complex property has following sub-properties:
templateSyncStatus string
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
versionContexts VnicFcIfVersionContext[]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId 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.
vnicFcIfId string
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.
wwpnAddressType string
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.
wwpnLeases VnicFcIfWwpnLease[]
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:
wwpnPools VnicFcIfWwpnPool[]
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[VnicFcIfAncestorArgs]
(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_moid str
(ReadOnly) The DomainGroup ID for this managed object.
fc_adapter_policies Sequence[VnicFcIfFcAdapterPolicyArgs]
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_policies Sequence[VnicFcIfFcNetworkPolicyArgs]
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_policies Sequence[VnicFcIfFcQosPolicyArgs]
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_policies Sequence[VnicFcIfFcZonePolicyArgs]
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[VnicFcIfParentArgs]
(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[VnicFcIfPermissionResourceArgs]
(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_name str
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[VnicFcIfPlacementArgs]
Placement Settings for the virtual interface. This complex property has following sub-properties:
profiles Sequence[VnicFcIfProfileArgs]
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_policies Sequence[VnicFcIfSanConnectivityPolicyArgs]
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[VnicFcIfScpVhbaArgs]
(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:
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
sp_vhbas Sequence[VnicFcIfSpVhbaArgs]
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
src_templates Sequence[VnicFcIfSrcTemplateArgs]
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_address str
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.
tags Sequence[VnicFcIfTagArgs]
This complex property has following sub-properties:
template_actions Sequence[VnicFcIfTemplateActionArgs]
This complex property has following sub-properties:
template_sync_errors Sequence[VnicFcIfTemplateSyncErrorArgs]
This complex property has following sub-properties:
template_sync_status str
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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[VnicFcIfVersionContextArgs]
(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_if_id str
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_type str
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[VnicFcIfWwpnLeaseArgs]
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[VnicFcIfWwpnPoolArgs]
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:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
fcAdapterPolicies List<Property Map>
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:
fcNetworkPolicies List<Property Map>
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:
fcQosPolicies List<Property Map>
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:
fcZonePolicies List<Property Map>
An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the virtual fibre channel interface.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
order Number
The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
overriddenLists List<String>
(Array of schema.TypeString) -
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
persistentBindings Boolean
Enables retention of LUN ID associations in memory until they are manually cleared.
pinGroupName String
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:
sanConnectivityPolicies List<Property Map>
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:
scpVhbas 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:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
spVhbas List<Property Map>
(ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
srcTemplates 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:
staticWwpnAddress String
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.
tags List<Property Map>
This complex property has following sub-properties:
templateActions List<Property Map>
This complex property has following sub-properties:
templateSyncErrors List<Property Map>
This complex property has following sub-properties:
templateSyncStatus String
(ReadOnly) The sync status of the current MO wrt the attached Template MO.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
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.
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
vifId 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.
vnicFcIfId String
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.
wwpnAddressType String
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.
wwpnLeases 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:
wwpnPools 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

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

VnicFcIfFcAdapterPolicy
, VnicFcIfFcAdapterPolicyArgs

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

VnicFcIfFcNetworkPolicy
, VnicFcIfFcNetworkPolicyArgs

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

VnicFcIfFcQosPolicy
, VnicFcIfFcQosPolicyArgs

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

VnicFcIfFcZonePolicy
, VnicFcIfFcZonePolicyArgs

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

VnicFcIfParent
, VnicFcIfParentArgs

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

VnicFcIfPermissionResource
, VnicFcIfPermissionResourceArgs

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

VnicFcIfPlacement
, VnicFcIfPlacementArgs

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

VnicFcIfProfile
, VnicFcIfProfileArgs

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

VnicFcIfSanConnectivityPolicy
, VnicFcIfSanConnectivityPolicyArgs

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

VnicFcIfScpVhba
, VnicFcIfScpVhbaArgs

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

VnicFcIfSpVhba
, VnicFcIfSpVhbaArgs

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

VnicFcIfSrcTemplate
, VnicFcIfSrcTemplateArgs

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

VnicFcIfTag
, VnicFcIfTagArgs

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

VnicFcIfTemplateAction
, VnicFcIfTemplateActionArgs

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

VnicFcIfTemplateActionParam
, VnicFcIfTemplateActionParamArgs

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

VnicFcIfTemplateSyncError
, VnicFcIfTemplateSyncErrorArgs

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

VnicFcIfVersionContext
, VnicFcIfVersionContextArgs

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

VnicFcIfVersionContextInterestedMo
, VnicFcIfVersionContextInterestedMoArgs

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

VnicFcIfVersionContextRefMo
, VnicFcIfVersionContextRefMoArgs

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

VnicFcIfWwpnLease
, VnicFcIfWwpnLeaseArgs

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

VnicFcIfWwpnPool
, VnicFcIfWwpnPoolArgs

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

Import

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

$ pulumi import intersight:index/vnicFcIf:VnicFcIf example 1234567890987654321abcde
Copy

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

Package Details

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