intersight.VnicFcIf
Explore with Pulumi AI
Virtual Fibre Channel Interface.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const vnicSan1 = config.require("vnicSan1");
const vFcNetwork1 = config.require("vFcNetwork1");
const vFcAdapter1 = config.require("vFcAdapter1");
const vFcQos1 = config.require("vFcQos1");
const fc1 = new intersight.VnicFcIf("fc1", {
    order: 1,
    placements: [{
        id: "1",
        pciLink: 0,
        uplink: 0,
        objectType: "vnic.PlacementSettings",
    }],
    persistentBindings: true,
    sanConnectivityPolicies: [{
        moid: vnicSan1,
        objectType: "vnic.SanConnectivityPolicy",
    }],
    fcNetworkPolicies: [{
        moid: vFcNetwork1,
        objectType: "vnic.FcNetworkPolicy",
    }],
    fcAdapterPolicies: [{
        moid: vFcAdapter1,
        objectType: "vnic.FcAdapterPolicy",
    }],
    fcQosPolicies: [{
        moid: vFcQos1,
        objectType: "vnic.FcQosPolicy",
    }],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
vnic_san1 = config.require("vnicSan1")
v_fc_network1 = config.require("vFcNetwork1")
v_fc_adapter1 = config.require("vFcAdapter1")
v_fc_qos1 = config.require("vFcQos1")
fc1 = intersight.VnicFcIf("fc1",
    order=1,
    placements=[{
        "id": "1",
        "pci_link": 0,
        "uplink": 0,
        "object_type": "vnic.PlacementSettings",
    }],
    persistent_bindings=True,
    san_connectivity_policies=[{
        "moid": vnic_san1,
        "object_type": "vnic.SanConnectivityPolicy",
    }],
    fc_network_policies=[{
        "moid": v_fc_network1,
        "object_type": "vnic.FcNetworkPolicy",
    }],
    fc_adapter_policies=[{
        "moid": v_fc_adapter1,
        "object_type": "vnic.FcAdapterPolicy",
    }],
    fc_qos_policies=[{
        "moid": v_fc_qos1,
        "object_type": "vnic.FcQosPolicy",
    }])
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		vnicSan1 := cfg.Require("vnicSan1")
		vFcNetwork1 := cfg.Require("vFcNetwork1")
		vFcAdapter1 := cfg.Require("vFcAdapter1")
		vFcQos1 := cfg.Require("vFcQos1")
		_, err := intersight.NewVnicFcIf(ctx, "fc1", &intersight.VnicFcIfArgs{
			Order: pulumi.Float64(1),
			Placements: intersight.VnicFcIfPlacementArray{
				&intersight.VnicFcIfPlacementArgs{
					Id:         pulumi.String("1"),
					PciLink:    pulumi.Float64(0),
					Uplink:     pulumi.Float64(0),
					ObjectType: pulumi.String("vnic.PlacementSettings"),
				},
			},
			PersistentBindings: pulumi.Bool(true),
			SanConnectivityPolicies: intersight.VnicFcIfSanConnectivityPolicyArray{
				&intersight.VnicFcIfSanConnectivityPolicyArgs{
					Moid:       pulumi.String(vnicSan1),
					ObjectType: pulumi.String("vnic.SanConnectivityPolicy"),
				},
			},
			FcNetworkPolicies: intersight.VnicFcIfFcNetworkPolicyArray{
				&intersight.VnicFcIfFcNetworkPolicyArgs{
					Moid:       pulumi.String(vFcNetwork1),
					ObjectType: pulumi.String("vnic.FcNetworkPolicy"),
				},
			},
			FcAdapterPolicies: intersight.VnicFcIfFcAdapterPolicyArray{
				&intersight.VnicFcIfFcAdapterPolicyArgs{
					Moid:       pulumi.String(vFcAdapter1),
					ObjectType: pulumi.String("vnic.FcAdapterPolicy"),
				},
			},
			FcQosPolicies: intersight.VnicFcIfFcQosPolicyArray{
				&intersight.VnicFcIfFcQosPolicyArgs{
					Moid:       pulumi.String(vFcQos1),
					ObjectType: pulumi.String("vnic.FcQosPolicy"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var vnicSan1 = config.Require("vnicSan1");
    var vFcNetwork1 = config.Require("vFcNetwork1");
    var vFcAdapter1 = config.Require("vFcAdapter1");
    var vFcQos1 = config.Require("vFcQos1");
    var fc1 = new Intersight.VnicFcIf("fc1", new()
    {
        Order = 1,
        Placements = new[]
        {
            new Intersight.Inputs.VnicFcIfPlacementArgs
            {
                Id = "1",
                PciLink = 0,
                Uplink = 0,
                ObjectType = "vnic.PlacementSettings",
            },
        },
        PersistentBindings = true,
        SanConnectivityPolicies = new[]
        {
            new Intersight.Inputs.VnicFcIfSanConnectivityPolicyArgs
            {
                Moid = vnicSan1,
                ObjectType = "vnic.SanConnectivityPolicy",
            },
        },
        FcNetworkPolicies = new[]
        {
            new Intersight.Inputs.VnicFcIfFcNetworkPolicyArgs
            {
                Moid = vFcNetwork1,
                ObjectType = "vnic.FcNetworkPolicy",
            },
        },
        FcAdapterPolicies = new[]
        {
            new Intersight.Inputs.VnicFcIfFcAdapterPolicyArgs
            {
                Moid = vFcAdapter1,
                ObjectType = "vnic.FcAdapterPolicy",
            },
        },
        FcQosPolicies = new[]
        {
            new Intersight.Inputs.VnicFcIfFcQosPolicyArgs
            {
                Moid = vFcQos1,
                ObjectType = "vnic.FcQosPolicy",
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.VnicFcIf;
import com.pulumi.intersight.VnicFcIfArgs;
import com.pulumi.intersight.inputs.VnicFcIfPlacementArgs;
import com.pulumi.intersight.inputs.VnicFcIfSanConnectivityPolicyArgs;
import com.pulumi.intersight.inputs.VnicFcIfFcNetworkPolicyArgs;
import com.pulumi.intersight.inputs.VnicFcIfFcAdapterPolicyArgs;
import com.pulumi.intersight.inputs.VnicFcIfFcQosPolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var vnicSan1 = config.get("vnicSan1");
        final var vFcNetwork1 = config.get("vFcNetwork1");
        final var vFcAdapter1 = config.get("vFcAdapter1");
        final var vFcQos1 = config.get("vFcQos1");
        var fc1 = new VnicFcIf("fc1", VnicFcIfArgs.builder()
            .order(1)
            .placements(VnicFcIfPlacementArgs.builder()
                .id("1")
                .pciLink(0)
                .uplink(0)
                .objectType("vnic.PlacementSettings")
                .build())
            .persistentBindings(true)
            .sanConnectivityPolicies(VnicFcIfSanConnectivityPolicyArgs.builder()
                .moid(vnicSan1)
                .objectType("vnic.SanConnectivityPolicy")
                .build())
            .fcNetworkPolicies(VnicFcIfFcNetworkPolicyArgs.builder()
                .moid(vFcNetwork1)
                .objectType("vnic.FcNetworkPolicy")
                .build())
            .fcAdapterPolicies(VnicFcIfFcAdapterPolicyArgs.builder()
                .moid(vFcAdapter1)
                .objectType("vnic.FcAdapterPolicy")
                .build())
            .fcQosPolicies(VnicFcIfFcQosPolicyArgs.builder()
                .moid(vFcQos1)
                .objectType("vnic.FcQosPolicy")
                .build())
            .build());
    }
}
configuration:
  vnicSan1:
    type: string
  vFcNetwork1:
    type: string
  vFcAdapter1:
    type: string
  vFcQos1:
    type: string
resources:
  fc1:
    type: intersight:VnicFcIf
    properties:
      order: 1
      placements:
        - id: '1'
          pciLink: 0
          uplink: 0
          objectType: vnic.PlacementSettings
      persistentBindings: true
      sanConnectivityPolicies:
        - moid: ${vnicSan1}
          objectType: vnic.SanConnectivityPolicy
      fcNetworkPolicies:
        - moid: ${vFcNetwork1}
          objectType: vnic.FcNetworkPolicy
      fcAdapterPolicies:
        - moid: ${vFcAdapter1}
          objectType: vnic.FcAdapterPolicy
      fcQosPolicies:
        - moid: ${vFcQos1}
          objectType: vnic.FcQosPolicy
Create VnicFcIf Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VnicFcIf(name: string, args?: VnicFcIfArgs, opts?: CustomResourceOptions);@overload
def VnicFcIf(resource_name: str,
             args: Optional[VnicFcIfArgs] = None,
             opts: Optional[ResourceOptions] = None)
@overload
def VnicFcIf(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             account_moid: Optional[str] = None,
             additional_properties: Optional[str] = None,
             ancestors: Optional[Sequence[VnicFcIfAncestorArgs]] = None,
             class_id: Optional[str] = None,
             create_time: Optional[str] = None,
             domain_group_moid: Optional[str] = None,
             fc_adapter_policies: Optional[Sequence[VnicFcIfFcAdapterPolicyArgs]] = None,
             fc_network_policies: Optional[Sequence[VnicFcIfFcNetworkPolicyArgs]] = None,
             fc_qos_policies: Optional[Sequence[VnicFcIfFcQosPolicyArgs]] = None,
             fc_zone_policies: Optional[Sequence[VnicFcIfFcZonePolicyArgs]] = None,
             mod_time: Optional[str] = None,
             moid: Optional[str] = None,
             name: Optional[str] = None,
             object_type: Optional[str] = None,
             order: Optional[float] = None,
             overridden_lists: Optional[Sequence[str]] = None,
             owners: Optional[Sequence[str]] = None,
             parents: Optional[Sequence[VnicFcIfParentArgs]] = None,
             permission_resources: Optional[Sequence[VnicFcIfPermissionResourceArgs]] = None,
             persistent_bindings: Optional[bool] = None,
             pin_group_name: Optional[str] = None,
             placements: Optional[Sequence[VnicFcIfPlacementArgs]] = None,
             profiles: Optional[Sequence[VnicFcIfProfileArgs]] = None,
             san_connectivity_policies: Optional[Sequence[VnicFcIfSanConnectivityPolicyArgs]] = None,
             scp_vhbas: Optional[Sequence[VnicFcIfScpVhbaArgs]] = None,
             shared_scope: Optional[str] = None,
             sp_vhbas: Optional[Sequence[VnicFcIfSpVhbaArgs]] = None,
             src_templates: Optional[Sequence[VnicFcIfSrcTemplateArgs]] = None,
             static_wwpn_address: Optional[str] = None,
             tags: Optional[Sequence[VnicFcIfTagArgs]] = None,
             template_actions: Optional[Sequence[VnicFcIfTemplateActionArgs]] = None,
             template_sync_errors: Optional[Sequence[VnicFcIfTemplateSyncErrorArgs]] = None,
             template_sync_status: Optional[str] = None,
             type: Optional[str] = None,
             version_contexts: Optional[Sequence[VnicFcIfVersionContextArgs]] = None,
             vif_id: Optional[float] = None,
             vnic_fc_if_id: Optional[str] = None,
             wwpn: Optional[str] = None,
             wwpn_address_type: Optional[str] = None,
             wwpn_leases: Optional[Sequence[VnicFcIfWwpnLeaseArgs]] = None,
             wwpn_pools: Optional[Sequence[VnicFcIfWwpnPoolArgs]] = None)func NewVnicFcIf(ctx *Context, name string, args *VnicFcIfArgs, opts ...ResourceOption) (*VnicFcIf, error)public VnicFcIf(string name, VnicFcIfArgs? args = null, CustomResourceOptions? opts = null)
public VnicFcIf(String name, VnicFcIfArgs args)
public VnicFcIf(String name, VnicFcIfArgs args, CustomResourceOptions options)
type: intersight:VnicFcIf
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VnicFcIfArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VnicFcIfArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VnicFcIfArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VnicFcIfArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VnicFcIfArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var vnicFcIfResource = new Intersight.VnicFcIf("vnicFcIfResource", new()
{
    AccountMoid = "string",
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.VnicFcIfAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ClassId = "string",
    CreateTime = "string",
    DomainGroupMoid = "string",
    FcAdapterPolicies = new[]
    {
        new Intersight.Inputs.VnicFcIfFcAdapterPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    FcNetworkPolicies = new[]
    {
        new Intersight.Inputs.VnicFcIfFcNetworkPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    FcQosPolicies = new[]
    {
        new Intersight.Inputs.VnicFcIfFcQosPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    FcZonePolicies = new[]
    {
        new Intersight.Inputs.VnicFcIfFcZonePolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ModTime = "string",
    Moid = "string",
    Name = "string",
    ObjectType = "string",
    Order = 0,
    OverriddenLists = new[]
    {
        "string",
    },
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.VnicFcIfParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.VnicFcIfPermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PersistentBindings = false,
    PinGroupName = "string",
    Placements = new[]
    {
        new Intersight.Inputs.VnicFcIfPlacementArgs
        {
            AdditionalProperties = "string",
            AutoPciLink = false,
            AutoSlotId = false,
            ClassId = "string",
            Id = "string",
            ObjectType = "string",
            PciLink = 0,
            PciLinkAssignmentMode = "string",
            SwitchId = "string",
            Uplink = 0,
        },
    },
    Profiles = new[]
    {
        new Intersight.Inputs.VnicFcIfProfileArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SanConnectivityPolicies = new[]
    {
        new Intersight.Inputs.VnicFcIfSanConnectivityPolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ScpVhbas = new[]
    {
        new Intersight.Inputs.VnicFcIfScpVhbaArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SharedScope = "string",
    SpVhbas = new[]
    {
        new Intersight.Inputs.VnicFcIfSpVhbaArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SrcTemplates = new[]
    {
        new Intersight.Inputs.VnicFcIfSrcTemplateArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    StaticWwpnAddress = "string",
    Tags = new[]
    {
        new Intersight.Inputs.VnicFcIfTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    TemplateActions = new[]
    {
        new Intersight.Inputs.VnicFcIfTemplateActionArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
            Params = new[]
            {
                new Intersight.Inputs.VnicFcIfTemplateActionParamArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Name = "string",
                    ObjectType = "string",
                    Value = "string",
                },
            },
            Type = "string",
        },
    },
    TemplateSyncErrors = new[]
    {
        new Intersight.Inputs.VnicFcIfTemplateSyncErrorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Message = "string",
            ObjectType = "string",
            Type = "string",
        },
    },
    TemplateSyncStatus = "string",
    Type = "string",
    VersionContexts = new[]
    {
        new Intersight.Inputs.VnicFcIfVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.VnicFcIfVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.VnicFcIfVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
    VifId = 0,
    VnicFcIfId = "string",
    Wwpn = "string",
    WwpnAddressType = "string",
    WwpnLeases = new[]
    {
        new Intersight.Inputs.VnicFcIfWwpnLeaseArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    WwpnPools = new[]
    {
        new Intersight.Inputs.VnicFcIfWwpnPoolArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
});
example, err := intersight.NewVnicFcIf(ctx, "vnicFcIfResource", &intersight.VnicFcIfArgs{
	AccountMoid:          pulumi.String("string"),
	AdditionalProperties: pulumi.String("string"),
	Ancestors: intersight.VnicFcIfAncestorArray{
		&intersight.VnicFcIfAncestorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ClassId:         pulumi.String("string"),
	CreateTime:      pulumi.String("string"),
	DomainGroupMoid: pulumi.String("string"),
	FcAdapterPolicies: intersight.VnicFcIfFcAdapterPolicyArray{
		&intersight.VnicFcIfFcAdapterPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	FcNetworkPolicies: intersight.VnicFcIfFcNetworkPolicyArray{
		&intersight.VnicFcIfFcNetworkPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	FcQosPolicies: intersight.VnicFcIfFcQosPolicyArray{
		&intersight.VnicFcIfFcQosPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	FcZonePolicies: intersight.VnicFcIfFcZonePolicyArray{
		&intersight.VnicFcIfFcZonePolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ModTime:    pulumi.String("string"),
	Moid:       pulumi.String("string"),
	Name:       pulumi.String("string"),
	ObjectType: pulumi.String("string"),
	Order:      pulumi.Float64(0),
	OverriddenLists: pulumi.StringArray{
		pulumi.String("string"),
	},
	Owners: pulumi.StringArray{
		pulumi.String("string"),
	},
	Parents: intersight.VnicFcIfParentArray{
		&intersight.VnicFcIfParentArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PermissionResources: intersight.VnicFcIfPermissionResourceArray{
		&intersight.VnicFcIfPermissionResourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PersistentBindings: pulumi.Bool(false),
	PinGroupName:       pulumi.String("string"),
	Placements: intersight.VnicFcIfPlacementArray{
		&intersight.VnicFcIfPlacementArgs{
			AdditionalProperties:  pulumi.String("string"),
			AutoPciLink:           pulumi.Bool(false),
			AutoSlotId:            pulumi.Bool(false),
			ClassId:               pulumi.String("string"),
			Id:                    pulumi.String("string"),
			ObjectType:            pulumi.String("string"),
			PciLink:               pulumi.Float64(0),
			PciLinkAssignmentMode: pulumi.String("string"),
			SwitchId:              pulumi.String("string"),
			Uplink:                pulumi.Float64(0),
		},
	},
	Profiles: intersight.VnicFcIfProfileArray{
		&intersight.VnicFcIfProfileArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SanConnectivityPolicies: intersight.VnicFcIfSanConnectivityPolicyArray{
		&intersight.VnicFcIfSanConnectivityPolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ScpVhbas: intersight.VnicFcIfScpVhbaArray{
		&intersight.VnicFcIfScpVhbaArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SharedScope: pulumi.String("string"),
	SpVhbas: intersight.VnicFcIfSpVhbaArray{
		&intersight.VnicFcIfSpVhbaArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SrcTemplates: intersight.VnicFcIfSrcTemplateArray{
		&intersight.VnicFcIfSrcTemplateArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	StaticWwpnAddress: pulumi.String("string"),
	Tags: intersight.VnicFcIfTagArray{
		&intersight.VnicFcIfTagArgs{
			AdditionalProperties: pulumi.String("string"),
			Key:                  pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	TemplateActions: intersight.VnicFcIfTemplateActionArray{
		&intersight.VnicFcIfTemplateActionArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Params: intersight.VnicFcIfTemplateActionParamArray{
				&intersight.VnicFcIfTemplateActionParamArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Name:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Value:                pulumi.String("string"),
				},
			},
			Type: pulumi.String("string"),
		},
	},
	TemplateSyncErrors: intersight.VnicFcIfTemplateSyncErrorArray{
		&intersight.VnicFcIfTemplateSyncErrorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Message:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Type:                 pulumi.String("string"),
		},
	},
	TemplateSyncStatus: pulumi.String("string"),
	Type:               pulumi.String("string"),
	VersionContexts: intersight.VnicFcIfVersionContextArray{
		&intersight.VnicFcIfVersionContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			InterestedMos: intersight.VnicFcIfVersionContextInterestedMoArray{
				&intersight.VnicFcIfVersionContextInterestedMoArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Moid:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Selector:             pulumi.String("string"),
				},
			},
			MarkedForDeletion: pulumi.Bool(false),
			NrVersion:         pulumi.String("string"),
			ObjectType:        pulumi.String("string"),
			RefMos: intersight.VnicFcIfVersionContextRefMoArray{
				&intersight.VnicFcIfVersionContextRefMoArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Moid:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Selector:             pulumi.String("string"),
				},
			},
			Timestamp:   pulumi.String("string"),
			VersionType: pulumi.String("string"),
		},
	},
	VifId:           pulumi.Float64(0),
	VnicFcIfId:      pulumi.String("string"),
	Wwpn:            pulumi.String("string"),
	WwpnAddressType: pulumi.String("string"),
	WwpnLeases: intersight.VnicFcIfWwpnLeaseArray{
		&intersight.VnicFcIfWwpnLeaseArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	WwpnPools: intersight.VnicFcIfWwpnPoolArray{
		&intersight.VnicFcIfWwpnPoolArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
})
var vnicFcIfResource = new VnicFcIf("vnicFcIfResource", VnicFcIfArgs.builder()
    .accountMoid("string")
    .additionalProperties("string")
    .ancestors(VnicFcIfAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .classId("string")
    .createTime("string")
    .domainGroupMoid("string")
    .fcAdapterPolicies(VnicFcIfFcAdapterPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .fcNetworkPolicies(VnicFcIfFcNetworkPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .fcQosPolicies(VnicFcIfFcQosPolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .fcZonePolicies(VnicFcIfFcZonePolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .modTime("string")
    .moid("string")
    .name("string")
    .objectType("string")
    .order(0.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.0)
        .pciLinkAssignmentMode("string")
        .switchId("string")
        .uplink(0.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.0)
    .vnicFcIfId("string")
    .wwpn("string")
    .wwpnAddressType("string")
    .wwpnLeases(VnicFcIfWwpnLeaseArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .wwpnPools(VnicFcIfWwpnPoolArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .build());
vnic_fc_if_resource = intersight.VnicFcIf("vnicFcIfResource",
    account_moid="string",
    additional_properties="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    class_id="string",
    create_time="string",
    domain_group_moid="string",
    fc_adapter_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    fc_network_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    fc_qos_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    fc_zone_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    mod_time="string",
    moid="string",
    name="string",
    object_type="string",
    order=0,
    overridden_lists=["string"],
    owners=["string"],
    parents=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    permission_resources=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    persistent_bindings=False,
    pin_group_name="string",
    placements=[{
        "additional_properties": "string",
        "auto_pci_link": False,
        "auto_slot_id": False,
        "class_id": "string",
        "id": "string",
        "object_type": "string",
        "pci_link": 0,
        "pci_link_assignment_mode": "string",
        "switch_id": "string",
        "uplink": 0,
    }],
    profiles=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    san_connectivity_policies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    scp_vhbas=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    shared_scope="string",
    sp_vhbas=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    src_templates=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    static_wwpn_address="string",
    tags=[{
        "additional_properties": "string",
        "key": "string",
        "value": "string",
    }],
    template_actions=[{
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "string",
        "params": [{
            "additional_properties": "string",
            "class_id": "string",
            "name": "string",
            "object_type": "string",
            "value": "string",
        }],
        "type": "string",
    }],
    template_sync_errors=[{
        "additional_properties": "string",
        "class_id": "string",
        "message": "string",
        "object_type": "string",
        "type": "string",
    }],
    template_sync_status="string",
    type="string",
    version_contexts=[{
        "additional_properties": "string",
        "class_id": "string",
        "interested_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "marked_for_deletion": False,
        "nr_version": "string",
        "object_type": "string",
        "ref_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "timestamp": "string",
        "version_type": "string",
    }],
    vif_id=0,
    vnic_fc_if_id="string",
    wwpn="string",
    wwpn_address_type="string",
    wwpn_leases=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    wwpn_pools=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }])
const vnicFcIfResource = new intersight.VnicFcIf("vnicFcIfResource", {
    accountMoid: "string",
    additionalProperties: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    classId: "string",
    createTime: "string",
    domainGroupMoid: "string",
    fcAdapterPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    fcNetworkPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    fcQosPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    fcZonePolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    modTime: "string",
    moid: "string",
    name: "string",
    objectType: "string",
    order: 0,
    overriddenLists: ["string"],
    owners: ["string"],
    parents: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    permissionResources: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    persistentBindings: false,
    pinGroupName: "string",
    placements: [{
        additionalProperties: "string",
        autoPciLink: false,
        autoSlotId: false,
        classId: "string",
        id: "string",
        objectType: "string",
        pciLink: 0,
        pciLinkAssignmentMode: "string",
        switchId: "string",
        uplink: 0,
    }],
    profiles: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    sanConnectivityPolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    scpVhbas: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    sharedScope: "string",
    spVhbas: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    srcTemplates: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    staticWwpnAddress: "string",
    tags: [{
        additionalProperties: "string",
        key: "string",
        value: "string",
    }],
    templateActions: [{
        additionalProperties: "string",
        classId: "string",
        objectType: "string",
        params: [{
            additionalProperties: "string",
            classId: "string",
            name: "string",
            objectType: "string",
            value: "string",
        }],
        type: "string",
    }],
    templateSyncErrors: [{
        additionalProperties: "string",
        classId: "string",
        message: "string",
        objectType: "string",
        type: "string",
    }],
    templateSyncStatus: "string",
    type: "string",
    versionContexts: [{
        additionalProperties: "string",
        classId: "string",
        interestedMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        markedForDeletion: false,
        nrVersion: "string",
        objectType: "string",
        refMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        timestamp: "string",
        versionType: "string",
    }],
    vifId: 0,
    vnicFcIfId: "string",
    wwpn: "string",
    wwpnAddressType: "string",
    wwpnLeases: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    wwpnPools: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
});
type: intersight:VnicFcIf
properties:
    accountMoid: string
    additionalProperties: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    classId: string
    createTime: string
    domainGroupMoid: string
    fcAdapterPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    fcNetworkPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    fcQosPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    fcZonePolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    modTime: string
    moid: string
    name: string
    objectType: string
    order: 0
    overriddenLists:
        - string
    owners:
        - string
    parents:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    permissionResources:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    persistentBindings: false
    pinGroupName: string
    placements:
        - additionalProperties: string
          autoPciLink: false
          autoSlotId: false
          classId: string
          id: string
          objectType: string
          pciLink: 0
          pciLinkAssignmentMode: string
          switchId: string
          uplink: 0
    profiles:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    sanConnectivityPolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    scpVhbas:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    sharedScope: string
    spVhbas:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    srcTemplates:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    staticWwpnAddress: string
    tags:
        - additionalProperties: string
          key: string
          value: string
    templateActions:
        - additionalProperties: string
          classId: string
          objectType: string
          params:
            - additionalProperties: string
              classId: string
              name: string
              objectType: string
              value: string
          type: string
    templateSyncErrors:
        - additionalProperties: string
          classId: string
          message: string
          objectType: string
          type: string
    templateSyncStatus: string
    type: string
    versionContexts:
        - additionalProperties: string
          classId: string
          interestedMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          markedForDeletion: false
          nrVersion: string
          objectType: string
          refMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          timestamp: string
          versionType: string
    vifId: 0
    vnicFcIfId: string
    wwpn: string
    wwpnAddressType: string
    wwpnLeases:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    wwpnPools:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
VnicFcIf Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VnicFcIf resource accepts the following input properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
List<VnicFc If Ancestor> 
- (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.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- FcAdapter List<VnicPolicies Fc If Fc Adapter Policy> 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcNetwork List<VnicPolicies Fc If Fc Network Policy> 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcQos List<VnicPolicies Fc If Fc Qos Policy> 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcZone List<VnicPolicies Fc If Fc Zone Policy> 
- 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<VnicFc If Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources List<VnicFc If Permission Resource> 
- (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.
- PinGroup stringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- Placements
List<VnicFc If Placement> 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
List<VnicFc If Profile> 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- SanConnectivity List<VnicPolicies Fc If San Connectivity Policy> 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- ScpVhbas List<VnicFc If Scp Vhba> 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- SpVhbas List<VnicFc If Sp Vhba> 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- SrcTemplates List<VnicFc If Src Template> 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- StaticWwpn stringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
List<VnicFc If Tag> 
- This complex property has following sub-properties:
- TemplateActions List<VnicFc If Template Action> 
- This complex property has following sub-properties:
- TemplateSync List<VnicErrors Fc If Template Sync Error> 
- This complex property has following sub-properties:
- TemplateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- Type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- VersionContexts List<VnicFc If Version Context> 
- (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.
- VnicFc stringIf Id 
- Wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- WwpnAddress stringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- WwpnLeases List<VnicFc If Wwpn Lease> 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- WwpnPools List<VnicFc If Wwpn Pool> 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
[]VnicFc If Ancestor Args 
- (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.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- FcAdapter []VnicPolicies Fc If Fc Adapter Policy Args 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcNetwork []VnicPolicies Fc If Fc Network Policy Args 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcQos []VnicPolicies Fc If Fc Qos Policy Args 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcZone []VnicPolicies Fc If Fc Zone Policy Args 
- 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
[]VnicFc If Parent Args 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources []VnicFc If Permission Resource Args 
- (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.
- PinGroup stringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- Placements
[]VnicFc If Placement Args 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
[]VnicFc If Profile Args 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- SanConnectivity []VnicPolicies Fc If San Connectivity Policy Args 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- ScpVhbas []VnicFc If Scp Vhba Args 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- SpVhbas []VnicFc If Sp Vhba Args 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- SrcTemplates []VnicFc If Src Template Args 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- StaticWwpn stringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
[]VnicFc If Tag Args 
- This complex property has following sub-properties:
- TemplateActions []VnicFc If Template Action Args 
- This complex property has following sub-properties:
- TemplateSync []VnicErrors Fc If Template Sync Error Args 
- This complex property has following sub-properties:
- TemplateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- Type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- VersionContexts []VnicFc If Version Context Args 
- (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.
- VnicFc stringIf Id 
- Wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- WwpnAddress stringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- WwpnLeases []VnicFc If Wwpn Lease Args 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- WwpnPools []VnicFc If Wwpn Pool Args 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors
List<VnicFc If Ancestor> 
- (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.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- fcAdapter List<VnicPolicies Fc If Fc Adapter Policy> 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcNetwork List<VnicPolicies Fc If Fc Network Policy> 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcQos List<VnicPolicies Fc If Fc Qos Policy> 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcZone List<VnicPolicies Fc If Fc Zone Policy> 
- 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<VnicFc If Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources List<VnicFc If Permission Resource> 
- (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.
- pinGroup StringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
List<VnicFc If Placement> 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
List<VnicFc If Profile> 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- sanConnectivity List<VnicPolicies Fc If San Connectivity Policy> 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scpVhbas List<VnicFc If Scp Vhba> 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- spVhbas List<VnicFc If Sp Vhba> 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- srcTemplates List<VnicFc If Src Template> 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- staticWwpn StringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
List<VnicFc If Tag> 
- This complex property has following sub-properties:
- templateActions List<VnicFc If Template Action> 
- This complex property has following sub-properties:
- templateSync List<VnicErrors Fc If Template Sync Error> 
- This complex property has following sub-properties:
- templateSync StringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- type String
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- versionContexts List<VnicFc If Version Context> 
- (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.
- vnicFc StringIf Id 
- wwpn String
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpnAddress StringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- wwpnLeases List<VnicFc If Wwpn Lease> 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpnPools List<VnicFc If Wwpn Pool> 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- additionalProperties string
- ancestors
VnicFc If Ancestor[] 
- (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.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- fcAdapter VnicPolicies Fc If Fc Adapter Policy[] 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcNetwork VnicPolicies Fc If Fc Network Policy[] 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcQos VnicPolicies Fc If Fc Qos Policy[] 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcZone VnicPolicies Fc If Fc Zone Policy[] 
- 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
VnicFc If Parent[] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources VnicFc If Permission Resource[] 
- (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.
- pinGroup stringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
VnicFc If Placement[] 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
VnicFc If Profile[] 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- sanConnectivity VnicPolicies Fc If San Connectivity Policy[] 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scpVhbas VnicFc If Scp Vhba[] 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- spVhbas VnicFc If Sp Vhba[] 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- srcTemplates VnicFc If Src Template[] 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- staticWwpn stringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
VnicFc If Tag[] 
- This complex property has following sub-properties:
- templateActions VnicFc If Template Action[] 
- This complex property has following sub-properties:
- templateSync VnicErrors Fc If Template Sync Error[] 
- This complex property has following sub-properties:
- templateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- versionContexts VnicFc If Version Context[] 
- (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.
- vnicFc stringIf Id 
- wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpnAddress stringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- wwpnLeases VnicFc If Wwpn Lease[] 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpnPools VnicFc If Wwpn Pool[] 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- account_moid str
- (ReadOnly) The Account ID for this managed object.
- additional_properties str
- ancestors
Sequence[VnicFc If Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_id str
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_time str
- (ReadOnly) The time when this managed object was created.
- domain_group_ strmoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- fc_adapter_ Sequence[Vnicpolicies Fc If Fc Adapter Policy Args] 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_network_ Sequence[Vnicpolicies Fc If Fc Network Policy Args] 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_qos_ Sequence[Vnicpolicies Fc If Fc Qos Policy Args] 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_zone_ Sequence[Vnicpolicies Fc If Fc Zone Policy Args] 
- An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
- mod_time str
- (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the virtual fibre channel interface.
- object_type str
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- order float
- The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
- overridden_lists Sequence[str]
- (Array of schema.TypeString) -
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[VnicFc If Parent Args] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_resources Sequence[VnicFc If Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- persistent_bindings bool
- Enables retention of LUN ID associations in memory until they are manually cleared.
- pin_group_ strname 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
Sequence[VnicFc If Placement Args] 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Sequence[VnicFc If Profile Args] 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- san_connectivity_ Sequence[Vnicpolicies Fc If San Connectivity Policy Args] 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp_vhbas Sequence[VnicFc If Scp Vhba Args] 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- sp_vhbas Sequence[VnicFc If Sp Vhba Args] 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src_templates Sequence[VnicFc If Src Template Args] 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static_wwpn_ straddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
Sequence[VnicFc If Tag Args] 
- This complex property has following sub-properties:
- template_actions Sequence[VnicFc If Template Action Args] 
- This complex property has following sub-properties:
- template_sync_ Sequence[Vnicerrors Fc If Template Sync Error Args] 
- This complex property has following sub-properties:
- template_sync_ strstatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- type str
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- version_contexts Sequence[VnicFc If Version Context Args] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif_id float
- (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic_fc_ strif_ id 
- wwpn str
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn_address_ strtype 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- wwpn_leases Sequence[VnicFc If Wwpn Lease Args] 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn_pools Sequence[VnicFc If Wwpn Pool Args] 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- fcAdapter List<Property Map>Policies 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcNetwork List<Property Map>Policies 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcQos List<Property Map>Policies 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcZone List<Property Map>Policies 
- 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.
- pinGroup StringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements List<Property Map>
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles List<Property Map>
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- sanConnectivity List<Property Map>Policies 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- 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:
- staticWwpn StringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- List<Property Map>
- This complex property has following sub-properties:
- templateActions List<Property Map>
- This complex property has following sub-properties:
- templateSync List<Property Map>Errors 
- This complex property has following sub-properties:
- templateSync StringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- type String
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- 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.
- vnicFc StringIf Id 
- wwpn String
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpnAddress StringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- 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) -> VnicFcIffunc GetVnicFcIf(ctx *Context, name string, id IDInput, state *VnicFcIfState, opts ...ResourceOption) (*VnicFcIf, error)public static VnicFcIf Get(string name, Input<string> id, VnicFcIfState? state, CustomResourceOptions? opts = null)public static VnicFcIf get(String name, Output<String> id, VnicFcIfState state, CustomResourceOptions options)resources:  _:    type: intersight:VnicFcIf    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
List<VnicFc If Ancestor> 
- (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.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- FcAdapter List<VnicPolicies Fc If Fc Adapter Policy> 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcNetwork List<VnicPolicies Fc If Fc Network Policy> 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcQos List<VnicPolicies Fc If Fc Qos Policy> 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcZone List<VnicPolicies Fc If Fc Zone Policy> 
- 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<VnicFc If Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources List<VnicFc If Permission Resource> 
- (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.
- PinGroup stringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- Placements
List<VnicFc If Placement> 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
List<VnicFc If Profile> 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- SanConnectivity List<VnicPolicies Fc If San Connectivity Policy> 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- ScpVhbas List<VnicFc If Scp Vhba> 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- SpVhbas List<VnicFc If Sp Vhba> 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- SrcTemplates List<VnicFc If Src Template> 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- StaticWwpn stringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
List<VnicFc If Tag> 
- This complex property has following sub-properties:
- TemplateActions List<VnicFc If Template Action> 
- This complex property has following sub-properties:
- TemplateSync List<VnicErrors Fc If Template Sync Error> 
- This complex property has following sub-properties:
- TemplateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- Type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- VersionContexts List<VnicFc If Version Context> 
- (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.
- VnicFc stringIf Id 
- Wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- WwpnAddress stringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- WwpnLeases List<VnicFc If Wwpn Lease> 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- WwpnPools List<VnicFc If Wwpn Pool> 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
[]VnicFc If Ancestor Args 
- (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.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- FcAdapter []VnicPolicies Fc If Fc Adapter Policy Args 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcNetwork []VnicPolicies Fc If Fc Network Policy Args 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcQos []VnicPolicies Fc If Fc Qos Policy Args 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- FcZone []VnicPolicies Fc If Fc Zone Policy Args 
- 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
[]VnicFc If Parent Args 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources []VnicFc If Permission Resource Args 
- (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.
- PinGroup stringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- Placements
[]VnicFc If Placement Args 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- Profiles
[]VnicFc If Profile Args 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- SanConnectivity []VnicPolicies Fc If San Connectivity Policy Args 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- ScpVhbas []VnicFc If Scp Vhba Args 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- SpVhbas []VnicFc If Sp Vhba Args 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- SrcTemplates []VnicFc If Src Template Args 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- StaticWwpn stringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
[]VnicFc If Tag Args 
- This complex property has following sub-properties:
- TemplateActions []VnicFc If Template Action Args 
- This complex property has following sub-properties:
- TemplateSync []VnicErrors Fc If Template Sync Error Args 
- This complex property has following sub-properties:
- TemplateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- Type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- VersionContexts []VnicFc If Version Context Args 
- (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.
- VnicFc stringIf Id 
- Wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- WwpnAddress stringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- WwpnLeases []VnicFc If Wwpn Lease Args 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- WwpnPools []VnicFc If Wwpn Pool Args 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors
List<VnicFc If Ancestor> 
- (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.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- fcAdapter List<VnicPolicies Fc If Fc Adapter Policy> 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcNetwork List<VnicPolicies Fc If Fc Network Policy> 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcQos List<VnicPolicies Fc If Fc Qos Policy> 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcZone List<VnicPolicies Fc If Fc Zone Policy> 
- 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<VnicFc If Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources List<VnicFc If Permission Resource> 
- (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.
- pinGroup StringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
List<VnicFc If Placement> 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
List<VnicFc If Profile> 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- sanConnectivity List<VnicPolicies Fc If San Connectivity Policy> 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scpVhbas List<VnicFc If Scp Vhba> 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- spVhbas List<VnicFc If Sp Vhba> 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- srcTemplates List<VnicFc If Src Template> 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- staticWwpn StringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
List<VnicFc If Tag> 
- This complex property has following sub-properties:
- templateActions List<VnicFc If Template Action> 
- This complex property has following sub-properties:
- templateSync List<VnicErrors Fc If Template Sync Error> 
- This complex property has following sub-properties:
- templateSync StringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- type String
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- versionContexts List<VnicFc If Version Context> 
- (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.
- vnicFc StringIf Id 
- wwpn String
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpnAddress StringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- wwpnLeases List<VnicFc If Wwpn Lease> 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpnPools List<VnicFc If Wwpn Pool> 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- additionalProperties string
- ancestors
VnicFc If Ancestor[] 
- (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.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- fcAdapter VnicPolicies Fc If Fc Adapter Policy[] 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcNetwork VnicPolicies Fc If Fc Network Policy[] 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcQos VnicPolicies Fc If Fc Qos Policy[] 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcZone VnicPolicies Fc If Fc Zone Policy[] 
- 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
VnicFc If Parent[] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources VnicFc If Permission Resource[] 
- (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.
- pinGroup stringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
VnicFc If Placement[] 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
VnicFc If Profile[] 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- sanConnectivity VnicPolicies Fc If San Connectivity Policy[] 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scpVhbas VnicFc If Scp Vhba[] 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- spVhbas VnicFc If Sp Vhba[] 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- srcTemplates VnicFc If Src Template[] 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- staticWwpn stringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
VnicFc If Tag[] 
- This complex property has following sub-properties:
- templateActions VnicFc If Template Action[] 
- This complex property has following sub-properties:
- templateSync VnicErrors Fc If Template Sync Error[] 
- This complex property has following sub-properties:
- templateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- type string
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- versionContexts VnicFc If Version Context[] 
- (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.
- vnicFc stringIf Id 
- wwpn string
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpnAddress stringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- wwpnLeases VnicFc If Wwpn Lease[] 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpnPools VnicFc If Wwpn Pool[] 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- account_moid str
- (ReadOnly) The Account ID for this managed object.
- additional_properties str
- ancestors
Sequence[VnicFc If Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_id str
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_time str
- (ReadOnly) The time when this managed object was created.
- domain_group_ strmoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- fc_adapter_ Sequence[Vnicpolicies Fc If Fc Adapter Policy Args] 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_network_ Sequence[Vnicpolicies Fc If Fc Network Policy Args] 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_qos_ Sequence[Vnicpolicies Fc If Fc Qos Policy Args] 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fc_zone_ Sequence[Vnicpolicies Fc If Fc Zone Policy Args] 
- An array of relationships to fabricFcZonePolicy resources. This complex property has following sub-properties:
- mod_time str
- (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the virtual fibre channel interface.
- object_type str
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- order float
- The order in which the virtual interface is brought up. The order assigned to an interface should be unique for all the Ethernet and Fibre-Channel interfaces on each PCI link on a VIC adapter. The order should start from zero with no overlaps. The maximum value of PCI order is limited by the number of virtual interfaces (Ethernet and Fibre-Channel) on each PCI link on a VIC adapter. All VIC adapters have a single PCI link except VIC 1340, VIC 1380 and VIC 1385 which have two.
- overridden_lists Sequence[str]
- (Array of schema.TypeString) -
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[VnicFc If Parent Args] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_resources Sequence[VnicFc If Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- persistent_bindings bool
- Enables retention of LUN ID associations in memory until they are manually cleared.
- pin_group_ strname 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements
Sequence[VnicFc If Placement Args] 
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles
Sequence[VnicFc If Profile Args] 
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- san_connectivity_ Sequence[Vnicpolicies Fc If San Connectivity Policy Args] 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- scp_vhbas Sequence[VnicFc If Scp Vhba Args] 
- (ReadOnly) A reference to a vnicFcIf resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- sp_vhbas Sequence[VnicFc If Sp Vhba Args] 
- (ReadOnly) An array of relationships to vnicFcIf resources. This complex property has following sub-properties:
- src_templates Sequence[VnicFc If Src Template Args] 
- A reference to a vnicVhbaTemplate resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- static_wwpn_ straddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- 
Sequence[VnicFc If Tag Args] 
- This complex property has following sub-properties:
- template_actions Sequence[VnicFc If Template Action Args] 
- This complex property has following sub-properties:
- template_sync_ Sequence[Vnicerrors Fc If Template Sync Error Args] 
- This complex property has following sub-properties:
- template_sync_ strstatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- type str
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- version_contexts Sequence[VnicFc If Version Context Args] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vif_id float
- (ReadOnly) This should be the same as the channel number of the vfc created on switch in order to set up the data path. The property is applicable only for FI attached servers where a vfc is created on the switch for every vHBA.
- vnic_fc_ strif_ id 
- wwpn str
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpn_address_ strtype 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- wwpn_leases Sequence[VnicFc If Wwpn Lease Args] 
- A reference to a fcpoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- wwpn_pools Sequence[VnicFc If Wwpn Pool Args] 
- A reference to a fcpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- fcAdapter List<Property Map>Policies 
- A reference to a vnicFcAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcNetwork List<Property Map>Policies 
- A reference to a vnicFcNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcQos List<Property Map>Policies 
- A reference to a vnicFcQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fcZone List<Property Map>Policies 
- 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.
- pinGroup StringName 
- Pingroup name associated to vfc for static pinning. SCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vfc traffic.
- placements List<Property Map>
- Placement Settings for the virtual interface. This complex property has following sub-properties:
- profiles List<Property Map>
- A reference to a policyAbstractConfigProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- sanConnectivity List<Property Map>Policies 
- A reference to a vnicSanConnectivityPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- 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:
- staticWwpn StringAddress 
- The WWPN address must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.Allowed ranges are 20:00:00:00:00:00:00:00 to 20:FF:FF:FF:FF:FF:FF:FF or from 50:00:00:00:00:00:00:00 to 5F:FF:FF:FF:FF:FF:FF:FF.To ensure uniqueness of WWN's in the SAN fabric, you are strongly encouraged to use the WWN prefix - 20:00:00:25:B5:xx:xx:xx.
- List<Property Map>
- This complex property has following sub-properties:
- templateActions List<Property Map>
- This complex property has following sub-properties:
- templateSync List<Property Map>Errors 
- This complex property has following sub-properties:
- templateSync StringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* None- The Enum value represents that the object is not attached to any template.*OK- The Enum value represents that the object values are in sync with attached template.*Scheduled- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync- The Enum value represents that the object values are not in sync with attached template.
- type String
- VHBA Type configuration for SAN Connectivity Policy. This configuration is supported only on Cisco VIC 14XX series and higher series of adapters.* fc-initiator- The default value set for vHBA Type Configuration. Fc-initiator specifies vHBA as a consumer of storage. Enables SCSI commands to transfer data and status information between host and target storage systems.*fc-nvme-initiator- Fc-nvme-initiator specifies vHBA as a consumer of storage. Enables NVMe-based message commands to transfer data and status information between host and target storage systems.*fc-nvme-target- Fc-nvme-target specifies vHBA as a provider of storage volumes to initiators. Enables NVMe-based message commands to transfer data and status information between host and target storage systems. Currently tech-preview, only enabled with an asynchronous driver.*fc-target- Fc-target specifies vHBA as a provider of storage volumes to initiators. Enables SCSI commands to transfer data and status information between host and target storage systems. fc-target is enabled only with an asynchronous driver.
- 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.
- vnicFc StringIf Id 
- wwpn String
- (ReadOnly) The WWPN address that is assigned to the vHBA based on the wwn pool that has been assigned to the SAN Connectivity Policy.
- wwpnAddress StringType 
- Type of allocation selected to assign a WWPN address to the vhba.* POOL- The user selects a pool from which the mac/wwn address will be leased for the Virtual Interface.*STATIC- The user assigns a static mac/wwn address for the Virtual Interface.
- 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 string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfFcAdapterPolicy, VnicFcIfFcAdapterPolicyArgs            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfFcNetworkPolicy, VnicFcIfFcNetworkPolicyArgs            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfFcQosPolicy, VnicFcIfFcQosPolicyArgs            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfFcZonePolicy, VnicFcIfFcZonePolicyArgs            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfParent, VnicFcIfParentArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfPermissionResource, VnicFcIfPermissionResourceArgs          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfPlacement, VnicFcIfPlacementArgs        
- AdditionalProperties string
- AutoPci boolLink 
- Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
- AutoSlot boolId 
- Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
- ClassId string
- Id string
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PciLink 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.
- PciLink stringAssignment Mode 
- If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom- The user needs to specify the PCI Link manually.*Load-Balanced- The system will uniformly distribute the interfaces across the PCI Links.*None- Assignment is not applicable and will be set when the AutoPciLink is set to true.
- SwitchId string
- The fabric port to which the vNICs will be associated.* None- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A- Fabric A of the FI cluster.*B- Fabric B of the FI cluster.
- Uplink double
- Adapter port on which the virtual interface will be created.
- AdditionalProperties string
- AutoPci boolLink 
- Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
- AutoSlot boolId 
- Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
- ClassId string
- Id string
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PciLink 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.
- PciLink stringAssignment Mode 
- If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom- The user needs to specify the PCI Link manually.*Load-Balanced- The system will uniformly distribute the interfaces across the PCI Links.*None- Assignment is not applicable and will be set when the AutoPciLink is set to true.
- SwitchId string
- The fabric port to which the vNICs will be associated.* None- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A- Fabric A of the FI cluster.*B- Fabric B of the FI cluster.
- Uplink float64
- Adapter port on which the virtual interface will be created.
- additionalProperties String
- autoPci BooleanLink 
- Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
- autoSlot BooleanId 
- Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
- classId String
- id String
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- pciLink 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.
- pciLink StringAssignment Mode 
- If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom- The user needs to specify the PCI Link manually.*Load-Balanced- The system will uniformly distribute the interfaces across the PCI Links.*None- Assignment is not applicable and will be set when the AutoPciLink is set to true.
- switchId String
- The fabric port to which the vNICs will be associated.* None- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A- Fabric A of the FI cluster.*B- Fabric B of the FI cluster.
- uplink Double
- Adapter port on which the virtual interface will be created.
- additionalProperties string
- autoPci booleanLink 
- Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
- autoSlot booleanId 
- Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
- classId string
- id string
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- pciLink 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.
- pciLink stringAssignment Mode 
- If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom- The user needs to specify the PCI Link manually.*Load-Balanced- The system will uniformly distribute the interfaces across the PCI Links.*None- Assignment is not applicable and will be set when the AutoPciLink is set to true.
- switchId string
- The fabric port to which the vNICs will be associated.* None- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A- Fabric A of the FI cluster.*B- Fabric B of the FI cluster.
- uplink number
- Adapter port on which the virtual interface will be created.
- additional_properties str
- auto_pci_ boollink 
- Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
- auto_slot_ boolid 
- Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
- class_id str
- id str
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- pci_link float
- The PCI Link used as transport for the virtual interface. PCI Link is only applicable for select Cisco UCS VIC 1300 models (UCSC-PCIE-C40Q-03, UCSB-MLOM-40G-03, UCSB-VIC-M83-8P) that support two PCI links. The value, if specified, for any other VIC model will be ignored.
- pci_link_ strassignment_ mode 
- If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom- The user needs to specify the PCI Link manually.*Load-Balanced- The system will uniformly distribute the interfaces across the PCI Links.*None- Assignment is not applicable and will be set when the AutoPciLink is set to true.
- switch_id str
- The fabric port to which the vNICs will be associated.* None- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A- Fabric A of the FI cluster.*B- Fabric B of the FI cluster.
- uplink float
- Adapter port on which the virtual interface will be created.
- additionalProperties String
- autoPci BooleanLink 
- Enable or disable automatic assignment of the PCI Link in a dual-link adapter. This option applies only to 13xx series VICs that support dual-link. If enabled, the system determines the placement of the vNIC/vHBA on either of the PCI Links.
- autoSlot BooleanId 
- Enable or disable automatic assignment of the VIC slot ID. If enabled and the server has only one VIC, the same VIC is chosen for all the vNICs. If enabled and the server has multiple VICs, the vNIC/vHBA are deployed on the first VIC. The Slot ID determines the first VIC. MLOM is the first Slot ID and the ID increments to 2, 3, and so on.
- classId String
- id String
- PCIe Slot where the VIC adapter is installed. Supported values are (1-15) and MLOM.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- pciLink 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.
- pciLink StringAssignment Mode 
- If the autoPciLink is disabled, the user can either choose to place the vNICs manually or based on a policy.If the autoPciLink is enabled, it will be set to None.* Custom- The user needs to specify the PCI Link manually.*Load-Balanced- The system will uniformly distribute the interfaces across the PCI Links.*None- Assignment is not applicable and will be set when the AutoPciLink is set to true.
- switchId String
- The fabric port to which the vNICs will be associated.* None- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A- Fabric A of the FI cluster.*B- Fabric B of the FI cluster.
- uplink Number
- Adapter port on which the virtual interface will be created.
VnicFcIfProfile, VnicFcIfProfileArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfSanConnectivityPolicy, VnicFcIfSanConnectivityPolicyArgs            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfScpVhba, VnicFcIfScpVhbaArgs          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfSpVhba, VnicFcIfSpVhbaArgs          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfSrcTemplate, VnicFcIfSrcTemplateArgs          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfTag, VnicFcIfTagArgs        
- AdditionalProperties string
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- AdditionalProperties string
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additionalProperties String
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additionalProperties string
- key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_properties str
- key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additionalProperties String
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
VnicFcIfTemplateAction, VnicFcIfTemplateActionArgs          
- AdditionalProperties string
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
List<VnicFc If Template Action Param> 
- This complex property has following sub-properties:
- Type string
- The action type to be executed.* Sync- The action to merge values from the template to its derived objects.*Deploy- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach- The action to detach the current derived object from its attached template.*Attach- The action to attach the current object to the specified template.
- AdditionalProperties string
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
[]VnicFc If Template Action Param 
- This complex property has following sub-properties:
- Type string
- The action type to be executed.* Sync- The action to merge values from the template to its derived objects.*Deploy- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach- The action to detach the current derived object from its attached template.*Attach- The action to attach the current object to the specified template.
- additionalProperties String
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
List<VnicFc If Template Action Param> 
- This complex property has following sub-properties:
- type String
- The action type to be executed.* Sync- The action to merge values from the template to its derived objects.*Deploy- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach- The action to detach the current derived object from its attached template.*Attach- The action to attach the current object to the specified template.
- additionalProperties string
- classId string
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
VnicFc If Template Action Param[] 
- This complex property has following sub-properties:
- type string
- The action type to be executed.* Sync- The action to merge values from the template to its derived objects.*Deploy- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach- The action to detach the current derived object from its attached template.*Attach- The action to attach the current object to the specified template.
- additional_properties str
- class_id str
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
Sequence[VnicFc If Template Action Param] 
- This complex property has following sub-properties:
- type str
- The action type to be executed.* Sync- The action to merge values from the template to its derived objects.*Deploy- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach- The action to detach the current derived object from its attached template.*Attach- The action to attach the current object to the specified template.
- additionalProperties String
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params List<Property Map>
- This complex property has following sub-properties:
- type String
- The action type to be executed.* Sync- The action to merge values from the template to its derived objects.*Deploy- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach- The action to detach the current derived object from its attached template.*Attach- The action to attach the current object to the specified template.
VnicFcIfTemplateActionParam, VnicFcIfTemplateActionParamArgs            
- AdditionalProperties string
- ClassId string
- Name string
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None- The default parameter that implies that no action parameter is required for the template action.*SyncType- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList- The parameter applicable in attach operation indicating the configurations that must override the template configurations.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- AdditionalProperties string
- ClassId string
- Name string
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None- The default parameter that implies that no action parameter is required for the template action.*SyncType- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList- The parameter applicable in attach operation indicating the configurations that must override the template configurations.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- additionalProperties String
- classId String
- name String
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None- The default parameter that implies that no action parameter is required for the template action.*SyncType- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList- The parameter applicable in attach operation indicating the configurations that must override the template configurations.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- additionalProperties string
- classId string
- name string
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None- The default parameter that implies that no action parameter is required for the template action.*SyncType- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList- The parameter applicable in attach operation indicating the configurations that must override the template configurations.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value string
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- additional_properties str
- class_id str
- name str
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None- The default parameter that implies that no action parameter is required for the template action.*SyncType- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList- The parameter applicable in attach operation indicating the configurations that must override the template configurations.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- additionalProperties String
- classId String
- name String
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None- The default parameter that implies that no action parameter is required for the template action.*SyncType- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList- The parameter applicable in attach operation indicating the configurations that must override the template configurations.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
VnicFcIfTemplateSyncError, VnicFcIfTemplateSyncErrorArgs            
- AdditionalProperties string
- ClassId string
- Message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Type string
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- AdditionalProperties string
- ClassId string
- Message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Type string
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- additionalProperties String
- classId String
- message String
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type String
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- additionalProperties string
- classId string
- message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type string
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- additional_properties str
- class_id str
- message str
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type str
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- additionalProperties String
- classId String
- message String
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type String
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
VnicFcIfVersionContext, VnicFcIfVersionContextArgs          
- AdditionalProperties string
- ClassId string
- InterestedMos List<VnicFc If Version Context Interested Mo> 
- This complex property has following sub-properties:
- MarkedFor boolDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos List<VnicFc If Version Context Ref Mo> 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- VersionType 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 string
- ClassId string
- InterestedMos []VnicFc If Version Context Interested Mo 
- This complex property has following sub-properties:
- MarkedFor boolDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos []VnicFc If Version Context Ref Mo 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- VersionType 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 String
- classId String
- interestedMos List<VnicFc If Version Context Interested Mo> 
- This complex property has following sub-properties:
- markedFor BooleanDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos List<VnicFc If Version Context Ref Mo> 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- versionType 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 string
- classId string
- interestedMos VnicFc If Version Context Interested Mo[] 
- This complex property has following sub-properties:
- markedFor booleanDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos VnicFc If Version Context Ref Mo[] 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- versionType string
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additional_properties str
- class_id str
- interested_mos Sequence[VnicFc If Version Context Interested Mo] 
- This complex property has following sub-properties:
- marked_for_ booldeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_version str
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_mos Sequence[VnicFc If Version Context Ref Mo] 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_type str
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additionalProperties String
- classId String
- interestedMos List<Property Map>
- This complex property has following sub-properties:
- markedFor BooleanDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos List<Property Map>
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- versionType 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 string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfVersionContextRefMo, VnicFcIfVersionContextRefMoArgs              
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfWwpnLease, VnicFcIfWwpnLeaseArgs          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicFcIfWwpnPool, VnicFcIfWwpnPoolArgs          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_vnic_fc_if can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/vnicFcIf:VnicFcIf example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the intersightTerraform Provider.