intersight.BootPrecisionPolicy
Explore with Pulumi AI
Boot order policy models a reusable boot order configuration that can be applied to multiple servers via profile association. It supports advanced boot order configuration on Cisco CIMC servers.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const bootPrecision1 = new intersight.BootPrecisionPolicy("bootPrecision1", {
    description: "test policy",
    configuredBootMode: "Legacy",
    enforceUefiSecureBoot: false,
    organizations: [{
        objectType: "organization.Organization",
        moid: _var.organization,
    }],
    bootDevices: [
        {
            enabled: true,
            name: "scu-device-hdd",
            objectType: "boot.LocalDisk",
            additionalProperties: JSON.stringify({
                Slot: "MRAID",
                Bootloader: {
                    Description: "",
                    Name: "",
                    ObjectType: "boot.Bootloader",
                    Path: "",
                },
            }),
        },
        {
            enabled: true,
            name: "NIIODCIMCDVD",
            objectType: "boot.VirtualMedia",
            additionalProperties: JSON.stringify({
                Subtype: "cimc-mapped-dvd",
            }),
        },
        {
            enabled: true,
            name: "hdd",
            objectType: "boot.LocalDisk",
            additionalProperties: JSON.stringify({
                Slot: "MRAID",
                Bootloader: {
                    Description: "",
                    Name: "",
                    ObjectType: "boot.Bootloader",
                    Path: "",
                },
            }),
        },
    ],
});
import pulumi
import json
import pulumi_intersight as intersight
boot_precision1 = intersight.BootPrecisionPolicy("bootPrecision1",
    description="test policy",
    configured_boot_mode="Legacy",
    enforce_uefi_secure_boot=False,
    organizations=[{
        "object_type": "organization.Organization",
        "moid": var["organization"],
    }],
    boot_devices=[
        {
            "enabled": True,
            "name": "scu-device-hdd",
            "object_type": "boot.LocalDisk",
            "additional_properties": json.dumps({
                "Slot": "MRAID",
                "Bootloader": {
                    "Description": "",
                    "Name": "",
                    "ObjectType": "boot.Bootloader",
                    "Path": "",
                },
            }),
        },
        {
            "enabled": True,
            "name": "NIIODCIMCDVD",
            "object_type": "boot.VirtualMedia",
            "additional_properties": json.dumps({
                "Subtype": "cimc-mapped-dvd",
            }),
        },
        {
            "enabled": True,
            "name": "hdd",
            "object_type": "boot.LocalDisk",
            "additional_properties": json.dumps({
                "Slot": "MRAID",
                "Bootloader": {
                    "Description": "",
                    "Name": "",
                    "ObjectType": "boot.Bootloader",
                    "Path": "",
                },
            }),
        },
    ])
