1. Packages
  2. Packages
  3. Gcore Provider
  4. API Docs
  5. getCloudBaremetalImages
Viewing docs for gcore 2.0.0-alpha.15
published on Thursday, Aug 6, 2026 by g-core
Viewing docs for gcore 2.0.0-alpha.15
published on Thursday, Aug 6, 2026 by g-core

    Bare metal images are operating system images used to boot bare metal servers, filterable by name, visibility, OS distribution, and architecture.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcore from "@pulumi/gcore";
    
    const exampleCloudBaremetalImages = gcore.getCloudBaremetalImages({
        projectId: 1,
        regionId: 7,
        architecture: "x86_64",
        includePrices: true,
        name: "ubuntu",
        osDistro: "ubuntu",
        osVersion: "22.04",
        "private": "private",
        tagKeys: [
            "key1",
            "key2",
        ],
        tagKeyValue: "tag_key_value",
        visibility: "private",
    });
    
    import pulumi
    import pulumi_gcore as gcore
    
    example_cloud_baremetal_images = gcore.get_cloud_baremetal_images(project_id=1,
        region_id=7,
        architecture="x86_64",
        include_prices=True,
        name="ubuntu",
        os_distro="ubuntu",
        os_version="22.04",
        private="private",
        tag_keys=[
            "key1",
            "key2",
        ],
        tag_key_value="tag_key_value",
        visibility="private")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/gcore/v2/gcore"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := gcore.GetCloudBaremetalImages(ctx, &gcore.GetCloudBaremetalImagesArgs{
    			ProjectId:     pulumi.Float64Ref(1),
    			RegionId:      pulumi.Float64Ref(7),
    			Architecture:  pulumi.StringRef("x86_64"),
    			IncludePrices: pulumi.BoolRef(true),
    			Name:          pulumi.StringRef("ubuntu"),
    			OsDistro:      pulumi.StringRef("ubuntu"),
    			OsVersion:     pulumi.StringRef("22.04"),
    			Private:       pulumi.StringRef("private"),
    			TagKeys: []string{
    				"key1",
    				"key2",
    			},
    			TagKeyValue: pulumi.StringRef("tag_key_value"),
    			Visibility:  pulumi.StringRef("private"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcore = Pulumi.Gcore;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleCloudBaremetalImages = Gcore.GetCloudBaremetalImages.Invoke(new()
        {
            ProjectId = 1,
            RegionId = 7,
            Architecture = "x86_64",
            IncludePrices = true,
            Name = "ubuntu",
            OsDistro = "ubuntu",
            OsVersion = "22.04",
            Private = "private",
            TagKeys = new[]
            {
                "key1",
                "key2",
            },
            TagKeyValue = "tag_key_value",
            Visibility = "private",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcore.GcoreFunctions;
    import com.pulumi.gcore.inputs.GetCloudBaremetalImagesArgs;
    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 exampleCloudBaremetalImages = GcoreFunctions.getCloudBaremetalImages(GetCloudBaremetalImagesArgs.builder()
                .projectId(1)
                .regionId(7)
                .architecture("x86_64")
                .includePrices(true)
                .name("ubuntu")
                .osDistro("ubuntu")
                .osVersion("22.04")
                .private_("private")
                .tagKeys(            
                    "key1",
                    "key2")
                .tagKeyValue("tag_key_value")
                .visibility("private")
                .build());
    
        }
    }
    
    variables:
      exampleCloudBaremetalImages:
        fn::invoke:
          function: gcore:getCloudBaremetalImages
          arguments:
            projectId: 1
            regionId: 7
            architecture: x86_64
            includePrices: true
            name: ubuntu
            osDistro: ubuntu
            osVersion: '22.04'
            private: private
            tagKeys:
              - key1
              - key2
            tagKeyValue: tag_key_value
            visibility: private
    
    Example coming soon!
    

    Using getCloudBaremetalImages

    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 getCloudBaremetalImages(args: GetCloudBaremetalImagesArgs, opts?: InvokeOptions): Promise<GetCloudBaremetalImagesResult>
    function getCloudBaremetalImagesOutput(args: GetCloudBaremetalImagesOutputArgs, opts?: InvokeOptions): Output<GetCloudBaremetalImagesResult>
    def get_cloud_baremetal_images(architecture: Optional[str] = None,
                                   include_prices: Optional[bool] = None,
                                   max_items: Optional[float] = None,
                                   name: Optional[str] = None,
                                   os_distro: Optional[str] = None,
                                   os_version: Optional[str] = None,
                                   private: Optional[str] = None,
                                   project_id: Optional[float] = None,
                                   region_id: Optional[float] = None,
                                   tag_key_value: Optional[str] = None,
                                   tag_keys: Optional[Sequence[str]] = None,
                                   visibility: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetCloudBaremetalImagesResult
    def get_cloud_baremetal_images_output(architecture: pulumi.Input[Optional[str]] = None,
                                   include_prices: pulumi.Input[Optional[bool]] = None,
                                   max_items: pulumi.Input[Optional[float]] = None,
                                   name: pulumi.Input[Optional[str]] = None,
                                   os_distro: pulumi.Input[Optional[str]] = None,
                                   os_version: pulumi.Input[Optional[str]] = None,
                                   private: pulumi.Input[Optional[str]] = None,
                                   project_id: pulumi.Input[Optional[float]] = None,
                                   region_id: pulumi.Input[Optional[float]] = None,
                                   tag_key_value: pulumi.Input[Optional[str]] = None,
                                   tag_keys: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                   visibility: pulumi.Input[Optional[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetCloudBaremetalImagesResult]
    func GetCloudBaremetalImages(ctx *Context, args *GetCloudBaremetalImagesArgs, opts ...InvokeOption) (*GetCloudBaremetalImagesResult, error)
    func GetCloudBaremetalImagesOutput(ctx *Context, args *GetCloudBaremetalImagesOutputArgs, opts ...InvokeOption) GetCloudBaremetalImagesResultOutput

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

    public static class GetCloudBaremetalImages 
    {
        public static Task<GetCloudBaremetalImagesResult> InvokeAsync(GetCloudBaremetalImagesArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudBaremetalImagesResult> Invoke(GetCloudBaremetalImagesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudBaremetalImagesResult> getCloudBaremetalImages(GetCloudBaremetalImagesArgs args, InvokeOptions options)
    public static Output<GetCloudBaremetalImagesResult> getCloudBaremetalImages(GetCloudBaremetalImagesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcore:index/getCloudBaremetalImages:getCloudBaremetalImages
      arguments:
        # arguments dictionary
    data "gcore_get_cloud_baremetal_images" "name" {
        # arguments
    }

    The following arguments are supported:

    Architecture string
    Filter by image architecture. Available values: "aarch64", "x86_64".
    IncludePrices bool
    Show price.
    MaxItems double
    Max items to fetch, default: 1000
    Name string
    Filter by image name (case-insensitive substring match)
    OsDistro string
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    OsVersion string
    Filter by OS version (case-insensitive). E.g. 22.04
    Private string
    Any value to show private images
    ProjectId double
    Project ID
    RegionId double
    Region ID
    TagKeyValue string
    Optional. Filter by tag key-value pairs.
    TagKeys List<string>
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    Visibility string
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    Architecture string
    Filter by image architecture. Available values: "aarch64", "x86_64".
    IncludePrices bool
    Show price.
    MaxItems float64
    Max items to fetch, default: 1000
    Name string
    Filter by image name (case-insensitive substring match)
    OsDistro string
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    OsVersion string
    Filter by OS version (case-insensitive). E.g. 22.04
    Private string
    Any value to show private images
    ProjectId float64
    Project ID
    RegionId float64
    Region ID
    TagKeyValue string
    Optional. Filter by tag key-value pairs.
    TagKeys []string
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    Visibility string
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    architecture string
    Filter by image architecture. Available values: "aarch64", "x86_64".
    include_prices bool
    Show price.
    max_items number
    Max items to fetch, default: 1000
    name string
    Filter by image name (case-insensitive substring match)
    os_distro string
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    os_version string
    Filter by OS version (case-insensitive). E.g. 22.04
    private string
    Any value to show private images
    project_id number
    Project ID
    region_id number
    Region ID
    tag_key_value string
    Optional. Filter by tag key-value pairs.
    tag_keys list(string)
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility string
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    architecture String
    Filter by image architecture. Available values: "aarch64", "x86_64".
    includePrices Boolean
    Show price.
    maxItems Double
    Max items to fetch, default: 1000
    name String
    Filter by image name (case-insensitive substring match)
    osDistro String
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    osVersion String
    Filter by OS version (case-insensitive). E.g. 22.04
    private_ String
    Any value to show private images
    projectId Double
    Project ID
    regionId Double
    Region ID
    tagKeyValue String
    Optional. Filter by tag key-value pairs.
    tagKeys List<String>
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility String
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    architecture string
    Filter by image architecture. Available values: "aarch64", "x86_64".
    includePrices boolean
    Show price.
    maxItems number
    Max items to fetch, default: 1000
    name string
    Filter by image name (case-insensitive substring match)
    osDistro string
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    osVersion string
    Filter by OS version (case-insensitive). E.g. 22.04
    private string
    Any value to show private images
    projectId number
    Project ID
    regionId number
    Region ID
    tagKeyValue string
    Optional. Filter by tag key-value pairs.
    tagKeys string[]
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility string
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    architecture str
    Filter by image architecture. Available values: "aarch64", "x86_64".
    include_prices bool
    Show price.
    max_items float
    Max items to fetch, default: 1000
    name str
    Filter by image name (case-insensitive substring match)
    os_distro str
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    os_version str
    Filter by OS version (case-insensitive). E.g. 22.04
    private str
    Any value to show private images
    project_id float
    Project ID
    region_id float
    Region ID
    tag_key_value str
    Optional. Filter by tag key-value pairs.
    tag_keys Sequence[str]
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility str
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    architecture String
    Filter by image architecture. Available values: "aarch64", "x86_64".
    includePrices Boolean
    Show price.
    maxItems Number
    Max items to fetch, default: 1000
    name String
    Filter by image name (case-insensitive substring match)
    osDistro String
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    osVersion String
    Filter by OS version (case-insensitive). E.g. 22.04
    private String
    Any value to show private images
    projectId Number
    Project ID
    regionId Number
    Region ID
    tagKeyValue String
    Optional. Filter by tag key-value pairs.
    tagKeys List<String>
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility String
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".

    getCloudBaremetalImages Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetCloudBaremetalImagesItem>
    The items returned by the data source
    Architecture string
    Filter by image architecture. Available values: "aarch64", "x86_64".
    IncludePrices bool
    Show price.
    MaxItems double
    Max items to fetch, default: 1000
    Name string
    Filter by image name (case-insensitive substring match)
    OsDistro string
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    OsVersion string
    Filter by OS version (case-insensitive). E.g. 22.04
    Private string
    Any value to show private images
    ProjectId double
    Project ID
    RegionId double
    Region ID
    TagKeyValue string
    Optional. Filter by tag key-value pairs.
    TagKeys List<string>
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    Visibility string
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetCloudBaremetalImagesItem
    The items returned by the data source
    Architecture string
    Filter by image architecture. Available values: "aarch64", "x86_64".
    IncludePrices bool
    Show price.
    MaxItems float64
    Max items to fetch, default: 1000
    Name string
    Filter by image name (case-insensitive substring match)
    OsDistro string
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    OsVersion string
    Filter by OS version (case-insensitive). E.g. 22.04
    Private string
    Any value to show private images
    ProjectId float64
    Project ID
    RegionId float64
    Region ID
    TagKeyValue string
    Optional. Filter by tag key-value pairs.
    TagKeys []string
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    Visibility string
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    id string
    The provider-assigned unique ID for this managed resource.
    items list(object)
    The items returned by the data source
    architecture string
    Filter by image architecture. Available values: "aarch64", "x86_64".
    include_prices bool
    Show price.
    max_items number
    Max items to fetch, default: 1000
    name string
    Filter by image name (case-insensitive substring match)
    os_distro string
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    os_version string
    Filter by OS version (case-insensitive). E.g. 22.04
    private string
    Any value to show private images
    project_id number
    Project ID
    region_id number
    Region ID
    tag_key_value string
    Optional. Filter by tag key-value pairs.
    tag_keys list(string)
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility string
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetCloudBaremetalImagesItem>
    The items returned by the data source
    architecture String
    Filter by image architecture. Available values: "aarch64", "x86_64".
    includePrices Boolean
    Show price.
    maxItems Double
    Max items to fetch, default: 1000
    name String
    Filter by image name (case-insensitive substring match)
    osDistro String
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    osVersion String
    Filter by OS version (case-insensitive). E.g. 22.04
    private_ String
    Any value to show private images
    projectId Double
    Project ID
    regionId Double
    Region ID
    tagKeyValue String
    Optional. Filter by tag key-value pairs.
    tagKeys List<String>
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility String
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    id string
    The provider-assigned unique ID for this managed resource.
    items GetCloudBaremetalImagesItem[]
    The items returned by the data source
    architecture string
    Filter by image architecture. Available values: "aarch64", "x86_64".
    includePrices boolean
    Show price.
    maxItems number
    Max items to fetch, default: 1000
    name string
    Filter by image name (case-insensitive substring match)
    osDistro string
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    osVersion string
    Filter by OS version (case-insensitive). E.g. 22.04
    private string
    Any value to show private images
    projectId number
    Project ID
    regionId number
    Region ID
    tagKeyValue string
    Optional. Filter by tag key-value pairs.
    tagKeys string[]
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility string
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetCloudBaremetalImagesItem]
    The items returned by the data source
    architecture str
    Filter by image architecture. Available values: "aarch64", "x86_64".
    include_prices bool
    Show price.
    max_items float
    Max items to fetch, default: 1000
    name str
    Filter by image name (case-insensitive substring match)
    os_distro str
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    os_version str
    Filter by OS version (case-insensitive). E.g. 22.04
    private str
    Any value to show private images
    project_id float
    Project ID
    region_id float
    Region ID
    tag_key_value str
    Optional. Filter by tag key-value pairs.
    tag_keys Sequence[str]
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility str
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    The items returned by the data source
    architecture String
    Filter by image architecture. Available values: "aarch64", "x86_64".
    includePrices Boolean
    Show price.
    maxItems Number
    Max items to fetch, default: 1000
    name String
    Filter by image name (case-insensitive substring match)
    osDistro String
    Filter by OS distribution (case-insensitive). E.g. ubuntu, centos, debian
    osVersion String
    Filter by OS version (case-insensitive). E.g. 22.04
    private String
    Any value to show private images
    projectId Number
    Project ID
    regionId Number
    Region ID
    tagKeyValue String
    Optional. Filter by tag key-value pairs.
    tagKeys List<String>
    Optional. Filter by tag keys. ?tag_key=key1&tag_key=key2
    visibility String
    Image visibility. Globally visible images are public Available values: "private", "public", "shared".

    Supporting Types

    GetCloudBaremetalImagesItem

    Architecture string
    An image architecture type: aarch64, x86_64. Available values: "aarch64", "x86_64".
    CreatedAt string
    Datetime when the image was created
    CreatorTaskId string
    Task that created this entity
    CurrencyCode string
    Currency code. Shown if the include_prices query parameter if set to true
    Description string
    Image description
    DiskFormat string
    Disk format
    DisplayOrder double
    GpuDriver string
    Name of the GPU driver vendor
    GpuDriverType string
    Type of the GPU driver
    GpuDriverVersion string
    Version of the installed GPU driver
    HwFirmwareType string
    Specifies the type of firmware with which to boot the guest. Available values: "bios", "uefi".
    HwMachineType string
    A virtual chipset type. Available values: "i440", "q35".
    Id string
    Image ID
    IsBaremetal bool
    For bare metal servers this value is always set to true
    MinDisk double
    Minimal boot volume required
    MinRam double
    Minimal VM RAM required
    Name string
    Image display name
    OsDistro string
    OS Distribution, i.e. Debian, CentOS, Ubuntu, CoreOS etc.
    OsType string
    The operating system installed on the image. Available values: "linux", "windows".
    OsVersion string
    OS version, i.e. 19.04 (for Ubuntu) or 9.4 for Debian
    PricePerHour double
    Price per hour. Shown if the include_prices query parameter if set to true
    PricePerMonth double
    Price per month. Shown if the include_prices query parameter if set to true
    PriceStatus string
    Price status for the UI Available values: "error", "hide", "show".
    ProjectId double
    Project ID
    Region string
    Region name
    RegionId double
    Region ID
    Size double
    Image size in bytes
    SshKey string
    Whether the image supports SSH key or not Available values: "allow", "deny", "required".
    Status string
    Image status, i.e. active
    TagsV2s List<GetCloudBaremetalImagesItemTagsV2>
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    TaskId string
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    UpdatedAt string
    Datetime when the image was updated
    Visibility string
    Image visibility. Globally visible images are public
    Architecture string
    An image architecture type: aarch64, x86_64. Available values: "aarch64", "x86_64".
    CreatedAt string
    Datetime when the image was created
    CreatorTaskId string
    Task that created this entity
    CurrencyCode string
    Currency code. Shown if the include_prices query parameter if set to true
    Description string
    Image description
    DiskFormat string
    Disk format
    DisplayOrder float64
    GpuDriver string
    Name of the GPU driver vendor
    GpuDriverType string
    Type of the GPU driver
    GpuDriverVersion string
    Version of the installed GPU driver
    HwFirmwareType string
    Specifies the type of firmware with which to boot the guest. Available values: "bios", "uefi".
    HwMachineType string
    A virtual chipset type. Available values: "i440", "q35".
    Id string
    Image ID
    IsBaremetal bool
    For bare metal servers this value is always set to true
    MinDisk float64
    Minimal boot volume required
    MinRam float64
    Minimal VM RAM required
    Name string
    Image display name
    OsDistro string
    OS Distribution, i.e. Debian, CentOS, Ubuntu, CoreOS etc.
    OsType string
    The operating system installed on the image. Available values: "linux", "windows".
    OsVersion string
    OS version, i.e. 19.04 (for Ubuntu) or 9.4 for Debian
    PricePerHour float64
    Price per hour. Shown if the include_prices query parameter if set to true
    PricePerMonth float64
    Price per month. Shown if the include_prices query parameter if set to true
    PriceStatus string
    Price status for the UI Available values: "error", "hide", "show".
    ProjectId float64
    Project ID
    Region string
    Region name
    RegionId float64
    Region ID
    Size float64
    Image size in bytes
    SshKey string
    Whether the image supports SSH key or not Available values: "allow", "deny", "required".
    Status string
    Image status, i.e. active
    TagsV2s []GetCloudBaremetalImagesItemTagsV2
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    TaskId string
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    UpdatedAt string
    Datetime when the image was updated
    Visibility string
    Image visibility. Globally visible images are public
    architecture string
    An image architecture type: aarch64, x86_64. Available values: "aarch64", "x86_64".
    created_at string
    Datetime when the image was created
    creator_task_id string
    Task that created this entity
    currency_code string
    Currency code. Shown if the include_prices query parameter if set to true
    description string
    Image description
    disk_format string
    Disk format
    display_order number
    gpu_driver string
    Name of the GPU driver vendor
    gpu_driver_type string
    Type of the GPU driver
    gpu_driver_version string
    Version of the installed GPU driver
    hw_firmware_type string
    Specifies the type of firmware with which to boot the guest. Available values: "bios", "uefi".
    hw_machine_type string
    A virtual chipset type. Available values: "i440", "q35".
    id string
    Image ID
    is_baremetal bool
    For bare metal servers this value is always set to true
    min_disk number
    Minimal boot volume required
    min_ram number
    Minimal VM RAM required
    name string
    Image display name
    os_distro string
    OS Distribution, i.e. Debian, CentOS, Ubuntu, CoreOS etc.
    os_type string
    The operating system installed on the image. Available values: "linux", "windows".
    os_version string
    OS version, i.e. 19.04 (for Ubuntu) or 9.4 for Debian
    price_per_hour number
    Price per hour. Shown if the include_prices query parameter if set to true
    price_per_month number
    Price per month. Shown if the include_prices query parameter if set to true
    price_status string
    Price status for the UI Available values: "error", "hide", "show".
    project_id number
    Project ID
    region string
    Region name
    region_id number
    Region ID
    size number
    Image size in bytes
    ssh_key string
    Whether the image supports SSH key or not Available values: "allow", "deny", "required".
    status string
    Image status, i.e. active
    tags_v2s list(object)
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    task_id string
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    updated_at string
    Datetime when the image was updated
    visibility string
    Image visibility. Globally visible images are public
    architecture String
    An image architecture type: aarch64, x86_64. Available values: "aarch64", "x86_64".
    createdAt String
    Datetime when the image was created
    creatorTaskId String
    Task that created this entity
    currencyCode String
    Currency code. Shown if the include_prices query parameter if set to true
    description String
    Image description
    diskFormat String
    Disk format
    displayOrder Double
    gpuDriver String
    Name of the GPU driver vendor
    gpuDriverType String
    Type of the GPU driver
    gpuDriverVersion String
    Version of the installed GPU driver
    hwFirmwareType String
    Specifies the type of firmware with which to boot the guest. Available values: "bios", "uefi".
    hwMachineType String
    A virtual chipset type. Available values: "i440", "q35".
    id String
    Image ID
    isBaremetal Boolean
    For bare metal servers this value is always set to true
    minDisk Double
    Minimal boot volume required
    minRam Double
    Minimal VM RAM required
    name String
    Image display name
    osDistro String
    OS Distribution, i.e. Debian, CentOS, Ubuntu, CoreOS etc.
    osType String
    The operating system installed on the image. Available values: "linux", "windows".
    osVersion String
    OS version, i.e. 19.04 (for Ubuntu) or 9.4 for Debian
    pricePerHour Double
    Price per hour. Shown if the include_prices query parameter if set to true
    pricePerMonth Double
    Price per month. Shown if the include_prices query parameter if set to true
    priceStatus String
    Price status for the UI Available values: "error", "hide", "show".
    projectId Double
    Project ID
    region String
    Region name
    regionId Double
    Region ID
    size Double
    Image size in bytes
    sshKey String
    Whether the image supports SSH key or not Available values: "allow", "deny", "required".
    status String
    Image status, i.e. active
    tagsV2s List<GetCloudBaremetalImagesItemTagsV2>
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    taskId String
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    updatedAt String
    Datetime when the image was updated
    visibility String
    Image visibility. Globally visible images are public
    architecture string
    An image architecture type: aarch64, x86_64. Available values: "aarch64", "x86_64".
    createdAt string
    Datetime when the image was created
    creatorTaskId string
    Task that created this entity
    currencyCode string
    Currency code. Shown if the include_prices query parameter if set to true
    description string
    Image description
    diskFormat string
    Disk format
    displayOrder number
    gpuDriver string
    Name of the GPU driver vendor
    gpuDriverType string
    Type of the GPU driver
    gpuDriverVersion string
    Version of the installed GPU driver
    hwFirmwareType string
    Specifies the type of firmware with which to boot the guest. Available values: "bios", "uefi".
    hwMachineType string
    A virtual chipset type. Available values: "i440", "q35".
    id string
    Image ID
    isBaremetal boolean
    For bare metal servers this value is always set to true
    minDisk number
    Minimal boot volume required
    minRam number
    Minimal VM RAM required
    name string
    Image display name
    osDistro string
    OS Distribution, i.e. Debian, CentOS, Ubuntu, CoreOS etc.
    osType string
    The operating system installed on the image. Available values: "linux", "windows".
    osVersion string
    OS version, i.e. 19.04 (for Ubuntu) or 9.4 for Debian
    pricePerHour number
    Price per hour. Shown if the include_prices query parameter if set to true
    pricePerMonth number
    Price per month. Shown if the include_prices query parameter if set to true
    priceStatus string
    Price status for the UI Available values: "error", "hide", "show".
    projectId number
    Project ID
    region string
    Region name
    regionId number
    Region ID
    size number
    Image size in bytes
    sshKey string
    Whether the image supports SSH key or not Available values: "allow", "deny", "required".
    status string
    Image status, i.e. active
    tagsV2s GetCloudBaremetalImagesItemTagsV2[]
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    taskId string
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    updatedAt string
    Datetime when the image was updated
    visibility string
    Image visibility. Globally visible images are public
    architecture str
    An image architecture type: aarch64, x86_64. Available values: "aarch64", "x86_64".
    created_at str
    Datetime when the image was created
    creator_task_id str
    Task that created this entity
    currency_code str
    Currency code. Shown if the include_prices query parameter if set to true
    description str
    Image description
    disk_format str
    Disk format
    display_order float
    gpu_driver str
    Name of the GPU driver vendor
    gpu_driver_type str
    Type of the GPU driver
    gpu_driver_version str
    Version of the installed GPU driver
    hw_firmware_type str
    Specifies the type of firmware with which to boot the guest. Available values: "bios", "uefi".
    hw_machine_type str
    A virtual chipset type. Available values: "i440", "q35".
    id str
    Image ID
    is_baremetal bool
    For bare metal servers this value is always set to true
    min_disk float
    Minimal boot volume required
    min_ram float
    Minimal VM RAM required
    name str
    Image display name
    os_distro str
    OS Distribution, i.e. Debian, CentOS, Ubuntu, CoreOS etc.
    os_type str
    The operating system installed on the image. Available values: "linux", "windows".
    os_version str
    OS version, i.e. 19.04 (for Ubuntu) or 9.4 for Debian
    price_per_hour float
    Price per hour. Shown if the include_prices query parameter if set to true
    price_per_month float
    Price per month. Shown if the include_prices query parameter if set to true
    price_status str
    Price status for the UI Available values: "error", "hide", "show".
    project_id float
    Project ID
    region str
    Region name
    region_id float
    Region ID
    size float
    Image size in bytes
    ssh_key str
    Whether the image supports SSH key or not Available values: "allow", "deny", "required".
    status str
    Image status, i.e. active
    tags_v2s Sequence[GetCloudBaremetalImagesItemTagsV2]
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    task_id str
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    updated_at str
    Datetime when the image was updated
    visibility str
    Image visibility. Globally visible images are public
    architecture String
    An image architecture type: aarch64, x86_64. Available values: "aarch64", "x86_64".
    createdAt String
    Datetime when the image was created
    creatorTaskId String
    Task that created this entity
    currencyCode String
    Currency code. Shown if the include_prices query parameter if set to true
    description String
    Image description
    diskFormat String
    Disk format
    displayOrder Number
    gpuDriver String
    Name of the GPU driver vendor
    gpuDriverType String
    Type of the GPU driver
    gpuDriverVersion String
    Version of the installed GPU driver
    hwFirmwareType String
    Specifies the type of firmware with which to boot the guest. Available values: "bios", "uefi".
    hwMachineType String
    A virtual chipset type. Available values: "i440", "q35".
    id String
    Image ID
    isBaremetal Boolean
    For bare metal servers this value is always set to true
    minDisk Number
    Minimal boot volume required
    minRam Number
    Minimal VM RAM required
    name String
    Image display name
    osDistro String
    OS Distribution, i.e. Debian, CentOS, Ubuntu, CoreOS etc.
    osType String
    The operating system installed on the image. Available values: "linux", "windows".
    osVersion String
    OS version, i.e. 19.04 (for Ubuntu) or 9.4 for Debian
    pricePerHour Number
    Price per hour. Shown if the include_prices query parameter if set to true
    pricePerMonth Number
    Price per month. Shown if the include_prices query parameter if set to true
    priceStatus String
    Price status for the UI Available values: "error", "hide", "show".
    projectId Number
    Project ID
    region String
    Region name
    regionId Number
    Region ID
    size Number
    Image size in bytes
    sshKey String
    Whether the image supports SSH key or not Available values: "allow", "deny", "required".
    status String
    Image status, i.e. active
    tagsV2s List<Property Map>
    List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
    taskId String
    The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If null, the resource is not locked.
    updatedAt String
    Datetime when the image was updated
    visibility String
    Image visibility. Globally visible images are public

    GetCloudBaremetalImagesItemTagsV2

    Key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    ReadOnly bool
    If true, the tag is read-only and cannot be modified by the user
    Value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    Key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    ReadOnly bool
    If true, the tag is read-only and cannot be modified by the user
    Value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    read_only bool
    If true, the tag is read-only and cannot be modified by the user
    value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key String
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    readOnly Boolean
    If true, the tag is read-only and cannot be modified by the user
    value String
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key string
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    readOnly boolean
    If true, the tag is read-only and cannot be modified by the user
    value string
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key str
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    read_only bool
    If true, the tag is read-only and cannot be modified by the user
    value str
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    key String
    Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
    readOnly Boolean
    If true, the tag is read-only and cannot be modified by the user
    value String
    Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.

    Package Details

    Repository
    gcore g-core/terraform-provider-gcore
    License
    Notes
    This Pulumi package is based on the gcore Terraform Provider.
    Viewing docs for gcore 2.0.0-alpha.15
    published on Thursday, Aug 6, 2026 by g-core

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial