intersight.StorageDriveGroup
Explore with Pulumi AI
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:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Storage
Drive Group Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Automatic
Drive List<StorageGroups Drive Group Automatic Drive Group> - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Manual
Drive List<StorageGroups Drive Group Manual Drive Group> - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- 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 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<Storage
Drive Group Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<StorageDrive Group Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Raid
Level 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. - Secure
Drive boolGroup - 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.
- 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.
- Storage
Drive stringGroup Id - Storage
Policies List<StorageDrive Group Storage Policy> - 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:
- List<Storage
Drive Group Tag> - 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. - Version
Contexts List<StorageDrive Group Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Virtual
Drives List<StorageDrive Group Virtual Drife> - This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Storage
Drive Group Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Automatic
Drive []StorageGroups Drive Group Automatic Drive Group Args - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Manual
Drive []StorageGroups Drive Group Manual Drive Group Args - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- 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 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
[]Storage
Drive Group Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []StorageDrive Group Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Raid
Level 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. - Secure
Drive boolGroup - 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.
- 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.
- Storage
Drive stringGroup Id - Storage
Policies []StorageDrive Group Storage Policy Args - 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:
- []Storage
Drive Group Tag Args - 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. - Version
Contexts []StorageDrive Group Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Virtual
Drives []StorageDrive Group Virtual Drife Args - This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Storage
Drive Group Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- automatic
Drive List<StorageGroups Drive Group Automatic Drive Group> - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- manual
Drive List<StorageGroups Drive Group Manual Drive Group> - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- 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 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<Storage
Drive Group Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<StorageDrive Group Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- raid
Level 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. - secure
Drive BooleanGroup - 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.
- 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.
- storage
Drive StringGroup Id - storage
Policies List<StorageDrive Group Storage Policy> - 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:
- List<Storage
Drive Group Tag> - 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. - version
Contexts List<StorageDrive Group Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- virtual
Drives List<StorageDrive Group Virtual Drife> - This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Storage
Drive Group Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- automatic
Drive StorageGroups Drive Group Automatic Drive Group[] - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- manual
Drive StorageGroups Drive Group Manual Drive Group[] - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- 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 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
Storage
Drive Group Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources StorageDrive Group Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- raid
Level 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. - secure
Drive booleanGroup - 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.
- 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.
- storage
Drive stringGroup Id - storage
Policies StorageDrive Group Storage Policy[] - 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:
- Storage
Drive Group Tag[] - 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. - version
Contexts StorageDrive Group Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- virtual
Drives StorageDrive Group Virtual Drife[] - This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Storage
Drive Group Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- automatic_
drive_ Sequence[Storagegroups Drive Group Automatic Drive Group Args] - 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_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- manual_
drive_ Sequence[Storagegroups Drive Group Manual Drive Group Args] - 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[Storage
Drive Group Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[StorageDrive Group Permission Resource Args] - (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_ boolgroup - 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.
- 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_ strgroup_ id - storage_
policies Sequence[StorageDrive Group Storage Policy Args] - 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:
- Sequence[Storage
Drive Group Tag Args] - 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[StorageDrive Group Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- virtual_
drives Sequence[StorageDrive Group Virtual Drife Args] - This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- automatic
Drive List<Property Map>Groups - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- manual
Drive List<Property Map>Groups - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- 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 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- raid
Level 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. - secure
Drive BooleanGroup - 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.
- 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.
- storage
Drive StringGroup Id - storage
Policies 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:
- 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. - version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- virtual
Drives 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.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Storage
Drive Group Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Automatic
Drive List<StorageGroups Drive Group Automatic Drive Group> - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Manual
Drive List<StorageGroups Drive Group Manual Drive Group> - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- 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 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<Storage
Drive Group Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<StorageDrive Group Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Raid
Level 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. - Secure
Drive boolGroup - 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.
- 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.
- Storage
Drive stringGroup Id - Storage
Policies List<StorageDrive Group Storage Policy> - 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:
- List<Storage
Drive Group Tag> - 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. - Version
Contexts List<StorageDrive Group Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Virtual
Drives List<StorageDrive Group Virtual Drife> - This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Storage
Drive Group Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Automatic
Drive []StorageGroups Drive Group Automatic Drive Group Args - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Manual
Drive []StorageGroups Drive Group Manual Drive Group Args - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- 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 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
[]Storage
Drive Group Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []StorageDrive Group Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Raid
Level 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. - Secure
Drive boolGroup - 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.
- 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.
- Storage
Drive stringGroup Id - Storage
Policies []StorageDrive Group Storage Policy Args - 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:
- []Storage
Drive Group Tag Args - 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. - Version
Contexts []StorageDrive Group Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Virtual
Drives []StorageDrive Group Virtual Drife Args - This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Storage
Drive Group Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- automatic
Drive List<StorageGroups Drive Group Automatic Drive Group> - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- manual
Drive List<StorageGroups Drive Group Manual Drive Group> - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- 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 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<Storage
Drive Group Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<StorageDrive Group Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- raid
Level 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. - secure
Drive BooleanGroup - 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.
- 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.
- storage
Drive StringGroup Id - storage
Policies List<StorageDrive Group Storage Policy> - 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:
- List<Storage
Drive Group Tag> - 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. - version
Contexts List<StorageDrive Group Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- virtual
Drives List<StorageDrive Group Virtual Drife> - This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Storage
Drive Group Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- automatic
Drive StorageGroups Drive Group Automatic Drive Group[] - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- manual
Drive StorageGroups Drive Group Manual Drive Group[] - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- 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 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
Storage
Drive Group Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources StorageDrive Group Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- raid
Level 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. - secure
Drive booleanGroup - 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.
- 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.
- storage
Drive stringGroup Id - storage
Policies StorageDrive Group Storage Policy[] - 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:
- Storage
Drive Group Tag[] - 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. - version
Contexts StorageDrive Group Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- virtual
Drives StorageDrive Group Virtual Drife[] - This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Storage
Drive Group Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- automatic_
drive_ Sequence[Storagegroups Drive Group Automatic Drive Group Args] - 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_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- manual_
drive_ Sequence[Storagegroups Drive Group Manual Drive Group Args] - 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[Storage
Drive Group Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[StorageDrive Group Permission Resource Args] - (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_ boolgroup - 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.
- 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_ strgroup_ id - storage_
policies Sequence[StorageDrive Group Storage Policy Args] - 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:
- Sequence[Storage
Drive Group Tag Args] - 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[StorageDrive Group Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- virtual_
drives Sequence[StorageDrive Group Virtual Drife Args] - This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- automatic
Drive List<Property Map>Groups - This drive group is created using automatic drive selection. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- manual
Drive List<Property Map>Groups - This drive group is created by specifying the drive slots to be used. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- 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 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- raid
Level 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. - secure
Drive BooleanGroup - 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.
- 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.
- storage
Drive StringGroup Id - storage
Policies 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:
- 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. - version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- virtual
Drives List<Property Map> - This complex property has following sub-properties:
Supporting Types
StorageDriveGroupAncestor, StorageDriveGroupAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
StorageDriveGroupAutomaticDriveGroup, StorageDriveGroupAutomaticDriveGroupArgs
- Additional
Properties string - Class
Id string - Drive
Type 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. - Drives
Per doubleSpan - 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 doubleSize - Minimum size of the drive to be used for creating this RAID group.
- Num
Dedicated stringHot Spares - Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
- Number
Of doubleSpans - Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Use
Remaining boolDrives - This flag enables the drive group to use all the remaining drives on the server.
- Additional
Properties string - Class
Id string - Drive
Type 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. - Drives
Per float64Span - 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 float64Size - Minimum size of the drive to be used for creating this RAID group.
- Num
Dedicated stringHot Spares - Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
- Number
Of float64Spans - Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Use
Remaining boolDrives - This flag enables the drive group to use all the remaining drives on the server.
- additional
Properties String - class
Id String - drive
Type 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. - drives
Per DoubleSpan - 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 DoubleSize - Minimum size of the drive to be used for creating this RAID group.
- num
Dedicated StringHot Spares - Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
- number
Of DoubleSpans - Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- use
Remaining BooleanDrives - This flag enables the drive group to use all the remaining drives on the server.
- additional
Properties string - class
Id string - drive
Type 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. - drives
Per numberSpan - 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 numberSize - Minimum size of the drive to be used for creating this RAID group.
- num
Dedicated stringHot Spares - Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
- number
Of numberSpans - Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- use
Remaining booleanDrives - 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_ floatspan - 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_ floatsize - Minimum size of the drive to be used for creating this RAID group.
- num_
dedicated_ strhot_ spares - Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
- number_
of_ floatspans - 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_ booldrives - This flag enables the drive group to use all the remaining drives on the server.
- additional
Properties String - class
Id String - drive
Type 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. - drives
Per NumberSpan - 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 NumberSize - Minimum size of the drive to be used for creating this RAID group.
- num
Dedicated StringHot Spares - Number of dedicated hot spare disks for this RAID group. Allowed value is a comma or hyphen separated number range.
- number
Of NumberSpans - Number of span groups to be created for this RAID group. Non-nested RAID levels have a single span.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- use
Remaining BooleanDrives - This flag enables the drive group to use all the remaining drives on the server.
StorageDriveGroupManualDriveGroup, StorageDriveGroupManualDriveGroupArgs
- Additional
Properties string - Class
Id string - Dedicated
Hot stringSpares - A collection of drives to be used as hot spares for this Drive Group.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Span
Groups List<StorageDrive Group Manual Drive Group Span Group> - This complex property has following sub-properties:
- Additional
Properties string - Class
Id string - Dedicated
Hot stringSpares - A collection of drives to be used as hot spares for this Drive Group.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Span
Groups []StorageDrive Group Manual Drive Group Span Group - This complex property has following sub-properties:
- additional
Properties String - class
Id String - dedicated
Hot StringSpares - A collection of drives to be used as hot spares for this Drive Group.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- span
Groups List<StorageDrive Group Manual Drive Group Span Group> - This complex property has following sub-properties:
- additional
Properties string - class
Id string - dedicated
Hot stringSpares - A collection of drives to be used as hot spares for this Drive Group.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- span
Groups StorageDrive Group Manual Drive Group Span Group[] - This complex property has following sub-properties:
- additional_
properties str - class_
id str - dedicated_
hot_ strspares - 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[StorageDrive Group Manual Drive Group Span Group] - This complex property has following sub-properties:
- additional
Properties String - class
Id String - dedicated
Hot StringSpares - A collection of drives to be used as hot spares for this Drive Group.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- span
Groups List<Property Map> - This complex property has following sub-properties:
StorageDriveGroupManualDriveGroupSpanGroup, StorageDriveGroupManualDriveGroupSpanGroupArgs
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- 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 string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- 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 String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- 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 string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- 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.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
StorageDriveGroupPermissionResource, StorageDriveGroupPermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
StorageDriveGroupStoragePolicy, StorageDriveGroupStoragePolicyArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
StorageDriveGroupTag, StorageDriveGroupTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
StorageDriveGroupVersionContext, StorageDriveGroupVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<StorageDrive Group Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<StorageDrive Group Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []StorageDrive Group Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []StorageDrive Group Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<StorageDrive Group Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<StorageDrive Group Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos StorageDrive Group Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos StorageDrive Group Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[StorageDrive Group Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[StorageDrive Group Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
StorageDriveGroupVersionContextInterestedMo, StorageDriveGroupVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
StorageDriveGroupVersionContextRefMo, StorageDriveGroupVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
StorageDriveGroupVirtualDrife, StorageDriveGroupVirtualDrifeArgs
- Additional
Properties string - Boot
Drive bool - This flag enables this virtual drive to be used as a boot drive.
- Class
Id string - Expand
To boolAvailable - 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.
- Object
Type 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.
- Virtual
Drive List<StoragePolicies Drive Group Virtual Drife Virtual Drive Policy> - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
- Additional
Properties string - Boot
Drive bool - This flag enables this virtual drive to be used as a boot drive.
- Class
Id string - Expand
To boolAvailable - 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.
- Object
Type 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.
- Virtual
Drive []StoragePolicies Drive Group Virtual Drife Virtual Drive Policy - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
- additional
Properties String - boot
Drive Boolean - This flag enables this virtual drive to be used as a boot drive.
- class
Id String - expand
To BooleanAvailable - 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.
- object
Type 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.
- virtual
Drive List<StoragePolicies Drive Group Virtual Drife Virtual Drive Policy> - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
- additional
Properties string - boot
Drive boolean - This flag enables this virtual drive to be used as a boot drive.
- class
Id string - expand
To booleanAvailable - 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.
- object
Type 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.
- virtual
Drive StoragePolicies Drive Group Virtual Drife Virtual Drive Policy[] - 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_ boolavailable - 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_ Sequence[Storagepolicies Drive Group Virtual Drife Virtual Drive Policy] - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
- additional
Properties String - boot
Drive Boolean - This flag enables this virtual drive to be used as a boot drive.
- class
Id String - expand
To BooleanAvailable - 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.
- object
Type 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.
- virtual
Drive List<Property Map>Policies - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
StorageDriveGroupVirtualDrifeVirtualDrivePolicy, StorageDriveGroupVirtualDrifeVirtualDrivePolicyArgs
- Access
Policy 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. - Additional
Properties string - Class
Id string - Drive
Cache 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. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Read
Policy 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. - Strip
Size 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. - Write
Policy 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 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. - Additional
Properties string - Class
Id string - Drive
Cache 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. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Read
Policy 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. - Strip
Size 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. - Write
Policy 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 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. - additional
Properties String - class
Id String - drive
Cache 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. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- read
Policy 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. - strip
Size 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. - write
Policy 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 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. - additional
Properties string - class
Id string - drive
Cache 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. - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- read
Policy 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. - strip
Size 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. - write
Policy 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.
- access
Policy 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. - additional
Properties String - class
Id String - drive
Cache 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. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- read
Policy 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. - strip
Size 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. - write
Policy 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.