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

intersight.StorageDriveGroup

Explore with Pulumi AI

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

    A reusable RAID drive group configuration that specifies a pool of drives and a set of virtual drives that are to be created using this pool of drives.

    Usage Example

    Resource Creation

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.StorageDriveGroup;
    import com.pulumi.intersight.StorageDriveGroupArgs;
    import com.pulumi.intersight.inputs.StorageDriveGroupManualDriveGroupArgs;
    import com.pulumi.intersight.inputs.StorageDriveGroupVirtualDrifeArgs;
    import com.pulumi.intersight.inputs.StorageDriveGroupStoragePolicyArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var tfStoragePolicy = config.get("tfStoragePolicy");
            var tfDriveGp = new StorageDriveGroup("tfDriveGp", StorageDriveGroupArgs.builder()
                .raidLevel("Raid0")
                .manualDriveGroups(StorageDriveGroupManualDriveGroupArgs.builder()
                    .objectType("storage.ManualDriveGroup")
                    .spanGroups(StorageDriveGroupManualDriveGroupSpanGroupArgs.builder()
                        .slots("2")
                        .objectType("storage.SpanDrives")
                        .build())
                    .build())
                .virtualDrives(            
                    StorageDriveGroupVirtualDrifeArgs.builder()
                        .name("tf_drive_gp-vd")
                        .size(100)
                        .expandToAvailable(false)
                        .bootDrive(false)
                        .objectType("storage.VirtualDriveConfiguration")
                        .virtualDrivePolicy(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                        .build(),
                    StorageDriveGroupVirtualDrifeArgs.builder()
                        .name("drive_gp-vd-01")
                        .size(100)
                        .expandToAvailable(false)
                        .bootDrive(false)
                        .objectType("storage.VirtualDriveConfiguration")
                        .virtualDrivePolicy(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                        .build())
                .storagePolicies(StorageDriveGroupStoragePolicyArgs.builder()
                    .moid(tfStoragePolicy)
                    .objectType("storage.StoragePolicy")
                    .build())
                .build());
    
        }
    }
    
    configuration:
      tfStoragePolicy:
        type: string
    resources:
      tfDriveGp:
        type: intersight:StorageDriveGroup
        properties:
          raidLevel: Raid0
          manualDriveGroups:
            - objectType: storage.ManualDriveGroup
              spanGroups:
                - slots: '2'
                  objectType: storage.SpanDrives
          virtualDrives:
            - name: tf_drive_gp-vd
              size: 100
              expandToAvailable: false
              bootDrive: false
              objectType: storage.VirtualDriveConfiguration
              virtualDrivePolicy:
                - stripSize: 64
                  writePolicy: Default
                  readPolicy: Default
                  accessPolicy: Default
                  driveCache: Default
                  objectType: storage.VirtualDrivePolicy
            - name: drive_gp-vd-01
              size: 100
              expandToAvailable: false
              bootDrive: false
              objectType: storage.VirtualDriveConfiguration
              virtualDrivePolicy:
                - stripSize: 64
                  writePolicy: Default
                  readPolicy: Default
                  accessPolicy: Default
                  driveCache: Default
                  objectType: storage.VirtualDrivePolicy
          storagePolicies:
            - moid: ${tfStoragePolicy}
              objectType: storage.StoragePolicy
    

    Create StorageDriveGroup Resource

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

    Constructor syntax

    new StorageDriveGroup(name: string, args?: StorageDriveGroupArgs, opts?: CustomResourceOptions);
    @overload
    def StorageDriveGroup(resource_name: str,
                          args: Optional[StorageDriveGroupArgs] = None,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def StorageDriveGroup(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          account_moid: Optional[str] = None,
                          additional_properties: Optional[str] = None,
                          ancestors: Optional[Sequence[StorageDriveGroupAncestorArgs]] = None,
                          automatic_drive_groups: Optional[Sequence[StorageDriveGroupAutomaticDriveGroupArgs]] = None,
                          class_id: Optional[str] = None,
                          create_time: Optional[str] = None,
                          domain_group_moid: Optional[str] = None,
                          manual_drive_groups: Optional[Sequence[StorageDriveGroupManualDriveGroupArgs]] = None,
                          mod_time: Optional[str] = None,
                          moid: Optional[str] = None,
                          name: Optional[str] = None,
                          object_type: Optional[str] = None,
                          owners: Optional[Sequence[str]] = None,
                          parents: Optional[Sequence[StorageDriveGroupParentArgs]] = None,
                          permission_resources: Optional[Sequence[StorageDriveGroupPermissionResourceArgs]] = None,
                          raid_level: Optional[str] = None,
                          secure_drive_group: Optional[bool] = None,
                          shared_scope: Optional[str] = None,
                          storage_drive_group_id: Optional[str] = None,
                          storage_policies: Optional[Sequence[StorageDriveGroupStoragePolicyArgs]] = None,
                          tags: Optional[Sequence[StorageDriveGroupTagArgs]] = None,
                          type: Optional[float] = None,
                          version_contexts: Optional[Sequence[StorageDriveGroupVersionContextArgs]] = None,
                          virtual_drives: Optional[Sequence[StorageDriveGroupVirtualDrifeArgs]] = None)
    func NewStorageDriveGroup(ctx *Context, name string, args *StorageDriveGroupArgs, opts ...ResourceOption) (*StorageDriveGroup, error)
    public StorageDriveGroup(string name, StorageDriveGroupArgs? args = null, CustomResourceOptions? opts = null)
    public StorageDriveGroup(String name, StorageDriveGroupArgs args)
    public StorageDriveGroup(String name, StorageDriveGroupArgs args, CustomResourceOptions options)
    
    type: intersight:StorageDriveGroup
    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 StorageDriveGroupArgs
    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 StorageDriveGroupArgs
    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 StorageDriveGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StorageDriveGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StorageDriveGroupArgs
    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 storageDriveGroupResource = new Intersight.StorageDriveGroup("storageDriveGroupResource", new()
    {
        AccountMoid = "string",
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.StorageDriveGroupAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        AutomaticDriveGroups = new[]
        {
            new Intersight.Inputs.StorageDriveGroupAutomaticDriveGroupArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                DriveType = "string",
                DrivesPerSpan = 0,
                MinimumDriveSize = 0,
                NumDedicatedHotSpares = "string",
                NumberOfSpans = 0,
                ObjectType = "string",
                UseRemainingDrives = false,
            },
        },
        ClassId = "string",
        CreateTime = "string",
        DomainGroupMoid = "string",
        ManualDriveGroups = new[]
        {
            new Intersight.Inputs.StorageDriveGroupManualDriveGroupArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                DedicatedHotSpares = "string",
                ObjectType = "string",
                SpanGroups = new[]
                {
                    new Intersight.Inputs.StorageDriveGroupManualDriveGroupSpanGroupArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        ObjectType = "string",
                        Slots = "string",
                    },
                },
            },
        },
        ModTime = "string",
        Moid = "string",
        Name = "string",
        ObjectType = "string",
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.StorageDriveGroupParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.StorageDriveGroupPermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        RaidLevel = "string",
        SecureDriveGroup = false,
        SharedScope = "string",
        StorageDriveGroupId = "string",
        StoragePolicies = new[]
        {
            new Intersight.Inputs.StorageDriveGroupStoragePolicyArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Tags = new[]
        {
            new Intersight.Inputs.StorageDriveGroupTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        Type = 0,
        VersionContexts = new[]
        {
            new Intersight.Inputs.StorageDriveGroupVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.StorageDriveGroupVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.StorageDriveGroupVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
        VirtualDrives = new[]
        {
            new Intersight.Inputs.StorageDriveGroupVirtualDrifeArgs
            {
                AdditionalProperties = "string",
                BootDrive = false,
                ClassId = "string",
                ExpandToAvailable = false,
                Name = "string",
                ObjectType = "string",
                Size = 0,
                VirtualDrivePolicies = new[]
                {
                    new Intersight.Inputs.StorageDriveGroupVirtualDrifeVirtualDrivePolicyArgs
                    {
                        AccessPolicy = "string",
                        AdditionalProperties = "string",
                        ClassId = "string",
                        DriveCache = "string",
                        ObjectType = "string",
                        ReadPolicy = "string",
                        StripSize = 0,
                        WritePolicy = "string",
                    },
                },
            },
        },
    });
    
    example, err := intersight.NewStorageDriveGroup(ctx, "storageDriveGroupResource", &intersight.StorageDriveGroupArgs{
    	AccountMoid:          pulumi.String("string"),
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.StorageDriveGroupAncestorArray{
    		&intersight.StorageDriveGroupAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	AutomaticDriveGroups: intersight.StorageDriveGroupAutomaticDriveGroupArray{
    		&intersight.StorageDriveGroupAutomaticDriveGroupArgs{
    			AdditionalProperties:  pulumi.String("string"),
    			ClassId:               pulumi.String("string"),
    			DriveType:             pulumi.String("string"),
    			DrivesPerSpan:         pulumi.Float64(0),
    			MinimumDriveSize:      pulumi.Float64(0),
    			NumDedicatedHotSpares: pulumi.String("string"),
    			NumberOfSpans:         pulumi.Float64(0),
    			ObjectType:            pulumi.String("string"),
    			UseRemainingDrives:    pulumi.Bool(false),
    		},
    	},
    	ClassId:         pulumi.String("string"),
    	CreateTime:      pulumi.String("string"),
    	DomainGroupMoid: pulumi.String("string"),
    	ManualDriveGroups: intersight.StorageDriveGroupManualDriveGroupArray{
    		&intersight.StorageDriveGroupManualDriveGroupArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			DedicatedHotSpares:   pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			SpanGroups: intersight.StorageDriveGroupManualDriveGroupSpanGroupArray{
    				&intersight.StorageDriveGroupManualDriveGroupSpanGroupArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    					Slots:                pulumi.String("string"),
    				},
    			},
    		},
    	},
    	ModTime:    pulumi.String("string"),
    	Moid:       pulumi.String("string"),
    	Name:       pulumi.String("string"),
    	ObjectType: pulumi.String("string"),
    	Owners: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parents: intersight.StorageDriveGroupParentArray{
    		&intersight.StorageDriveGroupParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.StorageDriveGroupPermissionResourceArray{
    		&intersight.StorageDriveGroupPermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	RaidLevel:           pulumi.String("string"),
    	SecureDriveGroup:    pulumi.Bool(false),
    	SharedScope:         pulumi.String("string"),
    	StorageDriveGroupId: pulumi.String("string"),
    	StoragePolicies: intersight.StorageDriveGroupStoragePolicyArray{
    		&intersight.StorageDriveGroupStoragePolicyArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Tags: intersight.StorageDriveGroupTagArray{
    		&intersight.StorageDriveGroupTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	Type: pulumi.Float64(0),
    	VersionContexts: intersight.StorageDriveGroupVersionContextArray{
    		&intersight.StorageDriveGroupVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.StorageDriveGroupVersionContextInterestedMoArray{
    				&intersight.StorageDriveGroupVersionContextInterestedMoArgs{
    					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.StorageDriveGroupVersionContextRefMoArray{
    				&intersight.StorageDriveGroupVersionContextRefMoArgs{
    					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"),
    		},
    	},
    	VirtualDrives: intersight.StorageDriveGroupVirtualDrifeArray{
    		&intersight.StorageDriveGroupVirtualDrifeArgs{
    			AdditionalProperties: pulumi.String("string"),
    			BootDrive:            pulumi.Bool(false),
    			ClassId:              pulumi.String("string"),
    			ExpandToAvailable:    pulumi.Bool(false),
    			Name:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Size:                 pulumi.Float64(0),
    			VirtualDrivePolicies: intersight.StorageDriveGroupVirtualDrifeVirtualDrivePolicyArray{
    				&intersight.StorageDriveGroupVirtualDrifeVirtualDrivePolicyArgs{
    					AccessPolicy:         pulumi.String("string"),
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					DriveCache:           pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    					ReadPolicy:           pulumi.String("string"),
    					StripSize:            pulumi.Float64(0),
    					WritePolicy:          pulumi.String("string"),
    				},
    			},
    		},
    	},
    })
    
    var storageDriveGroupResource = new StorageDriveGroup("storageDriveGroupResource", StorageDriveGroupArgs.builder()
        .accountMoid("string")
        .additionalProperties("string")
        .ancestors(StorageDriveGroupAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .automaticDriveGroups(StorageDriveGroupAutomaticDriveGroupArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .driveType("string")
            .drivesPerSpan(0)
            .minimumDriveSize(0)
            .numDedicatedHotSpares("string")
            .numberOfSpans(0)
            .objectType("string")
            .useRemainingDrives(false)
            .build())
        .classId("string")
        .createTime("string")
        .domainGroupMoid("string")
        .manualDriveGroups(StorageDriveGroupManualDriveGroupArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .dedicatedHotSpares("string")
            .objectType("string")
            .spanGroups(StorageDriveGroupManualDriveGroupSpanGroupArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .objectType("string")
                .slots("string")
                .build())
            .build())
        .modTime("string")
        .moid("string")
        .name("string")
        .objectType("string")
        .owners("string")
        .parents(StorageDriveGroupParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(StorageDriveGroupPermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .raidLevel("string")
        .secureDriveGroup(false)
        .sharedScope("string")
        .storageDriveGroupId("string")
        .storagePolicies(StorageDriveGroupStoragePolicyArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .tags(StorageDriveGroupTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .type(0)
        .versionContexts(StorageDriveGroupVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(StorageDriveGroupVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(StorageDriveGroupVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .virtualDrives(StorageDriveGroupVirtualDrifeArgs.builder()
            .additionalProperties("string")
            .bootDrive(false)
            .classId("string")
            .expandToAvailable(false)
            .name("string")
            .objectType("string")
            .size(0)
            .virtualDrivePolicies(StorageDriveGroupVirtualDrifeVirtualDrivePolicyArgs.builder()
                .accessPolicy("string")
                .additionalProperties("string")
                .classId("string")
                .driveCache("string")
                .objectType("string")
                .readPolicy("string")
                .stripSize(0)
                .writePolicy("string")
                .build())
            .build())
        .build());
    
    storage_drive_group_resource = intersight.StorageDriveGroup("storageDriveGroupResource",
        account_moid="string",
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        automatic_drive_groups=[{
            "additional_properties": "string",
            "class_id": "string",
            "drive_type": "string",
            "drives_per_span": 0,
            "minimum_drive_size": 0,
            "num_dedicated_hot_spares": "string",
            "number_of_spans": 0,
            "object_type": "string",
            "use_remaining_drives": False,
        }],
        class_id="string",
        create_time="string",
        domain_group_moid="string",
        manual_drive_groups=[{
            "additional_properties": "string",
            "class_id": "string",
            "dedicated_hot_spares": "string",
            "object_type": "string",
            "span_groups": [{
                "additional_properties": "string",
                "class_id": "string",
                "object_type": "string",
                "slots": "string",
            }],
        }],
        mod_time="string",
        moid="string",
        name="string",
        object_type="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",
        }],
        raid_level="string",
        secure_drive_group=False,
        shared_scope="string",
        storage_drive_group_id="string",
        storage_policies=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        type=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",
        }],
        virtual_drives=[{
            "additional_properties": "string",
            "boot_drive": False,
            "class_id": "string",
            "expand_to_available": False,
            "name": "string",
            "object_type": "string",
            "size": 0,
            "virtual_drive_policies": [{
                "access_policy": "string",
                "additional_properties": "string",
                "class_id": "string",
                "drive_cache": "string",
                "object_type": "string",
                "read_policy": "string",
                "strip_size": 0,
                "write_policy": "string",
            }],
        }])
    
    const storageDriveGroupResource = new intersight.StorageDriveGroup("storageDriveGroupResource", {
        accountMoid: "string",
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        automaticDriveGroups: [{
            additionalProperties: "string",
            classId: "string",
            driveType: "string",
            drivesPerSpan: 0,
            minimumDriveSize: 0,
            numDedicatedHotSpares: "string",
            numberOfSpans: 0,
            objectType: "string",
            useRemainingDrives: false,
        }],
        classId: "string",
        createTime: "string",
        domainGroupMoid: "string",
        manualDriveGroups: [{
            additionalProperties: "string",
            classId: "string",
            dedicatedHotSpares: "string",
            objectType: "string",
            spanGroups: [{
                additionalProperties: "string",
                classId: "string",
                objectType: "string",
                slots: "string",
            }],
        }],
        modTime: "string",
        moid: "string",
        name: "string",
        objectType: "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",
        }],
        raidLevel: "string",
        secureDriveGroup: false,
        sharedScope: "string",
        storageDriveGroupId: "string",
        storagePolicies: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        type: 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",
        }],
        virtualDrives: [{
            additionalProperties: "string",
            bootDrive: false,
            classId: "string",
            expandToAvailable: false,
            name: "string",
            objectType: "string",
            size: 0,
            virtualDrivePolicies: [{
                accessPolicy: "string",
                additionalProperties: "string",
                classId: "string",
                driveCache: "string",
                objectType: "string",
                readPolicy: "string",
                stripSize: 0,
                writePolicy: "string",
            }],
        }],
    });
    
    type: intersight:StorageDriveGroup
    properties:
        accountMoid: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        automaticDriveGroups:
            - additionalProperties: string
              classId: string
              driveType: string
              drivesPerSpan: 0
              minimumDriveSize: 0
              numDedicatedHotSpares: string
              numberOfSpans: 0
              objectType: string
              useRemainingDrives: false
        classId: string
        createTime: string
        domainGroupMoid: string
        manualDriveGroups:
            - additionalProperties: string
              classId: string
              dedicatedHotSpares: string
              objectType: string
              spanGroups:
                - additionalProperties: string
                  classId: string
                  objectType: string
                  slots: string
        modTime: string
        moid: string
        name: string
        objectType: 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
        raidLevel: string
        secureDriveGroup: false
        sharedScope: string
        storageDriveGroupId: string
        storagePolicies:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        tags:
            - additionalProperties: string
              key: string
              value: string
        type: 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
        virtualDrives:
            - additionalProperties: string
              bootDrive: false
              classId: string
              expandToAvailable: false
              name: string
              objectType: string
              size: 0
              virtualDrivePolicies:
                - accessPolicy: string
                  additionalProperties: string
                  classId: string
                  driveCache: string
                  objectType: string
                  readPolicy: string
                  stripSize: 0
                  writePolicy: string
    

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

    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<StorageDriveGroupAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AutomaticDriveGroups List<StorageDriveGroupAutomaticDriveGroup>
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    ManualDriveGroups List<StorageDriveGroupManualDriveGroup>
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<StorageDriveGroupParent>
    (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<StorageDriveGroupPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    RaidLevel string
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    SecureDriveGroup bool
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    StorageDriveGroupId string
    StoragePolicies List<StorageDriveGroupStoragePolicy>
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Tags List<StorageDriveGroupTag>
    This complex property has following sub-properties:
    Type double
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    VersionContexts List<StorageDriveGroupVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    VirtualDrives List<StorageDriveGroupVirtualDrife>
    This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []StorageDriveGroupAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AutomaticDriveGroups []StorageDriveGroupAutomaticDriveGroupArgs
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    ManualDriveGroups []StorageDriveGroupManualDriveGroupArgs
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []StorageDriveGroupParentArgs
    (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 []StorageDriveGroupPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    RaidLevel string
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    SecureDriveGroup bool
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    StorageDriveGroupId string
    StoragePolicies []StorageDriveGroupStoragePolicyArgs
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Tags []StorageDriveGroupTagArgs
    This complex property has following sub-properties:
    Type float64
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    VersionContexts []StorageDriveGroupVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    VirtualDrives []StorageDriveGroupVirtualDrifeArgs
    This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<StorageDriveGroupAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    automaticDriveGroups List<StorageDriveGroupAutomaticDriveGroup>
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    manualDriveGroups List<StorageDriveGroupManualDriveGroup>
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<StorageDriveGroupParent>
    (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<StorageDriveGroupPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    raidLevel String
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    secureDriveGroup Boolean
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    storageDriveGroupId String
    storagePolicies List<StorageDriveGroupStoragePolicy>
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags List<StorageDriveGroupTag>
    This complex property has following sub-properties:
    type Double
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    versionContexts List<StorageDriveGroupVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    virtualDrives List<StorageDriveGroupVirtualDrife>
    This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors StorageDriveGroupAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    automaticDriveGroups StorageDriveGroupAutomaticDriveGroup[]
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime string
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    manualDriveGroups StorageDriveGroupManualDriveGroup[]
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents StorageDriveGroupParent[]
    (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 StorageDriveGroupPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    raidLevel string
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    secureDriveGroup boolean
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    storageDriveGroupId string
    storagePolicies StorageDriveGroupStoragePolicy[]
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags StorageDriveGroupTag[]
    This complex property has following sub-properties:
    type number
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    versionContexts StorageDriveGroupVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    virtualDrives StorageDriveGroupVirtualDrife[]
    This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[StorageDriveGroupAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    automatic_drive_groups Sequence[StorageDriveGroupAutomaticDriveGroupArgs]
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    class_id str
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    create_time str
    (ReadOnly) The time when this managed object was created.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    manual_drive_groups Sequence[StorageDriveGroupManualDriveGroupArgs]
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    name str
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[StorageDriveGroupParentArgs]
    (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[StorageDriveGroupPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    raid_level str
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    secure_drive_group bool
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    storage_drive_group_id str
    storage_policies Sequence[StorageDriveGroupStoragePolicyArgs]
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags Sequence[StorageDriveGroupTagArgs]
    This complex property has following sub-properties:
    type float
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    version_contexts Sequence[StorageDriveGroupVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    virtual_drives Sequence[StorageDriveGroupVirtualDrifeArgs]
    This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    automaticDriveGroups List<Property Map>
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    manualDriveGroups List<Property Map>
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    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:
    raidLevel String
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    secureDriveGroup Boolean
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    storageDriveGroupId String
    storagePolicies List<Property Map>
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags List<Property Map>
    This complex property has following sub-properties:
    type Number
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    virtualDrives List<Property Map>
    This complex property has following sub-properties:

    Outputs

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

    Get an existing StorageDriveGroup 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?: StorageDriveGroupState, opts?: CustomResourceOptions): StorageDriveGroup
    @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[StorageDriveGroupAncestorArgs]] = None,
            automatic_drive_groups: Optional[Sequence[StorageDriveGroupAutomaticDriveGroupArgs]] = None,
            class_id: Optional[str] = None,
            create_time: Optional[str] = None,
            domain_group_moid: Optional[str] = None,
            manual_drive_groups: Optional[Sequence[StorageDriveGroupManualDriveGroupArgs]] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            name: Optional[str] = None,
            object_type: Optional[str] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[StorageDriveGroupParentArgs]] = None,
            permission_resources: Optional[Sequence[StorageDriveGroupPermissionResourceArgs]] = None,
            raid_level: Optional[str] = None,
            secure_drive_group: Optional[bool] = None,
            shared_scope: Optional[str] = None,
            storage_drive_group_id: Optional[str] = None,
            storage_policies: Optional[Sequence[StorageDriveGroupStoragePolicyArgs]] = None,
            tags: Optional[Sequence[StorageDriveGroupTagArgs]] = None,
            type: Optional[float] = None,
            version_contexts: Optional[Sequence[StorageDriveGroupVersionContextArgs]] = None,
            virtual_drives: Optional[Sequence[StorageDriveGroupVirtualDrifeArgs]] = None) -> StorageDriveGroup
    func GetStorageDriveGroup(ctx *Context, name string, id IDInput, state *StorageDriveGroupState, opts ...ResourceOption) (*StorageDriveGroup, error)
    public static StorageDriveGroup Get(string name, Input<string> id, StorageDriveGroupState? state, CustomResourceOptions? opts = null)
    public static StorageDriveGroup get(String name, Output<String> id, StorageDriveGroupState state, CustomResourceOptions options)
    resources:  _:    type: intersight:StorageDriveGroup    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<StorageDriveGroupAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AutomaticDriveGroups List<StorageDriveGroupAutomaticDriveGroup>
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    ManualDriveGroups List<StorageDriveGroupManualDriveGroup>
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<StorageDriveGroupParent>
    (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<StorageDriveGroupPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    RaidLevel string
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    SecureDriveGroup bool
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    StorageDriveGroupId string
    StoragePolicies List<StorageDriveGroupStoragePolicy>
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Tags List<StorageDriveGroupTag>
    This complex property has following sub-properties:
    Type double
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    VersionContexts List<StorageDriveGroupVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    VirtualDrives List<StorageDriveGroupVirtualDrife>
    This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []StorageDriveGroupAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AutomaticDriveGroups []StorageDriveGroupAutomaticDriveGroupArgs
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    ManualDriveGroups []StorageDriveGroupManualDriveGroupArgs
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []StorageDriveGroupParentArgs
    (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 []StorageDriveGroupPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    RaidLevel string
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    SecureDriveGroup bool
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    StorageDriveGroupId string
    StoragePolicies []StorageDriveGroupStoragePolicyArgs
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Tags []StorageDriveGroupTagArgs
    This complex property has following sub-properties:
    Type float64
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    VersionContexts []StorageDriveGroupVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    VirtualDrives []StorageDriveGroupVirtualDrifeArgs
    This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<StorageDriveGroupAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    automaticDriveGroups List<StorageDriveGroupAutomaticDriveGroup>
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    manualDriveGroups List<StorageDriveGroupManualDriveGroup>
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<StorageDriveGroupParent>
    (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<StorageDriveGroupPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    raidLevel String
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    secureDriveGroup Boolean
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    storageDriveGroupId String
    storagePolicies List<StorageDriveGroupStoragePolicy>
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags List<StorageDriveGroupTag>
    This complex property has following sub-properties:
    type Double
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    versionContexts List<StorageDriveGroupVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    virtualDrives List<StorageDriveGroupVirtualDrife>
    This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors StorageDriveGroupAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    automaticDriveGroups StorageDriveGroupAutomaticDriveGroup[]
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime string
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    manualDriveGroups StorageDriveGroupManualDriveGroup[]
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents StorageDriveGroupParent[]
    (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 StorageDriveGroupPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    raidLevel string
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    secureDriveGroup boolean
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    storageDriveGroupId string
    storagePolicies StorageDriveGroupStoragePolicy[]
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags StorageDriveGroupTag[]
    This complex property has following sub-properties:
    type number
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    versionContexts StorageDriveGroupVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    virtualDrives StorageDriveGroupVirtualDrife[]
    This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[StorageDriveGroupAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    automatic_drive_groups Sequence[StorageDriveGroupAutomaticDriveGroupArgs]
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    class_id str
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    create_time str
    (ReadOnly) The time when this managed object was created.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    manual_drive_groups Sequence[StorageDriveGroupManualDriveGroupArgs]
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    name str
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[StorageDriveGroupParentArgs]
    (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[StorageDriveGroupPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    raid_level str
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    secure_drive_group bool
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    storage_drive_group_id str
    storage_policies Sequence[StorageDriveGroupStoragePolicyArgs]
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags Sequence[StorageDriveGroupTagArgs]
    This complex property has following sub-properties:
    type float
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    version_contexts Sequence[StorageDriveGroupVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    virtual_drives Sequence[StorageDriveGroupVirtualDrifeArgs]
    This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    automaticDriveGroups List<Property Map>
    This drive group is created using automatic drive selection. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    manualDriveGroups List<Property Map>
    This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    The name of the drive group. The name can be between 1 and 64 alphanumeric characters. Spaces or any special characters other than - (hyphen), _ (underscore), : (colon), and . (period) are not allowed.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    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:
    raidLevel String
    The supported RAID level for the disk group.* Raid0 - RAID 0 Stripe Raid Level.* Raid1 - RAID 1 Mirror Raid Level.* Raid5 - RAID 5 Mirror Raid Level.* Raid6 - RAID 6 Mirror Raid Level.* Raid10 - RAID 10 Mirror Raid Level.* Raid50 - RAID 50 Mirror Raid Level.* Raid60 - RAID 60 Mirror Raid Level.
    secureDriveGroup Boolean
    Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.
    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.
    storageDriveGroupId String
    storagePolicies List<Property Map>
    A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags List<Property Map>
    This complex property has following sub-properties:
    type Number
    (ReadOnly) Type of drive selection to be used for this drive group.* 0 - Drives are selected manually by the user.* 1 - Drives are selected automatically based on the RAID and virtual drive configuration.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    virtualDrives List<Property Map>
    This complex property has following sub-properties:

    Supporting Types

    StorageDriveGroupAncestor, StorageDriveGroupAncestorArgs

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

    StorageDriveGroupAutomaticDriveGroup, StorageDriveGroupAutomaticDriveGroupArgs

    AdditionalProperties string
    ClassId string
    DriveType string
    Type of drive that should be used for this RAID group.* Any - Any type of drive can be used for virtual drive creation.* HDD - Hard disk drives should be used for virtual drive creation.* SSD - Solid state drives should be used for virtual drive creation.
    DrivesPerSpan double
    Number of drives within this span group. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk. RAID1 and RAID10 requires at least 2 and in multiples of . RAID5 and RAID50 require at least 3 disks in a span group. RAID6 and RAID60 require atleast 4 disks in a span.
    MinimumDriveSize double
    Minimum size of the drive to be used for creating this RAID group.
    NumDedicatedHotSpares string
    Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
    NumberOfSpans double
    Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    UseRemainingDrives bool
    This flag enables the drive group to use all the remaining drives on the server.
    AdditionalProperties string
    ClassId string
    DriveType string
    Type of drive that should be used for this RAID group.* Any - Any type of drive can be used for virtual drive creation.* HDD - Hard disk drives should be used for virtual drive creation.* SSD - Solid state drives should be used for virtual drive creation.
    DrivesPerSpan float64
    Number of drives within this span group. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk. RAID1 and RAID10 requires at least 2 and in multiples of . RAID5 and RAID50 require at least 3 disks in a span group. RAID6 and RAID60 require atleast 4 disks in a span.
    MinimumDriveSize float64
    Minimum size of the drive to be used for creating this RAID group.
    NumDedicatedHotSpares string
    Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
    NumberOfSpans float64
    Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    UseRemainingDrives bool
    This flag enables the drive group to use all the remaining drives on the server.
    additionalProperties String
    classId String
    driveType String
    Type of drive that should be used for this RAID group.* Any - Any type of drive can be used for virtual drive creation.* HDD - Hard disk drives should be used for virtual drive creation.* SSD - Solid state drives should be used for virtual drive creation.
    drivesPerSpan Double
    Number of drives within this span group. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk. RAID1 and RAID10 requires at least 2 and in multiples of . RAID5 and RAID50 require at least 3 disks in a span group. RAID6 and RAID60 require atleast 4 disks in a span.
    minimumDriveSize Double
    Minimum size of the drive to be used for creating this RAID group.
    numDedicatedHotSpares String
    Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
    numberOfSpans Double
    Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    useRemainingDrives Boolean
    This flag enables the drive group to use all the remaining drives on the server.
    additionalProperties string
    classId string
    driveType string
    Type of drive that should be used for this RAID group.* Any - Any type of drive can be used for virtual drive creation.* HDD - Hard disk drives should be used for virtual drive creation.* SSD - Solid state drives should be used for virtual drive creation.
    drivesPerSpan number
    Number of drives within this span group. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk. RAID1 and RAID10 requires at least 2 and in multiples of . RAID5 and RAID50 require at least 3 disks in a span group. RAID6 and RAID60 require atleast 4 disks in a span.
    minimumDriveSize number
    Minimum size of the drive to be used for creating this RAID group.
    numDedicatedHotSpares string
    Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
    numberOfSpans number
    Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    useRemainingDrives boolean
    This flag enables the drive group to use all the remaining drives on the server.
    additional_properties str
    class_id str
    drive_type str
    Type of drive that should be used for this RAID group.* Any - Any type of drive can be used for virtual drive creation.* HDD - Hard disk drives should be used for virtual drive creation.* SSD - Solid state drives should be used for virtual drive creation.
    drives_per_span float
    Number of drives within this span group. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk. RAID1 and RAID10 requires at least 2 and in multiples of . RAID5 and RAID50 require at least 3 disks in a span group. RAID6 and RAID60 require atleast 4 disks in a span.
    minimum_drive_size float
    Minimum size of the drive to be used for creating this RAID group.
    num_dedicated_hot_spares str
    Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
    number_of_spans float
    Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    use_remaining_drives bool
    This flag enables the drive group to use all the remaining drives on the server.
    additionalProperties String
    classId String
    driveType String
    Type of drive that should be used for this RAID group.* Any - Any type of drive can be used for virtual drive creation.* HDD - Hard disk drives should be used for virtual drive creation.* SSD - Solid state drives should be used for virtual drive creation.
    drivesPerSpan Number
    Number of drives within this span group. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk. RAID1 and RAID10 requires at least 2 and in multiples of . RAID5 and RAID50 require at least 3 disks in a span group. RAID6 and RAID60 require atleast 4 disks in a span.
    minimumDriveSize Number
    Minimum size of the drive to be used for creating this RAID group.
    numDedicatedHotSpares String
    Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
    numberOfSpans Number
    Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    useRemainingDrives Boolean
    This flag enables the drive group to use all the remaining drives on the server.

    StorageDriveGroupManualDriveGroup, StorageDriveGroupManualDriveGroupArgs

    AdditionalProperties string
    ClassId string
    DedicatedHotSpares string
    A collection of drives to be used as hot spares for this Drive Group.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SpanGroups List<StorageDriveGroupManualDriveGroupSpanGroup>
    This complex property has following sub-properties:
    AdditionalProperties string
    ClassId string
    DedicatedHotSpares string
    A collection of drives to be used as hot spares for this Drive Group.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SpanGroups []StorageDriveGroupManualDriveGroupSpanGroup
    This complex property has following sub-properties:
    additionalProperties String
    classId String
    dedicatedHotSpares String
    A collection of drives to be used as hot spares for this Drive Group.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    spanGroups List<StorageDriveGroupManualDriveGroupSpanGroup>
    This complex property has following sub-properties:
    additionalProperties string
    classId string
    dedicatedHotSpares string
    A collection of drives to be used as hot spares for this Drive Group.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    spanGroups StorageDriveGroupManualDriveGroupSpanGroup[]
    This complex property has following sub-properties:
    additional_properties str
    class_id str
    dedicated_hot_spares str
    A collection of drives to be used as hot spares for this Drive Group.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    span_groups Sequence[StorageDriveGroupManualDriveGroupSpanGroup]
    This complex property has following sub-properties:
    additionalProperties String
    classId String
    dedicatedHotSpares String
    A collection of drives to be used as hot spares for this Drive Group.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    spanGroups List<Property Map>
    This complex property has following sub-properties:

    StorageDriveGroupManualDriveGroupSpanGroup, StorageDriveGroupManualDriveGroupSpanGroupArgs

    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Slots string
    Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group.
    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Slots string
    Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group.
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    slots String
    Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group.
    additionalProperties string
    classId string
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    slots string
    Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group.
    additional_properties str
    class_id str
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    slots str
    Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group.
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    slots String
    Collection of local disks that are part of this span group. Allowed value is a comma or hyphen separated number range. The minimum number of disks needed in a span group varies based on RAID level. RAID0 requires at least one disk, RAID1 and RAID10 requires at least 2 and in multiples of 2, RAID5 RAID50 RAID6 and RAID60 require at least 3 disks in a span group.

    StorageDriveGroupParent, StorageDriveGroupParentArgs

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

    StorageDriveGroupPermissionResource, StorageDriveGroupPermissionResourceArgs

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

    StorageDriveGroupStoragePolicy, StorageDriveGroupStoragePolicyArgs

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

    StorageDriveGroupTag, StorageDriveGroupTagArgs

    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.

    StorageDriveGroupVersionContext, StorageDriveGroupVersionContextArgs

    AdditionalProperties string
    ClassId string
    InterestedMos List<StorageDriveGroupVersionContextInterestedMo>
    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<StorageDriveGroupVersionContextRefMo>
    (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 []StorageDriveGroupVersionContextInterestedMo
    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 []StorageDriveGroupVersionContextRefMo
    (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<StorageDriveGroupVersionContextInterestedMo>
    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<StorageDriveGroupVersionContextRefMo>
    (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 StorageDriveGroupVersionContextInterestedMo[]
    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 StorageDriveGroupVersionContextRefMo[]
    (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[StorageDriveGroupVersionContextInterestedMo]
    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[StorageDriveGroupVersionContextRefMo]
    (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.

    StorageDriveGroupVersionContextInterestedMo, StorageDriveGroupVersionContextInterestedMoArgs

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

    StorageDriveGroupVersionContextRefMo, StorageDriveGroupVersionContextRefMoArgs

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

    StorageDriveGroupVirtualDrife, StorageDriveGroupVirtualDrifeArgs

    AdditionalProperties string
    BootDrive bool
    This flag enables this virtual drive to be used as a boot drive.
    ClassId string
    ExpandToAvailable bool
    This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored.
    Name string
    The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Size double
    Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled.
    VirtualDrivePolicies List<StorageDriveGroupVirtualDrifeVirtualDrivePolicy>
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
    AdditionalProperties string
    BootDrive bool
    This flag enables this virtual drive to be used as a boot drive.
    ClassId string
    ExpandToAvailable bool
    This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored.
    Name string
    The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Size float64
    Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled.
    VirtualDrivePolicies []StorageDriveGroupVirtualDrifeVirtualDrivePolicy
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
    additionalProperties String
    bootDrive Boolean
    This flag enables this virtual drive to be used as a boot drive.
    classId String
    expandToAvailable Boolean
    This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored.
    name String
    The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    size Double
    Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled.
    virtualDrivePolicies List<StorageDriveGroupVirtualDrifeVirtualDrivePolicy>
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
    additionalProperties string
    bootDrive boolean
    This flag enables this virtual drive to be used as a boot drive.
    classId string
    expandToAvailable boolean
    This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored.
    name string
    The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    size number
    Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled.
    virtualDrivePolicies StorageDriveGroupVirtualDrifeVirtualDrivePolicy[]
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
    additional_properties str
    boot_drive bool
    This flag enables this virtual drive to be used as a boot drive.
    class_id str
    expand_to_available bool
    This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored.
    name str
    The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    size float
    Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled.
    virtual_drive_policies Sequence[StorageDriveGroupVirtualDrifeVirtualDrivePolicy]
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
    additionalProperties String
    bootDrive Boolean
    This flag enables this virtual drive to be used as a boot drive.
    classId String
    expandToAvailable Boolean
    This flag enables the virtual drive to use all the space available in the disk group. When this flag is enabled, the size property is ignored.
    name String
    The name of the virtual drive. The name can be between 1 and 15 alphanumeric characters. Spaces or any special characters other than - (hyphen) and _ (underscore) are not allowed.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    size Number
    Virtual drive size in MebiBytes. Size is mandatory field except when the Expand to Available option is enabled.
    virtualDrivePolicies List<Property Map>
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:

    StorageDriveGroupVirtualDrifeVirtualDrivePolicy, StorageDriveGroupVirtualDrifeVirtualDrivePolicyArgs

    AccessPolicy string
    Access policy that host has on this virtual drive.* Default - Use platform default access mode.* ReadWrite - Enables host to perform read-write on the VD.* ReadOnly - Host can only read from the VD.* Blocked - Host can neither read nor write to the VD.
    AdditionalProperties string
    ClassId string
    DriveCache string
    Disk cache policy for the virtual drive.* Default - Use platform default drive cache mode.* NoChange - Drive cache policy is unchanged.* Enable - Enables IO caching on the drive.* Disable - Disables IO caching on the drive.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ReadPolicy string
    Read ahead mode to be used to read data from this virtual drive.* Default - Use platform default read ahead mode.* ReadAhead - Use read ahead mode for the policy.* NoReadAhead - Do not use read ahead mode for the policy.
    StripSize double
    Desired strip size - Allowed values are 64KiB, 128KiB, 256KiB, 512KiB, 1024KiB.* 64 - Number of bytes in a strip is 64 Kibibytes.* 128 - Number of bytes in a strip is 128 Kibibytes.* 256 - Number of bytes in a strip is 256 Kibibytes.* 512 - Number of bytes in a strip is 512 Kibibytes.* 1024 - Number of bytes in a strip is 1024 Kibibytes or 1 Mebibyte.
    WritePolicy string
    Write mode to be used to write data to this virtual drive.* Default - Use platform default write mode.* WriteThrough - Data is written through the cache and to the physical drives. Performance is improved, because subsequent reads of that data can be satisfied from the cache.* WriteBackGoodBbu - Data is stored in the cache, and is only written to the physical drives when space in the cache is needed. Virtual drives requesting this policy fall back to Write Through caching when the battery backup unit (BBU) cannot guarantee the safety of the cache in the event of a power failure.* AlwaysWriteBack - With this policy, write caching remains Write Back even if the battery backup unit is defective or discharged.
    AccessPolicy string
    Access policy that host has on this virtual drive.* Default - Use platform default access mode.* ReadWrite - Enables host to perform read-write on the VD.* ReadOnly - Host can only read from the VD.* Blocked - Host can neither read nor write to the VD.
    AdditionalProperties string
    ClassId string
    DriveCache string
    Disk cache policy for the virtual drive.* Default - Use platform default drive cache mode.* NoChange - Drive cache policy is unchanged.* Enable - Enables IO caching on the drive.* Disable - Disables IO caching on the drive.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ReadPolicy string
    Read ahead mode to be used to read data from this virtual drive.* Default - Use platform default read ahead mode.* ReadAhead - Use read ahead mode for the policy.* NoReadAhead - Do not use read ahead mode for the policy.
    StripSize float64
    Desired strip size - Allowed values are 64KiB, 128KiB, 256KiB, 512KiB, 1024KiB.* 64 - Number of bytes in a strip is 64 Kibibytes.* 128 - Number of bytes in a strip is 128 Kibibytes.* 256 - Number of bytes in a strip is 256 Kibibytes.* 512 - Number of bytes in a strip is 512 Kibibytes.* 1024 - Number of bytes in a strip is 1024 Kibibytes or 1 Mebibyte.
    WritePolicy string
    Write mode to be used to write data to this virtual drive.* Default - Use platform default write mode.* WriteThrough - Data is written through the cache and to the physical drives. Performance is improved, because subsequent reads of that data can be satisfied from the cache.* WriteBackGoodBbu - Data is stored in the cache, and is only written to the physical drives when space in the cache is needed. Virtual drives requesting this policy fall back to Write Through caching when the battery backup unit (BBU) cannot guarantee the safety of the cache in the event of a power failure.* AlwaysWriteBack - With this policy, write caching remains Write Back even if the battery backup unit is defective or discharged.
    accessPolicy String
    Access policy that host has on this virtual drive.* Default - Use platform default access mode.* ReadWrite - Enables host to perform read-write on the VD.* ReadOnly - Host can only read from the VD.* Blocked - Host can neither read nor write to the VD.
    additionalProperties String
    classId String
    driveCache String
    Disk cache policy for the virtual drive.* Default - Use platform default drive cache mode.* NoChange - Drive cache policy is unchanged.* Enable - Enables IO caching on the drive.* Disable - Disables IO caching on the drive.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    readPolicy String
    Read ahead mode to be used to read data from this virtual drive.* Default - Use platform default read ahead mode.* ReadAhead - Use read ahead mode for the policy.* NoReadAhead - Do not use read ahead mode for the policy.
    stripSize Double
    Desired strip size - Allowed values are 64KiB, 128KiB, 256KiB, 512KiB, 1024KiB.* 64 - Number of bytes in a strip is 64 Kibibytes.* 128 - Number of bytes in a strip is 128 Kibibytes.* 256 - Number of bytes in a strip is 256 Kibibytes.* 512 - Number of bytes in a strip is 512 Kibibytes.* 1024 - Number of bytes in a strip is 1024 Kibibytes or 1 Mebibyte.
    writePolicy String
    Write mode to be used to write data to this virtual drive.* Default - Use platform default write mode.* WriteThrough - Data is written through the cache and to the physical drives. Performance is improved, because subsequent reads of that data can be satisfied from the cache.* WriteBackGoodBbu - Data is stored in the cache, and is only written to the physical drives when space in the cache is needed. Virtual drives requesting this policy fall back to Write Through caching when the battery backup unit (BBU) cannot guarantee the safety of the cache in the event of a power failure.* AlwaysWriteBack - With this policy, write caching remains Write Back even if the battery backup unit is defective or discharged.
    accessPolicy string
    Access policy that host has on this virtual drive.* Default - Use platform default access mode.* ReadWrite - Enables host to perform read-write on the VD.* ReadOnly - Host can only read from the VD.* Blocked - Host can neither read nor write to the VD.
    additionalProperties string
    classId string
    driveCache string
    Disk cache policy for the virtual drive.* Default - Use platform default drive cache mode.* NoChange - Drive cache policy is unchanged.* Enable - Enables IO caching on the drive.* Disable - Disables IO caching on the drive.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    readPolicy string
    Read ahead mode to be used to read data from this virtual drive.* Default - Use platform default read ahead mode.* ReadAhead - Use read ahead mode for the policy.* NoReadAhead - Do not use read ahead mode for the policy.
    stripSize number
    Desired strip size - Allowed values are 64KiB, 128KiB, 256KiB, 512KiB, 1024KiB.* 64 - Number of bytes in a strip is 64 Kibibytes.* 128 - Number of bytes in a strip is 128 Kibibytes.* 256 - Number of bytes in a strip is 256 Kibibytes.* 512 - Number of bytes in a strip is 512 Kibibytes.* 1024 - Number of bytes in a strip is 1024 Kibibytes or 1 Mebibyte.
    writePolicy string
    Write mode to be used to write data to this virtual drive.* Default - Use platform default write mode.* WriteThrough - Data is written through the cache and to the physical drives. Performance is improved, because subsequent reads of that data can be satisfied from the cache.* WriteBackGoodBbu - Data is stored in the cache, and is only written to the physical drives when space in the cache is needed. Virtual drives requesting this policy fall back to Write Through caching when the battery backup unit (BBU) cannot guarantee the safety of the cache in the event of a power failure.* AlwaysWriteBack - With this policy, write caching remains Write Back even if the battery backup unit is defective or discharged.
    access_policy str
    Access policy that host has on this virtual drive.* Default - Use platform default access mode.* ReadWrite - Enables host to perform read-write on the VD.* ReadOnly - Host can only read from the VD.* Blocked - Host can neither read nor write to the VD.
    additional_properties str
    class_id str
    drive_cache str
    Disk cache policy for the virtual drive.* Default - Use platform default drive cache mode.* NoChange - Drive cache policy is unchanged.* Enable - Enables IO caching on the drive.* Disable - Disables IO caching on the drive.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    read_policy str
    Read ahead mode to be used to read data from this virtual drive.* Default - Use platform default read ahead mode.* ReadAhead - Use read ahead mode for the policy.* NoReadAhead - Do not use read ahead mode for the policy.
    strip_size float
    Desired strip size - Allowed values are 64KiB, 128KiB, 256KiB, 512KiB, 1024KiB.* 64 - Number of bytes in a strip is 64 Kibibytes.* 128 - Number of bytes in a strip is 128 Kibibytes.* 256 - Number of bytes in a strip is 256 Kibibytes.* 512 - Number of bytes in a strip is 512 Kibibytes.* 1024 - Number of bytes in a strip is 1024 Kibibytes or 1 Mebibyte.
    write_policy str
    Write mode to be used to write data to this virtual drive.* Default - Use platform default write mode.* WriteThrough - Data is written through the cache and to the physical drives. Performance is improved, because subsequent reads of that data can be satisfied from the cache.* WriteBackGoodBbu - Data is stored in the cache, and is only written to the physical drives when space in the cache is needed. Virtual drives requesting this policy fall back to Write Through caching when the battery backup unit (BBU) cannot guarantee the safety of the cache in the event of a power failure.* AlwaysWriteBack - With this policy, write caching remains Write Back even if the battery backup unit is defective or discharged.
    accessPolicy String
    Access policy that host has on this virtual drive.* Default - Use platform default access mode.* ReadWrite - Enables host to perform read-write on the VD.* ReadOnly - Host can only read from the VD.* Blocked - Host can neither read nor write to the VD.
    additionalProperties String
    classId String
    driveCache String
    Disk cache policy for the virtual drive.* Default - Use platform default drive cache mode.* NoChange - Drive cache policy is unchanged.* Enable - Enables IO caching on the drive.* Disable - Disables IO caching on the drive.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    readPolicy String
    Read ahead mode to be used to read data from this virtual drive.* Default - Use platform default read ahead mode.* ReadAhead - Use read ahead mode for the policy.* NoReadAhead - Do not use read ahead mode for the policy.
    stripSize Number
    Desired strip size - Allowed values are 64KiB, 128KiB, 256KiB, 512KiB, 1024KiB.* 64 - Number of bytes in a strip is 64 Kibibytes.* 128 - Number of bytes in a strip is 128 Kibibytes.* 256 - Number of bytes in a strip is 256 Kibibytes.* 512 - Number of bytes in a strip is 512 Kibibytes.* 1024 - Number of bytes in a strip is 1024 Kibibytes or 1 Mebibyte.
    writePolicy String
    Write mode to be used to write data to this virtual drive.* Default - Use platform default write mode.* WriteThrough - Data is written through the cache and to the physical drives. Performance is improved, because subsequent reads of that data can be satisfied from the cache.* WriteBackGoodBbu - Data is stored in the cache, and is only written to the physical drives when space in the cache is needed. Virtual drives requesting this policy fall back to Write Through caching when the battery backup unit (BBU) cannot guarantee the safety of the cache in the event of a power failure.* AlwaysWriteBack - With this policy, write caching remains Write Back even if the battery backup unit is defective or discharged.

    Import

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

    $ pulumi import intersight:index/storageDriveGroup:StorageDriveGroup 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