Viewing docs for opentelekomcloud 1.36.60
published on Thursday, Feb 26, 2026 by opentelekomcloud
published on Thursday, Feb 26, 2026 by opentelekomcloud
Viewing docs for opentelekomcloud 1.36.60
published on Thursday, Feb 26, 2026 by opentelekomcloud
published on Thursday, Feb 26, 2026 by opentelekomcloud
Up-to-date reference of API arguments for Image you can get at documentation portal
Use this data source to get the ID of an available OpenTelekomCloud image.
Example Usage
Get Ubuntu_20.04 latest
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const ubuntu = opentelekomcloud.getImagesImageV2({
name: "Standard_Ubuntu_20.04_latest",
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
ubuntu = opentelekomcloud.get_images_image_v2(name="Standard_Ubuntu_20.04_latest")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := opentelekomcloud.LookupImagesImageV2(ctx, &opentelekomcloud.LookupImagesImageV2Args{
Name: pulumi.StringRef("Standard_Ubuntu_20.04_latest"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var ubuntu = Opentelekomcloud.GetImagesImageV2.Invoke(new()
{
Name = "Standard_Ubuntu_20.04_latest",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
import com.pulumi.opentelekomcloud.inputs.GetImagesImageV2Args;
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 ubuntu = OpentelekomcloudFunctions.getImagesImageV2(GetImagesImageV2Args.builder()
.name("Standard_Ubuntu_20.04_latest")
.build());
}
}
variables:
ubuntu:
fn::invoke:
function: opentelekomcloud:getImagesImageV2
arguments:
name: Standard_Ubuntu_20.04_latest
Get most recent Debian
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const latest_debian = opentelekomcloud.getImagesImageV2({
nameRegex: "^Standard_Debian.?",
mostRecent: true,
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
latest_debian = opentelekomcloud.get_images_image_v2(name_regex="^Standard_Debian.?",
most_recent=True)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := opentelekomcloud.LookupImagesImageV2(ctx, &opentelekomcloud.LookupImagesImageV2Args{
NameRegex: pulumi.StringRef("^Standard_Debian.?"),
MostRecent: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var latest_debian = Opentelekomcloud.GetImagesImageV2.Invoke(new()
{
NameRegex = "^Standard_Debian.?",
MostRecent = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
import com.pulumi.opentelekomcloud.inputs.GetImagesImageV2Args;
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 latest-debian = OpentelekomcloudFunctions.getImagesImageV2(GetImagesImageV2Args.builder()
.nameRegex("^Standard_Debian.?")
.mostRecent(true)
.build());
}
}
variables:
latest-debian:
fn::invoke:
function: opentelekomcloud:getImagesImageV2
arguments:
nameRegex: ^Standard_Debian.?
mostRecent: true
Using getImagesImageV2
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 getImagesImageV2(args: GetImagesImageV2Args, opts?: InvokeOptions): Promise<GetImagesImageV2Result>
function getImagesImageV2Output(args: GetImagesImageV2OutputArgs, opts?: InvokeOptions): Output<GetImagesImageV2Result>def get_images_image_v2(most_recent: Optional[bool] = None,
name: Optional[str] = None,
name_regex: Optional[str] = None,
owner: Optional[str] = None,
size_max: Optional[float] = None,
size_min: Optional[float] = None,
sort_direction: Optional[str] = None,
sort_key: Optional[str] = None,
tag: Optional[str] = None,
visibility: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetImagesImageV2Result
def get_images_image_v2_output(most_recent: Optional[pulumi.Input[bool]] = None,
name: Optional[pulumi.Input[str]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
owner: Optional[pulumi.Input[str]] = None,
size_max: Optional[pulumi.Input[float]] = None,
size_min: Optional[pulumi.Input[float]] = None,
sort_direction: Optional[pulumi.Input[str]] = None,
sort_key: Optional[pulumi.Input[str]] = None,
tag: Optional[pulumi.Input[str]] = None,
visibility: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetImagesImageV2Result]func LookupImagesImageV2(ctx *Context, args *LookupImagesImageV2Args, opts ...InvokeOption) (*LookupImagesImageV2Result, error)
func LookupImagesImageV2Output(ctx *Context, args *LookupImagesImageV2OutputArgs, opts ...InvokeOption) LookupImagesImageV2ResultOutput> Note: This function is named LookupImagesImageV2 in the Go SDK.
public static class GetImagesImageV2
{
public static Task<GetImagesImageV2Result> InvokeAsync(GetImagesImageV2Args args, InvokeOptions? opts = null)
public static Output<GetImagesImageV2Result> Invoke(GetImagesImageV2InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetImagesImageV2Result> getImagesImageV2(GetImagesImageV2Args args, InvokeOptions options)
public static Output<GetImagesImageV2Result> getImagesImageV2(GetImagesImageV2Args args, InvokeOptions options)
fn::invoke:
function: opentelekomcloud:index/getImagesImageV2:getImagesImageV2
arguments:
# arguments dictionaryThe following arguments are supported:
- Most
Recent bool - If more than one result is returned, use the most recent image.
- Name string
- The name of the image.
- Name
Regex string - A regex string to apply to the images list. This allows more advanced filtering not supported from the OpenTelekomCloud API. This filtering is done locally on what OpenTelekomCloud returns.
- Owner string
- The owner (UUID) of the image.
- Size
Max double - The maximum size (in bytes) of the image to return.
- Size
Min double - The minimum size (in bytes) of the image to return.
- Sort
Direction string - Order the results in either
ascordesc. - Sort
Key string - Sort images based on a certain key. Defaults to
name. - Tag string
- Search for images with a specific tag.
- Visibility string
- Most
Recent bool - If more than one result is returned, use the most recent image.
- Name string
- The name of the image.
- Name
Regex string - A regex string to apply to the images list. This allows more advanced filtering not supported from the OpenTelekomCloud API. This filtering is done locally on what OpenTelekomCloud returns.
- Owner string
- The owner (UUID) of the image.
- Size
Max float64 - The maximum size (in bytes) of the image to return.
- Size
Min float64 - The minimum size (in bytes) of the image to return.
- Sort
Direction string - Order the results in either
ascordesc. - Sort
Key string - Sort images based on a certain key. Defaults to
name. - Tag string
- Search for images with a specific tag.
- Visibility string
- most
Recent Boolean - If more than one result is returned, use the most recent image.
- name String
- The name of the image.
- name
Regex String - A regex string to apply to the images list. This allows more advanced filtering not supported from the OpenTelekomCloud API. This filtering is done locally on what OpenTelekomCloud returns.
- owner String
- The owner (UUID) of the image.
- size
Max Double - The maximum size (in bytes) of the image to return.
- size
Min Double - The minimum size (in bytes) of the image to return.
- sort
Direction String - Order the results in either
ascordesc. - sort
Key String - Sort images based on a certain key. Defaults to
name. - tag String
- Search for images with a specific tag.
- visibility String
- most
Recent boolean - If more than one result is returned, use the most recent image.
- name string
- The name of the image.
- name
Regex string - A regex string to apply to the images list. This allows more advanced filtering not supported from the OpenTelekomCloud API. This filtering is done locally on what OpenTelekomCloud returns.
- owner string
- The owner (UUID) of the image.
- size
Max number - The maximum size (in bytes) of the image to return.
- size
Min number - The minimum size (in bytes) of the image to return.
- sort
Direction string - Order the results in either
ascordesc. - sort
Key string - Sort images based on a certain key. Defaults to
name. - tag string
- Search for images with a specific tag.
- visibility string
- most_
recent bool - If more than one result is returned, use the most recent image.
- name str
- The name of the image.
- name_
regex str - A regex string to apply to the images list. This allows more advanced filtering not supported from the OpenTelekomCloud API. This filtering is done locally on what OpenTelekomCloud returns.
- owner str
- The owner (UUID) of the image.
- size_
max float - The maximum size (in bytes) of the image to return.
- size_
min float - The minimum size (in bytes) of the image to return.
- sort_
direction str - Order the results in either
ascordesc. - sort_
key str - Sort images based on a certain key. Defaults to
name. - tag str
- Search for images with a specific tag.
- visibility str
- most
Recent Boolean - If more than one result is returned, use the most recent image.
- name String
- The name of the image.
- name
Regex String - A regex string to apply to the images list. This allows more advanced filtering not supported from the OpenTelekomCloud API. This filtering is done locally on what OpenTelekomCloud returns.
- owner String
- The owner (UUID) of the image.
- size
Max Number - The maximum size (in bytes) of the image to return.
- size
Min Number - The minimum size (in bytes) of the image to return.
- sort
Direction String - Order the results in either
ascordesc. - sort
Key String - Sort images based on a certain key. Defaults to
name. - tag String
- Search for images with a specific tag.
- visibility String
getImagesImageV2 Result
The following output properties are available:
- Backup
Id string - Specifies the backup ID.
- Checksum string
- The checksum of the data associated with the image.
- Container
Format string - The format of the image's container.
- Created
At string - The date the image was created.
- Data
Origin string - Specifies the image source.
- Description string
- Specifies the image description.
- Disk
Format string - The format of the image's disk.
- File string
- the trailing path after the glance endpoint that represent the location of the image, or the path to retrieve it.
- Hw
Firmware stringType - Specifies the boot mode. The value can be
biosoruefiif set during image creation. - Id string
- Image
Source stringType - Specifies the image backend storage type. Only
UDSis currently supported. - Image
Type string - Specifies the image type.
- Is
Registered string - Specifies whether the image is available.
- Login
User string - Specifies default image login user.
- Min
Disk double - The minimum amount of disk space required to use the image.
- Min
Ram double - The minimum amount of ram required to use the image.
- Original
Image stringName - Specifies the parent image ID.
- Os
Bit string - Specifies the OS architecture, 32 bit or 64 bit.
- Os
Type string - Specifies the OS type. The value can be Linux, Windows, or Other.
- Os
Version string - Specifies the OS version.
- Platform string
- Specifies the image platform type. The value can be Windows, Ubuntu, Red Hat, SUSE, CentOS, Debian, OpenSUSE, Oracle Linux, Fedora, Other, CoreOS, or EulerOS.
- Protected bool
- Whether the image is protected.
- Schema string
- The path to the JSON-schema that represent the image or image.
- Size
Bytes double - The size of the image (in bytes).
- Status string
- The image status.
- Support
Disk stringIntensive - Specifies whether the image supports disk-intensive ECSs.
- Support
High stringPerformance - Specifies whether the image supports high-performance ECSs.
- Support
Kvm string - Specifies whether the image supports KVM.
- Support
Kvm stringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the KVM platform.
- Support
Kvm stringInfiniband - Specifies whether the image supports ECSs with the InfiniBand NIC on the KVM platform.
- Support
Large stringMemory - Specifies whether the image supports large-memory ECSs.
- Support
Xen string - Specifies whether the image supports Xen.
- Support
Xen stringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the Xen platform.
- Support
Xen stringHana - Specifies whether the image supports HANA ECSs on the Xen platform.
- System
Cmk stringId - Specifies the ID of the key used to encrypt the image.
- List<string>
- See Argument Reference above.
- Updated
At string - The date the image was modified.
- Virtual
Env stringType - Specifies the environment where the image is used.
The value can be
FusionCompute,Ironic,DataImage, orIsoImage. - Most
Recent bool - Name string
- Name
Regex string - Owner string
- Size
Max double - Size
Min double - Sort
Direction string - Sort
Key string - Tag string
- Visibility string
- Backup
Id string - Specifies the backup ID.
- Checksum string
- The checksum of the data associated with the image.
- Container
Format string - The format of the image's container.
- Created
At string - The date the image was created.
- Data
Origin string - Specifies the image source.
- Description string
- Specifies the image description.
- Disk
Format string - The format of the image's disk.
- File string
- the trailing path after the glance endpoint that represent the location of the image, or the path to retrieve it.
- Hw
Firmware stringType - Specifies the boot mode. The value can be
biosoruefiif set during image creation. - Id string
- Image
Source stringType - Specifies the image backend storage type. Only
UDSis currently supported. - Image
Type string - Specifies the image type.
- Is
Registered string - Specifies whether the image is available.
- Login
User string - Specifies default image login user.
- Min
Disk float64 - The minimum amount of disk space required to use the image.
- Min
Ram float64 - The minimum amount of ram required to use the image.
- Original
Image stringName - Specifies the parent image ID.
- Os
Bit string - Specifies the OS architecture, 32 bit or 64 bit.
- Os
Type string - Specifies the OS type. The value can be Linux, Windows, or Other.
- Os
Version string - Specifies the OS version.
- Platform string
- Specifies the image platform type. The value can be Windows, Ubuntu, Red Hat, SUSE, CentOS, Debian, OpenSUSE, Oracle Linux, Fedora, Other, CoreOS, or EulerOS.
- Protected bool
- Whether the image is protected.
- Schema string
- The path to the JSON-schema that represent the image or image.
- Size
Bytes float64 - The size of the image (in bytes).
- Status string
- The image status.
- Support
Disk stringIntensive - Specifies whether the image supports disk-intensive ECSs.
- Support
High stringPerformance - Specifies whether the image supports high-performance ECSs.
- Support
Kvm string - Specifies whether the image supports KVM.
- Support
Kvm stringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the KVM platform.
- Support
Kvm stringInfiniband - Specifies whether the image supports ECSs with the InfiniBand NIC on the KVM platform.
- Support
Large stringMemory - Specifies whether the image supports large-memory ECSs.
- Support
Xen string - Specifies whether the image supports Xen.
- Support
Xen stringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the Xen platform.
- Support
Xen stringHana - Specifies whether the image supports HANA ECSs on the Xen platform.
- System
Cmk stringId - Specifies the ID of the key used to encrypt the image.
- []string
- See Argument Reference above.
- Updated
At string - The date the image was modified.
- Virtual
Env stringType - Specifies the environment where the image is used.
The value can be
FusionCompute,Ironic,DataImage, orIsoImage. - Most
Recent bool - Name string
- Name
Regex string - Owner string
- Size
Max float64 - Size
Min float64 - Sort
Direction string - Sort
Key string - Tag string
- Visibility string
- backup
Id String - Specifies the backup ID.
- checksum String
- The checksum of the data associated with the image.
- container
Format String - The format of the image's container.
- created
At String - The date the image was created.
- data
Origin String - Specifies the image source.
- description String
- Specifies the image description.
- disk
Format String - The format of the image's disk.
- file String
- the trailing path after the glance endpoint that represent the location of the image, or the path to retrieve it.
- hw
Firmware StringType - Specifies the boot mode. The value can be
biosoruefiif set during image creation. - id String
- image
Source StringType - Specifies the image backend storage type. Only
UDSis currently supported. - image
Type String - Specifies the image type.
- is
Registered String - Specifies whether the image is available.
- login
User String - Specifies default image login user.
- min
Disk Double - The minimum amount of disk space required to use the image.
- min
Ram Double - The minimum amount of ram required to use the image.
- original
Image StringName - Specifies the parent image ID.
- os
Bit String - Specifies the OS architecture, 32 bit or 64 bit.
- os
Type String - Specifies the OS type. The value can be Linux, Windows, or Other.
- os
Version String - Specifies the OS version.
- platform String
- Specifies the image platform type. The value can be Windows, Ubuntu, Red Hat, SUSE, CentOS, Debian, OpenSUSE, Oracle Linux, Fedora, Other, CoreOS, or EulerOS.
- protected_ Boolean
- Whether the image is protected.
- schema String
- The path to the JSON-schema that represent the image or image.
- size
Bytes Double - The size of the image (in bytes).
- status String
- The image status.
- support
Disk StringIntensive - Specifies whether the image supports disk-intensive ECSs.
- support
High StringPerformance - Specifies whether the image supports high-performance ECSs.
- support
Kvm String - Specifies whether the image supports KVM.
- support
Kvm StringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the KVM platform.
- support
Kvm StringInfiniband - Specifies whether the image supports ECSs with the InfiniBand NIC on the KVM platform.
- support
Large StringMemory - Specifies whether the image supports large-memory ECSs.
- support
Xen String - Specifies whether the image supports Xen.
- support
Xen StringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the Xen platform.
- support
Xen StringHana - Specifies whether the image supports HANA ECSs on the Xen platform.
- system
Cmk StringId - Specifies the ID of the key used to encrypt the image.
- List<String>
- See Argument Reference above.
- updated
At String - The date the image was modified.
- virtual
Env StringType - Specifies the environment where the image is used.
The value can be
FusionCompute,Ironic,DataImage, orIsoImage. - most
Recent Boolean - name String
- name
Regex String - owner String
- size
Max Double - size
Min Double - sort
Direction String - sort
Key String - tag String
- visibility String
- backup
Id string - Specifies the backup ID.
- checksum string
- The checksum of the data associated with the image.
- container
Format string - The format of the image's container.
- created
At string - The date the image was created.
- data
Origin string - Specifies the image source.
- description string
- Specifies the image description.
- disk
Format string - The format of the image's disk.
- file string
- the trailing path after the glance endpoint that represent the location of the image, or the path to retrieve it.
- hw
Firmware stringType - Specifies the boot mode. The value can be
biosoruefiif set during image creation. - id string
- image
Source stringType - Specifies the image backend storage type. Only
UDSis currently supported. - image
Type string - Specifies the image type.
- is
Registered string - Specifies whether the image is available.
- login
User string - Specifies default image login user.
- min
Disk number - The minimum amount of disk space required to use the image.
- min
Ram number - The minimum amount of ram required to use the image.
- original
Image stringName - Specifies the parent image ID.
- os
Bit string - Specifies the OS architecture, 32 bit or 64 bit.
- os
Type string - Specifies the OS type. The value can be Linux, Windows, or Other.
- os
Version string - Specifies the OS version.
- platform string
- Specifies the image platform type. The value can be Windows, Ubuntu, Red Hat, SUSE, CentOS, Debian, OpenSUSE, Oracle Linux, Fedora, Other, CoreOS, or EulerOS.
- protected boolean
- Whether the image is protected.
- schema string
- The path to the JSON-schema that represent the image or image.
- size
Bytes number - The size of the image (in bytes).
- status string
- The image status.
- support
Disk stringIntensive - Specifies whether the image supports disk-intensive ECSs.
- support
High stringPerformance - Specifies whether the image supports high-performance ECSs.
- support
Kvm string - Specifies whether the image supports KVM.
- support
Kvm stringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the KVM platform.
- support
Kvm stringInfiniband - Specifies whether the image supports ECSs with the InfiniBand NIC on the KVM platform.
- support
Large stringMemory - Specifies whether the image supports large-memory ECSs.
- support
Xen string - Specifies whether the image supports Xen.
- support
Xen stringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the Xen platform.
- support
Xen stringHana - Specifies whether the image supports HANA ECSs on the Xen platform.
- system
Cmk stringId - Specifies the ID of the key used to encrypt the image.
- string[]
- See Argument Reference above.
- updated
At string - The date the image was modified.
- virtual
Env stringType - Specifies the environment where the image is used.
The value can be
FusionCompute,Ironic,DataImage, orIsoImage. - most
Recent boolean - name string
- name
Regex string - owner string
- size
Max number - size
Min number - sort
Direction string - sort
Key string - tag string
- visibility string
- backup_
id str - Specifies the backup ID.
- checksum str
- The checksum of the data associated with the image.
- container_
format str - The format of the image's container.
- created_
at str - The date the image was created.
- data_
origin str - Specifies the image source.
- description str
- Specifies the image description.
- disk_
format str - The format of the image's disk.
- file str
- the trailing path after the glance endpoint that represent the location of the image, or the path to retrieve it.
- hw_
firmware_ strtype - Specifies the boot mode. The value can be
biosoruefiif set during image creation. - id str
- image_
source_ strtype - Specifies the image backend storage type. Only
UDSis currently supported. - image_
type str - Specifies the image type.
- is_
registered str - Specifies whether the image is available.
- login_
user str - Specifies default image login user.
- min_
disk float - The minimum amount of disk space required to use the image.
- min_
ram float - The minimum amount of ram required to use the image.
- original_
image_ strname - Specifies the parent image ID.
- os_
bit str - Specifies the OS architecture, 32 bit or 64 bit.
- os_
type str - Specifies the OS type. The value can be Linux, Windows, or Other.
- os_
version str - Specifies the OS version.
- platform str
- Specifies the image platform type. The value can be Windows, Ubuntu, Red Hat, SUSE, CentOS, Debian, OpenSUSE, Oracle Linux, Fedora, Other, CoreOS, or EulerOS.
- protected bool
- Whether the image is protected.
- schema str
- The path to the JSON-schema that represent the image or image.
- size_
bytes float - The size of the image (in bytes).
- status str
- The image status.
- support_
disk_ strintensive - Specifies whether the image supports disk-intensive ECSs.
- support_
high_ strperformance - Specifies whether the image supports high-performance ECSs.
- support_
kvm str - Specifies whether the image supports KVM.
- support_
kvm_ strgpu_ type - Specifies whether the image supports GPU-accelerated ECSs on the KVM platform.
- support_
kvm_ strinfiniband - Specifies whether the image supports ECSs with the InfiniBand NIC on the KVM platform.
- support_
large_ strmemory - Specifies whether the image supports large-memory ECSs.
- support_
xen str - Specifies whether the image supports Xen.
- support_
xen_ strgpu_ type - Specifies whether the image supports GPU-accelerated ECSs on the Xen platform.
- support_
xen_ strhana - Specifies whether the image supports HANA ECSs on the Xen platform.
- system_
cmk_ strid - Specifies the ID of the key used to encrypt the image.
- Sequence[str]
- See Argument Reference above.
- updated_
at str - The date the image was modified.
- virtual_
env_ strtype - Specifies the environment where the image is used.
The value can be
FusionCompute,Ironic,DataImage, orIsoImage. - most_
recent bool - name str
- name_
regex str - owner str
- size_
max float - size_
min float - sort_
direction str - sort_
key str - tag str
- visibility str
- backup
Id String - Specifies the backup ID.
- checksum String
- The checksum of the data associated with the image.
- container
Format String - The format of the image's container.
- created
At String - The date the image was created.
- data
Origin String - Specifies the image source.
- description String
- Specifies the image description.
- disk
Format String - The format of the image's disk.
- file String
- the trailing path after the glance endpoint that represent the location of the image, or the path to retrieve it.
- hw
Firmware StringType - Specifies the boot mode. The value can be
biosoruefiif set during image creation. - id String
- image
Source StringType - Specifies the image backend storage type. Only
UDSis currently supported. - image
Type String - Specifies the image type.
- is
Registered String - Specifies whether the image is available.
- login
User String - Specifies default image login user.
- min
Disk Number - The minimum amount of disk space required to use the image.
- min
Ram Number - The minimum amount of ram required to use the image.
- original
Image StringName - Specifies the parent image ID.
- os
Bit String - Specifies the OS architecture, 32 bit or 64 bit.
- os
Type String - Specifies the OS type. The value can be Linux, Windows, or Other.
- os
Version String - Specifies the OS version.
- platform String
- Specifies the image platform type. The value can be Windows, Ubuntu, Red Hat, SUSE, CentOS, Debian, OpenSUSE, Oracle Linux, Fedora, Other, CoreOS, or EulerOS.
- protected Boolean
- Whether the image is protected.
- schema String
- The path to the JSON-schema that represent the image or image.
- size
Bytes Number - The size of the image (in bytes).
- status String
- The image status.
- support
Disk StringIntensive - Specifies whether the image supports disk-intensive ECSs.
- support
High StringPerformance - Specifies whether the image supports high-performance ECSs.
- support
Kvm String - Specifies whether the image supports KVM.
- support
Kvm StringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the KVM platform.
- support
Kvm StringInfiniband - Specifies whether the image supports ECSs with the InfiniBand NIC on the KVM platform.
- support
Large StringMemory - Specifies whether the image supports large-memory ECSs.
- support
Xen String - Specifies whether the image supports Xen.
- support
Xen StringGpu Type - Specifies whether the image supports GPU-accelerated ECSs on the Xen platform.
- support
Xen StringHana - Specifies whether the image supports HANA ECSs on the Xen platform.
- system
Cmk StringId - Specifies the ID of the key used to encrypt the image.
- List<String>
- See Argument Reference above.
- updated
At String - The date the image was modified.
- virtual
Env StringType - Specifies the environment where the image is used.
The value can be
FusionCompute,Ironic,DataImage, orIsoImage. - most
Recent Boolean - name String
- name
Regex String - owner String
- size
Max Number - size
Min Number - sort
Direction String - sort
Key String - tag String
- visibility String
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloudTerraform Provider.
Viewing docs for opentelekomcloud 1.36.60
published on Thursday, Feb 26, 2026 by opentelekomcloud
published on Thursday, Feb 26, 2026 by opentelekomcloud
