intersight.StorageStoragePolicy
Explore with Pulumi AI
The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The security of drives can be enabled through this policy using remote keys from a KMIP server or Manually configured keys.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const organization = config.require("organization");
const tfStoragePolicy = new intersight.StorageStoragePolicy("tfStoragePolicy", {
useJbodForVdCreation: true,
description: "storage policy test",
unusedDisksState: "UnconfiguredGood",
organizations: [{
objectType: "organization.Organization",
moid: organization,
}],
globalHotSpares: "3",
m2VirtualDrives: [{
enable: false,
objectType: "storage.M2VirtualDriveConfig",
}],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
organization = config.require("organization")
tf_storage_policy = intersight.StorageStoragePolicy("tfStoragePolicy",
use_jbod_for_vd_creation=True,
description="storage policy test",
unused_disks_state="UnconfiguredGood",
organizations=[{
"object_type": "organization.Organization",
"moid": organization,
}],
global_hot_spares="3",
m2_virtual_drives=[{
"enable": False,
"object_type": "storage.M2VirtualDriveConfig",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
organization := cfg.Require("organization")
_, err := intersight.NewStorageStoragePolicy(ctx, "tfStoragePolicy", &intersight.StorageStoragePolicyArgs{
UseJbodForVdCreation: pulumi.Bool(true),
Description: pulumi.String("storage policy test"),
UnusedDisksState: pulumi.String("UnconfiguredGood"),
Organizations: intersight.StorageStoragePolicyOrganizationArray{
&intersight.StorageStoragePolicyOrganizationArgs{
ObjectType: pulumi.String("organization.Organization"),
Moid: pulumi.String(organization),
},
},
GlobalHotSpares: pulumi.String("3"),
M2VirtualDrives: intersight.StorageStoragePolicyM2VirtualDrifeArray{
&intersight.StorageStoragePolicyM2VirtualDrifeArgs{
Enable: pulumi.Bool(false),
ObjectType: pulumi.String("storage.M2VirtualDriveConfig"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var organization = config.Require("organization");
var tfStoragePolicy = new Intersight.StorageStoragePolicy("tfStoragePolicy", new()
{
UseJbodForVdCreation = true,
Description = "storage policy test",
UnusedDisksState = "UnconfiguredGood",
Organizations = new[]
{
new Intersight.Inputs.StorageStoragePolicyOrganizationArgs
{
ObjectType = "organization.Organization",
Moid = organization,
},
},
GlobalHotSpares = "3",
M2VirtualDrives = new[]
{
new Intersight.Inputs.StorageStoragePolicyM2VirtualDrifeArgs
{
Enable = false,
ObjectType = "storage.M2VirtualDriveConfig",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.StorageStoragePolicy;
import com.pulumi.intersight.StorageStoragePolicyArgs;
import com.pulumi.intersight.inputs.StorageStoragePolicyOrganizationArgs;
import com.pulumi.intersight.inputs.StorageStoragePolicyM2VirtualDrifeArgs;
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 organization = config.get("organization");
var tfStoragePolicy = new StorageStoragePolicy("tfStoragePolicy", StorageStoragePolicyArgs.builder()
.useJbodForVdCreation(true)
.description("storage policy test")
.unusedDisksState("UnconfiguredGood")
.organizations(StorageStoragePolicyOrganizationArgs.builder()
.objectType("organization.Organization")
.moid(organization)
.build())
.globalHotSpares("3")
.m2VirtualDrives(StorageStoragePolicyM2VirtualDrifeArgs.builder()
.enable(false)
.objectType("storage.M2VirtualDriveConfig")
.build())
.build());
}
}
configuration:
organization:
type: string
resources:
tfStoragePolicy:
type: intersight:StorageStoragePolicy
properties:
useJbodForVdCreation: true
description: storage policy test
unusedDisksState: UnconfiguredGood
organizations:
- objectType: organization.Organization
moid: ${organization}
globalHotSpares: '3'
m2VirtualDrives:
- enable: false
objectType: storage.M2VirtualDriveConfig
Create StorageStoragePolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StorageStoragePolicy(name: string, args?: StorageStoragePolicyArgs, opts?: CustomResourceOptions);
@overload
def StorageStoragePolicy(resource_name: str,
args: Optional[StorageStoragePolicyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def StorageStoragePolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[StorageStoragePolicyAncestorArgs]] = None,
class_id: Optional[str] = None,
controller_attached_nvme_slots: Optional[str] = None,
create_time: Optional[str] = None,
default_drive_mode: Optional[str] = None,
description: Optional[str] = None,
direct_attached_nvme_slots: Optional[str] = None,
domain_group_moid: Optional[str] = None,
drive_groups: Optional[Sequence[StorageStoragePolicyDriveGroupArgs]] = None,
global_hot_spares: Optional[str] = None,
m2_virtual_drives: Optional[Sequence[StorageStoragePolicyM2VirtualDrifeArgs]] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[StorageStoragePolicyOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[StorageStoragePolicyParentArgs]] = None,
permission_resources: Optional[Sequence[StorageStoragePolicyPermissionResourceArgs]] = None,
profiles: Optional[Sequence[StorageStoragePolicyProfileArgs]] = None,
raid0_drives: Optional[Sequence[StorageStoragePolicyRaid0DrifeArgs]] = None,
raid_attached_nvme_slots: Optional[str] = None,
secure_jbods: Optional[str] = None,
shared_scope: Optional[str] = None,
storage_storage_policy_id: Optional[str] = None,
tags: Optional[Sequence[StorageStoragePolicyTagArgs]] = None,
unused_disks_state: Optional[str] = None,
use_jbod_for_vd_creation: Optional[bool] = None,
version_contexts: Optional[Sequence[StorageStoragePolicyVersionContextArgs]] = None)
func NewStorageStoragePolicy(ctx *Context, name string, args *StorageStoragePolicyArgs, opts ...ResourceOption) (*StorageStoragePolicy, error)
public StorageStoragePolicy(string name, StorageStoragePolicyArgs? args = null, CustomResourceOptions? opts = null)
public StorageStoragePolicy(String name, StorageStoragePolicyArgs args)
public StorageStoragePolicy(String name, StorageStoragePolicyArgs args, CustomResourceOptions options)
type: intersight:StorageStoragePolicy
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 StorageStoragePolicyArgs
- 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 StorageStoragePolicyArgs
- 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 StorageStoragePolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StorageStoragePolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StorageStoragePolicyArgs
- 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 storageStoragePolicyResource = new Intersight.StorageStoragePolicy("storageStoragePolicyResource", new()
{
AccountMoid = "string",
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.StorageStoragePolicyAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ClassId = "string",
ControllerAttachedNvmeSlots = "string",
CreateTime = "string",
DefaultDriveMode = "string",
Description = "string",
DirectAttachedNvmeSlots = "string",
DomainGroupMoid = "string",
DriveGroups = new[]
{
new Intersight.Inputs.StorageStoragePolicyDriveGroupArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
GlobalHotSpares = "string",
M2VirtualDrives = new[]
{
new Intersight.Inputs.StorageStoragePolicyM2VirtualDrifeArgs
{
AdditionalProperties = "string",
ClassId = "string",
ControllerSlot = "string",
Enable = false,
Name = "string",
ObjectType = "string",
},
},
ModTime = "string",
Moid = "string",
Name = "string",
ObjectType = "string",
Organizations = new[]
{
new Intersight.Inputs.StorageStoragePolicyOrganizationArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.StorageStoragePolicyParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.StorageStoragePolicyPermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Profiles = new[]
{
new Intersight.Inputs.StorageStoragePolicyProfileArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Raid0Drives = new[]
{
new Intersight.Inputs.StorageStoragePolicyRaid0DrifeArgs
{
AdditionalProperties = "string",
ClassId = "string",
DriveSlots = "string",
DriveSlotsList = "string",
Enable = false,
ObjectType = "string",
VirtualDrivePolicies = new[]
{
new Intersight.Inputs.StorageStoragePolicyRaid0DrifeVirtualDrivePolicyArgs
{
AccessPolicy = "string",
AdditionalProperties = "string",
ClassId = "string",
DriveCache = "string",
ObjectType = "string",
ReadPolicy = "string",
StripSize = 0,
WritePolicy = "string",
},
},
},
},
RaidAttachedNvmeSlots = "string",
SecureJbods = "string",
SharedScope = "string",
StorageStoragePolicyId = "string",
Tags = new[]
{
new Intersight.Inputs.StorageStoragePolicyTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
UnusedDisksState = "string",
UseJbodForVdCreation = false,
VersionContexts = new[]
{
new Intersight.Inputs.StorageStoragePolicyVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.StorageStoragePolicyVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.StorageStoragePolicyVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
});
example, err := intersight.NewStorageStoragePolicy(ctx, "storageStoragePolicyResource", &intersight.StorageStoragePolicyArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.StorageStoragePolicyAncestorArray{
&intersight.StorageStoragePolicyAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
ControllerAttachedNvmeSlots: pulumi.String("string"),
CreateTime: pulumi.String("string"),
DefaultDriveMode: pulumi.String("string"),
Description: pulumi.String("string"),
DirectAttachedNvmeSlots: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
DriveGroups: intersight.StorageStoragePolicyDriveGroupArray{
&intersight.StorageStoragePolicyDriveGroupArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
GlobalHotSpares: pulumi.String("string"),
M2VirtualDrives: intersight.StorageStoragePolicyM2VirtualDrifeArray{
&intersight.StorageStoragePolicyM2VirtualDrifeArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ControllerSlot: pulumi.String("string"),
Enable: pulumi.Bool(false),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
},
},
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Organizations: intersight.StorageStoragePolicyOrganizationArray{
&intersight.StorageStoragePolicyOrganizationArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: intersight.StorageStoragePolicyParentArray{
&intersight.StorageStoragePolicyParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.StorageStoragePolicyPermissionResourceArray{
&intersight.StorageStoragePolicyPermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Profiles: intersight.StorageStoragePolicyProfileArray{
&intersight.StorageStoragePolicyProfileArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Raid0Drives: intersight.StorageStoragePolicyRaid0DrifeArray{
&intersight.StorageStoragePolicyRaid0DrifeArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
DriveSlots: pulumi.String("string"),
DriveSlotsList: pulumi.String("string"),
Enable: pulumi.Bool(false),
ObjectType: pulumi.String("string"),
VirtualDrivePolicies: intersight.StorageStoragePolicyRaid0DrifeVirtualDrivePolicyArray{
&intersight.StorageStoragePolicyRaid0DrifeVirtualDrivePolicyArgs{
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"),
},
},
},
},
RaidAttachedNvmeSlots: pulumi.String("string"),
SecureJbods: pulumi.String("string"),
SharedScope: pulumi.String("string"),
StorageStoragePolicyId: pulumi.String("string"),
Tags: intersight.StorageStoragePolicyTagArray{
&intersight.StorageStoragePolicyTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
UnusedDisksState: pulumi.String("string"),
UseJbodForVdCreation: pulumi.Bool(false),
VersionContexts: intersight.StorageStoragePolicyVersionContextArray{
&intersight.StorageStoragePolicyVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.StorageStoragePolicyVersionContextInterestedMoArray{
&intersight.StorageStoragePolicyVersionContextInterestedMoArgs{
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.StorageStoragePolicyVersionContextRefMoArray{
&intersight.StorageStoragePolicyVersionContextRefMoArgs{
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"),
},
},
})
var storageStoragePolicyResource = new StorageStoragePolicy("storageStoragePolicyResource", StorageStoragePolicyArgs.builder()
.accountMoid("string")
.additionalProperties("string")
.ancestors(StorageStoragePolicyAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.classId("string")
.controllerAttachedNvmeSlots("string")
.createTime("string")
.defaultDriveMode("string")
.description("string")
.directAttachedNvmeSlots("string")
.domainGroupMoid("string")
.driveGroups(StorageStoragePolicyDriveGroupArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.globalHotSpares("string")
.m2VirtualDrives(StorageStoragePolicyM2VirtualDrifeArgs.builder()
.additionalProperties("string")
.classId("string")
.controllerSlot("string")
.enable(false)
.name("string")
.objectType("string")
.build())
.modTime("string")
.moid("string")
.name("string")
.objectType("string")
.organizations(StorageStoragePolicyOrganizationArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.owners("string")
.parents(StorageStoragePolicyParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(StorageStoragePolicyPermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.profiles(StorageStoragePolicyProfileArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.raid0Drives(StorageStoragePolicyRaid0DrifeArgs.builder()
.additionalProperties("string")
.classId("string")
.driveSlots("string")
.driveSlotsList("string")
.enable(false)
.objectType("string")
.virtualDrivePolicies(StorageStoragePolicyRaid0DrifeVirtualDrivePolicyArgs.builder()
.accessPolicy("string")
.additionalProperties("string")
.classId("string")
.driveCache("string")
.objectType("string")
.readPolicy("string")
.stripSize(0)
.writePolicy("string")
.build())
.build())
.raidAttachedNvmeSlots("string")
.secureJbods("string")
.sharedScope("string")
.storageStoragePolicyId("string")
.tags(StorageStoragePolicyTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.unusedDisksState("string")
.useJbodForVdCreation(false)
.versionContexts(StorageStoragePolicyVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(StorageStoragePolicyVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(StorageStoragePolicyVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.build());
storage_storage_policy_resource = intersight.StorageStoragePolicy("storageStoragePolicyResource",
account_moid="string",
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
class_id="string",
controller_attached_nvme_slots="string",
create_time="string",
default_drive_mode="string",
description="string",
direct_attached_nvme_slots="string",
domain_group_moid="string",
drive_groups=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
global_hot_spares="string",
m2_virtual_drives=[{
"additional_properties": "string",
"class_id": "string",
"controller_slot": "string",
"enable": False,
"name": "string",
"object_type": "string",
}],
mod_time="string",
moid="string",
name="string",
object_type="string",
organizations=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "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",
}],
profiles=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
raid0_drives=[{
"additional_properties": "string",
"class_id": "string",
"drive_slots": "string",
"drive_slots_list": "string",
"enable": False,
"object_type": "string",
"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",
}],
}],
raid_attached_nvme_slots="string",
secure_jbods="string",
shared_scope="string",
storage_storage_policy_id="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
unused_disks_state="string",
use_jbod_for_vd_creation=False,
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",
}])
const storageStoragePolicyResource = new intersight.StorageStoragePolicy("storageStoragePolicyResource", {
accountMoid: "string",
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
classId: "string",
controllerAttachedNvmeSlots: "string",
createTime: "string",
defaultDriveMode: "string",
description: "string",
directAttachedNvmeSlots: "string",
domainGroupMoid: "string",
driveGroups: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
globalHotSpares: "string",
m2VirtualDrives: [{
additionalProperties: "string",
classId: "string",
controllerSlot: "string",
enable: false,
name: "string",
objectType: "string",
}],
modTime: "string",
moid: "string",
name: "string",
objectType: "string",
organizations: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "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",
}],
profiles: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
raid0Drives: [{
additionalProperties: "string",
classId: "string",
driveSlots: "string",
driveSlotsList: "string",
enable: false,
objectType: "string",
virtualDrivePolicies: [{
accessPolicy: "string",
additionalProperties: "string",
classId: "string",
driveCache: "string",
objectType: "string",
readPolicy: "string",
stripSize: 0,
writePolicy: "string",
}],
}],
raidAttachedNvmeSlots: "string",
secureJbods: "string",
sharedScope: "string",
storageStoragePolicyId: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
unusedDisksState: "string",
useJbodForVdCreation: false,
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",
}],
});
type: intersight:StorageStoragePolicy
properties:
accountMoid: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
classId: string
controllerAttachedNvmeSlots: string
createTime: string
defaultDriveMode: string
description: string
directAttachedNvmeSlots: string
domainGroupMoid: string
driveGroups:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
globalHotSpares: string
m2VirtualDrives:
- additionalProperties: string
classId: string
controllerSlot: string
enable: false
name: string
objectType: string
modTime: string
moid: string
name: string
objectType: string
organizations:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: 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
profiles:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
raid0Drives:
- additionalProperties: string
classId: string
driveSlots: string
driveSlotsList: string
enable: false
objectType: string
virtualDrivePolicies:
- accessPolicy: string
additionalProperties: string
classId: string
driveCache: string
objectType: string
readPolicy: string
stripSize: 0
writePolicy: string
raidAttachedNvmeSlots: string
secureJbods: string
sharedScope: string
storageStoragePolicyId: string
tags:
- additionalProperties: string
key: string
value: string
unusedDisksState: string
useJbodForVdCreation: false
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
StorageStoragePolicy 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 StorageStoragePolicy resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Storage
Storage Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Controller
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Default
Drive stringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - Description string
- Description of the policy.
- Direct
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Drive
Groups List<StorageStorage Policy Drive Group> - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- Global
Hot stringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- M2Virtual
Drives List<StorageStorage Policy M2Virtual Drife> - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Storage
Storage Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Storage
Storage Policy 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<StorageStorage Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Storage
Storage Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- Raid0Drives
List<Storage
Storage Policy Raid0Drife> - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- Raid
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- Secure
Jbods string - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage stringPolicy Id - List<Storage
Storage Policy Tag> - This complex property has following sub-properties:
- Unused
Disks stringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - Use
Jbod boolFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- Version
Contexts List<StorageStorage Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Storage
Storage Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Controller
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Default
Drive stringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - Description string
- Description of the policy.
- Direct
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Drive
Groups []StorageStorage Policy Drive Group Args - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- Global
Hot stringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- M2Virtual
Drives []StorageStorage Policy M2Virtual Drife Args - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Storage
Storage Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Storage
Storage Policy 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 []StorageStorage Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Storage
Storage Policy Profile Args - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- Raid0Drives
[]Storage
Storage Policy Raid0Drife Args - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- Raid
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- Secure
Jbods string - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage stringPolicy Id - []Storage
Storage Policy Tag Args - This complex property has following sub-properties:
- Unused
Disks stringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - Use
Jbod boolFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- Version
Contexts []StorageStorage Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Storage
Storage Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- controller
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- create
Time String - (ReadOnly) The time when this managed object was created.
- default
Drive StringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - description String
- Description of the policy.
- direct
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- drive
Groups List<StorageStorage Policy Drive Group> - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- global
Hot StringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- m2Virtual
Drives List<StorageStorage Policy M2Virtual Drife> - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Storage
Storage Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Storage
Storage Policy 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<StorageStorage Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Storage
Storage Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- raid0Drives
List<Storage
Storage Policy Raid0Drife> - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- raid
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- secure
Jbods String - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage StringPolicy Id - List<Storage
Storage Policy Tag> - This complex property has following sub-properties:
- unused
Disks StringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - use
Jbod BooleanFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- version
Contexts List<StorageStorage Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Storage
Storage Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- controller
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- create
Time string - (ReadOnly) The time when this managed object was created.
- default
Drive stringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - description string
- Description of the policy.
- direct
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- drive
Groups StorageStorage Policy Drive Group[] - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- global
Hot stringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- m2Virtual
Drives StorageStorage Policy M2Virtual Drife[] - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Storage
Storage Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Storage
Storage Policy 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 StorageStorage Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Storage
Storage Policy Profile[] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- raid0Drives
Storage
Storage Policy Raid0Drife[] - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- raid
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- secure
Jbods string - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage stringPolicy Id - Storage
Storage Policy Tag[] - This complex property has following sub-properties:
- unused
Disks stringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - use
Jbod booleanFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- version
Contexts StorageStorage Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Storage
Storage Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- controller_
attached_ strnvme_ slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- create_
time str - (ReadOnly) The time when this managed object was created.
- default_
drive_ strmode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - description str
- Description of the policy.
- direct_
attached_ strnvme_ slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- drive_
groups Sequence[StorageStorage Policy Drive Group Args] - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- global_
hot_ strspares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- m2_
virtual_ Sequence[Storagedrives Storage Policy M2Virtual Drife Args] - Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the concrete policy.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Storage
Storage Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Storage
Storage Policy 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[StorageStorage Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Storage
Storage Policy Profile Args] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- raid0_
drives Sequence[StorageStorage Policy Raid0Drife Args] - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- raid_
attached_ strnvme_ slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- secure_
jbods str - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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_
storage_ strpolicy_ id - Sequence[Storage
Storage Policy Tag Args] - This complex property has following sub-properties:
- unused_
disks_ strstate - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - use_
jbod_ boolfor_ vd_ creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- version_
contexts Sequence[StorageStorage Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. 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:
- 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.
- controller
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- create
Time String - (ReadOnly) The time when this managed object was created.
- default
Drive StringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - description String
- Description of the policy.
- direct
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- drive
Groups List<Property Map> - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- global
Hot StringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- m2Virtual
Drives List<Property Map> - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- raid0Drives List<Property Map>
- The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- raid
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- secure
Jbods String - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage StringPolicy Id - List<Property Map>
- This complex property has following sub-properties:
- unused
Disks StringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - use
Jbod BooleanFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the StorageStoragePolicy 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 StorageStoragePolicy Resource
Get an existing StorageStoragePolicy 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?: StorageStoragePolicyState, opts?: CustomResourceOptions): StorageStoragePolicy
@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[StorageStoragePolicyAncestorArgs]] = None,
class_id: Optional[str] = None,
controller_attached_nvme_slots: Optional[str] = None,
create_time: Optional[str] = None,
default_drive_mode: Optional[str] = None,
description: Optional[str] = None,
direct_attached_nvme_slots: Optional[str] = None,
domain_group_moid: Optional[str] = None,
drive_groups: Optional[Sequence[StorageStoragePolicyDriveGroupArgs]] = None,
global_hot_spares: Optional[str] = None,
m2_virtual_drives: Optional[Sequence[StorageStoragePolicyM2VirtualDrifeArgs]] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[StorageStoragePolicyOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[StorageStoragePolicyParentArgs]] = None,
permission_resources: Optional[Sequence[StorageStoragePolicyPermissionResourceArgs]] = None,
profiles: Optional[Sequence[StorageStoragePolicyProfileArgs]] = None,
raid0_drives: Optional[Sequence[StorageStoragePolicyRaid0DrifeArgs]] = None,
raid_attached_nvme_slots: Optional[str] = None,
secure_jbods: Optional[str] = None,
shared_scope: Optional[str] = None,
storage_storage_policy_id: Optional[str] = None,
tags: Optional[Sequence[StorageStoragePolicyTagArgs]] = None,
unused_disks_state: Optional[str] = None,
use_jbod_for_vd_creation: Optional[bool] = None,
version_contexts: Optional[Sequence[StorageStoragePolicyVersionContextArgs]] = None) -> StorageStoragePolicy
func GetStorageStoragePolicy(ctx *Context, name string, id IDInput, state *StorageStoragePolicyState, opts ...ResourceOption) (*StorageStoragePolicy, error)
public static StorageStoragePolicy Get(string name, Input<string> id, StorageStoragePolicyState? state, CustomResourceOptions? opts = null)
public static StorageStoragePolicy get(String name, Output<String> id, StorageStoragePolicyState state, CustomResourceOptions options)
resources: _: type: intersight:StorageStoragePolicy 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
Storage Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Controller
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Default
Drive stringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - Description string
- Description of the policy.
- Direct
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Drive
Groups List<StorageStorage Policy Drive Group> - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- Global
Hot stringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- M2Virtual
Drives List<StorageStorage Policy M2Virtual Drife> - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Storage
Storage Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Storage
Storage Policy 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<StorageStorage Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Storage
Storage Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- Raid0Drives
List<Storage
Storage Policy Raid0Drife> - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- Raid
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- Secure
Jbods string - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage stringPolicy Id - List<Storage
Storage Policy Tag> - This complex property has following sub-properties:
- Unused
Disks stringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - Use
Jbod boolFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- Version
Contexts List<StorageStorage Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Storage
Storage Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Controller
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Default
Drive stringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - Description string
- Description of the policy.
- Direct
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Drive
Groups []StorageStorage Policy Drive Group Args - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- Global
Hot stringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- M2Virtual
Drives []StorageStorage Policy M2Virtual Drife Args - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Storage
Storage Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Storage
Storage Policy 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 []StorageStorage Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Storage
Storage Policy Profile Args - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- Raid0Drives
[]Storage
Storage Policy Raid0Drife Args - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- Raid
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- Secure
Jbods string - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage stringPolicy Id - []Storage
Storage Policy Tag Args - This complex property has following sub-properties:
- Unused
Disks stringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - Use
Jbod boolFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- Version
Contexts []StorageStorage Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Storage
Storage Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- controller
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- create
Time String - (ReadOnly) The time when this managed object was created.
- default
Drive StringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - description String
- Description of the policy.
- direct
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- drive
Groups List<StorageStorage Policy Drive Group> - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- global
Hot StringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- m2Virtual
Drives List<StorageStorage Policy M2Virtual Drife> - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Storage
Storage Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Storage
Storage Policy 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<StorageStorage Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Storage
Storage Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- raid0Drives
List<Storage
Storage Policy Raid0Drife> - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- raid
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- secure
Jbods String - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage StringPolicy Id - List<Storage
Storage Policy Tag> - This complex property has following sub-properties:
- unused
Disks StringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - use
Jbod BooleanFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- version
Contexts List<StorageStorage Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Storage
Storage Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- controller
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- create
Time string - (ReadOnly) The time when this managed object was created.
- default
Drive stringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - description string
- Description of the policy.
- direct
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- drive
Groups StorageStorage Policy Drive Group[] - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- global
Hot stringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- m2Virtual
Drives StorageStorage Policy M2Virtual Drife[] - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Storage
Storage Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Storage
Storage Policy 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 StorageStorage Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Storage
Storage Policy Profile[] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- raid0Drives
Storage
Storage Policy Raid0Drife[] - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- raid
Attached stringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- secure
Jbods string - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage stringPolicy Id - Storage
Storage Policy Tag[] - This complex property has following sub-properties:
- unused
Disks stringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - use
Jbod booleanFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- version
Contexts StorageStorage Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Storage
Storage Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- controller_
attached_ strnvme_ slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- create_
time str - (ReadOnly) The time when this managed object was created.
- default_
drive_ strmode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - description str
- Description of the policy.
- direct_
attached_ strnvme_ slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- drive_
groups Sequence[StorageStorage Policy Drive Group Args] - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- global_
hot_ strspares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- m2_
virtual_ Sequence[Storagedrives Storage Policy M2Virtual Drife Args] - Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the concrete policy.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Storage
Storage Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Storage
Storage Policy 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[StorageStorage Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Storage
Storage Policy Profile Args] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- raid0_
drives Sequence[StorageStorage Policy Raid0Drife Args] - The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- raid_
attached_ strnvme_ slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- secure_
jbods str - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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_
storage_ strpolicy_ id - Sequence[Storage
Storage Policy Tag Args] - This complex property has following sub-properties:
- unused_
disks_ strstate - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - use_
jbod_ boolfor_ vd_ creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- version_
contexts Sequence[StorageStorage Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. 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:
- 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.
- controller
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to controller attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- create
Time String - (ReadOnly) The time when this managed object was created.
- default
Drive StringMode - All unconfigured drives will move to the selected state on deployment. Newly inserted drives will move to the selected state. Select Unconfigured Good option to retain the existing configuration. Select JBOD to move the unconfigured drives to JBOD state. Select RAID0 to create a RAID0 virtual drive on each of the unconfigured drives. If JBOD is selected, unconfigured drives will move to JBOD state on host reboot. This setting is applicable only to selected set of controllers on FI attached servers.*
UnconfiguredGood
- Newly inserted drives or on reboot, drives will remain the same state.*Jbod
- Newly inserted drives or on reboot, drives will automatically move to JBOD state if drive state was UnconfiguredGood.*RAID0
- Newly inserted drives or on reboot, virtual drives will be created, respective drives will move to Online state. - description String
- Description of the policy.
- direct
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to Direct attached mode. Allowed slots are 1-9, 21-24, 101-104. Allowed value is a comma or hyphen separated number ranges.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- drive
Groups List<Property Map> - An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
- global
Hot StringSpares - A collection of disks that is to be used as hot spares, globally, for all the RAID groups. Allowed value is a number range separated by a comma or a hyphen.
- m2Virtual
Drives List<Property Map> - Virtual Drive configuration for M.2 RAID controller. 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
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- raid0Drives List<Property Map>
- The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
- raid
Attached StringNvme Slots - Only U.3 NVMe drives need to be specified, entered slots will be moved to RAID attached mode. Allowed slots are 1-4, 101-104. Allowed value is a comma or hyphen separated number ranges. Deprecated in favor of controllerAttachedNvmeSlots.
- secure
Jbods String - JBOD drives specified in this slot range will be encrypted. Allowed values are 'ALL', or a comma or hyphen separated number range. Sample format is ALL or 1, 3 or 4-6, 8. Setting the value to 'ALL' will encrypt all the unused UnconfigureGood/JBOD disks.
- 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
Storage StringPolicy Id - List<Property Map>
- This complex property has following sub-properties:
- unused
Disks StringState - State to which drives, not used in this policy, are to be moved. NoChange will not change the drive state. No Change must be selected if Default Drive State is set to JBOD or RAID0.*
NoChange
- Drive state will not be modified by Storage Policy.*UnconfiguredGood
- Unconfigured good state -ready to be added in a RAID group.*Jbod
- JBOD state where the disks start showing up to Host OS. - use
Jbod BooleanFor Vd Creation - Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
StorageStoragePolicyAncestor, StorageStoragePolicyAncestorArgs
- 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'.
StorageStoragePolicyDriveGroup, StorageStoragePolicyDriveGroupArgs
- 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'.
StorageStoragePolicyM2VirtualDrife, StorageStoragePolicyM2VirtualDrifeArgs
- Additional
Properties string - Class
Id string - Controller
Slot string - Select the M.2 RAID controller slot on which the virtual drive is to be created. Select 'MSTOR-RAID-1' to create virtual drive on the M.2 RAID controller in the first slot or in the MSTOR-RAID slot, 'MSTOR-RAID-2' for second slot, 'MSTOR-RAID-1, MSTOR-RAID-2' for both slots or either slot.*
MSTOR-RAID-1
- Virtual drive will be created on the M.2 RAID controller in the first slot.*MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in the second slot, if available.*MSTOR-RAID-1,MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in both the slots, if available. - Enable bool
- If enabled, this will create a virtual drive on the M.2 RAID controller.
- 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. This field will be pre-populated with the default or user configured value which can be edited.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Additional
Properties string - Class
Id string - Controller
Slot string - Select the M.2 RAID controller slot on which the virtual drive is to be created. Select 'MSTOR-RAID-1' to create virtual drive on the M.2 RAID controller in the first slot or in the MSTOR-RAID slot, 'MSTOR-RAID-2' for second slot, 'MSTOR-RAID-1, MSTOR-RAID-2' for both slots or either slot.*
MSTOR-RAID-1
- Virtual drive will be created on the M.2 RAID controller in the first slot.*MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in the second slot, if available.*MSTOR-RAID-1,MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in both the slots, if available. - Enable bool
- If enabled, this will create a virtual drive on the M.2 RAID controller.
- 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. This field will be pre-populated with the default or user configured value which can be edited.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties String - class
Id String - controller
Slot String - Select the M.2 RAID controller slot on which the virtual drive is to be created. Select 'MSTOR-RAID-1' to create virtual drive on the M.2 RAID controller in the first slot or in the MSTOR-RAID slot, 'MSTOR-RAID-2' for second slot, 'MSTOR-RAID-1, MSTOR-RAID-2' for both slots or either slot.*
MSTOR-RAID-1
- Virtual drive will be created on the M.2 RAID controller in the first slot.*MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in the second slot, if available.*MSTOR-RAID-1,MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in both the slots, if available. - enable Boolean
- If enabled, this will create a virtual drive on the M.2 RAID controller.
- 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. This field will be pre-populated with the default or user configured value which can be edited.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties string - class
Id string - controller
Slot string - Select the M.2 RAID controller slot on which the virtual drive is to be created. Select 'MSTOR-RAID-1' to create virtual drive on the M.2 RAID controller in the first slot or in the MSTOR-RAID slot, 'MSTOR-RAID-2' for second slot, 'MSTOR-RAID-1, MSTOR-RAID-2' for both slots or either slot.*
MSTOR-RAID-1
- Virtual drive will be created on the M.2 RAID controller in the first slot.*MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in the second slot, if available.*MSTOR-RAID-1,MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in both the slots, if available. - enable boolean
- If enabled, this will create a virtual drive on the M.2 RAID controller.
- 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. This field will be pre-populated with the default or user configured value which can be edited.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional_
properties str - class_
id str - controller_
slot str - Select the M.2 RAID controller slot on which the virtual drive is to be created. Select 'MSTOR-RAID-1' to create virtual drive on the M.2 RAID controller in the first slot or in the MSTOR-RAID slot, 'MSTOR-RAID-2' for second slot, 'MSTOR-RAID-1, MSTOR-RAID-2' for both slots or either slot.*
MSTOR-RAID-1
- Virtual drive will be created on the M.2 RAID controller in the first slot.*MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in the second slot, if available.*MSTOR-RAID-1,MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in both the slots, if available. - enable bool
- If enabled, this will create a virtual drive on the M.2 RAID controller.
- 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. This field will be pre-populated with the default or user configured value which can be edited.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties String - class
Id String - controller
Slot String - Select the M.2 RAID controller slot on which the virtual drive is to be created. Select 'MSTOR-RAID-1' to create virtual drive on the M.2 RAID controller in the first slot or in the MSTOR-RAID slot, 'MSTOR-RAID-2' for second slot, 'MSTOR-RAID-1, MSTOR-RAID-2' for both slots or either slot.*
MSTOR-RAID-1
- Virtual drive will be created on the M.2 RAID controller in the first slot.*MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in the second slot, if available.*MSTOR-RAID-1,MSTOR-RAID-2
- Virtual drive will be created on the M.2 RAID controller in both the slots, if available. - enable Boolean
- If enabled, this will create a virtual drive on the M.2 RAID controller.
- 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. This field will be pre-populated with the default or user configured value which can be edited.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
StorageStoragePolicyOrganization, StorageStoragePolicyOrganizationArgs
- 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'.
StorageStoragePolicyParent, StorageStoragePolicyParentArgs
- 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'.
StorageStoragePolicyPermissionResource, StorageStoragePolicyPermissionResourceArgs
- 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'.
StorageStoragePolicyProfile, StorageStoragePolicyProfileArgs
- 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'.
StorageStoragePolicyRaid0Drife, StorageStoragePolicyRaid0DrifeArgs
- Additional
Properties string - Class
Id string - Drive
Slots string - The set of drive slots where RAID0 virtual drives must be created.
- Drive
Slots stringList - (ReadOnly) The list of drive slots where RAID0 virtual drives must be created (comma separated).
- Enable bool
- If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Virtual
Drive List<StoragePolicies Storage Policy Raid0Drife Virtual Drive Policy> - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
- Additional
Properties string - Class
Id string - Drive
Slots string - The set of drive slots where RAID0 virtual drives must be created.
- Drive
Slots stringList - (ReadOnly) The list of drive slots where RAID0 virtual drives must be created (comma separated).
- Enable bool
- If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Virtual
Drive []StoragePolicies Storage Policy Raid0Drife Virtual Drive Policy - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
- additional
Properties String - class
Id String - drive
Slots String - The set of drive slots where RAID0 virtual drives must be created.
- drive
Slots StringList - (ReadOnly) The list of drive slots where RAID0 virtual drives must be created (comma separated).
- enable Boolean
- If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- virtual
Drive List<StoragePolicies Storage Policy Raid0Drife Virtual Drive Policy> - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
- additional
Properties string - class
Id string - drive
Slots string - The set of drive slots where RAID0 virtual drives must be created.
- drive
Slots stringList - (ReadOnly) The list of drive slots where RAID0 virtual drives must be created (comma separated).
- enable boolean
- If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- virtual
Drive StoragePolicies Storage Policy Raid0Drife Virtual Drive Policy[] - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
- additional_
properties str - class_
id str - drive_
slots str - The set of drive slots where RAID0 virtual drives must be created.
- drive_
slots_ strlist - (ReadOnly) The list of drive slots where RAID0 virtual drives must be created (comma separated).
- enable bool
- If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- virtual_
drive_ Sequence[Storagepolicies Storage Policy Raid0Drife Virtual Drive Policy] - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
- additional
Properties String - class
Id String - drive
Slots String - The set of drive slots where RAID0 virtual drives must be created.
- drive
Slots StringList - (ReadOnly) The list of drive slots where RAID0 virtual drives must be created (comma separated).
- enable Boolean
- If enabled, this will create a RAID0 virtual drive per disk and encompassing the whole disk.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- virtual
Drive List<Property Map>Policies - This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
StorageStoragePolicyRaid0DrifeVirtualDrivePolicy, StorageStoragePolicyRaid0DrifeVirtualDrivePolicyArgs
- 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.
StorageStoragePolicyTag, StorageStoragePolicyTagArgs
- 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.
StorageStoragePolicyVersionContext, StorageStoragePolicyVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<StorageStorage Policy 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<StorageStorage Policy 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 []StorageStorage Policy 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 []StorageStorage Policy 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<StorageStorage Policy 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<StorageStorage Policy 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 StorageStorage Policy 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 StorageStorage Policy 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[StorageStorage Policy 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[StorageStorage Policy 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.
StorageStoragePolicyVersionContextInterestedMo, StorageStoragePolicyVersionContextInterestedMoArgs
- 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'.
StorageStoragePolicyVersionContextRefMo, StorageStoragePolicyVersionContextRefMoArgs
- 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'.
Import
intersight_storage_storage_policy
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/storageStoragePolicy:StorageStoragePolicy 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.