intersight.MemoryPersistentMemoryPolicy
Explore with Pulumi AI
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:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Memory
Persistent Memory Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Goals
List<Memory
Persistent Memory Policy Goal> - This complex property has following sub-properties:
- Local
Securities List<MemoryPersistent Memory Policy Local Security> - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- Logical
Namespaces List<MemoryPersistent Memory Policy Logical Namespace> - This complex property has following sub-properties:
- Management
Mode 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. - Memory
Persistent stringMemory Policy Id - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Memory
Persistent Memory Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Memory
Persistent Memory Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<MemoryPersistent Memory Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Memory
Persistent Memory Policy Profile> - 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.
- 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.
- List<Memory
Persistent Memory Policy Tag> - This complex property has following sub-properties:
- Version
Contexts List<MemoryPersistent Memory Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Memory
Persistent Memory Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Goals
[]Memory
Persistent Memory Policy Goal Args - This complex property has following sub-properties:
- Local
Securities []MemoryPersistent Memory Policy Local Security Args - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- Logical
Namespaces []MemoryPersistent Memory Policy Logical Namespace Args - This complex property has following sub-properties:
- Management
Mode 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. - Memory
Persistent stringMemory Policy Id - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Memory
Persistent Memory Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Memory
Persistent Memory Policy Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []MemoryPersistent Memory Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Memory
Persistent Memory Policy Profile Args - 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.
- 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.
- []Memory
Persistent Memory Policy Tag Args - This complex property has following sub-properties:
- Version
Contexts []MemoryPersistent Memory Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Memory
Persistent Memory Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- goals
List<Memory
Persistent Memory Policy Goal> - This complex property has following sub-properties:
- local
Securities List<MemoryPersistent Memory Policy Local Security> - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- logical
Namespaces List<MemoryPersistent Memory Policy Logical Namespace> - This complex property has following sub-properties:
- management
Mode 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. - memory
Persistent StringMemory Policy Id - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Memory
Persistent Memory Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Memory
Persistent Memory Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<MemoryPersistent Memory Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Memory
Persistent Memory Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- retain
Namespaces Boolean - Persistent Memory Namespaces to be retained or not.
- 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.
- List<Memory
Persistent Memory Policy Tag> - This complex property has following sub-properties:
- version
Contexts List<MemoryPersistent Memory Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Memory
Persistent Memory Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- goals
Memory
Persistent Memory Policy Goal[] - This complex property has following sub-properties:
- local
Securities MemoryPersistent Memory Policy Local Security[] - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- logical
Namespaces MemoryPersistent Memory Policy Logical Namespace[] - This complex property has following sub-properties:
- management
Mode 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. - memory
Persistent stringMemory Policy Id - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Memory
Persistent Memory Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Memory
Persistent Memory Policy Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources MemoryPersistent Memory Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Memory
Persistent Memory Policy Profile[] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- retain
Namespaces boolean - Persistent Memory Namespaces to be retained or not.
- 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.
- Memory
Persistent Memory Policy Tag[] - This complex property has following sub-properties:
- version
Contexts MemoryPersistent Memory Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Memory
Persistent Memory Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- Description of the policy.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- goals
Sequence[Memory
Persistent Memory Policy Goal Args] - This complex property has following sub-properties:
- local_
securities Sequence[MemoryPersistent Memory Policy Local Security Args] - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- logical_
namespaces Sequence[MemoryPersistent Memory Policy Logical Namespace Args] - 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_ strmemory_ policy_ id - 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[Memory
Persistent Memory Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Memory
Persistent Memory Policy Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[MemoryPersistent Memory Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Memory
Persistent Memory Policy Profile Args] - 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.
- 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.
- Sequence[Memory
Persistent Memory Policy Tag Args] - This complex property has following sub-properties:
- version_
contexts Sequence[MemoryPersistent Memory Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- goals List<Property Map>
- This complex property has following sub-properties:
- local
Securities List<Property Map> - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- logical
Namespaces List<Property Map> - This complex property has following sub-properties:
- management
Mode 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. - memory
Persistent StringMemory Policy Id - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- retain
Namespaces Boolean - Persistent Memory Namespaces to be retained or not.
- 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.
- List<Property Map>
- This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the 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.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Memory
Persistent Memory Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Goals
List<Memory
Persistent Memory Policy Goal> - This complex property has following sub-properties:
- Local
Securities List<MemoryPersistent Memory Policy Local Security> - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- Logical
Namespaces List<MemoryPersistent Memory Policy Logical Namespace> - This complex property has following sub-properties:
- Management
Mode 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. - Memory
Persistent stringMemory Policy Id - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Memory
Persistent Memory Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Memory
Persistent Memory Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<MemoryPersistent Memory Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Memory
Persistent Memory Policy Profile> - 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.
- 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.
- List<Memory
Persistent Memory Policy Tag> - This complex property has following sub-properties:
- Version
Contexts List<MemoryPersistent Memory Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Memory
Persistent Memory Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Goals
[]Memory
Persistent Memory Policy Goal Args - This complex property has following sub-properties:
- Local
Securities []MemoryPersistent Memory Policy Local Security Args - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- Logical
Namespaces []MemoryPersistent Memory Policy Logical Namespace Args - This complex property has following sub-properties:
- Management
Mode 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. - Memory
Persistent stringMemory Policy Id - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Memory
Persistent Memory Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Memory
Persistent Memory Policy Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []MemoryPersistent Memory Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Memory
Persistent Memory Policy Profile Args - 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.
- 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.
- []Memory
Persistent Memory Policy Tag Args - This complex property has following sub-properties:
- Version
Contexts []MemoryPersistent Memory Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Memory
Persistent Memory Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- goals
List<Memory
Persistent Memory Policy Goal> - This complex property has following sub-properties:
- local
Securities List<MemoryPersistent Memory Policy Local Security> - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- logical
Namespaces List<MemoryPersistent Memory Policy Logical Namespace> - This complex property has following sub-properties:
- management
Mode 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. - memory
Persistent StringMemory Policy Id - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Memory
Persistent Memory Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Memory
Persistent Memory Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<MemoryPersistent Memory Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Memory
Persistent Memory Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- retain
Namespaces Boolean - Persistent Memory Namespaces to be retained or not.
- 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.
- List<Memory
Persistent Memory Policy Tag> - This complex property has following sub-properties:
- version
Contexts List<MemoryPersistent Memory Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Memory
Persistent Memory Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- goals
Memory
Persistent Memory Policy Goal[] - This complex property has following sub-properties:
- local
Securities MemoryPersistent Memory Policy Local Security[] - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- logical
Namespaces MemoryPersistent Memory Policy Logical Namespace[] - This complex property has following sub-properties:
- management
Mode 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. - memory
Persistent stringMemory Policy Id - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Memory
Persistent Memory Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Memory
Persistent Memory Policy Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources MemoryPersistent Memory Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Memory
Persistent Memory Policy Profile[] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- retain
Namespaces boolean - Persistent Memory Namespaces to be retained or not.
- 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.
- Memory
Persistent Memory Policy Tag[] - This complex property has following sub-properties:
- version
Contexts MemoryPersistent Memory Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Memory
Persistent Memory Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- Description of the policy.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- goals
Sequence[Memory
Persistent Memory Policy Goal Args] - This complex property has following sub-properties:
- local_
securities Sequence[MemoryPersistent Memory Policy Local Security Args] - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- logical_
namespaces Sequence[MemoryPersistent Memory Policy Logical Namespace Args] - 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_ strmemory_ policy_ id - 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[Memory
Persistent Memory Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Memory
Persistent Memory Policy Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[MemoryPersistent Memory Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Memory
Persistent Memory Policy Profile Args] - 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.
- 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.
- Sequence[Memory
Persistent Memory Policy Tag Args] - This complex property has following sub-properties:
- version_
contexts Sequence[MemoryPersistent Memory Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- goals List<Property Map>
- This complex property has following sub-properties:
- local
Securities List<Property Map> - Local security for the Persistent Memory Modules on the server. This complex property has following sub-properties:
- logical
Namespaces List<Property Map> - This complex property has following sub-properties:
- management
Mode 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. - memory
Persistent StringMemory Policy Id - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- retain
Namespaces Boolean - Persistent Memory Namespaces to be retained or not.
- 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.
- List<Property Map>
- This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
MemoryPersistentMemoryPolicyAncestor, MemoryPersistentMemoryPolicyAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
MemoryPersistentMemoryPolicyGoal, MemoryPersistentMemoryPolicyGoalArgs
- Additional
Properties string - Class
Id string - Memory
Mode doublePercentage - Volatile memory percentage.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Persistent
Memory stringType - 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 string - CPU Socket ID to which this goal will be applied.*
All Sockets
- All the CPU socket IDs in a server.
- Additional
Properties string - Class
Id string - Memory
Mode float64Percentage - Volatile memory percentage.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Persistent
Memory stringType - 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 string - CPU Socket ID to which this goal will be applied.*
All Sockets
- All the CPU socket IDs in a server.
- additional
Properties String - class
Id String - memory
Mode DoublePercentage - Volatile memory percentage.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- persistent
Memory StringType - 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 String - CPU Socket ID to which this goal will be applied.*
All Sockets
- All the CPU socket IDs in a server.
- additional
Properties string - class
Id string - memory
Mode numberPercentage - Volatile memory percentage.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- persistent
Memory stringType - 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 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_ floatpercentage - 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_ strtype - 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.
- additional
Properties String - class
Id String - memory
Mode NumberPercentage - Volatile memory percentage.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- persistent
Memory StringType - 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 String - CPU Socket ID to which this goal will be applied.*
All Sockets
- All the CPU socket IDs in a server.
MemoryPersistentMemoryPolicyLocalSecurity, MemoryPersistentMemoryPolicyLocalSecurityArgs
- Additional
Properties string - Class
Id string - Enabled bool
- Persistent Memory Security state.
- Is
Secure boolPassphrase Set - (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Secure
Passphrase 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 string - Class
Id string - Enabled bool
- Persistent Memory Security state.
- Is
Secure boolPassphrase Set - (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Secure
Passphrase 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 String - class
Id String - enabled Boolean
- Persistent Memory Security state.
- is
Secure BooleanPassphrase Set - (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- secure
Passphrase 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 string - class
Id string - enabled boolean
- Persistent Memory Security state.
- is
Secure booleanPassphrase Set - (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- secure
Passphrase 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_ boolpassphrase_ set - (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, &, \#, $, %, +, ^, @, _, *, -.
- additional
Properties String - class
Id String - enabled Boolean
- Persistent Memory Security state.
- is
Secure BooleanPassphrase Set - (ReadOnly) Indicates whether the value of the 'securePassphrase' property has been set.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- secure
Passphrase 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
- Additional
Properties string - Capacity double
- Capacity of this Namespace that is created or modified.
- Class
Id 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Socket
Id 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. - Socket
Memory stringId - 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 string - Capacity float64
- Capacity of this Namespace that is created or modified.
- Class
Id 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Socket
Id 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. - Socket
Memory stringId - 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 String - capacity Double
- Capacity of this Namespace that is created or modified.
- class
Id 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- socket
Id 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. - socket
Memory StringId - 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 string - capacity number
- Capacity of this Namespace that is created or modified.
- class
Id 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.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- socket
Id 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. - socket
Memory stringId - 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_ strid - 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 String - capacity Number
- Capacity of this Namespace that is created or modified.
- class
Id 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- socket
Id 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. - socket
Memory StringId - 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
MemoryPersistentMemoryPolicyParent, MemoryPersistentMemoryPolicyParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
MemoryPersistentMemoryPolicyPermissionResource, MemoryPersistentMemoryPolicyPermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
MemoryPersistentMemoryPolicyProfile, MemoryPersistentMemoryPolicyProfileArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
MemoryPersistentMemoryPolicyTag, MemoryPersistentMemoryPolicyTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
MemoryPersistentMemoryPolicyVersionContext, MemoryPersistentMemoryPolicyVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<MemoryPersistent Memory Policy Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<MemoryPersistent Memory Policy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []MemoryPersistent Memory Policy Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []MemoryPersistent Memory Policy Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<MemoryPersistent Memory Policy Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<MemoryPersistent Memory Policy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos MemoryPersistent Memory Policy Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos MemoryPersistent Memory Policy Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[MemoryPersistent Memory Policy Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[MemoryPersistent Memory Policy Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
MemoryPersistentMemoryPolicyVersionContextInterestedMo, MemoryPersistentMemoryPolicyVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
MemoryPersistentMemoryPolicyVersionContextRefMo, MemoryPersistentMemoryPolicyVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_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.