1. Packages
  2. Intersight Provider
  3. API Docs
  4. CapabilityEquipmentSlotArray
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

intersight.CapabilityEquipmentSlotArray

Explore with Pulumi AI

intersight logo
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

    Type to represent additional switch specific capabilities.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const capabilityEquipmentSlotArray1 = new intersight.CapabilityEquipmentSlotArray("capabilityEquipmentSlotArray1", {
        height: 4.4,
        pid: "UCS-FI-6454",
        sku: "CON-NCF4P-FI6454CH",
        width: 43.9,
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    capability_equipment_slot_array1 = intersight.CapabilityEquipmentSlotArray("capabilityEquipmentSlotArray1",
        height=4.4,
        pid="UCS-FI-6454",
        sku="CON-NCF4P-FI6454CH",
        width=43.9)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := intersight.NewCapabilityEquipmentSlotArray(ctx, "capabilityEquipmentSlotArray1", &intersight.CapabilityEquipmentSlotArrayArgs{
    			Height: pulumi.Float64(4.4),
    			Pid:    pulumi.String("UCS-FI-6454"),
    			Sku:    pulumi.String("CON-NCF4P-FI6454CH"),
    			Width:  pulumi.Float64(43.9),
    		})
    		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 capabilityEquipmentSlotArray1 = new Intersight.CapabilityEquipmentSlotArray("capabilityEquipmentSlotArray1", new()
        {
            Height = 4.4,
            Pid = "UCS-FI-6454",
            Sku = "CON-NCF4P-FI6454CH",
            Width = 43.9,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.CapabilityEquipmentSlotArray;
    import com.pulumi.intersight.CapabilityEquipmentSlotArrayArgs;
    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) {
            var capabilityEquipmentSlotArray1 = new CapabilityEquipmentSlotArray("capabilityEquipmentSlotArray1", CapabilityEquipmentSlotArrayArgs.builder()
                .height(4.4)
                .pid("UCS-FI-6454")
                .sku("CON-NCF4P-FI6454CH")
                .width(43.9)
                .build());
    
        }
    }
    
    resources:
      capabilityEquipmentSlotArray1:
        type: intersight:CapabilityEquipmentSlotArray
        properties:
          height: 4.4
          pid: UCS-FI-6454
          sku: CON-NCF4P-FI6454CH
          width: 43.9
    

    Create CapabilityEquipmentSlotArray Resource

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

    Constructor syntax

    new CapabilityEquipmentSlotArray(name: string, args?: CapabilityEquipmentSlotArrayArgs, opts?: CustomResourceOptions);
    @overload
    def CapabilityEquipmentSlotArray(resource_name: str,
                                     args: Optional[CapabilityEquipmentSlotArrayArgs] = None,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def CapabilityEquipmentSlotArray(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     account_moid: Optional[str] = None,
                                     additional_properties: Optional[str] = None,
                                     ancestors: Optional[Sequence[CapabilityEquipmentSlotArrayAncestorArgs]] = None,
                                     capability_equipment_slot_array_id: Optional[str] = None,
                                     class_id: Optional[str] = None,
                                     create_time: Optional[str] = None,
                                     domain_group_moid: Optional[str] = None,
                                     first_index: Optional[float] = None,
                                     height: Optional[float] = None,
                                     horizontal_start_offset: Optional[float] = None,
                                     inline_group_separation: Optional[float] = None,
                                     inline_group_size: Optional[float] = None,
                                     inline_offset: Optional[float] = None,
                                     location: Optional[str] = None,
                                     mod_time: Optional[str] = None,
                                     moid: Optional[str] = None,
                                     name: Optional[str] = None,
                                     number_of_slots: Optional[float] = None,
                                     object_type: Optional[str] = None,
                                     orientation: Optional[str] = None,
                                     owners: Optional[Sequence[str]] = None,
                                     parents: Optional[Sequence[CapabilityEquipmentSlotArrayParentArgs]] = None,
                                     permission_resources: Optional[Sequence[CapabilityEquipmentSlotArrayPermissionResourceArgs]] = None,
                                     pid: Optional[str] = None,
                                     selector: Optional[str] = None,
                                     shared_scope: Optional[str] = None,
                                     sku: Optional[str] = None,
                                     slots_per_line: Optional[float] = None,
                                     tags: Optional[Sequence[CapabilityEquipmentSlotArrayTagArgs]] = None,
                                     transverse_group_separation: Optional[float] = None,
                                     transverse_group_size: Optional[float] = None,
                                     transverse_offset: Optional[float] = None,
                                     version_contexts: Optional[Sequence[CapabilityEquipmentSlotArrayVersionContextArgs]] = None,
                                     vertical_start_offset: Optional[float] = None,
                                     vid: Optional[str] = None,
                                     width: Optional[float] = None)
    func NewCapabilityEquipmentSlotArray(ctx *Context, name string, args *CapabilityEquipmentSlotArrayArgs, opts ...ResourceOption) (*CapabilityEquipmentSlotArray, error)
    public CapabilityEquipmentSlotArray(string name, CapabilityEquipmentSlotArrayArgs? args = null, CustomResourceOptions? opts = null)
    public CapabilityEquipmentSlotArray(String name, CapabilityEquipmentSlotArrayArgs args)
    public CapabilityEquipmentSlotArray(String name, CapabilityEquipmentSlotArrayArgs args, CustomResourceOptions options)
    
    type: intersight:CapabilityEquipmentSlotArray
    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 CapabilityEquipmentSlotArrayArgs
    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 CapabilityEquipmentSlotArrayArgs
    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 CapabilityEquipmentSlotArrayArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CapabilityEquipmentSlotArrayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CapabilityEquipmentSlotArrayArgs
    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 capabilityEquipmentSlotArrayResource = new Intersight.CapabilityEquipmentSlotArray("capabilityEquipmentSlotArrayResource", new()
    {
        AccountMoid = "string",
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.CapabilityEquipmentSlotArrayAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        CapabilityEquipmentSlotArrayId = "string",
        ClassId = "string",
        CreateTime = "string",
        DomainGroupMoid = "string",
        FirstIndex = 0,
        Height = 0,
        HorizontalStartOffset = 0,
        InlineGroupSeparation = 0,
        InlineGroupSize = 0,
        InlineOffset = 0,
        Location = "string",
        ModTime = "string",
        Moid = "string",
        Name = "string",
        NumberOfSlots = 0,
        ObjectType = "string",
        Orientation = "string",
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.CapabilityEquipmentSlotArrayParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.CapabilityEquipmentSlotArrayPermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Pid = "string",
        Selector = "string",
        SharedScope = "string",
        Sku = "string",
        SlotsPerLine = 0,
        Tags = new[]
        {
            new Intersight.Inputs.CapabilityEquipmentSlotArrayTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        TransverseGroupSeparation = 0,
        TransverseGroupSize = 0,
        TransverseOffset = 0,
        VersionContexts = new[]
        {
            new Intersight.Inputs.CapabilityEquipmentSlotArrayVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.CapabilityEquipmentSlotArrayVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.CapabilityEquipmentSlotArrayVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
        VerticalStartOffset = 0,
        Vid = "string",
        Width = 0,
    });
    
    example, err := intersight.NewCapabilityEquipmentSlotArray(ctx, "capabilityEquipmentSlotArrayResource", &intersight.CapabilityEquipmentSlotArrayArgs{
    	AccountMoid:          pulumi.String("string"),
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.CapabilityEquipmentSlotArrayAncestorArray{
    		&intersight.CapabilityEquipmentSlotArrayAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	CapabilityEquipmentSlotArrayId: pulumi.String("string"),
    	ClassId:                        pulumi.String("string"),
    	CreateTime:                     pulumi.String("string"),
    	DomainGroupMoid:                pulumi.String("string"),
    	FirstIndex:                     pulumi.Float64(0),
    	Height:                         pulumi.Float64(0),
    	HorizontalStartOffset:          pulumi.Float64(0),
    	InlineGroupSeparation:          pulumi.Float64(0),
    	InlineGroupSize:                pulumi.Float64(0),
    	InlineOffset:                   pulumi.Float64(0),
    	Location:                       pulumi.String("string"),
    	ModTime:                        pulumi.String("string"),
    	Moid:                           pulumi.String("string"),
    	Name:                           pulumi.String("string"),
    	NumberOfSlots:                  pulumi.Float64(0),
    	ObjectType:                     pulumi.String("string"),
    	Orientation:                    pulumi.String("string"),
    	Owners: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parents: intersight.CapabilityEquipmentSlotArrayParentArray{
    		&intersight.CapabilityEquipmentSlotArrayParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.CapabilityEquipmentSlotArrayPermissionResourceArray{
    		&intersight.CapabilityEquipmentSlotArrayPermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Pid:          pulumi.String("string"),
    	Selector:     pulumi.String("string"),
    	SharedScope:  pulumi.String("string"),
    	Sku:          pulumi.String("string"),
    	SlotsPerLine: pulumi.Float64(0),
    	Tags: intersight.CapabilityEquipmentSlotArrayTagArray{
    		&intersight.CapabilityEquipmentSlotArrayTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	TransverseGroupSeparation: pulumi.Float64(0),
    	TransverseGroupSize:       pulumi.Float64(0),
    	TransverseOffset:          pulumi.Float64(0),
    	VersionContexts: intersight.CapabilityEquipmentSlotArrayVersionContextArray{
    		&intersight.CapabilityEquipmentSlotArrayVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.CapabilityEquipmentSlotArrayVersionContextInterestedMoArray{
    				&intersight.CapabilityEquipmentSlotArrayVersionContextInterestedMoArgs{
    					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.CapabilityEquipmentSlotArrayVersionContextRefMoArray{
    				&intersight.CapabilityEquipmentSlotArrayVersionContextRefMoArgs{
    					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"),
    		},
    	},
    	VerticalStartOffset: pulumi.Float64(0),
    	Vid:                 pulumi.String("string"),
    	Width:               pulumi.Float64(0),
    })
    
    var capabilityEquipmentSlotArrayResource = new CapabilityEquipmentSlotArray("capabilityEquipmentSlotArrayResource", CapabilityEquipmentSlotArrayArgs.builder()
        .accountMoid("string")
        .additionalProperties("string")
        .ancestors(CapabilityEquipmentSlotArrayAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .capabilityEquipmentSlotArrayId("string")
        .classId("string")
        .createTime("string")
        .domainGroupMoid("string")
        .firstIndex(0)
        .height(0)
        .horizontalStartOffset(0)
        .inlineGroupSeparation(0)
        .inlineGroupSize(0)
        .inlineOffset(0)
        .location("string")
        .modTime("string")
        .moid("string")
        .name("string")
        .numberOfSlots(0)
        .objectType("string")
        .orientation("string")
        .owners("string")
        .parents(CapabilityEquipmentSlotArrayParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(CapabilityEquipmentSlotArrayPermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .pid("string")
        .selector("string")
        .sharedScope("string")
        .sku("string")
        .slotsPerLine(0)
        .tags(CapabilityEquipmentSlotArrayTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .transverseGroupSeparation(0)
        .transverseGroupSize(0)
        .transverseOffset(0)
        .versionContexts(CapabilityEquipmentSlotArrayVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(CapabilityEquipmentSlotArrayVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(CapabilityEquipmentSlotArrayVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .verticalStartOffset(0)
        .vid("string")
        .width(0)
        .build());
    
    capability_equipment_slot_array_resource = intersight.CapabilityEquipmentSlotArray("capabilityEquipmentSlotArrayResource",
        account_moid="string",
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        capability_equipment_slot_array_id="string",
        class_id="string",
        create_time="string",
        domain_group_moid="string",
        first_index=0,
        height=0,
        horizontal_start_offset=0,
        inline_group_separation=0,
        inline_group_size=0,
        inline_offset=0,
        location="string",
        mod_time="string",
        moid="string",
        name="string",
        number_of_slots=0,
        object_type="string",
        orientation="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",
        }],
        pid="string",
        selector="string",
        shared_scope="string",
        sku="string",
        slots_per_line=0,
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        transverse_group_separation=0,
        transverse_group_size=0,
        transverse_offset=0,
        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",
        }],
        vertical_start_offset=0,
        vid="string",
        width=0)
    
    const capabilityEquipmentSlotArrayResource = new intersight.CapabilityEquipmentSlotArray("capabilityEquipmentSlotArrayResource", {
        accountMoid: "string",
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        capabilityEquipmentSlotArrayId: "string",
        classId: "string",
        createTime: "string",
        domainGroupMoid: "string",
        firstIndex: 0,
        height: 0,
        horizontalStartOffset: 0,
        inlineGroupSeparation: 0,
        inlineGroupSize: 0,
        inlineOffset: 0,
        location: "string",
        modTime: "string",
        moid: "string",
        name: "string",
        numberOfSlots: 0,
        objectType: "string",
        orientation: "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",
        }],
        pid: "string",
        selector: "string",
        sharedScope: "string",
        sku: "string",
        slotsPerLine: 0,
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        transverseGroupSeparation: 0,
        transverseGroupSize: 0,
        transverseOffset: 0,
        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",
        }],
        verticalStartOffset: 0,
        vid: "string",
        width: 0,
    });
    
    type: intersight:CapabilityEquipmentSlotArray
    properties:
        accountMoid: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        capabilityEquipmentSlotArrayId: string
        classId: string
        createTime: string
        domainGroupMoid: string
        firstIndex: 0
        height: 0
        horizontalStartOffset: 0
        inlineGroupSeparation: 0
        inlineGroupSize: 0
        inlineOffset: 0
        location: string
        modTime: string
        moid: string
        name: string
        numberOfSlots: 0
        objectType: string
        orientation: 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
        pid: string
        selector: string
        sharedScope: string
        sku: string
        slotsPerLine: 0
        tags:
            - additionalProperties: string
              key: string
              value: string
        transverseGroupSeparation: 0
        transverseGroupSize: 0
        transverseOffset: 0
        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
        verticalStartOffset: 0
        vid: string
        width: 0
    

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

    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<CapabilityEquipmentSlotArrayAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    CapabilityEquipmentSlotArrayId string
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FirstIndex double
    First Index information for a Switch/Fabric-Interconnect hardware.
    Height double
    Height information for a Switch/Fabric-Interconnect hardware.
    HorizontalStartOffset double
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    InlineGroupSeparation double
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    InlineGroupSize double
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    InlineOffset double
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    Location string
    Location information for a Switch/Fabric-Interconnect hardware.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    An unique identifer for a capability descriptor.
    NumberOfSlots double
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Orientation string
    Orientation information for a Switch/Fabric-Interconnect hardware.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<CapabilityEquipmentSlotArrayParent>
    (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<CapabilityEquipmentSlotArrayPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Pid string
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    Selector string
    Selector information for a Switch/Fabric-Interconnect hardware.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    Sku string
    SKU information for Switch/Fabric-Interconnect.
    SlotsPerLine double
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    Tags List<CapabilityEquipmentSlotArrayTag>
    This complex property has following sub-properties:
    TransverseGroupSeparation double
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    TransverseGroupSize double
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    TransverseOffset double
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    VersionContexts List<CapabilityEquipmentSlotArrayVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    VerticalStartOffset double
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    Vid string
    VID information for Switch/Fabric-Interconnect.
    Width double
    Width information for a Switch/Fabric-Interconnect hardware.
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []CapabilityEquipmentSlotArrayAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    CapabilityEquipmentSlotArrayId string
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FirstIndex float64
    First Index information for a Switch/Fabric-Interconnect hardware.
    Height float64
    Height information for a Switch/Fabric-Interconnect hardware.
    HorizontalStartOffset float64
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    InlineGroupSeparation float64
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    InlineGroupSize float64
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    InlineOffset float64
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    Location string
    Location information for a Switch/Fabric-Interconnect hardware.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    An unique identifer for a capability descriptor.
    NumberOfSlots float64
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Orientation string
    Orientation information for a Switch/Fabric-Interconnect hardware.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []CapabilityEquipmentSlotArrayParentArgs
    (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 []CapabilityEquipmentSlotArrayPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Pid string
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    Selector string
    Selector information for a Switch/Fabric-Interconnect hardware.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    Sku string
    SKU information for Switch/Fabric-Interconnect.
    SlotsPerLine float64
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    Tags []CapabilityEquipmentSlotArrayTagArgs
    This complex property has following sub-properties:
    TransverseGroupSeparation float64
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    TransverseGroupSize float64
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    TransverseOffset float64
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    VersionContexts []CapabilityEquipmentSlotArrayVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    VerticalStartOffset float64
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    Vid string
    VID information for Switch/Fabric-Interconnect.
    Width float64
    Width information for a Switch/Fabric-Interconnect hardware.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<CapabilityEquipmentSlotArrayAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    capabilityEquipmentSlotArrayId String
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    firstIndex Double
    First Index information for a Switch/Fabric-Interconnect hardware.
    height Double
    Height information for a Switch/Fabric-Interconnect hardware.
    horizontalStartOffset Double
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSeparation Double
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSize Double
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    inlineOffset Double
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    location String
    Location information for a Switch/Fabric-Interconnect hardware.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    An unique identifer for a capability descriptor.
    numberOfSlots Double
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    orientation String
    Orientation information for a Switch/Fabric-Interconnect hardware.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<CapabilityEquipmentSlotArrayParent>
    (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<CapabilityEquipmentSlotArrayPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    pid String
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    selector String
    Selector information for a Switch/Fabric-Interconnect hardware.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    sku String
    SKU information for Switch/Fabric-Interconnect.
    slotsPerLine Double
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    tags List<CapabilityEquipmentSlotArrayTag>
    This complex property has following sub-properties:
    transverseGroupSeparation Double
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    transverseGroupSize Double
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    transverseOffset Double
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    versionContexts List<CapabilityEquipmentSlotArrayVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    verticalStartOffset Double
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    vid String
    VID information for Switch/Fabric-Interconnect.
    width Double
    Width information for a Switch/Fabric-Interconnect hardware.
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors CapabilityEquipmentSlotArrayAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    capabilityEquipmentSlotArrayId string
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime string
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    firstIndex number
    First Index information for a Switch/Fabric-Interconnect hardware.
    height number
    Height information for a Switch/Fabric-Interconnect hardware.
    horizontalStartOffset number
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSeparation number
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSize number
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    inlineOffset number
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    location string
    Location information for a Switch/Fabric-Interconnect hardware.
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    An unique identifer for a capability descriptor.
    numberOfSlots number
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    orientation string
    Orientation information for a Switch/Fabric-Interconnect hardware.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents CapabilityEquipmentSlotArrayParent[]
    (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 CapabilityEquipmentSlotArrayPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    pid string
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    selector string
    Selector information for a Switch/Fabric-Interconnect hardware.
    sharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    sku string
    SKU information for Switch/Fabric-Interconnect.
    slotsPerLine number
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    tags CapabilityEquipmentSlotArrayTag[]
    This complex property has following sub-properties:
    transverseGroupSeparation number
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    transverseGroupSize number
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    transverseOffset number
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    versionContexts CapabilityEquipmentSlotArrayVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    verticalStartOffset number
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    vid string
    VID information for Switch/Fabric-Interconnect.
    width number
    Width information for a Switch/Fabric-Interconnect hardware.
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[CapabilityEquipmentSlotArrayAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    capability_equipment_slot_array_id str
    class_id str
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    create_time str
    (ReadOnly) The time when this managed object was created.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    first_index float
    First Index information for a Switch/Fabric-Interconnect hardware.
    height float
    Height information for a Switch/Fabric-Interconnect hardware.
    horizontal_start_offset float
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    inline_group_separation float
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    inline_group_size float
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    inline_offset float
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    location str
    Location information for a Switch/Fabric-Interconnect hardware.
    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
    An unique identifer for a capability descriptor.
    number_of_slots float
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    orientation str
    Orientation information for a Switch/Fabric-Interconnect hardware.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[CapabilityEquipmentSlotArrayParentArgs]
    (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[CapabilityEquipmentSlotArrayPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    pid str
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    selector str
    Selector information for a Switch/Fabric-Interconnect hardware.
    shared_scope str
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    sku str
    SKU information for Switch/Fabric-Interconnect.
    slots_per_line float
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    tags Sequence[CapabilityEquipmentSlotArrayTagArgs]
    This complex property has following sub-properties:
    transverse_group_separation float
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    transverse_group_size float
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    transverse_offset float
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    version_contexts Sequence[CapabilityEquipmentSlotArrayVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    vertical_start_offset float
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    vid str
    VID information for Switch/Fabric-Interconnect.
    width float
    Width information for a Switch/Fabric-Interconnect hardware.
    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:
    capabilityEquipmentSlotArrayId String
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    firstIndex Number
    First Index information for a Switch/Fabric-Interconnect hardware.
    height Number
    Height information for a Switch/Fabric-Interconnect hardware.
    horizontalStartOffset Number
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSeparation Number
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSize Number
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    inlineOffset Number
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    location String
    Location information for a Switch/Fabric-Interconnect hardware.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    An unique identifer for a capability descriptor.
    numberOfSlots Number
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    orientation String
    Orientation information for a Switch/Fabric-Interconnect hardware.
    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:
    pid String
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    selector String
    Selector information for a Switch/Fabric-Interconnect hardware.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    sku String
    SKU information for Switch/Fabric-Interconnect.
    slotsPerLine Number
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    tags List<Property Map>
    This complex property has following sub-properties:
    transverseGroupSeparation Number
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    transverseGroupSize Number
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    transverseOffset Number
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    verticalStartOffset Number
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    vid String
    VID information for Switch/Fabric-Interconnect.
    width Number
    Width information for a Switch/Fabric-Interconnect hardware.

    Outputs

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

    Get an existing CapabilityEquipmentSlotArray 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?: CapabilityEquipmentSlotArrayState, opts?: CustomResourceOptions): CapabilityEquipmentSlotArray
    @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[CapabilityEquipmentSlotArrayAncestorArgs]] = None,
            capability_equipment_slot_array_id: Optional[str] = None,
            class_id: Optional[str] = None,
            create_time: Optional[str] = None,
            domain_group_moid: Optional[str] = None,
            first_index: Optional[float] = None,
            height: Optional[float] = None,
            horizontal_start_offset: Optional[float] = None,
            inline_group_separation: Optional[float] = None,
            inline_group_size: Optional[float] = None,
            inline_offset: Optional[float] = None,
            location: Optional[str] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            name: Optional[str] = None,
            number_of_slots: Optional[float] = None,
            object_type: Optional[str] = None,
            orientation: Optional[str] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[CapabilityEquipmentSlotArrayParentArgs]] = None,
            permission_resources: Optional[Sequence[CapabilityEquipmentSlotArrayPermissionResourceArgs]] = None,
            pid: Optional[str] = None,
            selector: Optional[str] = None,
            shared_scope: Optional[str] = None,
            sku: Optional[str] = None,
            slots_per_line: Optional[float] = None,
            tags: Optional[Sequence[CapabilityEquipmentSlotArrayTagArgs]] = None,
            transverse_group_separation: Optional[float] = None,
            transverse_group_size: Optional[float] = None,
            transverse_offset: Optional[float] = None,
            version_contexts: Optional[Sequence[CapabilityEquipmentSlotArrayVersionContextArgs]] = None,
            vertical_start_offset: Optional[float] = None,
            vid: Optional[str] = None,
            width: Optional[float] = None) -> CapabilityEquipmentSlotArray
    func GetCapabilityEquipmentSlotArray(ctx *Context, name string, id IDInput, state *CapabilityEquipmentSlotArrayState, opts ...ResourceOption) (*CapabilityEquipmentSlotArray, error)
    public static CapabilityEquipmentSlotArray Get(string name, Input<string> id, CapabilityEquipmentSlotArrayState? state, CustomResourceOptions? opts = null)
    public static CapabilityEquipmentSlotArray get(String name, Output<String> id, CapabilityEquipmentSlotArrayState state, CustomResourceOptions options)
    resources:  _:    type: intersight:CapabilityEquipmentSlotArray    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.
    The following state arguments are supported:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<CapabilityEquipmentSlotArrayAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    CapabilityEquipmentSlotArrayId string
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FirstIndex double
    First Index information for a Switch/Fabric-Interconnect hardware.
    Height double
    Height information for a Switch/Fabric-Interconnect hardware.
    HorizontalStartOffset double
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    InlineGroupSeparation double
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    InlineGroupSize double
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    InlineOffset double
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    Location string
    Location information for a Switch/Fabric-Interconnect hardware.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    An unique identifer for a capability descriptor.
    NumberOfSlots double
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Orientation string
    Orientation information for a Switch/Fabric-Interconnect hardware.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<CapabilityEquipmentSlotArrayParent>
    (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<CapabilityEquipmentSlotArrayPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Pid string
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    Selector string
    Selector information for a Switch/Fabric-Interconnect hardware.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    Sku string
    SKU information for Switch/Fabric-Interconnect.
    SlotsPerLine double
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    Tags List<CapabilityEquipmentSlotArrayTag>
    This complex property has following sub-properties:
    TransverseGroupSeparation double
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    TransverseGroupSize double
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    TransverseOffset double
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    VersionContexts List<CapabilityEquipmentSlotArrayVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    VerticalStartOffset double
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    Vid string
    VID information for Switch/Fabric-Interconnect.
    Width double
    Width information for a Switch/Fabric-Interconnect hardware.
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []CapabilityEquipmentSlotArrayAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    CapabilityEquipmentSlotArrayId string
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FirstIndex float64
    First Index information for a Switch/Fabric-Interconnect hardware.
    Height float64
    Height information for a Switch/Fabric-Interconnect hardware.
    HorizontalStartOffset float64
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    InlineGroupSeparation float64
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    InlineGroupSize float64
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    InlineOffset float64
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    Location string
    Location information for a Switch/Fabric-Interconnect hardware.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    An unique identifer for a capability descriptor.
    NumberOfSlots float64
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Orientation string
    Orientation information for a Switch/Fabric-Interconnect hardware.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []CapabilityEquipmentSlotArrayParentArgs
    (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 []CapabilityEquipmentSlotArrayPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Pid string
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    Selector string
    Selector information for a Switch/Fabric-Interconnect hardware.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    Sku string
    SKU information for Switch/Fabric-Interconnect.
    SlotsPerLine float64
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    Tags []CapabilityEquipmentSlotArrayTagArgs
    This complex property has following sub-properties:
    TransverseGroupSeparation float64
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    TransverseGroupSize float64
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    TransverseOffset float64
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    VersionContexts []CapabilityEquipmentSlotArrayVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    VerticalStartOffset float64
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    Vid string
    VID information for Switch/Fabric-Interconnect.
    Width float64
    Width information for a Switch/Fabric-Interconnect hardware.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<CapabilityEquipmentSlotArrayAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    capabilityEquipmentSlotArrayId String
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    firstIndex Double
    First Index information for a Switch/Fabric-Interconnect hardware.
    height Double
    Height information for a Switch/Fabric-Interconnect hardware.
    horizontalStartOffset Double
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSeparation Double
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSize Double
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    inlineOffset Double
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    location String
    Location information for a Switch/Fabric-Interconnect hardware.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    An unique identifer for a capability descriptor.
    numberOfSlots Double
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    orientation String
    Orientation information for a Switch/Fabric-Interconnect hardware.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<CapabilityEquipmentSlotArrayParent>
    (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<CapabilityEquipmentSlotArrayPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    pid String
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    selector String
    Selector information for a Switch/Fabric-Interconnect hardware.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    sku String
    SKU information for Switch/Fabric-Interconnect.
    slotsPerLine Double
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    tags List<CapabilityEquipmentSlotArrayTag>
    This complex property has following sub-properties:
    transverseGroupSeparation Double
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    transverseGroupSize Double
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    transverseOffset Double
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    versionContexts List<CapabilityEquipmentSlotArrayVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    verticalStartOffset Double
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    vid String
    VID information for Switch/Fabric-Interconnect.
    width Double
    Width information for a Switch/Fabric-Interconnect hardware.
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors CapabilityEquipmentSlotArrayAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    capabilityEquipmentSlotArrayId string
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime string
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    firstIndex number
    First Index information for a Switch/Fabric-Interconnect hardware.
    height number
    Height information for a Switch/Fabric-Interconnect hardware.
    horizontalStartOffset number
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSeparation number
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSize number
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    inlineOffset number
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    location string
    Location information for a Switch/Fabric-Interconnect hardware.
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    An unique identifer for a capability descriptor.
    numberOfSlots number
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    orientation string
    Orientation information for a Switch/Fabric-Interconnect hardware.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents CapabilityEquipmentSlotArrayParent[]
    (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 CapabilityEquipmentSlotArrayPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    pid string
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    selector string
    Selector information for a Switch/Fabric-Interconnect hardware.
    sharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    sku string
    SKU information for Switch/Fabric-Interconnect.
    slotsPerLine number
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    tags CapabilityEquipmentSlotArrayTag[]
    This complex property has following sub-properties:
    transverseGroupSeparation number
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    transverseGroupSize number
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    transverseOffset number
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    versionContexts CapabilityEquipmentSlotArrayVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    verticalStartOffset number
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    vid string
    VID information for Switch/Fabric-Interconnect.
    width number
    Width information for a Switch/Fabric-Interconnect hardware.
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[CapabilityEquipmentSlotArrayAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    capability_equipment_slot_array_id str
    class_id str
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    create_time str
    (ReadOnly) The time when this managed object was created.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    first_index float
    First Index information for a Switch/Fabric-Interconnect hardware.
    height float
    Height information for a Switch/Fabric-Interconnect hardware.
    horizontal_start_offset float
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    inline_group_separation float
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    inline_group_size float
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    inline_offset float
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    location str
    Location information for a Switch/Fabric-Interconnect hardware.
    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
    An unique identifer for a capability descriptor.
    number_of_slots float
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    orientation str
    Orientation information for a Switch/Fabric-Interconnect hardware.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[CapabilityEquipmentSlotArrayParentArgs]
    (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[CapabilityEquipmentSlotArrayPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    pid str
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    selector str
    Selector information for a Switch/Fabric-Interconnect hardware.
    shared_scope str
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    sku str
    SKU information for Switch/Fabric-Interconnect.
    slots_per_line float
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    tags Sequence[CapabilityEquipmentSlotArrayTagArgs]
    This complex property has following sub-properties:
    transverse_group_separation float
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    transverse_group_size float
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    transverse_offset float
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    version_contexts Sequence[CapabilityEquipmentSlotArrayVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    vertical_start_offset float
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    vid str
    VID information for Switch/Fabric-Interconnect.
    width float
    Width information for a Switch/Fabric-Interconnect hardware.
    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:
    capabilityEquipmentSlotArrayId String
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    firstIndex Number
    First Index information for a Switch/Fabric-Interconnect hardware.
    height Number
    Height information for a Switch/Fabric-Interconnect hardware.
    horizontalStartOffset Number
    Horizontal Start Offset information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSeparation Number
    Inline Group Separation information for a Switch/Fabric-Interconnect hardware.
    inlineGroupSize Number
    Inline Group Size information for a Switch/Fabric-Interconnect hardware.
    inlineOffset Number
    Inline Offset information for a Switch/Fabric-Interconnect hardware.
    location String
    Location information for a Switch/Fabric-Interconnect hardware.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    An unique identifer for a capability descriptor.
    numberOfSlots Number
    Number of Slots information for a Switch/Fabric-Interconnect hardware.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    orientation String
    Orientation information for a Switch/Fabric-Interconnect hardware.
    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:
    pid String
    Product Identifier for a Switch/Fabric-Interconnect.* UCS-FI-6454 - The standard 4th generation UCS Fabric Interconnect with 54 ports.* UCS-FI-64108 - The expanded 4th generation UCS Fabric Interconnect with 108 ports.* UCS-FI-6536 - The standard 5th generation UCS Fabric Interconnect with 36 ports.* UCSX-S9108-100G - Cisco UCS Fabric Interconnect 9108 100G with 8 ports.* UCS-FI-6664 - The standard 6th generation UCS Fabric Interconnect with 36 ports.* unknown - Unknown device type, usage is TBD.
    selector String
    Selector information for a Switch/Fabric-Interconnect hardware.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    sku String
    SKU information for Switch/Fabric-Interconnect.
    slotsPerLine Number
    Slots per line information for a Switch/Fabric-Interconnect hardware.
    tags List<Property Map>
    This complex property has following sub-properties:
    transverseGroupSeparation Number
    Transverse Group Separation information for a Switch/Fabric-Interconnect hardware.
    transverseGroupSize Number
    Transverse Group Size information for a Switch/Fabric-Interconnect hardware.
    transverseOffset Number
    Transverse Offset information for a Switch/Fabric-Interconnect hardware.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    verticalStartOffset Number
    Vertical Start Offset information for a Switch/Fabric-Interconnect hardware.
    vid String
    VID information for Switch/Fabric-Interconnect.
    width Number
    Width information for a Switch/Fabric-Interconnect hardware.

    Supporting Types

    CapabilityEquipmentSlotArrayAncestor, CapabilityEquipmentSlotArrayAncestorArgs

    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'.

    CapabilityEquipmentSlotArrayParent, CapabilityEquipmentSlotArrayParentArgs

    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'.

    CapabilityEquipmentSlotArrayPermissionResource, CapabilityEquipmentSlotArrayPermissionResourceArgs

    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'.

    CapabilityEquipmentSlotArrayTag, CapabilityEquipmentSlotArrayTagArgs

    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.

    CapabilityEquipmentSlotArrayVersionContext, CapabilityEquipmentSlotArrayVersionContextArgs

    AdditionalProperties string
    ClassId string
    InterestedMos List<CapabilityEquipmentSlotArrayVersionContextInterestedMo>
    This complex property has following sub-properties:
    MarkedForDeletion bool
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    NrVersion 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<CapabilityEquipmentSlotArrayVersionContextRefMo>
    (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 []CapabilityEquipmentSlotArrayVersionContextInterestedMo
    This complex property has following sub-properties:
    MarkedForDeletion bool
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    NrVersion 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 []CapabilityEquipmentSlotArrayVersionContextRefMo
    (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<CapabilityEquipmentSlotArrayVersionContextInterestedMo>
    This complex property has following sub-properties:
    markedForDeletion Boolean
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    nrVersion 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<CapabilityEquipmentSlotArrayVersionContextRefMo>
    (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 CapabilityEquipmentSlotArrayVersionContextInterestedMo[]
    This complex property has following sub-properties:
    markedForDeletion boolean
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    nrVersion 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 CapabilityEquipmentSlotArrayVersionContextRefMo[]
    (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[CapabilityEquipmentSlotArrayVersionContextInterestedMo]
    This complex property has following sub-properties:
    marked_for_deletion bool
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    nr_version 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[CapabilityEquipmentSlotArrayVersionContextRefMo]
    (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:
    markedForDeletion Boolean
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    nrVersion 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.

    CapabilityEquipmentSlotArrayVersionContextInterestedMo, CapabilityEquipmentSlotArrayVersionContextInterestedMoArgs

    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'.

    CapabilityEquipmentSlotArrayVersionContextRefMo, CapabilityEquipmentSlotArrayVersionContextRefMoArgs

    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_capability_equipment_slot_array can be imported using the Moid of the object, e.g.

    $ pulumi import intersight:index/capabilityEquipmentSlotArray:CapabilityEquipmentSlotArray example 1234567890987654321abcde
    

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

    Package Details

    Repository
    intersight ciscodevnet/terraform-provider-intersight
    License
    Notes
    This Pulumi package is based on the intersight Terraform Provider.
    intersight logo
    intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet