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

intersight.MemoryPersistentMemoryPolicy

Explore with Pulumi AI

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

    The Persistent Memory policy defines the reusable Persistent Memory related configuration that can be applied on many servers. This policy allows the application of Persistent Memory Goals and creation of Persistent Memory Regions and Namespaces. The encryption of the Persistent Memory Modules can be enabled through this policy by providing a passphrase.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const memoryPersistentMemoryPolicy1 = new intersight.MemoryPersistentMemoryPolicy("memoryPersistentMemoryPolicy1", {
        description: "memory persistent memory policies",
        goals: [{
            objectType: "memory.PersistentMemoryGoal",
            persistentMemoryType: "app-direct-non-interleaved",
            socketId: "All Sockets",
            classId: "memory.PersistentMemoryGoal",
            memoryModePercentage: 50,
        }],
        localSecurities: [{
            objectType: "memory.PersistentMemoryLocalSecurity",
            enabled: true,
            securePassphrase: "ChangeMe",
        }],
        logicalNamespaces: [{
            classId: "memory.PersistentMemoryLocalSecurity",
            name: "logical_namespace_test",
            capacity: 131072,
            objectType: "memory.PersistentMemoryLocalSecurity",
            mode: "block",
            socketId: 1,
            socketMemoryId: "6",
        }],
        managementMode: "configured-from-intersight",
        retainNamespaces: false,
        organizations: [{
            objectType: "organization.Organization",
            moid: _var.organization,
        }],
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    memory_persistent_memory_policy1 = intersight.MemoryPersistentMemoryPolicy("memoryPersistentMemoryPolicy1",
        description="memory persistent memory policies",
        goals=[{
            "object_type": "memory.PersistentMemoryGoal",
            "persistent_memory_type": "app-direct-non-interleaved",
            "socket_id": "All Sockets",
            "class_id": "memory.PersistentMemoryGoal",
            "memory_mode_percentage": 50,
        }],
        local_securities=[{
            "object_type": "memory.PersistentMemoryLocalSecurity",
            "enabled": True,
            "secure_passphrase": "ChangeMe",
        }],
        logical_namespaces=[{
            "class_id": "memory.PersistentMemoryLocalSecurity",
            "name": "logical_namespace_test",
            "capacity": 131072,
            "object_type": "memory.PersistentMemoryLocalSecurity",
            "mode": "block",
            "socket_id": 1,
            "socket_memory_id": "6",
        }],
        management_mode="configured-from-intersight",
        retain_namespaces=False,
        organizations=[{
            "object_type": "organization.Organization",
            "moid": var["organization"],
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := intersight.NewMemoryPersistentMemoryPolicy(ctx, "memoryPersistentMemoryPolicy1", &intersight.MemoryPersistentMemoryPolicyArgs{
    			Description: pulumi.String("memory persistent memory policies"),
    			Goals: intersight.MemoryPersistentMemoryPolicyGoalArray{
    				&intersight.MemoryPersistentMemoryPolicyGoalArgs{
    					ObjectType:           pulumi.String("memory.PersistentMemoryGoal"),
    					PersistentMemoryType: pulumi.String("app-direct-non-interleaved"),
    					SocketId:             pulumi.String("All Sockets"),
    					ClassId:              pulumi.String("memory.PersistentMemoryGoal"),
    					MemoryModePercentage: pulumi.Float64(50),
    				},
    			},
    			LocalSecurities: intersight.MemoryPersistentMemoryPolicyLocalSecurityArray{
    				&intersight.MemoryPersistentMemoryPolicyLocalSecurityArgs{
    					ObjectType:       pulumi.String("memory.PersistentMemoryLocalSecurity"),
    					Enabled:          pulumi.Bool(true),
    					SecurePassphrase: pulumi.String("ChangeMe"),
    				},
    			},
    			LogicalNamespaces: intersight.MemoryPersistentMemoryPolicyLogicalNamespaceArray{
    				&intersight.MemoryPersistentMemoryPolicyLogicalNamespaceArgs{
    					ClassId:        pulumi.String("memory.PersistentMemoryLocalSecurity"),
    					Name:           pulumi.String("logical_namespace_test"),
    					Capacity:       pulumi.Float64(131072),
    					ObjectType:     pulumi.String("memory.PersistentMemoryLocalSecurity"),
    					Mode:           pulumi.String("block"),
    					SocketId:       pulumi.Float64(1),
    					SocketMemoryId: pulumi.String("6"),
    				},
    			},
    			ManagementMode:   pulumi.String("configured-from-intersight"),
    			RetainNamespaces: pulumi.Bool(false),
    			Organizations: intersight.MemoryPersistentMemoryPolicyOrganizationArray{
    				&intersight.MemoryPersistentMemoryPolicyOrganizationArgs{
    					ObjectType: pulumi.String("organization.Organization"),
    					Moid:       pulumi.Any(_var.Organization),
    				},
    			},
    		})
    		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 memoryPersistentMemoryPolicy1 = new Intersight.MemoryPersistentMemoryPolicy("memoryPersistentMemoryPolicy1", new()
        {
            Description = "memory persistent memory policies",
            Goals = new[]
            {
                new Intersight.Inputs.MemoryPersistentMemoryPolicyGoalArgs
                {
                    ObjectType = "memory.PersistentMemoryGoal",
                    PersistentMemoryType = "app-direct-non-interleaved",
                    SocketId = "All Sockets",
                    ClassId = "memory.PersistentMemoryGoal",
                    MemoryModePercentage = 50,
                },
            },
            LocalSecurities = new[]
            {
                new Intersight.Inputs.MemoryPersistentMemoryPolicyLocalSecurityArgs
                {
                    ObjectType = "memory.PersistentMemoryLocalSecurity",
                    Enabled = true,
                    SecurePassphrase = "ChangeMe",
                },
            },
            LogicalNamespaces = new[]
            {
                new Intersight.Inputs.MemoryPersistentMemoryPolicyLogicalNamespaceArgs
                {
                    ClassId = "memory.PersistentMemoryLocalSecurity",
                    Name = "logical_namespace_test",
                    Capacity = 131072,
                    ObjectType = "memory.PersistentMemoryLocalSecurity",
                    Mode = "block",
                    SocketId = 1,
                    SocketMemoryId = "6",
                },
            },
            ManagementMode = "configured-from-intersight",
            RetainNamespaces = false,
            Organizations = new[]
            {
                new Intersight.Inputs.MemoryPersistentMemoryPolicyOrganizationArgs
                {
                    ObjectType = "organization.Organization",
                    Moid = @var.Organization,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.MemoryPersistentMemoryPolicy;
    import com.pulumi.intersight.MemoryPersistentMemoryPolicyArgs;
    import com.pulumi.intersight.inputs.MemoryPersistentMemoryPolicyGoalArgs;
    import com.pulumi.intersight.inputs.MemoryPersistentMemoryPolicyLocalSecurityArgs;
    import com.pulumi.intersight.inputs.MemoryPersistentMemoryPolicyLogicalNamespaceArgs;
    import com.pulumi.intersight.inputs.MemoryPersistentMemoryPolicyOrganizationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var memoryPersistentMemoryPolicy1 = new MemoryPersistentMemoryPolicy("memoryPersistentMemoryPolicy1", MemoryPersistentMemoryPolicyArgs.builder()
                .description("memory persistent memory policies")
                .goals(MemoryPersistentMemoryPolicyGoalArgs.builder()
                    .objectType("memory.PersistentMemoryGoal")
                    .persistentMemoryType("app-direct-non-interleaved")
                    .socketId("All Sockets")
                    .classId("memory.PersistentMemoryGoal")
                    .memoryModePercentage(50)
                    .build())
                .localSecurities(MemoryPersistentMemoryPolicyLocalSecurityArgs.builder()
                    .objectType("memory.PersistentMemoryLocalSecurity")
                    .enabled(true)
                    .securePassphrase("ChangeMe")
                    .build())
                .logicalNamespaces(MemoryPersistentMemoryPolicyLogicalNamespaceArgs.builder()
                    .classId("memory.PersistentMemoryLocalSecurity")
                    .name("logical_namespace_test")
                    .capacity(131072)
                    .objectType("memory.PersistentMemoryLocalSecurity")
                    .mode("block")
                    .socketId(1)
                    .socketMemoryId(6)
                    .build())
                .managementMode("configured-from-intersight")
                .retainNamespaces(false)
                .organizations(MemoryPersistentMemoryPolicyOrganizationArgs.builder()
                    .objectType("organization.Organization")
                    .moid(var_.organization())
                    .build())
                .build());
    
        }
    }
    
    resources:
      memoryPersistentMemoryPolicy1:
        type: intersight:MemoryPersistentMemoryPolicy
        properties:
          description: memory persistent memory policies
          goals:
            - objectType: memory.PersistentMemoryGoal
              persistentMemoryType: app-direct-non-interleaved
              socketId: All Sockets
              classId: memory.PersistentMemoryGoal
              memoryModePercentage: 50
          localSecurities:
            - objectType: memory.PersistentMemoryLocalSecurity
              enabled: true
              securePassphrase: ChangeMe
          logicalNamespaces:
            - classId: memory.PersistentMemoryLocalSecurity
              name: logical_namespace_test
              capacity: 131072
              objectType: memory.PersistentMemoryLocalSecurity
              mode: block
              socketId: 1
              socketMemoryId: 6
          managementMode: configured-from-intersight
          retainNamespaces: false
          organizations:
            - objectType: organization.Organization
              moid: ${var.organization}
    

    Create MemoryPersistentMemoryPolicy Resource

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

    Constructor syntax

    new MemoryPersistentMemoryPolicy(name: string, args?: MemoryPersistentMemoryPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def MemoryPersistentMemoryPolicy(resource_name: str,
                                     args: Optional[MemoryPersistentMemoryPolicyArgs] = None,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def MemoryPersistentMemoryPolicy(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     account_moid: Optional[str] = None,
                                     additional_properties: Optional[str] = None,
                                     ancestors: Optional[Sequence[MemoryPersistentMemoryPolicyAncestorArgs]] = None,
                                     class_id: Optional[str] = None,
                                     create_time: Optional[str] = None,
                                     description: Optional[str] = None,
                                     domain_group_moid: Optional[str] = None,
                                     goals: Optional[Sequence[MemoryPersistentMemoryPolicyGoalArgs]] = None,
                                     local_securities: Optional[Sequence[MemoryPersistentMemoryPolicyLocalSecurityArgs]] = None,
                                     logical_namespaces: Optional[Sequence[MemoryPersistentMemoryPolicyLogicalNamespaceArgs]] = None,
                                     management_mode: Optional[str] = None,
                                     memory_persistent_memory_policy_id: Optional[str] = None,
                                     mod_time: Optional[str] = None,
                                     moid: Optional[str] = None,
                                     name: Optional[str] = None,
                                     object_type: Optional[str] = None,
                                     organizations: Optional[Sequence[MemoryPersistentMemoryPolicyOrganizationArgs]] = None,
                                     owners: Optional[Sequence[str]] = None,
                                     parents: Optional[Sequence[MemoryPersistentMemoryPolicyParentArgs]] = None,
                                     permission_resources: Optional[Sequence[MemoryPersistentMemoryPolicyPermissionResourceArgs]] = None,
                                     profiles: Optional[Sequence[MemoryPersistentMemoryPolicyProfileArgs]] = None,
                                     retain_namespaces: Optional[bool] = None,
                                     shared_scope: Optional[str] = None,
                                     tags: Optional[Sequence[MemoryPersistentMemoryPolicyTagArgs]] = None,
                                     version_contexts: Optional[Sequence[MemoryPersistentMemoryPolicyVersionContextArgs]] = None)
    func NewMemoryPersistentMemoryPolicy(ctx *Context, name string, args *MemoryPersistentMemoryPolicyArgs, opts ...ResourceOption) (*MemoryPersistentMemoryPolicy, error)
    public MemoryPersistentMemoryPolicy(string name, MemoryPersistentMemoryPolicyArgs? args = null, CustomResourceOptions? opts = null)
    public MemoryPersistentMemoryPolicy(String name, MemoryPersistentMemoryPolicyArgs args)
    public MemoryPersistentMemoryPolicy(String name, MemoryPersistentMemoryPolicyArgs args, CustomResourceOptions options)
    
    type: intersight:MemoryPersistentMemoryPolicy
    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 MemoryPersistentMemoryPolicyArgs
    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 MemoryPersistentMemoryPolicyArgs
    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 MemoryPersistentMemoryPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MemoryPersistentMemoryPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MemoryPersistentMemoryPolicyArgs
    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 memoryPersistentMemoryPolicyResource = new Intersight.MemoryPersistentMemoryPolicy("memoryPersistentMemoryPolicyResource", new()
    {
        AccountMoid = "string",
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ClassId = "string",
        CreateTime = "string",
        Description = "string",
        DomainGroupMoid = "string",
        Goals = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyGoalArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                MemoryModePercentage = 0,
                ObjectType = "string",
                PersistentMemoryType = "string",
                SocketId = "string",
            },
        },
        LocalSecurities = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyLocalSecurityArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Enabled = false,
                IsSecurePassphraseSet = false,
                ObjectType = "string",
                SecurePassphrase = "string",
            },
        },
        LogicalNamespaces = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyLogicalNamespaceArgs
            {
                AdditionalProperties = "string",
                Capacity = 0,
                ClassId = "string",
                Mode = "string",
                Name = "string",
                ObjectType = "string",
                SocketId = 0,
                SocketMemoryId = "string",
            },
        },
        ManagementMode = "string",
        MemoryPersistentMemoryPolicyId = "string",
        ModTime = "string",
        Moid = "string",
        Name = "string",
        ObjectType = "string",
        Organizations = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyOrganizationArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyPermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Profiles = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyProfileArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        RetainNamespaces = false,
        SharedScope = "string",
        Tags = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        VersionContexts = new[]
        {
            new Intersight.Inputs.MemoryPersistentMemoryPolicyVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.MemoryPersistentMemoryPolicyVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.MemoryPersistentMemoryPolicyVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
    });
    
    example, err := intersight.NewMemoryPersistentMemoryPolicy(ctx, "memoryPersistentMemoryPolicyResource", &intersight.MemoryPersistentMemoryPolicyArgs{
    	AccountMoid:          pulumi.String("string"),
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.MemoryPersistentMemoryPolicyAncestorArray{
    		&intersight.MemoryPersistentMemoryPolicyAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ClassId:         pulumi.String("string"),
    	CreateTime:      pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	DomainGroupMoid: pulumi.String("string"),
    	Goals: intersight.MemoryPersistentMemoryPolicyGoalArray{
    		&intersight.MemoryPersistentMemoryPolicyGoalArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			MemoryModePercentage: pulumi.Float64(0),
    			ObjectType:           pulumi.String("string"),
    			PersistentMemoryType: pulumi.String("string"),
    			SocketId:             pulumi.String("string"),
    		},
    	},
    	LocalSecurities: intersight.MemoryPersistentMemoryPolicyLocalSecurityArray{
    		&intersight.MemoryPersistentMemoryPolicyLocalSecurityArgs{
    			AdditionalProperties:  pulumi.String("string"),
    			ClassId:               pulumi.String("string"),
    			Enabled:               pulumi.Bool(false),
    			IsSecurePassphraseSet: pulumi.Bool(false),
    			ObjectType:            pulumi.String("string"),
    			SecurePassphrase:      pulumi.String("string"),
    		},
    	},
    	LogicalNamespaces: intersight.MemoryPersistentMemoryPolicyLogicalNamespaceArray{
    		&intersight.MemoryPersistentMemoryPolicyLogicalNamespaceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Capacity:             pulumi.Float64(0),
    			ClassId:              pulumi.String("string"),
    			Mode:                 pulumi.String("string"),
    			Name:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			SocketId:             pulumi.Float64(0),
    			SocketMemoryId:       pulumi.String("string"),
    		},
    	},
    	ManagementMode:                 pulumi.String("string"),
    	MemoryPersistentMemoryPolicyId: pulumi.String("string"),
    	ModTime:                        pulumi.String("string"),
    	Moid:                           pulumi.String("string"),
    	Name:                           pulumi.String("string"),
    	ObjectType:                     pulumi.String("string"),
    	Organizations: intersight.MemoryPersistentMemoryPolicyOrganizationArray{
    		&intersight.MemoryPersistentMemoryPolicyOrganizationArgs{
    			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.MemoryPersistentMemoryPolicyParentArray{
    		&intersight.MemoryPersistentMemoryPolicyParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.MemoryPersistentMemoryPolicyPermissionResourceArray{
    		&intersight.MemoryPersistentMemoryPolicyPermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Profiles: intersight.MemoryPersistentMemoryPolicyProfileArray{
    		&intersight.MemoryPersistentMemoryPolicyProfileArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	RetainNamespaces: pulumi.Bool(false),
    	SharedScope:      pulumi.String("string"),
    	Tags: intersight.MemoryPersistentMemoryPolicyTagArray{
    		&intersight.MemoryPersistentMemoryPolicyTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	VersionContexts: intersight.MemoryPersistentMemoryPolicyVersionContextArray{
    		&intersight.MemoryPersistentMemoryPolicyVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.MemoryPersistentMemoryPolicyVersionContextInterestedMoArray{
    				&intersight.MemoryPersistentMemoryPolicyVersionContextInterestedMoArgs{
    					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.MemoryPersistentMemoryPolicyVersionContextRefMoArray{
    				&intersight.MemoryPersistentMemoryPolicyVersionContextRefMoArgs{
    					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 memoryPersistentMemoryPolicyResource = new MemoryPersistentMemoryPolicy("memoryPersistentMemoryPolicyResource", MemoryPersistentMemoryPolicyArgs.builder()
        .accountMoid("string")
        .additionalProperties("string")
        .ancestors(MemoryPersistentMemoryPolicyAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .classId("string")
        .createTime("string")
        .description("string")
        .domainGroupMoid("string")
        .goals(MemoryPersistentMemoryPolicyGoalArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .memoryModePercentage(0)
            .objectType("string")
            .persistentMemoryType("string")
            .socketId("string")
            .build())
        .localSecurities(MemoryPersistentMemoryPolicyLocalSecurityArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .enabled(false)
            .isSecurePassphraseSet(false)
            .objectType("string")
            .securePassphrase("string")
            .build())
        .logicalNamespaces(MemoryPersistentMemoryPolicyLogicalNamespaceArgs.builder()
            .additionalProperties("string")
            .capacity(0)
            .classId("string")
            .mode("string")
            .name("string")
            .objectType("string")
            .socketId(0)
            .socketMemoryId("string")
            .build())
        .managementMode("string")
        .memoryPersistentMemoryPolicyId("string")
        .modTime("string")
        .moid("string")
        .name("string")
        .objectType("string")
        .organizations(MemoryPersistentMemoryPolicyOrganizationArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .owners("string")
        .parents(MemoryPersistentMemoryPolicyParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(MemoryPersistentMemoryPolicyPermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .profiles(MemoryPersistentMemoryPolicyProfileArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .retainNamespaces(false)
        .sharedScope("string")
        .tags(MemoryPersistentMemoryPolicyTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .versionContexts(MemoryPersistentMemoryPolicyVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(MemoryPersistentMemoryPolicyVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(MemoryPersistentMemoryPolicyVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .build());
    
    memory_persistent_memory_policy_resource = intersight.MemoryPersistentMemoryPolicy("memoryPersistentMemoryPolicyResource",
        account_moid="string",
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        class_id="string",
        create_time="string",
        description="string",
        domain_group_moid="string",
        goals=[{
            "additional_properties": "string",
            "class_id": "string",
            "memory_mode_percentage": 0,
            "object_type": "string",
            "persistent_memory_type": "string",
            "socket_id": "string",
        }],
        local_securities=[{
            "additional_properties": "string",
            "class_id": "string",
            "enabled": False,
            "is_secure_passphrase_set": False,
            "object_type": "string",
            "secure_passphrase": "string",
        }],
        logical_namespaces=[{
            "additional_properties": "string",
            "capacity": 0,
            "class_id": "string",
            "mode": "string",
            "name": "string",
            "object_type": "string",
            "socket_id": 0,
            "socket_memory_id": "string",
        }],
        management_mode="string",
        memory_persistent_memory_policy_id="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",
        }],
        retain_namespaces=False,
        shared_scope="string",
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        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 memoryPersistentMemoryPolicyResource = new intersight.MemoryPersistentMemoryPolicy("memoryPersistentMemoryPolicyResource", {
        accountMoid: "string",
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        classId: "string",
        createTime: "string",
        description: "string",
        domainGroupMoid: "string",
        goals: [{
            additionalProperties: "string",
            classId: "string",
            memoryModePercentage: 0,
            objectType: "string",
            persistentMemoryType: "string",
            socketId: "string",
        }],
        localSecurities: [{
            additionalProperties: "string",
            classId: "string",
            enabled: false,
            isSecurePassphraseSet: false,
            objectType: "string",
            securePassphrase: "string",
        }],
        logicalNamespaces: [{
            additionalProperties: "string",
            capacity: 0,
            classId: "string",
            mode: "string",
            name: "string",
            objectType: "string",
            socketId: 0,
            socketMemoryId: "string",
        }],
        managementMode: "string",
        memoryPersistentMemoryPolicyId: "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",
        }],
        retainNamespaces: false,
        sharedScope: "string",
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        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:MemoryPersistentMemoryPolicy
    properties:
        accountMoid: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        classId: string
        createTime: string
        description: string
        domainGroupMoid: string
        goals:
            - additionalProperties: string
              classId: string
              memoryModePercentage: 0
              objectType: string
              persistentMemoryType: string
              socketId: string
        localSecurities:
            - additionalProperties: string
              classId: string
              enabled: false
              isSecurePassphraseSet: false
              objectType: string
              securePassphrase: string
        logicalNamespaces:
            - additionalProperties: string
              capacity: 0
              classId: string
              mode: string
              name: string
              objectType: string
              socketId: 0
              socketMemoryId: string
        managementMode: string
        memoryPersistentMemoryPolicyId: 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
        retainNamespaces: false
        sharedScope: string
        tags:
            - additionalProperties: string
              key: string
              value: string
        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
    

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

    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<MemoryPersistentMemoryPolicyAncestor>
    (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.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    Description string
    Description of the policy.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    Goals List<MemoryPersistentMemoryPolicyGoal>
    This complex property has following sub-properties:
    LocalSecurities List<MemoryPersistentMemoryPolicyLocalSecurity>
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    LogicalNamespaces List<MemoryPersistentMemoryPolicyLogicalNamespace>
    This complex property has following sub-properties:
    ManagementMode string
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    MemoryPersistentMemoryPolicyId string
    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<MemoryPersistentMemoryPolicyOrganization>
    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<MemoryPersistentMemoryPolicyParent>
    (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<MemoryPersistentMemoryPolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles List<MemoryPersistentMemoryPolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    RetainNamespaces bool
    Persistent Memory Namespaces to be retained or not.
    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.
    Tags List<MemoryPersistentMemoryPolicyTag>
    This complex property has following sub-properties:
    VersionContexts List<MemoryPersistentMemoryPolicyVersionContext>
    (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 []MemoryPersistentMemoryPolicyAncestorArgs
    (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.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    Description string
    Description of the policy.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    Goals []MemoryPersistentMemoryPolicyGoalArgs
    This complex property has following sub-properties:
    LocalSecurities []MemoryPersistentMemoryPolicyLocalSecurityArgs
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    LogicalNamespaces []MemoryPersistentMemoryPolicyLogicalNamespaceArgs
    This complex property has following sub-properties:
    ManagementMode string
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    MemoryPersistentMemoryPolicyId string
    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 []MemoryPersistentMemoryPolicyOrganizationArgs
    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 []MemoryPersistentMemoryPolicyParentArgs
    (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 []MemoryPersistentMemoryPolicyPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles []MemoryPersistentMemoryPolicyProfileArgs
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    RetainNamespaces bool
    Persistent Memory Namespaces to be retained or not.
    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.
    Tags []MemoryPersistentMemoryPolicyTagArgs
    This complex property has following sub-properties:
    VersionContexts []MemoryPersistentMemoryPolicyVersionContextArgs
    (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<MemoryPersistentMemoryPolicyAncestor>
    (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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    description String
    Description of the policy.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    goals List<MemoryPersistentMemoryPolicyGoal>
    This complex property has following sub-properties:
    localSecurities List<MemoryPersistentMemoryPolicyLocalSecurity>
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    logicalNamespaces List<MemoryPersistentMemoryPolicyLogicalNamespace>
    This complex property has following sub-properties:
    managementMode String
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    memoryPersistentMemoryPolicyId String
    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<MemoryPersistentMemoryPolicyOrganization>
    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<MemoryPersistentMemoryPolicyParent>
    (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<MemoryPersistentMemoryPolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles List<MemoryPersistentMemoryPolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    retainNamespaces Boolean
    Persistent Memory Namespaces to be retained or not.
    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.
    tags List<MemoryPersistentMemoryPolicyTag>
    This complex property has following sub-properties:
    versionContexts List<MemoryPersistentMemoryPolicyVersionContext>
    (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 MemoryPersistentMemoryPolicyAncestor[]
    (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.
    createTime string
    (ReadOnly) The time when this managed object was created.
    description string
    Description of the policy.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    goals MemoryPersistentMemoryPolicyGoal[]
    This complex property has following sub-properties:
    localSecurities MemoryPersistentMemoryPolicyLocalSecurity[]
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    logicalNamespaces MemoryPersistentMemoryPolicyLogicalNamespace[]
    This complex property has following sub-properties:
    managementMode string
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    memoryPersistentMemoryPolicyId string
    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 MemoryPersistentMemoryPolicyOrganization[]
    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 MemoryPersistentMemoryPolicyParent[]
    (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 MemoryPersistentMemoryPolicyPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles MemoryPersistentMemoryPolicyProfile[]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    retainNamespaces boolean
    Persistent Memory Namespaces to be retained or not.
    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.
    tags MemoryPersistentMemoryPolicyTag[]
    This complex property has following sub-properties:
    versionContexts MemoryPersistentMemoryPolicyVersionContext[]
    (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[MemoryPersistentMemoryPolicyAncestorArgs]
    (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.
    create_time str
    (ReadOnly) The time when this managed object was created.
    description str
    Description of the policy.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    goals Sequence[MemoryPersistentMemoryPolicyGoalArgs]
    This complex property has following sub-properties:
    local_securities Sequence[MemoryPersistentMemoryPolicyLocalSecurityArgs]
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    logical_namespaces Sequence[MemoryPersistentMemoryPolicyLogicalNamespaceArgs]
    This complex property has following sub-properties:
    management_mode str
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    memory_persistent_memory_policy_id str
    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[MemoryPersistentMemoryPolicyOrganizationArgs]
    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[MemoryPersistentMemoryPolicyParentArgs]
    (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[MemoryPersistentMemoryPolicyPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles Sequence[MemoryPersistentMemoryPolicyProfileArgs]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    retain_namespaces bool
    Persistent Memory Namespaces to be retained or not.
    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.
    tags Sequence[MemoryPersistentMemoryPolicyTagArgs]
    This complex property has following sub-properties:
    version_contexts Sequence[MemoryPersistentMemoryPolicyVersionContextArgs]
    (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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    description String
    Description of the policy.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    goals List<Property Map>
    This complex property has following sub-properties:
    localSecurities List<Property Map>
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    logicalNamespaces List<Property Map>
    This complex property has following sub-properties:
    managementMode String
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    memoryPersistentMemoryPolicyId String
    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:
    retainNamespaces Boolean
    Persistent Memory Namespaces to be retained or not.
    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.
    tags List<Property Map>
    This complex property has following sub-properties:
    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 MemoryPersistentMemoryPolicy 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 MemoryPersistentMemoryPolicy Resource

    Get an existing MemoryPersistentMemoryPolicy 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?: MemoryPersistentMemoryPolicyState, opts?: CustomResourceOptions): MemoryPersistentMemoryPolicy
    @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[MemoryPersistentMemoryPolicyAncestorArgs]] = None,
            class_id: Optional[str] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            domain_group_moid: Optional[str] = None,
            goals: Optional[Sequence[MemoryPersistentMemoryPolicyGoalArgs]] = None,
            local_securities: Optional[Sequence[MemoryPersistentMemoryPolicyLocalSecurityArgs]] = None,
            logical_namespaces: Optional[Sequence[MemoryPersistentMemoryPolicyLogicalNamespaceArgs]] = None,
            management_mode: Optional[str] = None,
            memory_persistent_memory_policy_id: Optional[str] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            name: Optional[str] = None,
            object_type: Optional[str] = None,
            organizations: Optional[Sequence[MemoryPersistentMemoryPolicyOrganizationArgs]] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[MemoryPersistentMemoryPolicyParentArgs]] = None,
            permission_resources: Optional[Sequence[MemoryPersistentMemoryPolicyPermissionResourceArgs]] = None,
            profiles: Optional[Sequence[MemoryPersistentMemoryPolicyProfileArgs]] = None,
            retain_namespaces: Optional[bool] = None,
            shared_scope: Optional[str] = None,
            tags: Optional[Sequence[MemoryPersistentMemoryPolicyTagArgs]] = None,
            version_contexts: Optional[Sequence[MemoryPersistentMemoryPolicyVersionContextArgs]] = None) -> MemoryPersistentMemoryPolicy
    func GetMemoryPersistentMemoryPolicy(ctx *Context, name string, id IDInput, state *MemoryPersistentMemoryPolicyState, opts ...ResourceOption) (*MemoryPersistentMemoryPolicy, error)
    public static MemoryPersistentMemoryPolicy Get(string name, Input<string> id, MemoryPersistentMemoryPolicyState? state, CustomResourceOptions? opts = null)
    public static MemoryPersistentMemoryPolicy get(String name, Output<String> id, MemoryPersistentMemoryPolicyState state, CustomResourceOptions options)
    resources:  _:    type: intersight:MemoryPersistentMemoryPolicy    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<MemoryPersistentMemoryPolicyAncestor>
    (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.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    Description string
    Description of the policy.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    Goals List<MemoryPersistentMemoryPolicyGoal>
    This complex property has following sub-properties:
    LocalSecurities List<MemoryPersistentMemoryPolicyLocalSecurity>
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    LogicalNamespaces List<MemoryPersistentMemoryPolicyLogicalNamespace>
    This complex property has following sub-properties:
    ManagementMode string
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    MemoryPersistentMemoryPolicyId string
    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<MemoryPersistentMemoryPolicyOrganization>
    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<MemoryPersistentMemoryPolicyParent>
    (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<MemoryPersistentMemoryPolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles List<MemoryPersistentMemoryPolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    RetainNamespaces bool
    Persistent Memory Namespaces to be retained or not.
    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.
    Tags List<MemoryPersistentMemoryPolicyTag>
    This complex property has following sub-properties:
    VersionContexts List<MemoryPersistentMemoryPolicyVersionContext>
    (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 []MemoryPersistentMemoryPolicyAncestorArgs
    (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.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    Description string
    Description of the policy.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    Goals []MemoryPersistentMemoryPolicyGoalArgs
    This complex property has following sub-properties:
    LocalSecurities []MemoryPersistentMemoryPolicyLocalSecurityArgs
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    LogicalNamespaces []MemoryPersistentMemoryPolicyLogicalNamespaceArgs
    This complex property has following sub-properties:
    ManagementMode string
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    MemoryPersistentMemoryPolicyId string
    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 []MemoryPersistentMemoryPolicyOrganizationArgs
    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 []MemoryPersistentMemoryPolicyParentArgs
    (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 []MemoryPersistentMemoryPolicyPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles []MemoryPersistentMemoryPolicyProfileArgs
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    RetainNamespaces bool
    Persistent Memory Namespaces to be retained or not.
    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.
    Tags []MemoryPersistentMemoryPolicyTagArgs
    This complex property has following sub-properties:
    VersionContexts []MemoryPersistentMemoryPolicyVersionContextArgs
    (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<MemoryPersistentMemoryPolicyAncestor>
    (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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    description String
    Description of the policy.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    goals List<MemoryPersistentMemoryPolicyGoal>
    This complex property has following sub-properties:
    localSecurities List<MemoryPersistentMemoryPolicyLocalSecurity>
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    logicalNamespaces List<MemoryPersistentMemoryPolicyLogicalNamespace>
    This complex property has following sub-properties:
    managementMode String
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    memoryPersistentMemoryPolicyId String
    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<MemoryPersistentMemoryPolicyOrganization>
    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<MemoryPersistentMemoryPolicyParent>
    (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<MemoryPersistentMemoryPolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles List<MemoryPersistentMemoryPolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    retainNamespaces Boolean
    Persistent Memory Namespaces to be retained or not.
    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.
    tags List<MemoryPersistentMemoryPolicyTag>
    This complex property has following sub-properties:
    versionContexts List<MemoryPersistentMemoryPolicyVersionContext>
    (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 MemoryPersistentMemoryPolicyAncestor[]
    (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.
    createTime string
    (ReadOnly) The time when this managed object was created.
    description string
    Description of the policy.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    goals MemoryPersistentMemoryPolicyGoal[]
    This complex property has following sub-properties:
    localSecurities MemoryPersistentMemoryPolicyLocalSecurity[]
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    logicalNamespaces MemoryPersistentMemoryPolicyLogicalNamespace[]
    This complex property has following sub-properties:
    managementMode string
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    memoryPersistentMemoryPolicyId string
    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 MemoryPersistentMemoryPolicyOrganization[]
    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 MemoryPersistentMemoryPolicyParent[]
    (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 MemoryPersistentMemoryPolicyPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles MemoryPersistentMemoryPolicyProfile[]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    retainNamespaces boolean
    Persistent Memory Namespaces to be retained or not.
    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.
    tags MemoryPersistentMemoryPolicyTag[]
    This complex property has following sub-properties:
    versionContexts MemoryPersistentMemoryPolicyVersionContext[]
    (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[MemoryPersistentMemoryPolicyAncestorArgs]
    (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.
    create_time str
    (ReadOnly) The time when this managed object was created.
    description str
    Description of the policy.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    goals Sequence[MemoryPersistentMemoryPolicyGoalArgs]
    This complex property has following sub-properties:
    local_securities Sequence[MemoryPersistentMemoryPolicyLocalSecurityArgs]
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    logical_namespaces Sequence[MemoryPersistentMemoryPolicyLogicalNamespaceArgs]
    This complex property has following sub-properties:
    management_mode str
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    memory_persistent_memory_policy_id str
    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[MemoryPersistentMemoryPolicyOrganizationArgs]
    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[MemoryPersistentMemoryPolicyParentArgs]
    (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[MemoryPersistentMemoryPolicyPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles Sequence[MemoryPersistentMemoryPolicyProfileArgs]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    retain_namespaces bool
    Persistent Memory Namespaces to be retained or not.
    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.
    tags Sequence[MemoryPersistentMemoryPolicyTagArgs]
    This complex property has following sub-properties:
    version_contexts Sequence[MemoryPersistentMemoryPolicyVersionContextArgs]
    (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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    description String
    Description of the policy.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    goals List<Property Map>
    This complex property has following sub-properties:
    localSecurities List<Property Map>
    Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
    logicalNamespaces List<Property Map>
    This complex property has following sub-properties:
    managementMode String
    Management Mode of the policy. This can be either Configured from Intersight or Configured from Operating System.* configured-from-intersight - The Persistent Memory Modules are configured from Intersight thorugh Persistent Memory policy.* configured-from-operating-system - The Persistent Memory Modules are configured from operating system thorugh OS tools.
    memoryPersistentMemoryPolicyId String
    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:
    retainNamespaces Boolean
    Persistent Memory Namespaces to be retained or not.
    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.
    tags List<Property Map>
    This complex property has following sub-properties:
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Supporting Types

    MemoryPersistentMemoryPolicyAncestor, MemoryPersistentMemoryPolicyAncestorArgs

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

    MemoryPersistentMemoryPolicyGoal, MemoryPersistentMemoryPolicyGoalArgs

    AdditionalProperties string
    ClassId string
    MemoryModePercentage double
    Volatile memory percentage.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    PersistentMemoryType string
    Type of the Persistent Memory configuration where the Persistent Memory Modules are combined in an interleaved set or not.* app-direct - The App Direct interleaved Persistent Memory type.* app-direct-non-interleaved - The App Direct non-interleaved Persistent Memory type.
    SocketId string
    CPU Socket ID to which this goal will be applied.* All Sockets - All the CPU socket IDs in a server.
    AdditionalProperties string
    ClassId string
    MemoryModePercentage float64
    Volatile memory percentage.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    PersistentMemoryType string
    Type of the Persistent Memory configuration where the Persistent Memory Modules are combined in an interleaved set or not.* app-direct - The App Direct interleaved Persistent Memory type.* app-direct-non-interleaved - The App Direct non-interleaved Persistent Memory type.
    SocketId string
    CPU Socket ID to which this goal will be applied.* All Sockets - All the CPU socket IDs in a server.
    additionalProperties String
    classId String
    memoryModePercentage Double
    Volatile memory percentage.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    persistentMemoryType String
    Type of the Persistent Memory configuration where the Persistent Memory Modules are combined in an interleaved set or not.* app-direct - The App Direct interleaved Persistent Memory type.* app-direct-non-interleaved - The App Direct non-interleaved Persistent Memory type.
    socketId String
    CPU Socket ID to which this goal will be applied.* All Sockets - All the CPU socket IDs in a server.
    additionalProperties string
    classId string
    memoryModePercentage number
    Volatile memory percentage.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    persistentMemoryType string
    Type of the Persistent Memory configuration where the Persistent Memory Modules are combined in an interleaved set or not.* app-direct - The App Direct interleaved Persistent Memory type.* app-direct-non-interleaved - The App Direct non-interleaved Persistent Memory type.
    socketId string
    CPU Socket ID to which this goal will be applied.* All Sockets - All the CPU socket IDs in a server.
    additional_properties str
    class_id str
    memory_mode_percentage float
    Volatile memory percentage.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    persistent_memory_type str
    Type of the Persistent Memory configuration where the Persistent Memory Modules are combined in an interleaved set or not.* app-direct - The App Direct interleaved Persistent Memory type.* app-direct-non-interleaved - The App Direct non-interleaved Persistent Memory type.
    socket_id str
    CPU Socket ID to which this goal will be applied.* All Sockets - All the CPU socket IDs in a server.
    additionalProperties String
    classId String
    memoryModePercentage Number
    Volatile memory percentage.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    persistentMemoryType String
    Type of the Persistent Memory configuration where the Persistent Memory Modules are combined in an interleaved set or not.* app-direct - The App Direct interleaved Persistent Memory type.* app-direct-non-interleaved - The App Direct non-interleaved Persistent Memory type.
    socketId String
    CPU Socket ID to which this goal will be applied.* All Sockets - All the CPU socket IDs in a server.

    MemoryPersistentMemoryPolicyLocalSecurity, MemoryPersistentMemoryPolicyLocalSecurityArgs

    AdditionalProperties string
    ClassId string
    Enabled bool
    Persistent Memory Security state.
    IsSecurePassphraseSet bool
    (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SecurePassphrase string
    Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \u0021, &, \#, $, %, +, ^, @, _, *, -.
    AdditionalProperties string
    ClassId string
    Enabled bool
    Persistent Memory Security state.
    IsSecurePassphraseSet bool
    (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SecurePassphrase string
    Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \u0021, &, \#, $, %, +, ^, @, _, *, -.
    additionalProperties String
    classId String
    enabled Boolean
    Persistent Memory Security state.
    isSecurePassphraseSet Boolean
    (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    securePassphrase String
    Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \u0021, &, \#, $, %, +, ^, @, _, *, -.
    additionalProperties string
    classId string
    enabled boolean
    Persistent Memory Security state.
    isSecurePassphraseSet boolean
    (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    securePassphrase string
    Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \u0021, &, \#, $, %, +, ^, @, _, *, -.
    additional_properties str
    class_id str
    enabled bool
    Persistent Memory Security state.
    is_secure_passphrase_set bool
    (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    secure_passphrase str
    Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \u0021, &, \#, $, %, +, ^, @, _, *, -.
    additionalProperties String
    classId String
    enabled Boolean
    Persistent Memory Security state.
    isSecurePassphraseSet Boolean
    (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    securePassphrase String
    Secure passphrase to be applied on the Persistent Memory Modules on the server. The allowed characters are a-z, A to Z, 0-9, and special characters =, \u0021, &, \#, $, %, +, ^, @, _, *, -.

    MemoryPersistentMemoryPolicyLogicalNamespace, MemoryPersistentMemoryPolicyLogicalNamespaceArgs

    AdditionalProperties string
    Capacity double
    Capacity of this Namespace that is created or modified.
    ClassId string
    Mode string
    Mode of this Namespace that is created or modified.* raw - The raw mode of Persistent Memory Namespace.* block - The block mode of Persistent Memory Namespace.
    Name string
    Name of this Namespace to be created on the server.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SocketId double
    Socket ID of the region on which this Namespace has to be created or modified.* 1 - The first CPU socket in a server.* 2 - The second CPU socket in a server.* 3 - The third CPU socket in a server.* 4 - The fourth CPU socket in a server.
    SocketMemoryId string
    Socket Memory ID of the region on which this Namespace has to be created or modified.* Not Applicable - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal.* 2 - The second socket memory ID within a socket in a server.* 4 - The fourth socket memory ID within a socket in a server.* 6 - The sixth socket memory ID within a socket in a server.* 8 - The eighth socket memory ID within a socket in a server.* 10 - The tenth socket memory ID within a socket in a server.* 12 - The twelfth socket memory ID within a socket in a server.
    AdditionalProperties string
    Capacity float64
    Capacity of this Namespace that is created or modified.
    ClassId string
    Mode string
    Mode of this Namespace that is created or modified.* raw - The raw mode of Persistent Memory Namespace.* block - The block mode of Persistent Memory Namespace.
    Name string
    Name of this Namespace to be created on the server.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SocketId float64
    Socket ID of the region on which this Namespace has to be created or modified.* 1 - The first CPU socket in a server.* 2 - The second CPU socket in a server.* 3 - The third CPU socket in a server.* 4 - The fourth CPU socket in a server.
    SocketMemoryId string
    Socket Memory ID of the region on which this Namespace has to be created or modified.* Not Applicable - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal.* 2 - The second socket memory ID within a socket in a server.* 4 - The fourth socket memory ID within a socket in a server.* 6 - The sixth socket memory ID within a socket in a server.* 8 - The eighth socket memory ID within a socket in a server.* 10 - The tenth socket memory ID within a socket in a server.* 12 - The twelfth socket memory ID within a socket in a server.
    additionalProperties String
    capacity Double
    Capacity of this Namespace that is created or modified.
    classId String
    mode String
    Mode of this Namespace that is created or modified.* raw - The raw mode of Persistent Memory Namespace.* block - The block mode of Persistent Memory Namespace.
    name String
    Name of this Namespace to be created on the server.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    socketId Double
    Socket ID of the region on which this Namespace has to be created or modified.* 1 - The first CPU socket in a server.* 2 - The second CPU socket in a server.* 3 - The third CPU socket in a server.* 4 - The fourth CPU socket in a server.
    socketMemoryId String
    Socket Memory ID of the region on which this Namespace has to be created or modified.* Not Applicable - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal.* 2 - The second socket memory ID within a socket in a server.* 4 - The fourth socket memory ID within a socket in a server.* 6 - The sixth socket memory ID within a socket in a server.* 8 - The eighth socket memory ID within a socket in a server.* 10 - The tenth socket memory ID within a socket in a server.* 12 - The twelfth socket memory ID within a socket in a server.
    additionalProperties string
    capacity number
    Capacity of this Namespace that is created or modified.
    classId string
    mode string
    Mode of this Namespace that is created or modified.* raw - The raw mode of Persistent Memory Namespace.* block - The block mode of Persistent Memory Namespace.
    name string
    Name of this Namespace to be created on the server.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    socketId number
    Socket ID of the region on which this Namespace has to be created or modified.* 1 - The first CPU socket in a server.* 2 - The second CPU socket in a server.* 3 - The third CPU socket in a server.* 4 - The fourth CPU socket in a server.
    socketMemoryId string
    Socket Memory ID of the region on which this Namespace has to be created or modified.* Not Applicable - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal.* 2 - The second socket memory ID within a socket in a server.* 4 - The fourth socket memory ID within a socket in a server.* 6 - The sixth socket memory ID within a socket in a server.* 8 - The eighth socket memory ID within a socket in a server.* 10 - The tenth socket memory ID within a socket in a server.* 12 - The twelfth socket memory ID within a socket in a server.
    additional_properties str
    capacity float
    Capacity of this Namespace that is created or modified.
    class_id str
    mode str
    Mode of this Namespace that is created or modified.* raw - The raw mode of Persistent Memory Namespace.* block - The block mode of Persistent Memory Namespace.
    name str
    Name of this Namespace to be created on the server.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    socket_id float
    Socket ID of the region on which this Namespace has to be created or modified.* 1 - The first CPU socket in a server.* 2 - The second CPU socket in a server.* 3 - The third CPU socket in a server.* 4 - The fourth CPU socket in a server.
    socket_memory_id str
    Socket Memory ID of the region on which this Namespace has to be created or modified.* Not Applicable - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal.* 2 - The second socket memory ID within a socket in a server.* 4 - The fourth socket memory ID within a socket in a server.* 6 - The sixth socket memory ID within a socket in a server.* 8 - The eighth socket memory ID within a socket in a server.* 10 - The tenth socket memory ID within a socket in a server.* 12 - The twelfth socket memory ID within a socket in a server.
    additionalProperties String
    capacity Number
    Capacity of this Namespace that is created or modified.
    classId String
    mode String
    Mode of this Namespace that is created or modified.* raw - The raw mode of Persistent Memory Namespace.* block - The block mode of Persistent Memory Namespace.
    name String
    Name of this Namespace to be created on the server.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    socketId Number
    Socket ID of the region on which this Namespace has to be created or modified.* 1 - The first CPU socket in a server.* 2 - The second CPU socket in a server.* 3 - The third CPU socket in a server.* 4 - The fourth CPU socket in a server.
    socketMemoryId String
    Socket Memory ID of the region on which this Namespace has to be created or modified.* Not Applicable - The socket memory ID is not applicable if app-direct persistent memory type is selected in the goal.* 2 - The second socket memory ID within a socket in a server.* 4 - The fourth socket memory ID within a socket in a server.* 6 - The sixth socket memory ID within a socket in a server.* 8 - The eighth socket memory ID within a socket in a server.* 10 - The tenth socket memory ID within a socket in a server.* 12 - The twelfth socket memory ID within a socket in a server.

    MemoryPersistentMemoryPolicyOrganization, MemoryPersistentMemoryPolicyOrganizationArgs

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

    MemoryPersistentMemoryPolicyParent, MemoryPersistentMemoryPolicyParentArgs

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

    MemoryPersistentMemoryPolicyPermissionResource, MemoryPersistentMemoryPolicyPermissionResourceArgs

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

    MemoryPersistentMemoryPolicyProfile, MemoryPersistentMemoryPolicyProfileArgs

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

    MemoryPersistentMemoryPolicyTag, MemoryPersistentMemoryPolicyTagArgs

    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.

    MemoryPersistentMemoryPolicyVersionContext, MemoryPersistentMemoryPolicyVersionContextArgs

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

    MemoryPersistentMemoryPolicyVersionContextInterestedMo, MemoryPersistentMemoryPolicyVersionContextInterestedMoArgs

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

    MemoryPersistentMemoryPolicyVersionContextRefMo, MemoryPersistentMemoryPolicyVersionContextRefMoArgs

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

    $ pulumi import intersight:index/memoryPersistentMemoryPolicy:MemoryPersistentMemoryPolicy 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