1. Packages
  2. Ibm Provider
  3. API Docs
  4. getIsBareMetalServer
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.getIsBareMetalServer

Explore with Pulumi AI

ibm logo
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

    Import the details of an existing IBM Cloud Bare Metal Server as a read-only data source. You can then reference the fields of the data source in other resources within the same configuration using interpolation syntax. For more information, about bare metal servers, see About Bare Metal Servers for VPC.

    Note: VPC infrastructure services are a regional specific based endpoint, by default targets to us-south. Please make sure to target right region in the provider block as shown in the provider.tf file, if VPC service is created in region other than us-south.

    provider.tf

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    
    return await Deployment.RunAsync(() => 
    {
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    

    Example Usage

    With Identifier

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const example = ibm.getIsBareMetalServer({
        identifier: "9328-9849-9849-9849",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    example = ibm.get_is_bare_metal_server(identifier="9328-9849-9849-9849")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.LookupIsBareMetalServer(ctx, &ibm.LookupIsBareMetalServerArgs{
    			Identifier: pulumi.StringRef("9328-9849-9849-9849"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Ibm.GetIsBareMetalServer.Invoke(new()
        {
            Identifier = "9328-9849-9849-9849",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetIsBareMetalServerArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = IbmFunctions.getIsBareMetalServer(GetIsBareMetalServerArgs.builder()
                .identifier("9328-9849-9849-9849")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: ibm:getIsBareMetalServer
          arguments:
            identifier: 9328-9849-9849-9849
    

    With Name

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const example = ibm.getIsBareMetalServer({
        name: "example-server",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    example = ibm.get_is_bare_metal_server(name="example-server")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.LookupIsBareMetalServer(ctx, &ibm.LookupIsBareMetalServerArgs{
    			Name: pulumi.StringRef("example-server"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Ibm.GetIsBareMetalServer.Invoke(new()
        {
            Name = "example-server",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetIsBareMetalServerArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = IbmFunctions.getIsBareMetalServer(GetIsBareMetalServerArgs.builder()
                .name("example-server")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: ibm:getIsBareMetalServer
          arguments:
            name: example-server
    

    Using getIsBareMetalServer

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getIsBareMetalServer(args: GetIsBareMetalServerArgs, opts?: InvokeOptions): Promise<GetIsBareMetalServerResult>
    function getIsBareMetalServerOutput(args: GetIsBareMetalServerOutputArgs, opts?: InvokeOptions): Output<GetIsBareMetalServerResult>
    def get_is_bare_metal_server(id: Optional[str] = None,
                                 identifier: Optional[str] = None,
                                 name: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetIsBareMetalServerResult
    def get_is_bare_metal_server_output(id: Optional[pulumi.Input[str]] = None,
                                 identifier: Optional[pulumi.Input[str]] = None,
                                 name: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetIsBareMetalServerResult]
    func LookupIsBareMetalServer(ctx *Context, args *LookupIsBareMetalServerArgs, opts ...InvokeOption) (*LookupIsBareMetalServerResult, error)
    func LookupIsBareMetalServerOutput(ctx *Context, args *LookupIsBareMetalServerOutputArgs, opts ...InvokeOption) LookupIsBareMetalServerResultOutput

    > Note: This function is named LookupIsBareMetalServer in the Go SDK.

    public static class GetIsBareMetalServer 
    {
        public static Task<GetIsBareMetalServerResult> InvokeAsync(GetIsBareMetalServerArgs args, InvokeOptions? opts = null)
        public static Output<GetIsBareMetalServerResult> Invoke(GetIsBareMetalServerInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIsBareMetalServerResult> getIsBareMetalServer(GetIsBareMetalServerArgs args, InvokeOptions options)
    public static Output<GetIsBareMetalServerResult> getIsBareMetalServer(GetIsBareMetalServerArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getIsBareMetalServer:getIsBareMetalServer
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    (String) The id of the network interface.
    Identifier string
    The id for this bare metal server.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    Id string
    (String) The id of the network interface.
    Identifier string
    The id for this bare metal server.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    id String
    (String) The id of the network interface.
    identifier String
    The id for this bare metal server.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    id string
    (String) The id of the network interface.
    identifier string
    The id for this bare metal server.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    id str
    (String) The id of the network interface.
    identifier str
    The id for this bare metal server.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    id String
    (String) The id of the network interface.
    identifier String
    The id for this bare metal server.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    getIsBareMetalServer Result

    The following output properties are available:

    AccessTags List<string>
    (List) Access management tags associated for the bare metal server.
    Bandwidth double
    (Integer) The total bandwidth (in megabits per second) shared across the bare metal server's network interfaces.
    BootTarget string
    (String) The unique identifier for this bare metal server disk.
    Cpus List<GetIsBareMetalServerCpus>
    (List) A nested block describing the CPU configuration of this bare metal server. Nested scheme for cpu:
    CreatedAt string
    (Timestamp) The date and time that the bare metal server was created.
    Crn string
    (String) The CRN for this virtual network interface.
    Disks List<GetIsBareMetalServerDisk>
    (List) The disks for this bare metal server, including any disks that are associated with the boot_target. Nested scheme for disks:
    EnableSecureBoot bool
    (Boolean) Indicates whether secure boot is enabled. If enabled, the image must support secure boot or the server will fail to boot.
    FirmwareUpdateTypeAvailable string
    (String) The firmware update type available for the bare metal server.
    HealthReasons List<GetIsBareMetalServerHealthReason>
    (List) The reasons for the current health_state (if any).
    HealthState string
    (String) The health of this resource.
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Identifier string
    Image string
    (String) Image used in the bare metal server.
    Keys List<string>
    (String) Image used in the bare metal server.
    Memory double
    (Integer) The amount of memory, truncated to whole gibibytes
    Name string
    (String) The user-defined or system-provided name for this reserved IP
    NetworkAttachments List<GetIsBareMetalServerNetworkAttachment>
    (List) The network attachments for this bare metal server, including the primary network attachment. Nested schema for network_attachments:
    NetworkInterfaces List<GetIsBareMetalServerNetworkInterface>
    (List) A nested block describing the additional network interface of this instance. Nested scheme for network_interfaces:
    PrimaryNetworkAttachments List<GetIsBareMetalServerPrimaryNetworkAttachment>
    (List) The primary network attachment. Nested schema for primary_network_attachment:
    PrimaryNetworkInterfaces List<GetIsBareMetalServerPrimaryNetworkInterface>
    (List) A nested block describing the primary network interface of this bare metal server. Nested scheme for primary_network_interface:
    Profile string
    (String) The name for this bare metal server profile
    ReservationAffinities List<GetIsBareMetalServerReservationAffinity>
    (List) The bare metal server reservation affinity.
    Reservations List<GetIsBareMetalServerReservation>
    (List) The reservation used by this bare metal server. Nested scheme for reservation:
    ResourceGroup string
    (String) resource group id of the bare metal server.
    ResourceType string
    (String) The type of resource referenced
    Status string
    (String) The status of the bare metal server.
    StatusReasons List<GetIsBareMetalServerStatusReason>
    (List) Array of reasons for the current status (if any). Nested scheme for status_reasons:
    Tags List<string>
    (Array) Tags associated with the instance.
    TrustedPlatformModules List<GetIsBareMetalServerTrustedPlatformModule>
    (List) trusted platform module (TPM) configuration for this bare metal server
    Vpc string
    (String) The VPC this bare metal server resides in.
    Zone string
    (String) The zone this bare metal server resides in.
    AccessTags []string
    (List) Access management tags associated for the bare metal server.
    Bandwidth float64
    (Integer) The total bandwidth (in megabits per second) shared across the bare metal server's network interfaces.
    BootTarget string
    (String) The unique identifier for this bare metal server disk.
    Cpus []GetIsBareMetalServerCpus
    (List) A nested block describing the CPU configuration of this bare metal server. Nested scheme for cpu:
    CreatedAt string
    (Timestamp) The date and time that the bare metal server was created.
    Crn string
    (String) The CRN for this virtual network interface.
    Disks []GetIsBareMetalServerDiskType
    (List) The disks for this bare metal server, including any disks that are associated with the boot_target. Nested scheme for disks:
    EnableSecureBoot bool
    (Boolean) Indicates whether secure boot is enabled. If enabled, the image must support secure boot or the server will fail to boot.
    FirmwareUpdateTypeAvailable string
    (String) The firmware update type available for the bare metal server.
    HealthReasons []GetIsBareMetalServerHealthReason
    (List) The reasons for the current health_state (if any).
    HealthState string
    (String) The health of this resource.
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Identifier string
    Image string
    (String) Image used in the bare metal server.
    Keys []string
    (String) Image used in the bare metal server.
    Memory float64
    (Integer) The amount of memory, truncated to whole gibibytes
    Name string
    (String) The user-defined or system-provided name for this reserved IP
    NetworkAttachments []GetIsBareMetalServerNetworkAttachmentType
    (List) The network attachments for this bare metal server, including the primary network attachment. Nested schema for network_attachments:
    NetworkInterfaces []GetIsBareMetalServerNetworkInterfaceType
    (List) A nested block describing the additional network interface of this instance. Nested scheme for network_interfaces:
    PrimaryNetworkAttachments []GetIsBareMetalServerPrimaryNetworkAttachment
    (List) The primary network attachment. Nested schema for primary_network_attachment:
    PrimaryNetworkInterfaces []GetIsBareMetalServerPrimaryNetworkInterface
    (List) A nested block describing the primary network interface of this bare metal server. Nested scheme for primary_network_interface:
    Profile string
    (String) The name for this bare metal server profile
    ReservationAffinities []GetIsBareMetalServerReservationAffinity
    (List) The bare metal server reservation affinity.
    Reservations []GetIsBareMetalServerReservation
    (List) The reservation used by this bare metal server. Nested scheme for reservation:
    ResourceGroup string
    (String) resource group id of the bare metal server.
    ResourceType string
    (String) The type of resource referenced
    Status string
    (String) The status of the bare metal server.
    StatusReasons []GetIsBareMetalServerStatusReason
    (List) Array of reasons for the current status (if any). Nested scheme for status_reasons:
    Tags []string
    (Array) Tags associated with the instance.
    TrustedPlatformModules []GetIsBareMetalServerTrustedPlatformModule
    (List) trusted platform module (TPM) configuration for this bare metal server
    Vpc string
    (String) The VPC this bare metal server resides in.
    Zone string
    (String) The zone this bare metal server resides in.
    accessTags List<String>
    (List) Access management tags associated for the bare metal server.
    bandwidth Double
    (Integer) The total bandwidth (in megabits per second) shared across the bare metal server's network interfaces.
    bootTarget String
    (String) The unique identifier for this bare metal server disk.
    cpus List<GetIsBareMetalServerCpus>
    (List) A nested block describing the CPU configuration of this bare metal server. Nested scheme for cpu:
    createdAt String
    (Timestamp) The date and time that the bare metal server was created.
    crn String
    (String) The CRN for this virtual network interface.
    disks List<GetIsBareMetalServerDisk>
    (List) The disks for this bare metal server, including any disks that are associated with the boot_target. Nested scheme for disks:
    enableSecureBoot Boolean
    (Boolean) Indicates whether secure boot is enabled. If enabled, the image must support secure boot or the server will fail to boot.
    firmwareUpdateTypeAvailable String
    (String) The firmware update type available for the bare metal server.
    healthReasons List<GetIsBareMetalServerHealthReason>
    (List) The reasons for the current health_state (if any).
    healthState String
    (String) The health of this resource.
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    identifier String
    image String
    (String) Image used in the bare metal server.
    keys List<String>
    (String) Image used in the bare metal server.
    memory Double
    (Integer) The amount of memory, truncated to whole gibibytes
    name String
    (String) The user-defined or system-provided name for this reserved IP
    networkAttachments List<GetIsBareMetalServerNetworkAttachment>
    (List) The network attachments for this bare metal server, including the primary network attachment. Nested schema for network_attachments:
    networkInterfaces List<GetIsBareMetalServerNetworkInterface>
    (List) A nested block describing the additional network interface of this instance. Nested scheme for network_interfaces:
    primaryNetworkAttachments List<GetIsBareMetalServerPrimaryNetworkAttachment>
    (List) The primary network attachment. Nested schema for primary_network_attachment:
    primaryNetworkInterfaces List<GetIsBareMetalServerPrimaryNetworkInterface>
    (List) A nested block describing the primary network interface of this bare metal server. Nested scheme for primary_network_interface:
    profile String
    (String) The name for this bare metal server profile
    reservationAffinities List<GetIsBareMetalServerReservationAffinity>
    (List) The bare metal server reservation affinity.
    reservations List<GetIsBareMetalServerReservation>
    (List) The reservation used by this bare metal server. Nested scheme for reservation:
    resourceGroup String
    (String) resource group id of the bare metal server.
    resourceType String
    (String) The type of resource referenced
    status String
    (String) The status of the bare metal server.
    statusReasons List<GetIsBareMetalServerStatusReason>
    (List) Array of reasons for the current status (if any). Nested scheme for status_reasons:
    tags List<String>
    (Array) Tags associated with the instance.
    trustedPlatformModules List<GetIsBareMetalServerTrustedPlatformModule>
    (List) trusted platform module (TPM) configuration for this bare metal server
    vpc String
    (String) The VPC this bare metal server resides in.
    zone String
    (String) The zone this bare metal server resides in.
    accessTags string[]
    (List) Access management tags associated for the bare metal server.
    bandwidth number
    (Integer) The total bandwidth (in megabits per second) shared across the bare metal server's network interfaces.
    bootTarget string
    (String) The unique identifier for this bare metal server disk.
    cpus GetIsBareMetalServerCpus[]
    (List) A nested block describing the CPU configuration of this bare metal server. Nested scheme for cpu:
    createdAt string
    (Timestamp) The date and time that the bare metal server was created.
    crn string
    (String) The CRN for this virtual network interface.
    disks GetIsBareMetalServerDisk[]
    (List) The disks for this bare metal server, including any disks that are associated with the boot_target. Nested scheme for disks:
    enableSecureBoot boolean
    (Boolean) Indicates whether secure boot is enabled. If enabled, the image must support secure boot or the server will fail to boot.
    firmwareUpdateTypeAvailable string
    (String) The firmware update type available for the bare metal server.
    healthReasons GetIsBareMetalServerHealthReason[]
    (List) The reasons for the current health_state (if any).
    healthState string
    (String) The health of this resource.
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    identifier string
    image string
    (String) Image used in the bare metal server.
    keys string[]
    (String) Image used in the bare metal server.
    memory number
    (Integer) The amount of memory, truncated to whole gibibytes
    name string
    (String) The user-defined or system-provided name for this reserved IP
    networkAttachments GetIsBareMetalServerNetworkAttachment[]
    (List) The network attachments for this bare metal server, including the primary network attachment. Nested schema for network_attachments:
    networkInterfaces GetIsBareMetalServerNetworkInterface[]
    (List) A nested block describing the additional network interface of this instance. Nested scheme for network_interfaces:
    primaryNetworkAttachments GetIsBareMetalServerPrimaryNetworkAttachment[]
    (List) The primary network attachment. Nested schema for primary_network_attachment:
    primaryNetworkInterfaces GetIsBareMetalServerPrimaryNetworkInterface[]
    (List) A nested block describing the primary network interface of this bare metal server. Nested scheme for primary_network_interface:
    profile string
    (String) The name for this bare metal server profile
    reservationAffinities GetIsBareMetalServerReservationAffinity[]
    (List) The bare metal server reservation affinity.
    reservations GetIsBareMetalServerReservation[]
    (List) The reservation used by this bare metal server. Nested scheme for reservation:
    resourceGroup string
    (String) resource group id of the bare metal server.
    resourceType string
    (String) The type of resource referenced
    status string
    (String) The status of the bare metal server.
    statusReasons GetIsBareMetalServerStatusReason[]
    (List) Array of reasons for the current status (if any). Nested scheme for status_reasons:
    tags string[]
    (Array) Tags associated with the instance.
    trustedPlatformModules GetIsBareMetalServerTrustedPlatformModule[]
    (List) trusted platform module (TPM) configuration for this bare metal server
    vpc string
    (String) The VPC this bare metal server resides in.
    zone string
    (String) The zone this bare metal server resides in.
    access_tags Sequence[str]
    (List) Access management tags associated for the bare metal server.
    bandwidth float
    (Integer) The total bandwidth (in megabits per second) shared across the bare metal server's network interfaces.
    boot_target str
    (String) The unique identifier for this bare metal server disk.
    cpus Sequence[GetIsBareMetalServerCpus]
    (List) A nested block describing the CPU configuration of this bare metal server. Nested scheme for cpu:
    created_at str
    (Timestamp) The date and time that the bare metal server was created.
    crn str
    (String) The CRN for this virtual network interface.
    disks Sequence[GetIsBareMetalServerDisk]
    (List) The disks for this bare metal server, including any disks that are associated with the boot_target. Nested scheme for disks:
    enable_secure_boot bool
    (Boolean) Indicates whether secure boot is enabled. If enabled, the image must support secure boot or the server will fail to boot.
    firmware_update_type_available str
    (String) The firmware update type available for the bare metal server.
    health_reasons Sequence[GetIsBareMetalServerHealthReason]
    (List) The reasons for the current health_state (if any).
    health_state str
    (String) The health of this resource.
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    identifier str
    image str
    (String) Image used in the bare metal server.
    keys Sequence[str]
    (String) Image used in the bare metal server.
    memory float
    (Integer) The amount of memory, truncated to whole gibibytes
    name str
    (String) The user-defined or system-provided name for this reserved IP
    network_attachments Sequence[GetIsBareMetalServerNetworkAttachment]
    (List) The network attachments for this bare metal server, including the primary network attachment. Nested schema for network_attachments:
    network_interfaces Sequence[GetIsBareMetalServerNetworkInterface]
    (List) A nested block describing the additional network interface of this instance. Nested scheme for network_interfaces:
    primary_network_attachments Sequence[GetIsBareMetalServerPrimaryNetworkAttachment]
    (List) The primary network attachment. Nested schema for primary_network_attachment:
    primary_network_interfaces Sequence[GetIsBareMetalServerPrimaryNetworkInterface]
    (List) A nested block describing the primary network interface of this bare metal server. Nested scheme for primary_network_interface:
    profile str
    (String) The name for this bare metal server profile
    reservation_affinities Sequence[GetIsBareMetalServerReservationAffinity]
    (List) The bare metal server reservation affinity.
    reservations Sequence[GetIsBareMetalServerReservation]
    (List) The reservation used by this bare metal server. Nested scheme for reservation:
    resource_group str
    (String) resource group id of the bare metal server.
    resource_type str
    (String) The type of resource referenced
    status str
    (String) The status of the bare metal server.
    status_reasons Sequence[GetIsBareMetalServerStatusReason]
    (List) Array of reasons for the current status (if any). Nested scheme for status_reasons:
    tags Sequence[str]
    (Array) Tags associated with the instance.
    trusted_platform_modules Sequence[GetIsBareMetalServerTrustedPlatformModule]
    (List) trusted platform module (TPM) configuration for this bare metal server
    vpc str
    (String) The VPC this bare metal server resides in.
    zone str
    (String) The zone this bare metal server resides in.
    accessTags List<String>
    (List) Access management tags associated for the bare metal server.
    bandwidth Number
    (Integer) The total bandwidth (in megabits per second) shared across the bare metal server's network interfaces.
    bootTarget String
    (String) The unique identifier for this bare metal server disk.
    cpus List<Property Map>
    (List) A nested block describing the CPU configuration of this bare metal server. Nested scheme for cpu:
    createdAt String
    (Timestamp) The date and time that the bare metal server was created.
    crn String
    (String) The CRN for this virtual network interface.
    disks List<Property Map>
    (List) The disks for this bare metal server, including any disks that are associated with the boot_target. Nested scheme for disks:
    enableSecureBoot Boolean
    (Boolean) Indicates whether secure boot is enabled. If enabled, the image must support secure boot or the server will fail to boot.
    firmwareUpdateTypeAvailable String
    (String) The firmware update type available for the bare metal server.
    healthReasons List<Property Map>
    (List) The reasons for the current health_state (if any).
    healthState String
    (String) The health of this resource.
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    identifier String
    image String
    (String) Image used in the bare metal server.
    keys List<String>
    (String) Image used in the bare metal server.
    memory Number
    (Integer) The amount of memory, truncated to whole gibibytes
    name String
    (String) The user-defined or system-provided name for this reserved IP
    networkAttachments List<Property Map>
    (List) The network attachments for this bare metal server, including the primary network attachment. Nested schema for network_attachments:
    networkInterfaces List<Property Map>
    (List) A nested block describing the additional network interface of this instance. Nested scheme for network_interfaces:
    primaryNetworkAttachments List<Property Map>
    (List) The primary network attachment. Nested schema for primary_network_attachment:
    primaryNetworkInterfaces List<Property Map>
    (List) A nested block describing the primary network interface of this bare metal server. Nested scheme for primary_network_interface:
    profile String
    (String) The name for this bare metal server profile
    reservationAffinities List<Property Map>
    (List) The bare metal server reservation affinity.
    reservations List<Property Map>
    (List) The reservation used by this bare metal server. Nested scheme for reservation:
    resourceGroup String
    (String) resource group id of the bare metal server.
    resourceType String
    (String) The type of resource referenced
    status String
    (String) The status of the bare metal server.
    statusReasons List<Property Map>
    (List) Array of reasons for the current status (if any). Nested scheme for status_reasons:
    tags List<String>
    (Array) Tags associated with the instance.
    trustedPlatformModules List<Property Map>
    (List) trusted platform module (TPM) configuration for this bare metal server
    vpc String
    (String) The VPC this bare metal server resides in.
    zone String
    (String) The zone this bare metal server resides in.

    Supporting Types

    GetIsBareMetalServerCpus

    Architecture string
    (String) The architecture of the bare metal server.
    CoreCount double
    (Integer) The total number of cores
    SocketCount double
    (Integer) The total number of CPU sockets
    ThreadsPerCore double
    (Integer) The total number of hardware threads per core
    Architecture string
    (String) The architecture of the bare metal server.
    CoreCount float64
    (Integer) The total number of cores
    SocketCount float64
    (Integer) The total number of CPU sockets
    ThreadsPerCore float64
    (Integer) The total number of hardware threads per core
    architecture String
    (String) The architecture of the bare metal server.
    coreCount Double
    (Integer) The total number of cores
    socketCount Double
    (Integer) The total number of CPU sockets
    threadsPerCore Double
    (Integer) The total number of hardware threads per core
    architecture string
    (String) The architecture of the bare metal server.
    coreCount number
    (Integer) The total number of cores
    socketCount number
    (Integer) The total number of CPU sockets
    threadsPerCore number
    (Integer) The total number of hardware threads per core
    architecture str
    (String) The architecture of the bare metal server.
    core_count float
    (Integer) The total number of cores
    socket_count float
    (Integer) The total number of CPU sockets
    threads_per_core float
    (Integer) The total number of hardware threads per core
    architecture String
    (String) The architecture of the bare metal server.
    coreCount Number
    (Integer) The total number of cores
    socketCount Number
    (Integer) The total number of CPU sockets
    threadsPerCore Number
    (Integer) The total number of hardware threads per core

    GetIsBareMetalServerDisk

    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    InterfaceType string
    (String) The disk interface used for attaching the disk. The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered. [ nvme, sata ]
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    Size double
    (Integer) The size of the disk in GB (gigabytes)
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    InterfaceType string
    (String) The disk interface used for attaching the disk. The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered. [ nvme, sata ]
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    Size float64
    (Integer) The size of the disk in GB (gigabytes)
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    interfaceType String
    (String) The disk interface used for attaching the disk. The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered. [ nvme, sata ]
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced
    size Double
    (Integer) The size of the disk in GB (gigabytes)
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    interfaceType string
    (String) The disk interface used for attaching the disk. The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered. [ nvme, sata ]
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType string
    (String) The type of resource referenced
    size number
    (Integer) The size of the disk in GB (gigabytes)
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    interface_type str
    (String) The disk interface used for attaching the disk. The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered. [ nvme, sata ]
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resource_type str
    (String) The type of resource referenced
    size float
    (Integer) The size of the disk in GB (gigabytes)
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    interfaceType String
    (String) The disk interface used for attaching the disk. The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered. [ nvme, sata ]
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced
    size Number
    (Integer) The size of the disk in GB (gigabytes)

    GetIsBareMetalServerHealthReason

    Code string
    (String) The status reason code
    Message string
    (String) An explanation of the status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    Code string
    (String) The status reason code
    Message string
    (String) An explanation of the status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    code String
    (String) The status reason code
    message String
    (String) An explanation of the status reason
    moreInfo String
    (String) Link to documentation about this status reason
    code string
    (String) The status reason code
    message string
    (String) An explanation of the status reason
    moreInfo string
    (String) Link to documentation about this status reason
    code str
    (String) The status reason code
    message str
    (String) An explanation of the status reason
    more_info str
    (String) Link to documentation about this status reason
    code String
    (String) The status reason code
    message String
    (String) An explanation of the status reason
    moreInfo String
    (String) Link to documentation about this status reason

    GetIsBareMetalServerNetworkAttachment

    Deleteds List<GetIsBareMetalServerNetworkAttachmentDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    PrimaryIps List<GetIsBareMetalServerNetworkAttachmentPrimaryIp>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    ResourceType string
    (String) The type of resource referenced
    Subnets List<GetIsBareMetalServerNetworkAttachmentSubnet>
    (String) ID of the subnet.
    VirtualNetworkInterfaces List<GetIsBareMetalServerNetworkAttachmentVirtualNetworkInterface>
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    Deleteds []GetIsBareMetalServerNetworkAttachmentDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    PrimaryIps []GetIsBareMetalServerNetworkAttachmentPrimaryIp
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    ResourceType string
    (String) The type of resource referenced
    Subnets []GetIsBareMetalServerNetworkAttachmentSubnet
    (String) ID of the subnet.
    VirtualNetworkInterfaces []GetIsBareMetalServerNetworkAttachmentVirtualNetworkInterface
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    deleteds List<GetIsBareMetalServerNetworkAttachmentDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primaryIps List<GetIsBareMetalServerNetworkAttachmentPrimaryIp>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    resourceType String
    (String) The type of resource referenced
    subnets List<GetIsBareMetalServerNetworkAttachmentSubnet>
    (String) ID of the subnet.
    virtualNetworkInterfaces List<GetIsBareMetalServerNetworkAttachmentVirtualNetworkInterface>
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    deleteds GetIsBareMetalServerNetworkAttachmentDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primaryIps GetIsBareMetalServerNetworkAttachmentPrimaryIp[]
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    resourceType string
    (String) The type of resource referenced
    subnets GetIsBareMetalServerNetworkAttachmentSubnet[]
    (String) ID of the subnet.
    virtualNetworkInterfaces GetIsBareMetalServerNetworkAttachmentVirtualNetworkInterface[]
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    deleteds Sequence[GetIsBareMetalServerNetworkAttachmentDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primary_ips Sequence[GetIsBareMetalServerNetworkAttachmentPrimaryIp]
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    resource_type str
    (String) The type of resource referenced
    subnets Sequence[GetIsBareMetalServerNetworkAttachmentSubnet]
    (String) ID of the subnet.
    virtual_network_interfaces Sequence[GetIsBareMetalServerNetworkAttachmentVirtualNetworkInterface]
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primaryIps List<Property Map>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    resourceType String
    (String) The type of resource referenced
    subnets List<Property Map>
    (String) ID of the subnet.
    virtualNetworkInterfaces List<Property Map>
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:

    GetIsBareMetalServerNetworkAttachmentDeleted

    MoreInfo string
    (String) Link to documentation about this status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason
    moreInfo string
    (String) Link to documentation about this status reason
    more_info str
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason

    GetIsBareMetalServerNetworkAttachmentPrimaryIp

    Address string
    (String) The IP address.If the address has not yet been selected, the value will be 0.0.0.0.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Deleteds List<GetIsBareMetalServerNetworkAttachmentPrimaryIpDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this virtual network interface.
    Id string
    (String) The unique identifier for this virtual network interface.
    Name string
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    ResourceType string
    (String) The resource type.
    Address string
    (String) The IP address.If the address has not yet been selected, the value will be 0.0.0.0.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Deleteds []GetIsBareMetalServerNetworkAttachmentPrimaryIpDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this virtual network interface.
    Id string
    (String) The unique identifier for this virtual network interface.
    Name string
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    ResourceType string
    (String) The resource type.
    address String
    (String) The IP address.If the address has not yet been selected, the value will be 0.0.0.0.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds List<GetIsBareMetalServerNetworkAttachmentPrimaryIpDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this virtual network interface.
    id String
    (String) The unique identifier for this virtual network interface.
    name String
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resourceType String
    (String) The resource type.
    address string
    (String) The IP address.If the address has not yet been selected, the value will be 0.0.0.0.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds GetIsBareMetalServerNetworkAttachmentPrimaryIpDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href string
    (String) The URL for this virtual network interface.
    id string
    (String) The unique identifier for this virtual network interface.
    name string
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resourceType string
    (String) The resource type.
    address str
    (String) The IP address.If the address has not yet been selected, the value will be 0.0.0.0.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds Sequence[GetIsBareMetalServerNetworkAttachmentPrimaryIpDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href str
    (String) The URL for this virtual network interface.
    id str
    (String) The unique identifier for this virtual network interface.
    name str
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resource_type str
    (String) The resource type.
    address String
    (String) The IP address.If the address has not yet been selected, the value will be 0.0.0.0.This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this virtual network interface.
    id String
    (String) The unique identifier for this virtual network interface.
    name String
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resourceType String
    (String) The resource type.

    GetIsBareMetalServerNetworkAttachmentPrimaryIpDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsBareMetalServerNetworkAttachmentSubnet

    Crn string
    (String) The CRN for this virtual network interface.
    Deleteds List<GetIsBareMetalServerNetworkAttachmentSubnetDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this virtual network interface.
    Id string
    (String) The unique identifier for this virtual network interface.
    Name string
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    ResourceType string
    (String) The resource type.
    Crn string
    (String) The CRN for this virtual network interface.
    Deleteds []GetIsBareMetalServerNetworkAttachmentSubnetDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this virtual network interface.
    Id string
    (String) The unique identifier for this virtual network interface.
    Name string
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    ResourceType string
    (String) The resource type.
    crn String
    (String) The CRN for this virtual network interface.
    deleteds List<GetIsBareMetalServerNetworkAttachmentSubnetDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this virtual network interface.
    id String
    (String) The unique identifier for this virtual network interface.
    name String
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resourceType String
    (String) The resource type.
    crn string
    (String) The CRN for this virtual network interface.
    deleteds GetIsBareMetalServerNetworkAttachmentSubnetDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href string
    (String) The URL for this virtual network interface.
    id string
    (String) The unique identifier for this virtual network interface.
    name string
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resourceType string
    (String) The resource type.
    crn str
    (String) The CRN for this virtual network interface.
    deleteds Sequence[GetIsBareMetalServerNetworkAttachmentSubnetDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href str
    (String) The URL for this virtual network interface.
    id str
    (String) The unique identifier for this virtual network interface.
    name str
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resource_type str
    (String) The resource type.
    crn String
    (String) The CRN for this virtual network interface.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this virtual network interface.
    id String
    (String) The unique identifier for this virtual network interface.
    name String
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resourceType String
    (String) The resource type.

    GetIsBareMetalServerNetworkAttachmentSubnetDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsBareMetalServerNetworkAttachmentVirtualNetworkInterface

    Crn string
    (String) The CRN for this virtual network interface.
    Href string
    (String) The URL for this virtual network interface.
    Id string
    (String) The unique identifier for this virtual network interface.
    Name string
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    ResourceType string
    (String) The resource type.
    Crn string
    (String) The CRN for this virtual network interface.
    Href string
    (String) The URL for this virtual network interface.
    Id string
    (String) The unique identifier for this virtual network interface.
    Name string
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    ResourceType string
    (String) The resource type.
    crn String
    (String) The CRN for this virtual network interface.
    href String
    (String) The URL for this virtual network interface.
    id String
    (String) The unique identifier for this virtual network interface.
    name String
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resourceType String
    (String) The resource type.
    crn string
    (String) The CRN for this virtual network interface.
    href string
    (String) The URL for this virtual network interface.
    id string
    (String) The unique identifier for this virtual network interface.
    name string
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resourceType string
    (String) The resource type.
    crn str
    (String) The CRN for this virtual network interface.
    href str
    (String) The URL for this virtual network interface.
    id str
    (String) The unique identifier for this virtual network interface.
    name str
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resource_type str
    (String) The resource type.
    crn String
    (String) The CRN for this virtual network interface.
    href String
    (String) The URL for this virtual network interface.
    id String
    (String) The unique identifier for this virtual network interface.
    name String
    (String) The name for this virtual network interface. The name is unique across all virtual network interfaces in the VPC.
    resourceType String
    (String) The resource type.

    GetIsBareMetalServerNetworkInterface

    AllowIpSpoofing bool
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    PrimaryIps List<GetIsBareMetalServerNetworkInterfacePrimaryIp>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    SecurityGroups List<string>
    (Array) List of security groups.
    Subnet string
    (String) ID of the subnet.
    AllowIpSpoofing bool
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    PrimaryIps []GetIsBareMetalServerNetworkInterfacePrimaryIp
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    SecurityGroups []string
    (Array) List of security groups.
    Subnet string
    (String) ID of the subnet.
    allowIpSpoofing Boolean
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primaryIps List<GetIsBareMetalServerNetworkInterfacePrimaryIp>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    securityGroups List<String>
    (Array) List of security groups.
    subnet String
    (String) ID of the subnet.
    allowIpSpoofing boolean
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primaryIps GetIsBareMetalServerNetworkInterfacePrimaryIp[]
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    securityGroups string[]
    (Array) List of security groups.
    subnet string
    (String) ID of the subnet.
    allow_ip_spoofing bool
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primary_ips Sequence[GetIsBareMetalServerNetworkInterfacePrimaryIp]
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    security_groups Sequence[str]
    (Array) List of security groups.
    subnet str
    (String) ID of the subnet.
    allowIpSpoofing Boolean
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primaryIps List<Property Map>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    securityGroups List<String>
    (Array) List of security groups.
    subnet String
    (String) ID of the subnet.

    GetIsBareMetalServerNetworkInterfacePrimaryIp

    Address string
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Href string
    (String) The URL for this reserved IP
    Name string
    (String) The user-defined or system-provided name for this reserved IP
    ReservedIp string
    (String) The unique identifier for this reserved IP
    ResourceType string
    (String)The resource type [ subnet_reserved_ip ]
    Address string
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Href string
    (String) The URL for this reserved IP
    Name string
    (String) The user-defined or system-provided name for this reserved IP
    ReservedIp string
    (String) The unique identifier for this reserved IP
    ResourceType string
    (String)The resource type [ subnet_reserved_ip ]
    address String
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    href String
    (String) The URL for this reserved IP
    name String
    (String) The user-defined or system-provided name for this reserved IP
    reservedIp String
    (String) The unique identifier for this reserved IP
    resourceType String
    (String)The resource type [ subnet_reserved_ip ]
    address string
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    href string
    (String) The URL for this reserved IP
    name string
    (String) The user-defined or system-provided name for this reserved IP
    reservedIp string
    (String) The unique identifier for this reserved IP
    resourceType string
    (String)The resource type [ subnet_reserved_ip ]
    address str
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    href str
    (String) The URL for this reserved IP
    name str
    (String) The user-defined or system-provided name for this reserved IP
    reserved_ip str
    (String) The unique identifier for this reserved IP
    resource_type str
    (String)The resource type [ subnet_reserved_ip ]
    address String
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    href String
    (String) The URL for this reserved IP
    name String
    (String) The user-defined or system-provided name for this reserved IP
    reservedIp String
    (String) The unique identifier for this reserved IP
    resourceType String
    (String)The resource type [ subnet_reserved_ip ]

    GetIsBareMetalServerPrimaryNetworkAttachment

    Deleteds List<GetIsBareMetalServerPrimaryNetworkAttachmentDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    PrimaryIps List<GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIp>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    ResourceType string
    (String) The type of resource referenced
    Subnets List<GetIsBareMetalServerPrimaryNetworkAttachmentSubnet>
    (String) ID of the subnet.
    VirtualNetworkInterfaces List<GetIsBareMetalServerPrimaryNetworkAttachmentVirtualNetworkInterface>
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    Deleteds []GetIsBareMetalServerPrimaryNetworkAttachmentDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    PrimaryIps []GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIp
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    ResourceType string
    (String) The type of resource referenced
    Subnets []GetIsBareMetalServerPrimaryNetworkAttachmentSubnet
    (String) ID of the subnet.
    VirtualNetworkInterfaces []GetIsBareMetalServerPrimaryNetworkAttachmentVirtualNetworkInterface
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    deleteds List<GetIsBareMetalServerPrimaryNetworkAttachmentDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primaryIps List<GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIp>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    resourceType String
    (String) The type of resource referenced
    subnets List<GetIsBareMetalServerPrimaryNetworkAttachmentSubnet>
    (String) ID of the subnet.
    virtualNetworkInterfaces List<GetIsBareMetalServerPrimaryNetworkAttachmentVirtualNetworkInterface>
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    deleteds GetIsBareMetalServerPrimaryNetworkAttachmentDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primaryIps GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIp[]
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    resourceType string
    (String) The type of resource referenced
    subnets GetIsBareMetalServerPrimaryNetworkAttachmentSubnet[]
    (String) ID of the subnet.
    virtualNetworkInterfaces GetIsBareMetalServerPrimaryNetworkAttachmentVirtualNetworkInterface[]
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    deleteds Sequence[GetIsBareMetalServerPrimaryNetworkAttachmentDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primary_ips Sequence[GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIp]
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    resource_type str
    (String) The type of resource referenced
    subnets Sequence[GetIsBareMetalServerPrimaryNetworkAttachmentSubnet]
    (String) ID of the subnet.
    virtual_network_interfaces Sequence[GetIsBareMetalServerPrimaryNetworkAttachmentVirtualNetworkInterface]
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    primaryIps List<Property Map>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    resourceType String
    (String) The type of resource referenced
    subnets List<Property Map>
    (String) ID of the subnet.
    virtualNetworkInterfaces List<Property Map>
    (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:

    GetIsBareMetalServerPrimaryNetworkAttachmentDeleted

    MoreInfo string
    (String) Link to documentation about this status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason
    moreInfo string
    (String) Link to documentation about this status reason
    more_info str
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason

    GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIp

    Address string
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Deleteds List<GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIpDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    Address string
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Deleteds []GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIpDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    address String
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds List<GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIpDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced
    address string
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIpDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType string
    (String) The type of resource referenced
    address str
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds Sequence[GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIpDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resource_type str
    (String) The type of resource referenced
    address String
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced

    GetIsBareMetalServerPrimaryNetworkAttachmentPrimaryIpDeleted

    MoreInfo string
    (String) Link to documentation about this status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason
    moreInfo string
    (String) Link to documentation about this status reason
    more_info str
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason

    GetIsBareMetalServerPrimaryNetworkAttachmentSubnet

    Crn string
    (String) The CRN for this virtual network interface.
    Deleteds List<GetIsBareMetalServerPrimaryNetworkAttachmentSubnetDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    Crn string
    (String) The CRN for this virtual network interface.
    Deleteds []GetIsBareMetalServerPrimaryNetworkAttachmentSubnetDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    crn String
    (String) The CRN for this virtual network interface.
    deleteds List<GetIsBareMetalServerPrimaryNetworkAttachmentSubnetDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced
    crn string
    (String) The CRN for this virtual network interface.
    deleteds GetIsBareMetalServerPrimaryNetworkAttachmentSubnetDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType string
    (String) The type of resource referenced
    crn str
    (String) The CRN for this virtual network interface.
    deleteds Sequence[GetIsBareMetalServerPrimaryNetworkAttachmentSubnetDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resource_type str
    (String) The type of resource referenced
    crn String
    (String) The CRN for this virtual network interface.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced

    GetIsBareMetalServerPrimaryNetworkAttachmentSubnetDeleted

    MoreInfo string
    (String) Link to documentation about this status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason
    moreInfo string
    (String) Link to documentation about this status reason
    more_info str
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason

    GetIsBareMetalServerPrimaryNetworkAttachmentVirtualNetworkInterface

    Crn string
    (String) The CRN for this virtual network interface.
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    Crn string
    (String) The CRN for this virtual network interface.
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    crn String
    (String) The CRN for this virtual network interface.
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced
    crn string
    (String) The CRN for this virtual network interface.
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType string
    (String) The type of resource referenced
    crn str
    (String) The CRN for this virtual network interface.
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resource_type str
    (String) The type of resource referenced
    crn String
    (String) The CRN for this virtual network interface.
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced

    GetIsBareMetalServerPrimaryNetworkInterface

    AllowIpSpoofing bool
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    PortSpeed double
    PrimaryIps List<GetIsBareMetalServerPrimaryNetworkInterfacePrimaryIp>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    SecurityGroups List<string>
    (Array) List of security groups.
    Subnet string
    (String) ID of the subnet.
    AllowIpSpoofing bool
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    PortSpeed float64
    PrimaryIps []GetIsBareMetalServerPrimaryNetworkInterfacePrimaryIp
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    SecurityGroups []string
    (Array) List of security groups.
    Subnet string
    (String) ID of the subnet.
    allowIpSpoofing Boolean
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    portSpeed Double
    primaryIps List<GetIsBareMetalServerPrimaryNetworkInterfacePrimaryIp>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    securityGroups List<String>
    (Array) List of security groups.
    subnet String
    (String) ID of the subnet.
    allowIpSpoofing boolean
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    portSpeed number
    primaryIps GetIsBareMetalServerPrimaryNetworkInterfacePrimaryIp[]
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    securityGroups string[]
    (Array) List of security groups.
    subnet string
    (String) ID of the subnet.
    allow_ip_spoofing bool
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    port_speed float
    primary_ips Sequence[GetIsBareMetalServerPrimaryNetworkInterfacePrimaryIp]
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    security_groups Sequence[str]
    (Array) List of security groups.
    subnet str
    (String) ID of the subnet.
    allowIpSpoofing Boolean
    (Bool) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    portSpeed Number
    primaryIps List<Property Map>
    (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
    securityGroups List<String>
    (Array) List of security groups.
    subnet String
    (String) ID of the subnet.

    GetIsBareMetalServerPrimaryNetworkInterfacePrimaryIp

    Address string
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Href string
    (String) The URL for this reserved IP
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ReservedIp string
    (String) The unique identifier for this reserved IP
    ResourceType string
    (String) The type of resource referenced
    Address string
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    Href string
    (String) The URL for this reserved IP
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ReservedIp string
    (String) The unique identifier for this reserved IP
    ResourceType string
    (String) The type of resource referenced
    address String
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    href String
    (String) The URL for this reserved IP
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    reservedIp String
    (String) The unique identifier for this reserved IP
    resourceType String
    (String) The type of resource referenced
    address string
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    href string
    (String) The URL for this reserved IP
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    reservedIp string
    (String) The unique identifier for this reserved IP
    resourceType string
    (String) The type of resource referenced
    address str
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    href str
    (String) The URL for this reserved IP
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    reserved_ip str
    (String) The unique identifier for this reserved IP
    resource_type str
    (String) The type of resource referenced
    address String
    (String) title: IPv4 The IP address. This property may add support for IPv6 addresses in the future. When processing a value in this property, verify that the address is in an expected format. If it is not, log an error. Optionally halt processing and surface the error, or bypass the resource on which the unexpected IP address format was encountered.
    href String
    (String) The URL for this reserved IP
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    reservedIp String
    (String) The unique identifier for this reserved IP
    resourceType String
    (String) The type of resource referenced

    GetIsBareMetalServerReservation

    Crn string
    (String) The CRN for this virtual network interface.
    Deleteds List<GetIsBareMetalServerReservationDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    Crn string
    (String) The CRN for this virtual network interface.
    Deleteds []GetIsBareMetalServerReservationDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    crn String
    (String) The CRN for this virtual network interface.
    deleteds List<GetIsBareMetalServerReservationDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced
    crn string
    (String) The CRN for this virtual network interface.
    deleteds GetIsBareMetalServerReservationDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType string
    (String) The type of resource referenced
    crn str
    (String) The CRN for this virtual network interface.
    deleteds Sequence[GetIsBareMetalServerReservationDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resource_type str
    (String) The type of resource referenced
    crn String
    (String) The CRN for this virtual network interface.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced

    GetIsBareMetalServerReservationAffinity

    Policy string
    (String) The reservation affinity policy to use for this bare metal server.
    Pools List<GetIsBareMetalServerReservationAffinityPool>
    (List) The pool of reservations available for use by this bare metal server.
    Policy string
    (String) The reservation affinity policy to use for this bare metal server.
    Pools []GetIsBareMetalServerReservationAffinityPool
    (List) The pool of reservations available for use by this bare metal server.
    policy String
    (String) The reservation affinity policy to use for this bare metal server.
    pools List<GetIsBareMetalServerReservationAffinityPool>
    (List) The pool of reservations available for use by this bare metal server.
    policy string
    (String) The reservation affinity policy to use for this bare metal server.
    pools GetIsBareMetalServerReservationAffinityPool[]
    (List) The pool of reservations available for use by this bare metal server.
    policy str
    (String) The reservation affinity policy to use for this bare metal server.
    pools Sequence[GetIsBareMetalServerReservationAffinityPool]
    (List) The pool of reservations available for use by this bare metal server.
    policy String
    (String) The reservation affinity policy to use for this bare metal server.
    pools List<Property Map>
    (List) The pool of reservations available for use by this bare metal server.

    GetIsBareMetalServerReservationAffinityPool

    Crn string
    (String) The CRN for this virtual network interface.
    Deleteds List<GetIsBareMetalServerReservationAffinityPoolDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    Crn string
    (String) The CRN for this virtual network interface.
    Deleteds []GetIsBareMetalServerReservationAffinityPoolDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this reserved IP
    Id string
    (String) The id of the network interface.
    Name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    ResourceType string
    (String) The type of resource referenced
    crn String
    (String) The CRN for this virtual network interface.
    deleteds List<GetIsBareMetalServerReservationAffinityPoolDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced
    crn string
    (String) The CRN for this virtual network interface.
    deleteds GetIsBareMetalServerReservationAffinityPoolDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href string
    (String) The URL for this reserved IP
    id string
    (String) The id of the network interface.
    name string

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType string
    (String) The type of resource referenced
    crn str
    (String) The CRN for this virtual network interface.
    deleteds Sequence[GetIsBareMetalServerReservationAffinityPoolDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href str
    (String) The URL for this reserved IP
    id str
    (String) The id of the network interface.
    name str

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resource_type str
    (String) The type of resource referenced
    crn String
    (String) The CRN for this virtual network interface.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this reserved IP
    id String
    (String) The id of the network interface.
    name String

    The name for this bare metal server.

    NOTE identifier and name are mutually exclusive.

    resourceType String
    (String) The type of resource referenced

    GetIsBareMetalServerReservationAffinityPoolDeleted

    MoreInfo string
    (String) Link to documentation about this status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason
    moreInfo string
    (String) Link to documentation about this status reason
    more_info str
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason

    GetIsBareMetalServerReservationDeleted

    MoreInfo string
    (String) Link to documentation about this status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason
    moreInfo string
    (String) Link to documentation about this status reason
    more_info str
    (String) Link to documentation about this status reason
    moreInfo String
    (String) Link to documentation about this status reason

    GetIsBareMetalServerStatusReason

    Code string
    (String) The status reason code
    Message string
    (String) An explanation of the status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    Code string
    (String) The status reason code
    Message string
    (String) An explanation of the status reason
    MoreInfo string
    (String) Link to documentation about this status reason
    code String
    (String) The status reason code
    message String
    (String) An explanation of the status reason
    moreInfo String
    (String) Link to documentation about this status reason
    code string
    (String) The status reason code
    message string
    (String) An explanation of the status reason
    moreInfo string
    (String) Link to documentation about this status reason
    code str
    (String) The status reason code
    message str
    (String) An explanation of the status reason
    more_info str
    (String) Link to documentation about this status reason
    code String
    (String) The status reason code
    message String
    (String) An explanation of the status reason
    moreInfo String
    (String) Link to documentation about this status reason

    GetIsBareMetalServerTrustedPlatformModule

    Enabled bool
    (Boolean) Indicates whether the trusted platform module is enabled.
    Mode string
    (String) The trusted platform module mode to use. The specified value must be listed in the bare metal server profile's supported_trusted_platform_module_modes. Updating trusted_platform_module mode would require the server to be stopped then started again.

    • Constraints: Allowable values are: disabled, tpm_2.
    SupportedModes List<string>
    (Array) The trusted platform module (TPM) mode:

    • disabled: No TPM functionality
    • tpm_2: TPM 2.0
    • The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    Enabled bool
    (Boolean) Indicates whether the trusted platform module is enabled.
    Mode string
    (String) The trusted platform module mode to use. The specified value must be listed in the bare metal server profile's supported_trusted_platform_module_modes. Updating trusted_platform_module mode would require the server to be stopped then started again.

    • Constraints: Allowable values are: disabled, tpm_2.
    SupportedModes []string
    (Array) The trusted platform module (TPM) mode:

    • disabled: No TPM functionality
    • tpm_2: TPM 2.0
    • The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    enabled Boolean
    (Boolean) Indicates whether the trusted platform module is enabled.
    mode String
    (String) The trusted platform module mode to use. The specified value must be listed in the bare metal server profile's supported_trusted_platform_module_modes. Updating trusted_platform_module mode would require the server to be stopped then started again.

    • Constraints: Allowable values are: disabled, tpm_2.
    supportedModes List<String>
    (Array) The trusted platform module (TPM) mode:

    • disabled: No TPM functionality
    • tpm_2: TPM 2.0
    • The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    enabled boolean
    (Boolean) Indicates whether the trusted platform module is enabled.
    mode string
    (String) The trusted platform module mode to use. The specified value must be listed in the bare metal server profile's supported_trusted_platform_module_modes. Updating trusted_platform_module mode would require the server to be stopped then started again.

    • Constraints: Allowable values are: disabled, tpm_2.
    supportedModes string[]
    (Array) The trusted platform module (TPM) mode:

    • disabled: No TPM functionality
    • tpm_2: TPM 2.0
    • The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    enabled bool
    (Boolean) Indicates whether the trusted platform module is enabled.
    mode str
    (String) The trusted platform module mode to use. The specified value must be listed in the bare metal server profile's supported_trusted_platform_module_modes. Updating trusted_platform_module mode would require the server to be stopped then started again.

    • Constraints: Allowable values are: disabled, tpm_2.
    supported_modes Sequence[str]
    (Array) The trusted platform module (TPM) mode:

    • disabled: No TPM functionality
    • tpm_2: TPM 2.0
    • The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    enabled Boolean
    (Boolean) Indicates whether the trusted platform module is enabled.
    mode String
    (String) The trusted platform module mode to use. The specified value must be listed in the bare metal server profile's supported_trusted_platform_module_modes. Updating trusted_platform_module mode would require the server to be stopped then started again.

    • Constraints: Allowable values are: disabled, tpm_2.
    supportedModes List<String>
    (Array) The trusted platform module (TPM) mode:

    • disabled: No TPM functionality
    • tpm_2: TPM 2.0
    • The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud