tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
tencentcloud.getImages
Start a Neo task
Explain and create a tencentcloud.getImages resource
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
Use this data source to query images.
Example Usage
Query all images
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getImages({});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_images()
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetImages(ctx, &tencentcloud.GetImagesArgs{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetImages.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetImagesArgs;
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 = TencentcloudFunctions.getImages(GetImagesArgs.builder()
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getImages
arguments: {}
Query images by image ID
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getImages({
imageId: "img-9qrfy1xt",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_images(image_id="img-9qrfy1xt")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetImages(ctx, &tencentcloud.GetImagesArgs{
ImageId: pulumi.StringRef("img-9qrfy1xt"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetImages.Invoke(new()
{
ImageId = "img-9qrfy1xt",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetImagesArgs;
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 = TencentcloudFunctions.getImages(GetImagesArgs.builder()
.imageId("img-9qrfy1xt")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getImages
arguments:
imageId: img-9qrfy1xt
Query images by os name
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getImages({
osName: "TencentOS Server 3.2 (Final)",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_images(os_name="TencentOS Server 3.2 (Final)")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetImages(ctx, &tencentcloud.GetImagesArgs{
OsName: pulumi.StringRef("TencentOS Server 3.2 (Final)"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetImages.Invoke(new()
{
OsName = "TencentOS Server 3.2 (Final)",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetImagesArgs;
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 = TencentcloudFunctions.getImages(GetImagesArgs.builder()
.osName("TencentOS Server 3.2 (Final)")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getImages
arguments:
osName: TencentOS Server 3.2 (Final)
Query images by image name regex
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getImages({
imageNameRegex: "^TencentOS",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_images(image_name_regex="^TencentOS")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetImages(ctx, &tencentcloud.GetImagesArgs{
ImageNameRegex: pulumi.StringRef("^TencentOS"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetImages.Invoke(new()
{
ImageNameRegex = "^TencentOS",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetImagesArgs;
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 = TencentcloudFunctions.getImages(GetImagesArgs.builder()
.imageNameRegex("^TencentOS")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getImages
arguments:
imageNameRegex: ^TencentOS
Query images by image type
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getImages({
imageTypes: ["PUBLIC_IMAGE"],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_images(image_types=["PUBLIC_IMAGE"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetImages(ctx, &tencentcloud.GetImagesArgs{
ImageTypes: []string{
"PUBLIC_IMAGE",
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetImages.Invoke(new()
{
ImageTypes = new[]
{
"PUBLIC_IMAGE",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetImagesArgs;
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 = TencentcloudFunctions.getImages(GetImagesArgs.builder()
.imageTypes("PUBLIC_IMAGE")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getImages
arguments:
imageTypes:
- PUBLIC_IMAGE
Query images by instance type
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getImages({
instanceType: "S1.SMALL1",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_images(instance_type="S1.SMALL1")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetImages(ctx, &tencentcloud.GetImagesArgs{
InstanceType: pulumi.StringRef("S1.SMALL1"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetImages.Invoke(new()
{
InstanceType = "S1.SMALL1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetImagesArgs;
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 = TencentcloudFunctions.getImages(GetImagesArgs.builder()
.instanceType("S1.SMALL1")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getImages
arguments:
instanceType: S1.SMALL1
Using getImages
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 getImages(args: GetImagesArgs, opts?: InvokeOptions): Promise<GetImagesResult>
function getImagesOutput(args: GetImagesOutputArgs, opts?: InvokeOptions): Output<GetImagesResult>def get_images(id: Optional[str] = None,
image_id: Optional[str] = None,
image_name_regex: Optional[str] = None,
image_types: Optional[Sequence[str]] = None,
instance_type: Optional[str] = None,
os_name: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetImagesResult
def get_images_output(id: Optional[pulumi.Input[str]] = None,
image_id: Optional[pulumi.Input[str]] = None,
image_name_regex: Optional[pulumi.Input[str]] = None,
image_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
instance_type: Optional[pulumi.Input[str]] = None,
os_name: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetImagesResult]func GetImages(ctx *Context, args *GetImagesArgs, opts ...InvokeOption) (*GetImagesResult, error)
func GetImagesOutput(ctx *Context, args *GetImagesOutputArgs, opts ...InvokeOption) GetImagesResultOutput> Note: This function is named GetImages in the Go SDK.
public static class GetImages
{
public static Task<GetImagesResult> InvokeAsync(GetImagesArgs args, InvokeOptions? opts = null)
public static Output<GetImagesResult> Invoke(GetImagesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetImagesResult> getImages(GetImagesArgs args, InvokeOptions options)
public static Output<GetImagesResult> getImages(GetImagesArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getImages:getImages
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- Image
Id string - ID of the image to be queried.
- Image
Name stringRegex - A regex string to apply to the image list returned by TencentCloud, conflict with 'os_name'. NOTE: it is not wildcard, should look like
image_name_regex </span>= "^CentOS\s+6\.8\s+64\w*". - Image
Types List<string> - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- Instance
Type string - Instance type, such as
S1.SMALL1. - Os
Name string - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- Result
Output stringFile - Used to save results.
- Id string
- Image
Id string - ID of the image to be queried.
- Image
Name stringRegex - A regex string to apply to the image list returned by TencentCloud, conflict with 'os_name'. NOTE: it is not wildcard, should look like
image_name_regex </span>= "^CentOS\s+6\.8\s+64\w*". - Image
Types []string - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- Instance
Type string - Instance type, such as
S1.SMALL1. - Os
Name string - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- Result
Output stringFile - Used to save results.
- id String
- image
Id String - ID of the image to be queried.
- image
Name StringRegex - A regex string to apply to the image list returned by TencentCloud, conflict with 'os_name'. NOTE: it is not wildcard, should look like
image_name_regex </span>= "^CentOS\s+6\.8\s+64\w*". - image
Types List<String> - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- instance
Type String - Instance type, such as
S1.SMALL1. - os
Name String - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- result
Output StringFile - Used to save results.
- id string
- image
Id string - ID of the image to be queried.
- image
Name stringRegex - A regex string to apply to the image list returned by TencentCloud, conflict with 'os_name'. NOTE: it is not wildcard, should look like
image_name_regex </span>= "^CentOS\s+6\.8\s+64\w*". - image
Types string[] - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- instance
Type string - Instance type, such as
S1.SMALL1. - os
Name string - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- result
Output stringFile - Used to save results.
- id str
- image_
id str - ID of the image to be queried.
- image_
name_ strregex - A regex string to apply to the image list returned by TencentCloud, conflict with 'os_name'. NOTE: it is not wildcard, should look like
image_name_regex </span>= "^CentOS\s+6\.8\s+64\w*". - image_
types Sequence[str] - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- instance_
type str - Instance type, such as
S1.SMALL1. - os_
name str - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- result_
output_ strfile - Used to save results.
- id String
- image
Id String - ID of the image to be queried.
- image
Name StringRegex - A regex string to apply to the image list returned by TencentCloud, conflict with 'os_name'. NOTE: it is not wildcard, should look like
image_name_regex </span>= "^CentOS\s+6\.8\s+64\w*". - image
Types List<String> - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- instance
Type String - Instance type, such as
S1.SMALL1. - os
Name String - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- result
Output StringFile - Used to save results.
getImages Result
The following output properties are available:
- Id string
- Images
List<Get
Images Image> - An information list of image. Each element contains the following attributes:
- Image
Id string - ID of the image.
- Image
Name stringRegex - Image
Types List<string> - Type of the image.
- Instance
Type string - Os
Name string - OS name of the image.
- Result
Output stringFile
- Id string
- Images
[]Get
Images Image - An information list of image. Each element contains the following attributes:
- Image
Id string - ID of the image.
- Image
Name stringRegex - Image
Types []string - Type of the image.
- Instance
Type string - Os
Name string - OS name of the image.
- Result
Output stringFile
- id String
- images
List<Get
Images Image> - An information list of image. Each element contains the following attributes:
- image
Id String - ID of the image.
- image
Name StringRegex - image
Types List<String> - Type of the image.
- instance
Type String - os
Name String - OS name of the image.
- result
Output StringFile
- id string
- images
Get
Images Image[] - An information list of image. Each element contains the following attributes:
- image
Id string - ID of the image.
- image
Name stringRegex - image
Types string[] - Type of the image.
- instance
Type string - os
Name string - OS name of the image.
- result
Output stringFile
- id str
- images
Sequence[Get
Images Image] - An information list of image. Each element contains the following attributes:
- image_
id str - ID of the image.
- image_
name_ strregex - image_
types Sequence[str] - Type of the image.
- instance_
type str - os_
name str - OS name of the image.
- result_
output_ strfile
- id String
- images List<Property Map>
- An information list of image. Each element contains the following attributes:
- image
Id String - ID of the image.
- image
Name StringRegex - image
Types List<String> - Type of the image.
- instance
Type String - os
Name String - OS name of the image.
- result
Output StringFile
Supporting Types
GetImagesImage
- Architecture string
- Architecture of the image.
- Created
Time string - Created time of the image.
- Image
Creator string - Image creator of the image.
- Image
Description string - Description of the image.
- Image
Id string - ID of the image to be queried.
- Image
Name string - Name of the image.
- Image
Size double - Size of the image.
- Image
Source string - Image source of the image.
- Image
State string - State of the image.
- Image
Type string - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- Os
Name string - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- Platform string
- Platform of the image.
- Snapshots
List<Get
Images Image Snapshot> - List of snapshot details.
- Support
Cloud boolInit - Whether support cloud-init.
- Sync
Percent double - Sync percent of the image.
- Architecture string
- Architecture of the image.
- Created
Time string - Created time of the image.
- Image
Creator string - Image creator of the image.
- Image
Description string - Description of the image.
- Image
Id string - ID of the image to be queried.
- Image
Name string - Name of the image.
- Image
Size float64 - Size of the image.
- Image
Source string - Image source of the image.
- Image
State string - State of the image.
- Image
Type string - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- Os
Name string - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- Platform string
- Platform of the image.
- Snapshots
[]Get
Images Image Snapshot - List of snapshot details.
- Support
Cloud boolInit - Whether support cloud-init.
- Sync
Percent float64 - Sync percent of the image.
- architecture String
- Architecture of the image.
- created
Time String - Created time of the image.
- image
Creator String - Image creator of the image.
- image
Description String - Description of the image.
- image
Id String - ID of the image to be queried.
- image
Name String - Name of the image.
- image
Size Double - Size of the image.
- image
Source String - Image source of the image.
- image
State String - State of the image.
- image
Type String - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- os
Name String - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- platform String
- Platform of the image.
- snapshots
List<Get
Images Image Snapshot> - List of snapshot details.
- support
Cloud BooleanInit - Whether support cloud-init.
- sync
Percent Double - Sync percent of the image.
- architecture string
- Architecture of the image.
- created
Time string - Created time of the image.
- image
Creator string - Image creator of the image.
- image
Description string - Description of the image.
- image
Id string - ID of the image to be queried.
- image
Name string - Name of the image.
- image
Size number - Size of the image.
- image
Source string - Image source of the image.
- image
State string - State of the image.
- image
Type string - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- os
Name string - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- platform string
- Platform of the image.
- snapshots
Get
Images Image Snapshot[] - List of snapshot details.
- support
Cloud booleanInit - Whether support cloud-init.
- sync
Percent number - Sync percent of the image.
- architecture str
- Architecture of the image.
- created_
time str - Created time of the image.
- image_
creator str - Image creator of the image.
- image_
description str - Description of the image.
- image_
id str - ID of the image to be queried.
- image_
name str - Name of the image.
- image_
size float - Size of the image.
- image_
source str - Image source of the image.
- image_
state str - State of the image.
- image_
type str - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- os_
name str - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- platform str
- Platform of the image.
- snapshots
Sequence[Get
Images Image Snapshot] - List of snapshot details.
- support_
cloud_ boolinit - Whether support cloud-init.
- sync_
percent float - Sync percent of the image.
- architecture String
- Architecture of the image.
- created
Time String - Created time of the image.
- image
Creator String - Image creator of the image.
- image
Description String - Description of the image.
- image
Id String - ID of the image to be queried.
- image
Name String - Name of the image.
- image
Size Number - Size of the image.
- image
Source String - Image source of the image.
- image
State String - State of the image.
- image
Type String - A list of the image type to be queried. Valid values: 'PUBLIC_IMAGE', 'PRIVATE_IMAGE', 'SHARED_IMAGE', 'MARKET_IMAGE'.
- os
Name String - A string to apply with fuzzy match to the os_name attribute on the image list returned by TencentCloud, conflict with 'image_name_regex'.
- platform String
- Platform of the image.
- snapshots List<Property Map>
- List of snapshot details.
- support
Cloud BooleanInit - Whether support cloud-init.
- sync
Percent Number - Sync percent of the image.
GetImagesImageSnapshot
- Disk
Size double - Size of the cloud disk used to create the snapshot; unit: GB.
- Disk
Usage string - Type of the cloud disk used to create the snapshot.
- Snapshot
Id string - Snapshot ID.
- Snapshot
Name string - Snapshot name, the user-defined snapshot alias.
- Disk
Size float64 - Size of the cloud disk used to create the snapshot; unit: GB.
- Disk
Usage string - Type of the cloud disk used to create the snapshot.
- Snapshot
Id string - Snapshot ID.
- Snapshot
Name string - Snapshot name, the user-defined snapshot alias.
- disk
Size Double - Size of the cloud disk used to create the snapshot; unit: GB.
- disk
Usage String - Type of the cloud disk used to create the snapshot.
- snapshot
Id String - Snapshot ID.
- snapshot
Name String - Snapshot name, the user-defined snapshot alias.
- disk
Size number - Size of the cloud disk used to create the snapshot; unit: GB.
- disk
Usage string - Type of the cloud disk used to create the snapshot.
- snapshot
Id string - Snapshot ID.
- snapshot
Name string - Snapshot name, the user-defined snapshot alias.
- disk_
size float - Size of the cloud disk used to create the snapshot; unit: GB.
- disk_
usage str - Type of the cloud disk used to create the snapshot.
- snapshot_
id str - Snapshot ID.
- snapshot_
name str - Snapshot name, the user-defined snapshot alias.
- disk
Size Number - Size of the cloud disk used to create the snapshot; unit: GB.
- disk
Usage String - Type of the cloud disk used to create the snapshot.
- snapshot
Id String - Snapshot ID.
- snapshot
Name String - Snapshot name, the user-defined snapshot alias.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