package main
import (
	"encoding/json"
	"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 {
		tmpJSON0, err := json.Marshal(map[string]interface{}{
			"Slot": "MRAID",
			"Bootloader": map[string]interface{}{
				"Description": "",
				"Name":        "",
				"ObjectType":  "boot.Bootloader",
				"Path":        "",
			},
		})
		if err != nil {
			return err
		}
		json0 := string(tmpJSON0)
		tmpJSON1, err := json.Marshal(map[string]interface{}{
			"Subtype": "cimc-mapped-dvd",
		})
		if err != nil {
			return err
		}
		json1 := string(tmpJSON1)
		tmpJSON2, err := json.Marshal(map[string]interface{}{
			"Slot": "MRAID",
			"Bootloader": map[string]interface{}{
				"Description": "",
				"Name":        "",
				"ObjectType":  "boot.Bootloader",
				"Path":        "",
			},
		})
		if err != nil {
			return err
		}
		json2 := string(tmpJSON2)
		_, err = intersight.NewBootPrecisionPolicy(ctx, "bootPrecision1", &intersight.BootPrecisionPolicyArgs{
			Description:           pulumi.String("test policy"),
			ConfiguredBootMode:    pulumi.String("Legacy"),
			EnforceUefiSecureBoot: pulumi.Bool(false),
			Organizations: intersight.BootPrecisionPolicyOrganizationArray{
				&intersight.BootPrecisionPolicyOrganizationArgs{
					ObjectType: pulumi.String("organization.Organization"),
					Moid:       pulumi.Any(_var.Organization),
				},
			},
			BootDevices: intersight.BootPrecisionPolicyBootDeviceArray{
				&intersight.BootPrecisionPolicyBootDeviceArgs{
					Enabled:              pulumi.Bool(true),
					Name:                 pulumi.String("scu-device-hdd"),
					ObjectType:           pulumi.String("boot.LocalDisk"),
					AdditionalProperties: pulumi.String(json0),
				},
				&intersight.BootPrecisionPolicyBootDeviceArgs{
					Enabled:              pulumi.Bool(true),
					Name:                 pulumi.String("NIIODCIMCDVD"),
					ObjectType:           pulumi.String("boot.VirtualMedia"),
					AdditionalProperties: pulumi.String(json1),
				},
				&intersight.BootPrecisionPolicyBootDeviceArgs{
					Enabled:              pulumi.Bool(true),
					Name:                 pulumi.String("hdd"),
					ObjectType:           pulumi.String("boot.LocalDisk"),
					AdditionalProperties: pulumi.String(json2),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() => 
{
    var bootPrecision1 = new Intersight.BootPrecisionPolicy("bootPrecision1", new()
    {
        Description = "test policy",
        ConfiguredBootMode = "Legacy",
        EnforceUefiSecureBoot = false,
        Organizations = new[]
        {
            new Intersight.Inputs.BootPrecisionPolicyOrganizationArgs
            {
                ObjectType = "organization.Organization",
                Moid = @var.Organization,
            },
        },
        BootDevices = new[]
        {
            new Intersight.Inputs.BootPrecisionPolicyBootDeviceArgs
            {
                Enabled = true,
                Name = "scu-device-hdd",
                ObjectType = "boot.LocalDisk",
                AdditionalProperties = JsonSerializer.Serialize(new Dictionary<string, object?>
                {
                    ["Slot"] = "MRAID",
                    ["Bootloader"] = new Dictionary<string, object?>
                    {
                        ["Description"] = "",
                        ["Name"] = "",
                        ["ObjectType"] = "boot.Bootloader",
                        ["Path"] = "",
                    },
                }),
            },
            new Intersight.Inputs.BootPrecisionPolicyBootDeviceArgs
            {
                Enabled = true,
                Name = "NIIODCIMCDVD",
                ObjectType = "boot.VirtualMedia",
                AdditionalProperties = JsonSerializer.Serialize(new Dictionary<string, object?>
                {
                    ["Subtype"] = "cimc-mapped-dvd",
                }),
            },
            new Intersight.Inputs.BootPrecisionPolicyBootDeviceArgs
            {
                Enabled = true,
                Name = "hdd",
                ObjectType = "boot.LocalDisk",
                AdditionalProperties = JsonSerializer.Serialize(new Dictionary<string, object?>
                {
                    ["Slot"] = "MRAID",
                    ["Bootloader"] = new Dictionary<string, object?>
                    {
                        ["Description"] = "",
                        ["Name"] = "",
                        ["ObjectType"] = "boot.Bootloader",
                        ["Path"] = "",
                    },
                }),
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.BootPrecisionPolicy;
import com.pulumi.intersight.BootPrecisionPolicyArgs;
import com.pulumi.intersight.inputs.BootPrecisionPolicyOrganizationArgs;
import com.pulumi.intersight.inputs.BootPrecisionPolicyBootDeviceArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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 bootPrecision1 = new BootPrecisionPolicy("bootPrecision1", BootPrecisionPolicyArgs.builder()
            .description("test policy")
            .configuredBootMode("Legacy")
            .enforceUefiSecureBoot(false)
            .organizations(BootPrecisionPolicyOrganizationArgs.builder()
                .objectType("organization.Organization")
                .moid(var_.organization())
                .build())
            .bootDevices(            
                BootPrecisionPolicyBootDeviceArgs.builder()
                    .enabled(true)
                    .name("scu-device-hdd")
                    .objectType("boot.LocalDisk")
                    .additionalProperties(serializeJson(
                        jsonObject(
                            jsonProperty("Slot", "MRAID"),
                            jsonProperty("Bootloader", jsonObject(
                                jsonProperty("Description", ""),
                                jsonProperty("Name", ""),
                                jsonProperty("ObjectType", "boot.Bootloader"),
                                jsonProperty("Path", "")
                            ))
                        )))
                    .build(),
                BootPrecisionPolicyBootDeviceArgs.builder()
                    .enabled(true)
                    .name("NIIODCIMCDVD")
                    .objectType("boot.VirtualMedia")
                    .additionalProperties(serializeJson(
                        jsonObject(
                            jsonProperty("Subtype", "cimc-mapped-dvd")
                        )))
                    .build(),
                BootPrecisionPolicyBootDeviceArgs.builder()
                    .enabled(true)
                    .name("hdd")
                    .objectType("boot.LocalDisk")
                    .additionalProperties(serializeJson(
                        jsonObject(
                            jsonProperty("Slot", "MRAID"),
                            jsonProperty("Bootloader", jsonObject(
                                jsonProperty("Description", ""),
                                jsonProperty("Name", ""),
                                jsonProperty("ObjectType", "boot.Bootloader"),
                                jsonProperty("Path", "")
                            ))
                        )))
                    .build())
            .build());
    }
}
resources:
  bootPrecision1:
    type: intersight:BootPrecisionPolicy
    properties:
      description: test policy
      configuredBootMode: Legacy
      enforceUefiSecureBoot: false
      organizations:
        - objectType: organization.Organization
          moid: ${var.organization}
      bootDevices:
        - enabled: true
          name: scu-device-hdd
          objectType: boot.LocalDisk
          additionalProperties:
            fn::toJSON:
              Slot: MRAID
              Bootloader:
                Description: ""
                Name: ""
                ObjectType: boot.Bootloader
                Path: ""
        - enabled: true
          name: NIIODCIMCDVD
          objectType: boot.VirtualMedia
          additionalProperties:
            fn::toJSON:
              Subtype: cimc-mapped-dvd
        - enabled: true
          name: hdd
          objectType: boot.LocalDisk
          additionalProperties:
            fn::toJSON:
              Slot: MRAID
              Bootloader:
                Description: ""
                Name: ""
                ObjectType: boot.Bootloader
                Path: ""
Allowed Types in AdditionalProperties
boot.FlexMmc
Device type used when booting from FlexMMC device.
- subtype:(string) The subtype for the selected device type.*- None- No sub type for FlexMMC boot device.*- flexmmc-mapped-dvd- Use of FlexMMC DVD as subtype for embedded storage.*- flexmmc-mapped-hdd- Use of FlexMMC HDD as subtype for embedded storage.
boot.Http
Device type used in boot policy to boot from HTTP device.
- interface_name:(string) The name of the underlying virtual ethernet interface used by the HTTP boot device.
- interface_source:(string) Lists the supported Interface Source for HTTP device. Supported values are \ name\ and \ mac\ .*- name- Use interface name to select virtual ethernet interface.*- mac- Use MAC address to select virtual ethernet interface.*- port- Use port to select virtual ethernet interface.
- ip_config_type:(string) The IP config type to use during the HTTP boot process. For DHCP configuration, the IP address, DNS server, netmask and gateway details are obtained from DHCP server. For static configuration, please provide the IP address, DNS server, netmask, and gateway details.*- DHCP- The type of the IP config is DHCP.*- Static- The type of the IP config is Static.
- ip_type:(string) The IP address family type to use during the HTTP boot process.*- IPv4- The type of the IP address is IPv4.*- IPv6- The type of the IP address is IPv6.
- mac_address:(string) The MAC Address of the underlying virtual ethernet interface used by the HTTP boot device.
- port:(int) The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255.
- protocol:(string) Protocol to be used for HTTP boot. HTTPS require root certificate for authentication.*- HTTPS- Secure HTTP protocol, certificate required for authentication.*- HTTP- HTTP protocol without security certificate requirement.
- slot:(string) The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \ MLOM\ , \ L\ , \ L1\ , \ L2\ , \ OCP\ ).
- static_ip_v4_settings:(HashMap) - The static IP config settings to use during the HTTP boot process. This complex property has following sub-properties:- dns_ip:(string) IP address of DNS server.
- gateway_ip:(string) IP address of default gateway.
- ip:(string) Ipv4 static Internet Protocol address.
- network_mask:(string) Network mask of the IP address.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
 
- static_ip_v6_settings:(HashMap) - The static IP config settings to use during the HTTP boot process. This complex property has following sub-properties:- dns_ip:(string) IP address of DNS server.
- gateway_ip:(string) IP address of default gateway.
- ip:(string) Ipv6 static Internet Protocol address.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
- prefix_length:(int) A prefix length which masks the IP address and divides the IP address into network address and host address.
 
- uri:(string) Boot resource location in URI format.
boot.Iscsi
Device type used when booting from iSCSI boot device.
- bootloader:(HashMap) - Details of the bootloader to be used during iSCSI boot. This complex property has following sub-properties:- description:(string) Carries more information about the bootloader.
- name:(string) Name of the bootloader image.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
- path:(string) Path to the bootloader image.
 
- interface_name:(string) The name of the underlying virtual ethernet interface used by the iSCSI boot device.
- port:(int) Port ID of the ISCSI boot device.
- slot:(string) The slot id of the device. Supported values are (1 - 255, \ MLOM\ , \ L\ , \ L1\ , \ L2\ , \ OCP\ ).
boot.LocalCdd
Device type used when booting from local CD drive.
boot.LocalDisk
Device type used when booting from a local disk device.
- bootloader:(HashMap) - Details of the bootloader to be used during boot from local disk. This complex property has following sub-properties:- description:(string) Carries more information about the bootloader.
- name:(string) Name of the bootloader image.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
- path:(string) Path to the bootloader image.
 
- slot:(string) The slot id of the local disk device. Supported values for Standalone Rack servers are (1-205, \ M\ , \ HBA\ , \ SAS\ , \ RAID\ , \ MRAID\ , \ MRAID1\ , \ MRAID2\ , \ MSTOR-RAID\ ). Supported values for FI-attached servers are (1-205, \ RAID\ , \ MRAID\ , \ FMEZZ1-SAS\ , \ MRAID1\ , \ MRAID2\ , \ MSTOR-RAID\ , \ MSTOR-RAID-1\ , \ MSTOR-RAID-2\ ).
boot.Nvme
Device type used when booting from a NVMe device.
- bootloader:(HashMap) - Details of the bootloader to be used during NVME boot. This complex property has following sub-properties:- description:(string) Carries more information about the bootloader.
- name:(string) Name of the bootloader image.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
- path:(string) Path to the bootloader image.
 
boot.PchStorage
Device type used when booting from a PCH Storage device.
- bootloader:(HashMap) - Details of the bootloader to be used during PCH Storage boot. This complex property has following sub-properties:- description:(string) Carries more information about the bootloader.
- name:(string) Name of the bootloader image.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
- path:(string) Path to the bootloader image.
 
- lun:(int) The Logical Unit Number (LUN) of the device. It is the Virtual Drive number for Cisco UCS C-Series Servers. Virtual Drive number is found in storage inventory.
boot.Pxe
Device type used when booting from a PXE boot device.
- interface_name:(string) The name of the underlying virtual ethernet interface used by the PXE boot device.
- interface_source:(string) Lists the supported methods to provide network boot device configuration. Supported values are \ name\ and \ mac\ .*- name- Use interface name to select virtual ethernet interface.*- mac- Use MAC address to select virtual ethernet interface.*- port- Use port to select virtual ethernet interface.
- ip_type:(string) The IP Address family type to use during the PXE Boot process.*- None- Default value if IpType is not specified.*- IPv4- The IPv4 address family type.*- IPv6- The IPv6 address family type.
- mac_address:(string) The MAC Address of the underlying virtual ethernet interface used by the PXE boot device.
- port:(int) The Port ID of the adapter on which the underlying virtual ethernet interface is present. If no port is specified, the default value is -1. Supported values are 0 to 255.
- slot:(string) The slot ID of the adapter on which the underlying virtual ethernet interface is present. Supported values are ( 1 - 255, \ MLOM\ , \ L\ , \ L1\ , \ L2\ , \ OCP\ ).
boot.San
Device type used when booting from SAN Boot device.
- bootloader:(HashMap) - Details of the bootloader to be used during SAN boot. This complex property has following sub-properties:- description:(string) Carries more information about the bootloader.
- name:(string) Name of the bootloader image.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
- path:(string) Path to the bootloader image.
 
- interface_name:(string) The name of the underlying vHBA interface to be used by the SAN boot device.
- lun:(int) The Logical Unit Number (LUN) of the device. For SAN boot configuration to be deployed on a server with 1300 family of Cisco VIC adapters, the recommendation is for the boot LUN to be numbered as 0 to ensure that LUN is mounted as the first disk from which the server boots.
- slot:(string) Slot ID of the device. Supported values are ( 1 - 255, \ MLOM\ , \ L1\ , \ L2\ ).
- wwpn:(string) The WWPN Address of the underlying fibre channel interface used by the SAN boot device. Value must be in hexadecimal format xx:xx:xx:xx:xx:xx:xx:xx.
boot.SdCard
Device type used when booting from SD Card device.
- bootloader:(HashMap) - Details of the bootloader to be used during SD card boot. This complex property has following sub-properties:- description:(string) Carries more information about the bootloader.
- name:(string) Name of the bootloader image.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
- path:(string) Path to the bootloader image.
 
- lun:(int) The Logical Unit Number (LUN) of the device.
- subtype:(string) The subtype for the selected device type.*- None- No sub type for SD card boot device.*- flex-util- Use of FlexUtil (microSD) card as sub type for SD card boot device.*- flex-flash- Use of FlexFlash (SD) card as sub type for SD card boot device.*- SDCARD- Use of SD card as sub type for the SD Card boot device.
boot.UefiShell
Device type used when booting from UEFI shell.
boot.Usb
Device type used when booting from USB device.
- subtype:(string) The subtype for the selected device type.*- None- No sub type for USB boot device.*- usb-cd- Use of Compact Disk (CD) as sub-type for the USB boot device.*- usb-fdd- Use of Floppy Disk Drive (FDD) as sub-type for the USB boot device.*- usb-hdd- Use of Hard Disk Drive (HDD) as sub-type for the USB boot device.
boot.VirtualMedia
Device type used when booting from Virtual Media device.
- subtype:(string) The subtype for the selected device type.*- None- No sub type for virtual media.*- cimc-mapped-dvd- The virtual media device is mapped to a virtual DVD device.*- cimc-mapped-hdd- The virtual media device is mapped to a virtual HDD device.*- kvm-mapped-dvd- A KVM mapped DVD virtual media device.*- kvm-mapped-hdd- A KVM mapped HDD virtual media device.*- kvm-mapped-fdd- A KVM mapped FDD virtual media device.
Create BootPrecisionPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BootPrecisionPolicy(name: string, args?: BootPrecisionPolicyArgs, opts?: CustomResourceOptions);@overload
def BootPrecisionPolicy(resource_name: str,
                        args: Optional[BootPrecisionPolicyArgs] = None,
                        opts: Optional[ResourceOptions] = None)
@overload
def BootPrecisionPolicy(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        account_moid: Optional[str] = None,
                        additional_properties: Optional[str] = None,
                        ancestors: Optional[Sequence[BootPrecisionPolicyAncestorArgs]] = None,
                        boot_devices: Optional[Sequence[BootPrecisionPolicyBootDeviceArgs]] = None,
                        boot_precision_policy_id: Optional[str] = None,
                        class_id: Optional[str] = None,
                        configured_boot_mode: Optional[str] = None,
                        create_time: Optional[str] = None,
                        description: Optional[str] = None,
                        domain_group_moid: Optional[str] = None,
                        enforce_uefi_secure_boot: Optional[bool] = None,
                        mod_time: Optional[str] = None,
                        moid: Optional[str] = None,
                        name: Optional[str] = None,
                        object_type: Optional[str] = None,
                        organizations: Optional[Sequence[BootPrecisionPolicyOrganizationArgs]] = None,
                        owners: Optional[Sequence[str]] = None,
                        parents: Optional[Sequence[BootPrecisionPolicyParentArgs]] = None,
                        permission_resources: Optional[Sequence[BootPrecisionPolicyPermissionResourceArgs]] = None,
                        profiles: Optional[Sequence[BootPrecisionPolicyProfileArgs]] = None,
                        shared_scope: Optional[str] = None,
                        tags: Optional[Sequence[BootPrecisionPolicyTagArgs]] = None,
                        version_contexts: Optional[Sequence[BootPrecisionPolicyVersionContextArgs]] = None)func NewBootPrecisionPolicy(ctx *Context, name string, args *BootPrecisionPolicyArgs, opts ...ResourceOption) (*BootPrecisionPolicy, error)public BootPrecisionPolicy(string name, BootPrecisionPolicyArgs? args = null, CustomResourceOptions? opts = null)
public BootPrecisionPolicy(String name, BootPrecisionPolicyArgs args)
public BootPrecisionPolicy(String name, BootPrecisionPolicyArgs args, CustomResourceOptions options)
type: intersight:BootPrecisionPolicy
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 BootPrecisionPolicyArgs
- 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 BootPrecisionPolicyArgs
- 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 BootPrecisionPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BootPrecisionPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BootPrecisionPolicyArgs
- 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 bootPrecisionPolicyResource = new Intersight.BootPrecisionPolicy("bootPrecisionPolicyResource", new()
{
    AccountMoid = "string",
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.BootPrecisionPolicyAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    BootDevices = new[]
    {
        new Intersight.Inputs.BootPrecisionPolicyBootDeviceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Enabled = false,
            Name = "string",
            ObjectType = "string",
        },
    },
    BootPrecisionPolicyId = "string",
    ClassId = "string",
    ConfiguredBootMode = "string",
    CreateTime = "string",
    Description = "string",
    DomainGroupMoid = "string",
    EnforceUefiSecureBoot = false,
    ModTime = "string",
    Moid = "string",
    Name = "string",
    ObjectType = "string",
    Organizations = new[]
    {
        new Intersight.Inputs.BootPrecisionPolicyOrganizationArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.BootPrecisionPolicyParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.BootPrecisionPolicyPermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Profiles = new[]
    {
        new Intersight.Inputs.BootPrecisionPolicyProfileArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SharedScope = "string",
    Tags = new[]
    {
        new Intersight.Inputs.BootPrecisionPolicyTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    VersionContexts = new[]
    {
        new Intersight.Inputs.BootPrecisionPolicyVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.BootPrecisionPolicyVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.BootPrecisionPolicyVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
});
example, err := intersight.NewBootPrecisionPolicy(ctx, "bootPrecisionPolicyResource", &intersight.BootPrecisionPolicyArgs{
	AccountMoid:          pulumi.String("string"),
	AdditionalProperties: pulumi.String("string"),
	Ancestors: intersight.BootPrecisionPolicyAncestorArray{
		&intersight.BootPrecisionPolicyAncestorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	BootDevices: intersight.BootPrecisionPolicyBootDeviceArray{
		&intersight.BootPrecisionPolicyBootDeviceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Enabled:              pulumi.Bool(false),
			Name:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
		},
	},
	BootPrecisionPolicyId: pulumi.String("string"),
	ClassId:               pulumi.String("string"),
	ConfiguredBootMode:    pulumi.String("string"),
	CreateTime:            pulumi.String("string"),
	Description:           pulumi.String("string"),
	DomainGroupMoid:       pulumi.String("string"),
	EnforceUefiSecureBoot: pulumi.Bool(false),
	ModTime:               pulumi.String("string"),
	Moid:                  pulumi.String("string"),
	Name:                  pulumi.String("string"),
	ObjectType:            pulumi.String("string"),
	Organizations: intersight.BootPrecisionPolicyOrganizationArray{
		&intersight.BootPrecisionPolicyOrganizationArgs{
			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.BootPrecisionPolicyParentArray{
		&intersight.BootPrecisionPolicyParentArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PermissionResources: intersight.BootPrecisionPolicyPermissionResourceArray{
		&intersight.BootPrecisionPolicyPermissionResourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Profiles: intersight.BootPrecisionPolicyProfileArray{
		&intersight.BootPrecisionPolicyProfileArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SharedScope: pulumi.String("string"),
	Tags: intersight.BootPrecisionPolicyTagArray{
		&intersight.BootPrecisionPolicyTagArgs{
			AdditionalProperties: pulumi.String("string"),
			Key:                  pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	VersionContexts: intersight.BootPrecisionPolicyVersionContextArray{
		&intersight.BootPrecisionPolicyVersionContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			InterestedMos: intersight.BootPrecisionPolicyVersionContextInterestedMoArray{
				&intersight.BootPrecisionPolicyVersionContextInterestedMoArgs{
					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.BootPrecisionPolicyVersionContextRefMoArray{
				&intersight.BootPrecisionPolicyVersionContextRefMoArgs{
					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 bootPrecisionPolicyResource = new BootPrecisionPolicy("bootPrecisionPolicyResource", BootPrecisionPolicyArgs.builder()
    .accountMoid("string")
    .additionalProperties("string")
    .ancestors(BootPrecisionPolicyAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .bootDevices(BootPrecisionPolicyBootDeviceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .enabled(false)
        .name("string")
        .objectType("string")
        .build())
    .bootPrecisionPolicyId("string")
    .classId("string")
    .configuredBootMode("string")
    .createTime("string")
    .description("string")
    .domainGroupMoid("string")
    .enforceUefiSecureBoot(false)
    .modTime("string")
    .moid("string")
    .name("string")
    .objectType("string")
    .organizations(BootPrecisionPolicyOrganizationArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .owners("string")
    .parents(BootPrecisionPolicyParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(BootPrecisionPolicyPermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .profiles(BootPrecisionPolicyProfileArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .sharedScope("string")
    .tags(BootPrecisionPolicyTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .versionContexts(BootPrecisionPolicyVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(BootPrecisionPolicyVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(BootPrecisionPolicyVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .build());
boot_precision_policy_resource = intersight.BootPrecisionPolicy("bootPrecisionPolicyResource",
    account_moid="string",
    additional_properties="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    boot_devices=[{
        "additional_properties": "string",
        "class_id": "string",
        "enabled": False,
        "name": "string",
        "object_type": "string",
    }],
    boot_precision_policy_id="string",
    class_id="string",
    configured_boot_mode="string",
    create_time="string",
    description="string",
    domain_group_moid="string",
    enforce_uefi_secure_boot=False,
    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",
    }],
    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 bootPrecisionPolicyResource = new intersight.BootPrecisionPolicy("bootPrecisionPolicyResource", {
    accountMoid: "string",
    additionalProperties: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    bootDevices: [{
        additionalProperties: "string",
        classId: "string",
        enabled: false,
        name: "string",
        objectType: "string",
    }],
    bootPrecisionPolicyId: "string",
    classId: "string",
    configuredBootMode: "string",
    createTime: "string",
    description: "string",
    domainGroupMoid: "string",
    enforceUefiSecureBoot: false,
    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",
    }],
    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:BootPrecisionPolicy
properties:
    accountMoid: string
    additionalProperties: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    bootDevices:
        - additionalProperties: string
          classId: string
          enabled: false
          name: string
          objectType: string
    bootPrecisionPolicyId: string
    classId: string
    configuredBootMode: string
    createTime: string
    description: string
    domainGroupMoid: string
    enforceUefiSecureBoot: false
    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
    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
BootPrecisionPolicy 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 BootPrecisionPolicy resource accepts the following input properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
List<BootPrecision Policy Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- BootDevices List<BootPrecision Policy Boot Device> 
- This complex property has following sub-properties:
- BootPrecision stringPolicy Id 
- ClassId string
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- ConfiguredBoot stringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnforceUefi boolSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- ModTime string
- (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<BootPrecision 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<BootPrecision 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:
- PermissionResources List<BootPrecision Policy Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<BootPrecision Policy Profile> 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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<BootPrecision Policy Tag> 
- This complex property has following sub-properties:
- VersionContexts List<BootPrecision Policy Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
[]BootPrecision Policy Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- BootDevices []BootPrecision Policy Boot Device Args 
- This complex property has following sub-properties:
- BootPrecision stringPolicy Id 
- ClassId string
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- ConfiguredBoot stringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnforceUefi boolSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- ModTime string
- (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]BootPrecision 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
[]BootPrecision 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:
- PermissionResources []BootPrecision Policy Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]BootPrecision Policy Profile Args 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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.
- 
[]BootPrecision Policy Tag Args 
- This complex property has following sub-properties:
- VersionContexts []BootPrecision Policy Version Context Args 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors
List<BootPrecision Policy Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- bootDevices List<BootPrecision Policy Boot Device> 
- This complex property has following sub-properties:
- bootPrecision StringPolicy Id 
- classId String
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- configuredBoot StringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enforceUefi BooleanSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- modTime String
- (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<BootPrecision 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<BootPrecision 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:
- permissionResources List<BootPrecision Policy Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<BootPrecision Policy Profile> 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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<BootPrecision Policy Tag> 
- This complex property has following sub-properties:
- versionContexts List<BootPrecision Policy Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- additionalProperties string
- ancestors
BootPrecision Policy Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- bootDevices BootPrecision Policy Boot Device[] 
- This complex property has following sub-properties:
- bootPrecision stringPolicy Id 
- classId string
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- configuredBoot stringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- createTime string
- (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enforceUefi booleanSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- modTime string
- (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- objectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
BootPrecision 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
BootPrecision 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:
- permissionResources BootPrecision Policy Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
BootPrecision Policy Profile[] 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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.
- 
BootPrecision Policy Tag[] 
- This complex property has following sub-properties:
- versionContexts BootPrecision 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[BootPrecision Policy Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- boot_devices Sequence[BootPrecision Policy Boot Device Args] 
- This complex property has following sub-properties:
- boot_precision_ strpolicy_ id 
- 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.
- configured_boot_ strmode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- 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.
- enforce_uefi_ boolsecure_ boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- 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[BootPrecision 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[BootPrecision 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[BootPrecision Policy Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[BootPrecision Policy Profile Args] 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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[BootPrecision Policy Tag Args] 
- This complex property has following sub-properties:
- version_contexts Sequence[BootPrecision Policy Version Context Args] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- bootDevices List<Property Map>
- This complex property has following sub-properties:
- bootPrecision StringPolicy Id 
- classId String
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- configuredBoot StringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enforceUefi BooleanSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- modTime String
- (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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:
- versionContexts List<Property Map>
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the BootPrecisionPolicy 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 BootPrecisionPolicy Resource
Get an existing BootPrecisionPolicy 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?: BootPrecisionPolicyState, opts?: CustomResourceOptions): BootPrecisionPolicy@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[BootPrecisionPolicyAncestorArgs]] = None,
        boot_devices: Optional[Sequence[BootPrecisionPolicyBootDeviceArgs]] = None,
        boot_precision_policy_id: Optional[str] = None,
        class_id: Optional[str] = None,
        configured_boot_mode: Optional[str] = None,
        create_time: Optional[str] = None,
        description: Optional[str] = None,
        domain_group_moid: Optional[str] = None,
        enforce_uefi_secure_boot: Optional[bool] = None,
        mod_time: Optional[str] = None,
        moid: Optional[str] = None,
        name: Optional[str] = None,
        object_type: Optional[str] = None,
        organizations: Optional[Sequence[BootPrecisionPolicyOrganizationArgs]] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[BootPrecisionPolicyParentArgs]] = None,
        permission_resources: Optional[Sequence[BootPrecisionPolicyPermissionResourceArgs]] = None,
        profiles: Optional[Sequence[BootPrecisionPolicyProfileArgs]] = None,
        shared_scope: Optional[str] = None,
        tags: Optional[Sequence[BootPrecisionPolicyTagArgs]] = None,
        version_contexts: Optional[Sequence[BootPrecisionPolicyVersionContextArgs]] = None) -> BootPrecisionPolicyfunc GetBootPrecisionPolicy(ctx *Context, name string, id IDInput, state *BootPrecisionPolicyState, opts ...ResourceOption) (*BootPrecisionPolicy, error)public static BootPrecisionPolicy Get(string name, Input<string> id, BootPrecisionPolicyState? state, CustomResourceOptions? opts = null)public static BootPrecisionPolicy get(String name, Output<String> id, BootPrecisionPolicyState state, CustomResourceOptions options)resources:  _:    type: intersight:BootPrecisionPolicy    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.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
List<BootPrecision Policy Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- BootDevices List<BootPrecision Policy Boot Device> 
- This complex property has following sub-properties:
- BootPrecision stringPolicy Id 
- ClassId string
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- ConfiguredBoot stringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnforceUefi boolSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- ModTime string
- (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<BootPrecision 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<BootPrecision 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:
- PermissionResources List<BootPrecision Policy Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<BootPrecision Policy Profile> 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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<BootPrecision Policy Tag> 
- This complex property has following sub-properties:
- VersionContexts List<BootPrecision Policy Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
[]BootPrecision Policy Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- BootDevices []BootPrecision Policy Boot Device Args 
- This complex property has following sub-properties:
- BootPrecision stringPolicy Id 
- ClassId string
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- ConfiguredBoot stringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnforceUefi boolSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- ModTime string
- (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]BootPrecision 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
[]BootPrecision 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:
- PermissionResources []BootPrecision Policy Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]BootPrecision Policy Profile Args 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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.
- 
[]BootPrecision Policy Tag Args 
- This complex property has following sub-properties:
- VersionContexts []BootPrecision Policy Version Context Args 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors
List<BootPrecision Policy Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- bootDevices List<BootPrecision Policy Boot Device> 
- This complex property has following sub-properties:
- bootPrecision StringPolicy Id 
- classId String
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- configuredBoot StringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enforceUefi BooleanSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- modTime String
- (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<BootPrecision 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<BootPrecision 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:
- permissionResources List<BootPrecision Policy Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<BootPrecision Policy Profile> 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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<BootPrecision Policy Tag> 
- This complex property has following sub-properties:
- versionContexts List<BootPrecision Policy Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- additionalProperties string
- ancestors
BootPrecision Policy Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- bootDevices BootPrecision Policy Boot Device[] 
- This complex property has following sub-properties:
- bootPrecision stringPolicy Id 
- classId string
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- configuredBoot stringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- createTime string
- (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enforceUefi booleanSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- modTime string
- (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- objectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
BootPrecision 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
BootPrecision 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:
- permissionResources BootPrecision Policy Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
BootPrecision Policy Profile[] 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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.
- 
BootPrecision Policy Tag[] 
- This complex property has following sub-properties:
- versionContexts BootPrecision 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[BootPrecision Policy Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- boot_devices Sequence[BootPrecision Policy Boot Device Args] 
- This complex property has following sub-properties:
- boot_precision_ strpolicy_ id 
- 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.
- configured_boot_ strmode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- 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.
- enforce_uefi_ boolsecure_ boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- 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[BootPrecision 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[BootPrecision 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[BootPrecision Policy Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[BootPrecision Policy Profile Args] 
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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[BootPrecision Policy Tag Args] 
- This complex property has following sub-properties:
- version_contexts Sequence[BootPrecision Policy Version Context Args] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- bootDevices List<Property Map>
- This complex property has following sub-properties:
- bootPrecision StringPolicy Id 
- classId String
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- configuredBoot StringMode 
- Sets the BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the MBR partitioning scheme. To apply this setting, Please reboot the server.* Uefi- UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from.*Legacy- Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the MBR to locate the bootloader.
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enforceUefi BooleanSecure Boot 
- If UEFI secure boot is enabled, the boot mode is set to UEFI by default. Secure boot enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM).
- modTime String
- (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- 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:
- versionContexts List<Property Map>
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
BootPrecisionPolicyAncestor, BootPrecisionPolicyAncestorArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
BootPrecisionPolicyBootDevice, BootPrecisionPolicyBootDeviceArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Enabled bool
- Specifies if the boot device is enabled or disabled.
- Name string
- A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Enabled bool
- Specifies if the boot device is enabled or disabled.
- Name string
- A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- enabled Boolean
- Specifies if the boot device is enabled or disabled.
- name String
- A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId string
- enabled boolean
- Specifies if the boot device is enabled or disabled.
- name string
- A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- class_id str
- enabled bool
- Specifies if the boot device is enabled or disabled.
- name str
- A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- enabled Boolean
- Specifies if the boot device is enabled or disabled.
- name String
- A name that helps identify a boot device. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
BootPrecisionPolicyOrganization, BootPrecisionPolicyOrganizationArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
BootPrecisionPolicyParent, BootPrecisionPolicyParentArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
BootPrecisionPolicyPermissionResource, BootPrecisionPolicyPermissionResourceArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
BootPrecisionPolicyProfile, BootPrecisionPolicyProfileArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
BootPrecisionPolicyTag, BootPrecisionPolicyTagArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
BootPrecisionPolicyVersionContext, BootPrecisionPolicyVersionContextArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- InterestedMos List<BootPrecision Policy Version Context Interested Mo> 
- This complex property has following sub-properties:
- MarkedFor 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.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos List<BootPrecision 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.
- VersionType string
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- InterestedMos []BootPrecision Policy Version Context Interested Mo 
- This complex property has following sub-properties:
- MarkedFor 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.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos []BootPrecision 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.
- VersionType string
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- interestedMos List<BootPrecision Policy Version Context Interested Mo> 
- This complex property has following sub-properties:
- markedFor 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.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos List<BootPrecision 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.
- versionType String
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId string
- interestedMos BootPrecision Policy Version Context Interested Mo[] 
- This complex property has following sub-properties:
- markedFor 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.
- nrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos BootPrecision 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.
- versionType string
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- class_id str
- interested_mos Sequence[BootPrecision 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[BootPrecision 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.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- interestedMos List<Property Map>
- This complex property has following sub-properties:
- markedFor 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.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos List<Property Map>
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- versionType String
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
BootPrecisionPolicyVersionContextInterestedMo, BootPrecisionPolicyVersionContextInterestedMoArgs              
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
BootPrecisionPolicyVersionContextRefMo, BootPrecisionPolicyVersionContextRefMoArgs              
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: boot.FlexMmc boot.Http boot.Iscsi boot.LocalCdd boot.LocalDisk boot.Nvme boot.PchStorage boot.Pxe boot.San boot.SdCard boot.UefiShell boot.Usb boot.VirtualMedia
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_boot_precision_policy can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/bootPrecisionPolicy:BootPrecisionPolicy 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 intersightTerraform Provider.