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

intersight.StorageStoragePolicy

Explore with Pulumi AI

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

    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:

    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<StorageStoragePolicyAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    ControllerAttachedNvmeSlots string
    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.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DefaultDriveMode string
    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.
    DirectAttachedNvmeSlots string
    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.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    DriveGroups List<StorageStoragePolicyDriveGroup>
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    GlobalHotSpares string
    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.
    M2VirtualDrives List<StorageStoragePolicyM2VirtualDrife>
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the concrete policy.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<StorageStoragePolicyOrganization>
    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<StorageStoragePolicyParent>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    PermissionResources List<StorageStoragePolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles List<StorageStoragePolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    Raid0Drives List<StorageStoragePolicyRaid0Drife>
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    RaidAttachedNvmeSlots string
    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.
    SecureJbods 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.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    StorageStoragePolicyId string
    Tags List<StorageStoragePolicyTag>
    This complex property has following sub-properties:
    UnusedDisksState string
    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.
    UseJbodForVdCreation bool
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    VersionContexts List<StorageStoragePolicyVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []StorageStoragePolicyAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    ControllerAttachedNvmeSlots string
    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.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DefaultDriveMode string
    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.
    DirectAttachedNvmeSlots string
    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.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    DriveGroups []StorageStoragePolicyDriveGroupArgs
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    GlobalHotSpares string
    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.
    M2VirtualDrives []StorageStoragePolicyM2VirtualDrifeArgs
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the concrete policy.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []StorageStoragePolicyOrganizationArgs
    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 []StorageStoragePolicyParentArgs
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    PermissionResources []StorageStoragePolicyPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles []StorageStoragePolicyProfileArgs
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    Raid0Drives []StorageStoragePolicyRaid0DrifeArgs
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    RaidAttachedNvmeSlots string
    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.
    SecureJbods 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.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    StorageStoragePolicyId string
    Tags []StorageStoragePolicyTagArgs
    This complex property has following sub-properties:
    UnusedDisksState string
    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.
    UseJbodForVdCreation bool
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    VersionContexts []StorageStoragePolicyVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<StorageStoragePolicyAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    controllerAttachedNvmeSlots String
    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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    defaultDriveMode String
    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.
    directAttachedNvmeSlots String
    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.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    driveGroups List<StorageStoragePolicyDriveGroup>
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    globalHotSpares String
    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.
    m2VirtualDrives List<StorageStoragePolicyM2VirtualDrife>
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the concrete policy.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<StorageStoragePolicyOrganization>
    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<StorageStoragePolicyParent>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<StorageStoragePolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles List<StorageStoragePolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    raid0Drives List<StorageStoragePolicyRaid0Drife>
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    raidAttachedNvmeSlots String
    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.
    secureJbods 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.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    storageStoragePolicyId String
    tags List<StorageStoragePolicyTag>
    This complex property has following sub-properties:
    unusedDisksState String
    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.
    useJbodForVdCreation Boolean
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    versionContexts List<StorageStoragePolicyVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors StorageStoragePolicyAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    controllerAttachedNvmeSlots string
    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.
    createTime string
    (ReadOnly) The time when this managed object was created.
    defaultDriveMode string
    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.
    directAttachedNvmeSlots string
    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.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    driveGroups StorageStoragePolicyDriveGroup[]
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    globalHotSpares string
    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.
    m2VirtualDrives StorageStoragePolicyM2VirtualDrife[]
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    Name of the concrete policy.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations StorageStoragePolicyOrganization[]
    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 StorageStoragePolicyParent[]
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources StorageStoragePolicyPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles StorageStoragePolicyProfile[]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    raid0Drives StorageStoragePolicyRaid0Drife[]
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    raidAttachedNvmeSlots string
    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.
    secureJbods 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.
    sharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    storageStoragePolicyId string
    tags StorageStoragePolicyTag[]
    This complex property has following sub-properties:
    unusedDisksState string
    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.
    useJbodForVdCreation boolean
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    versionContexts StorageStoragePolicyVersionContext[]
    (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[StorageStoragePolicyAncestorArgs]
    (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_nvme_slots str
    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_mode str
    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_nvme_slots str
    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_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    drive_groups Sequence[StorageStoragePolicyDriveGroupArgs]
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    global_hot_spares str
    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_drives Sequence[StorageStoragePolicyM2VirtualDrifeArgs]
    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[StorageStoragePolicyOrganizationArgs]
    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[StorageStoragePolicyParentArgs]
    (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[StorageStoragePolicyPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles Sequence[StorageStoragePolicyProfileArgs]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    raid0_drives Sequence[StorageStoragePolicyRaid0DrifeArgs]
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    raid_attached_nvme_slots str
    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.
    shared_scope str
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    storage_storage_policy_id str
    tags Sequence[StorageStoragePolicyTagArgs]
    This complex property has following sub-properties:
    unused_disks_state str
    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_for_vd_creation bool
    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[StorageStoragePolicyVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    controllerAttachedNvmeSlots String
    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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    defaultDriveMode String
    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.
    directAttachedNvmeSlots String
    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.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    driveGroups List<Property Map>
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    globalHotSpares String
    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.
    m2VirtualDrives List<Property Map>
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the concrete policy.
    objectType 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:
    permissionResources 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:
    raidAttachedNvmeSlots String
    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.
    secureJbods 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.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    storageStoragePolicyId String
    tags List<Property Map>
    This complex property has following sub-properties:
    unusedDisksState String
    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.
    useJbodForVdCreation Boolean
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    versionContexts 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.
    The following state arguments are supported:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<StorageStoragePolicyAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    ControllerAttachedNvmeSlots string
    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.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DefaultDriveMode string
    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.
    DirectAttachedNvmeSlots string
    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.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    DriveGroups List<StorageStoragePolicyDriveGroup>
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    GlobalHotSpares string
    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.
    M2VirtualDrives List<StorageStoragePolicyM2VirtualDrife>
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the concrete policy.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<StorageStoragePolicyOrganization>
    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<StorageStoragePolicyParent>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    PermissionResources List<StorageStoragePolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles List<StorageStoragePolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    Raid0Drives List<StorageStoragePolicyRaid0Drife>
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    RaidAttachedNvmeSlots string
    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.
    SecureJbods 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.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    StorageStoragePolicyId string
    Tags List<StorageStoragePolicyTag>
    This complex property has following sub-properties:
    UnusedDisksState string
    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.
    UseJbodForVdCreation bool
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    VersionContexts List<StorageStoragePolicyVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []StorageStoragePolicyAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    ControllerAttachedNvmeSlots string
    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.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DefaultDriveMode string
    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.
    DirectAttachedNvmeSlots string
    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.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    DriveGroups []StorageStoragePolicyDriveGroupArgs
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    GlobalHotSpares string
    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.
    M2VirtualDrives []StorageStoragePolicyM2VirtualDrifeArgs
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the concrete policy.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []StorageStoragePolicyOrganizationArgs
    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 []StorageStoragePolicyParentArgs
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    PermissionResources []StorageStoragePolicyPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles []StorageStoragePolicyProfileArgs
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    Raid0Drives []StorageStoragePolicyRaid0DrifeArgs
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    RaidAttachedNvmeSlots string
    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.
    SecureJbods 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.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    StorageStoragePolicyId string
    Tags []StorageStoragePolicyTagArgs
    This complex property has following sub-properties:
    UnusedDisksState string
    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.
    UseJbodForVdCreation bool
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    VersionContexts []StorageStoragePolicyVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<StorageStoragePolicyAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    controllerAttachedNvmeSlots String
    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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    defaultDriveMode String
    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.
    directAttachedNvmeSlots String
    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.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    driveGroups List<StorageStoragePolicyDriveGroup>
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    globalHotSpares String
    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.
    m2VirtualDrives List<StorageStoragePolicyM2VirtualDrife>
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the concrete policy.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<StorageStoragePolicyOrganization>
    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<StorageStoragePolicyParent>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<StorageStoragePolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles List<StorageStoragePolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    raid0Drives List<StorageStoragePolicyRaid0Drife>
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    raidAttachedNvmeSlots String
    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.
    secureJbods 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.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    storageStoragePolicyId String
    tags List<StorageStoragePolicyTag>
    This complex property has following sub-properties:
    unusedDisksState String
    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.
    useJbodForVdCreation Boolean
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    versionContexts List<StorageStoragePolicyVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors StorageStoragePolicyAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    controllerAttachedNvmeSlots string
    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.
    createTime string
    (ReadOnly) The time when this managed object was created.
    defaultDriveMode string
    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.
    directAttachedNvmeSlots string
    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.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    driveGroups StorageStoragePolicyDriveGroup[]
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    globalHotSpares string
    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.
    m2VirtualDrives StorageStoragePolicyM2VirtualDrife[]
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    Name of the concrete policy.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations StorageStoragePolicyOrganization[]
    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 StorageStoragePolicyParent[]
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources StorageStoragePolicyPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles StorageStoragePolicyProfile[]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    raid0Drives StorageStoragePolicyRaid0Drife[]
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    raidAttachedNvmeSlots string
    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.
    secureJbods 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.
    sharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    storageStoragePolicyId string
    tags StorageStoragePolicyTag[]
    This complex property has following sub-properties:
    unusedDisksState string
    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.
    useJbodForVdCreation boolean
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    versionContexts StorageStoragePolicyVersionContext[]
    (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[StorageStoragePolicyAncestorArgs]
    (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_nvme_slots str
    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_mode str
    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_nvme_slots str
    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_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    drive_groups Sequence[StorageStoragePolicyDriveGroupArgs]
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    global_hot_spares str
    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_drives Sequence[StorageStoragePolicyM2VirtualDrifeArgs]
    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[StorageStoragePolicyOrganizationArgs]
    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[StorageStoragePolicyParentArgs]
    (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[StorageStoragePolicyPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles Sequence[StorageStoragePolicyProfileArgs]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    raid0_drives Sequence[StorageStoragePolicyRaid0DrifeArgs]
    The list of disks where RAID0 virtual drives must be created on each individual drive. This complex property has following sub-properties:
    raid_attached_nvme_slots str
    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.
    shared_scope str
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    storage_storage_policy_id str
    tags Sequence[StorageStoragePolicyTagArgs]
    This complex property has following sub-properties:
    unused_disks_state str
    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_for_vd_creation bool
    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[StorageStoragePolicyVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    controllerAttachedNvmeSlots String
    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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    defaultDriveMode String
    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.
    directAttachedNvmeSlots String
    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.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    driveGroups List<Property Map>
    An array of relationships to storageDriveGroup resources. This complex property has following sub-properties:
    globalHotSpares String
    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.
    m2VirtualDrives List<Property Map>
    Virtual Drive configuration for M.2 RAID controller. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the concrete policy.
    objectType 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:
    permissionResources 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:
    raidAttachedNvmeSlots String
    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.
    secureJbods 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.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    storageStoragePolicyId String
    tags List<Property Map>
    This complex property has following sub-properties:
    unusedDisksState String
    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.
    useJbodForVdCreation Boolean
    Disks in JBOD State are used to create virtual drives. This setting must be disabled if Default Drive State is set to JBOD.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Supporting Types

    StorageStoragePolicyAncestor, StorageStoragePolicyAncestorArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    StorageStoragePolicyDriveGroup, StorageStoragePolicyDriveGroupArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    StorageStoragePolicyM2VirtualDrife, StorageStoragePolicyM2VirtualDrifeArgs

    AdditionalProperties string
    ClassId string
    ControllerSlot 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.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    AdditionalProperties string
    ClassId string
    ControllerSlot 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.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additionalProperties String
    classId String
    controllerSlot 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.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additionalProperties string
    classId string
    controllerSlot 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.
    objectType 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.
    additionalProperties String
    classId String
    controllerSlot 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.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.

    StorageStoragePolicyOrganization, StorageStoragePolicyOrganizationArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    StorageStoragePolicyParent, StorageStoragePolicyParentArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    StorageStoragePolicyPermissionResource, StorageStoragePolicyPermissionResourceArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    StorageStoragePolicyProfile, StorageStoragePolicyProfileArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    StorageStoragePolicyRaid0Drife, StorageStoragePolicyRaid0DrifeArgs

    AdditionalProperties string
    ClassId string
    DriveSlots string
    The set of drive slots where RAID0 virtual drives must be created.
    DriveSlotsList string
    (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.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    VirtualDrivePolicies List<StorageStoragePolicyRaid0DrifeVirtualDrivePolicy>
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
    AdditionalProperties string
    ClassId string
    DriveSlots string
    The set of drive slots where RAID0 virtual drives must be created.
    DriveSlotsList string
    (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.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    VirtualDrivePolicies []StorageStoragePolicyRaid0DrifeVirtualDrivePolicy
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
    additionalProperties String
    classId String
    driveSlots String
    The set of drive slots where RAID0 virtual drives must be created.
    driveSlotsList String
    (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.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    virtualDrivePolicies List<StorageStoragePolicyRaid0DrifeVirtualDrivePolicy>
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
    additionalProperties string
    classId string
    driveSlots string
    The set of drive slots where RAID0 virtual drives must be created.
    driveSlotsList string
    (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.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    virtualDrivePolicies StorageStoragePolicyRaid0DrifeVirtualDrivePolicy[]
    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_list str
    (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_policies Sequence[StorageStoragePolicyRaid0DrifeVirtualDrivePolicy]
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:
    additionalProperties String
    classId String
    driveSlots String
    The set of drive slots where RAID0 virtual drives must be created.
    driveSlotsList String
    (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.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    virtualDrivePolicies List<Property Map>
    This defines the characteristics of a specific virtual drive. This complex property has following sub-properties:

    StorageStoragePolicyRaid0DrifeVirtualDrivePolicy, StorageStoragePolicyRaid0DrifeVirtualDrivePolicyArgs

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

    StorageStoragePolicyTag, StorageStoragePolicyTagArgs

    AdditionalProperties string
    Key string
    The string representation of a tag key.
    Value string
    The string representation of a tag value.
    AdditionalProperties string
    Key string
    The string representation of a tag key.
    Value string
    The string representation of a tag value.
    additionalProperties String
    key String
    The string representation of a tag key.
    value String
    The string representation of a tag value.
    additionalProperties string
    key string
    The string representation of a tag key.
    value string
    The string representation of a tag value.
    additional_properties str
    key str
    The string representation of a tag key.
    value str
    The string representation of a tag value.
    additionalProperties String
    key String
    The string representation of a tag key.
    value String
    The string representation of a tag value.

    StorageStoragePolicyVersionContext, StorageStoragePolicyVersionContextArgs

    AdditionalProperties string
    ClassId string
    InterestedMos List<StorageStoragePolicyVersionContextInterestedMo>
    This complex property has following sub-properties:
    MarkedForDeletion bool
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    NrVersion string
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    RefMos List<StorageStoragePolicyVersionContextRefMo>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    Timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    VersionType string
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    AdditionalProperties string
    ClassId string
    InterestedMos []StorageStoragePolicyVersionContextInterestedMo
    This complex property has following sub-properties:
    MarkedForDeletion bool
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    NrVersion string
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    RefMos []StorageStoragePolicyVersionContextRefMo
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    Timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    VersionType string
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    additionalProperties String
    classId String
    interestedMos List<StorageStoragePolicyVersionContextInterestedMo>
    This complex property has following sub-properties:
    markedForDeletion Boolean
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    nrVersion String
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    refMos List<StorageStoragePolicyVersionContextRefMo>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp String
    (ReadOnly) The time this versioned Managed Object was created.
    versionType String
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    additionalProperties string
    classId string
    interestedMos StorageStoragePolicyVersionContextInterestedMo[]
    This complex property has following sub-properties:
    markedForDeletion boolean
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    nrVersion string
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    refMos StorageStoragePolicyVersionContextRefMo[]
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    versionType string
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    additional_properties str
    class_id str
    interested_mos Sequence[StorageStoragePolicyVersionContextInterestedMo]
    This complex property has following sub-properties:
    marked_for_deletion bool
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    nr_version str
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ref_mos Sequence[StorageStoragePolicyVersionContextRefMo]
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp str
    (ReadOnly) The time this versioned Managed Object was created.
    version_type str
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    additionalProperties String
    classId String
    interestedMos List<Property Map>
    This complex property has following sub-properties:
    markedForDeletion Boolean
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    nrVersion String
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    refMos List<Property Map>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp String
    (ReadOnly) The time this versioned Managed Object was created.
    versionType String
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.

    StorageStoragePolicyVersionContextInterestedMo, StorageStoragePolicyVersionContextInterestedMoArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    StorageStoragePolicyVersionContextRefMo, StorageStoragePolicyVersionContextRefMoArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    Import

    intersight_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.
    intersight logo
    intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet