tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
tencentcloud.getCwpMachinesSimple
Start a Neo task
Explain and create a tencentcloud.getCwpMachinesSimple resource
tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
Use this data source to query detailed information of cwp machines_simple
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getCwpMachinesSimple({
machineType: "CVM",
machineRegion: "ap-guangzhou",
projectIds: [
1210293,
1157652,
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_cwp_machines_simple(machine_type="CVM",
machine_region="ap-guangzhou",
project_ids=[
1210293,
1157652,
])
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.GetCwpMachinesSimple(ctx, &tencentcloud.GetCwpMachinesSimpleArgs{
MachineType: "CVM",
MachineRegion: "ap-guangzhou",
ProjectIds: []float64{
1210293,
1157652,
},
}, 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.GetCwpMachinesSimple.Invoke(new()
{
MachineType = "CVM",
MachineRegion = "ap-guangzhou",
ProjectIds = new[]
{
1210293,
1157652,
},
});
});
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.GetCwpMachinesSimpleArgs;
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.getCwpMachinesSimple(GetCwpMachinesSimpleArgs.builder()
.machineType("CVM")
.machineRegion("ap-guangzhou")
.projectIds(
1210293,
1157652)
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getCwpMachinesSimple
arguments:
machineType: CVM
machineRegion: ap-guangzhou
projectIds:
- 1.210293e+06
- 1.157652e+06
Query by Keyword filter
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getCwpMachinesSimple({
machineType: "CVM",
machineRegion: "ap-guangzhou",
projectIds: [0],
filters: [{
name: "Keywords",
values: ["tf_example"],
exactMatch: true,
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_cwp_machines_simple(machine_type="CVM",
machine_region="ap-guangzhou",
project_ids=[0],
filters=[{
"name": "Keywords",
"values": ["tf_example"],
"exact_match": True,
}])
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.GetCwpMachinesSimple(ctx, &tencentcloud.GetCwpMachinesSimpleArgs{
MachineType: "CVM",
MachineRegion: "ap-guangzhou",
ProjectIds: []float64{
0,
},
Filters: []tencentcloud.GetCwpMachinesSimpleFilter{
{
Name: "Keywords",
Values: []string{
"tf_example",
},
ExactMatch: pulumi.BoolRef(true),
},
},
}, 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.GetCwpMachinesSimple.Invoke(new()
{
MachineType = "CVM",
MachineRegion = "ap-guangzhou",
ProjectIds = new[]
{
0,
},
Filters = new[]
{
new Tencentcloud.Inputs.GetCwpMachinesSimpleFilterInputArgs
{
Name = "Keywords",
Values = new[]
{
"tf_example",
},
ExactMatch = true,
},
},
});
});
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.GetCwpMachinesSimpleArgs;
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.getCwpMachinesSimple(GetCwpMachinesSimpleArgs.builder()
.machineType("CVM")
.machineRegion("ap-guangzhou")
.projectIds(0)
.filters(GetCwpMachinesSimpleFilterArgs.builder()
.name("Keywords")
.values("tf_example")
.exactMatch(true)
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getCwpMachinesSimple
arguments:
machineType: CVM
machineRegion: ap-guangzhou
projectIds:
- 0
filters:
- name: Keywords
values:
- tf_example
exactMatch: true
Query by Version filter
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getCwpMachinesSimple({
machineType: "CVM",
machineRegion: "ap-guangzhou",
projectIds: [0],
filters: [{
name: "Version",
values: ["BASIC_VERSION"],
exactMatch: true,
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_cwp_machines_simple(machine_type="CVM",
machine_region="ap-guangzhou",
project_ids=[0],
filters=[{
"name": "Version",
"values": ["BASIC_VERSION"],
"exact_match": True,
}])
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.GetCwpMachinesSimple(ctx, &tencentcloud.GetCwpMachinesSimpleArgs{
MachineType: "CVM",
MachineRegion: "ap-guangzhou",
ProjectIds: []float64{
0,
},
Filters: []tencentcloud.GetCwpMachinesSimpleFilter{
{
Name: "Version",
Values: []string{
"BASIC_VERSION",
},
ExactMatch: pulumi.BoolRef(true),
},
},
}, 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.GetCwpMachinesSimple.Invoke(new()
{
MachineType = "CVM",
MachineRegion = "ap-guangzhou",
ProjectIds = new[]
{
0,
},
Filters = new[]
{
new Tencentcloud.Inputs.GetCwpMachinesSimpleFilterInputArgs
{
Name = "Version",
Values = new[]
{
"BASIC_VERSION",
},
ExactMatch = true,
},
},
});
});
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.GetCwpMachinesSimpleArgs;
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.getCwpMachinesSimple(GetCwpMachinesSimpleArgs.builder()
.machineType("CVM")
.machineRegion("ap-guangzhou")
.projectIds(0)
.filters(GetCwpMachinesSimpleFilterArgs.builder()
.name("Version")
.values("BASIC_VERSION")
.exactMatch(true)
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getCwpMachinesSimple
arguments:
machineType: CVM
machineRegion: ap-guangzhou
projectIds:
- 0
filters:
- name: Version
values:
- BASIC_VERSION
exactMatch: true
Query by TagId filter
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getCwpMachinesSimple({
machineType: "ALL",
machineRegion: "all-regions",
filters: [{
name: "TagId",
values: ["13771"],
exactMatch: true,
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_cwp_machines_simple(machine_type="ALL",
machine_region="all-regions",
filters=[{
"name": "TagId",
"values": ["13771"],
"exact_match": True,
}])
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.GetCwpMachinesSimple(ctx, &tencentcloud.GetCwpMachinesSimpleArgs{
MachineType: "ALL",
MachineRegion: "all-regions",
Filters: []tencentcloud.GetCwpMachinesSimpleFilter{
{
Name: "TagId",
Values: []string{
"13771",
},
ExactMatch: pulumi.BoolRef(true),
},
},
}, 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.GetCwpMachinesSimple.Invoke(new()
{
MachineType = "ALL",
MachineRegion = "all-regions",
Filters = new[]
{
new Tencentcloud.Inputs.GetCwpMachinesSimpleFilterInputArgs
{
Name = "TagId",
Values = new[]
{
"13771",
},
ExactMatch = true,
},
},
});
});
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.GetCwpMachinesSimpleArgs;
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.getCwpMachinesSimple(GetCwpMachinesSimpleArgs.builder()
.machineType("ALL")
.machineRegion("all-regions")
.filters(GetCwpMachinesSimpleFilterArgs.builder()
.name("TagId")
.values("13771")
.exactMatch(true)
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getCwpMachinesSimple
arguments:
machineType: ALL
machineRegion: all-regions
filters:
- name: TagId
values:
- '13771'
exactMatch: true
Using getCwpMachinesSimple
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 getCwpMachinesSimple(args: GetCwpMachinesSimpleArgs, opts?: InvokeOptions): Promise<GetCwpMachinesSimpleResult>
function getCwpMachinesSimpleOutput(args: GetCwpMachinesSimpleOutputArgs, opts?: InvokeOptions): Output<GetCwpMachinesSimpleResult>def get_cwp_machines_simple(filters: Optional[Sequence[GetCwpMachinesSimpleFilter]] = None,
id: Optional[str] = None,
machine_region: Optional[str] = None,
machine_type: Optional[str] = None,
project_ids: Optional[Sequence[float]] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCwpMachinesSimpleResult
def get_cwp_machines_simple_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetCwpMachinesSimpleFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
machine_region: Optional[pulumi.Input[str]] = None,
machine_type: Optional[pulumi.Input[str]] = None,
project_ids: Optional[pulumi.Input[Sequence[pulumi.Input[float]]]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCwpMachinesSimpleResult]func GetCwpMachinesSimple(ctx *Context, args *GetCwpMachinesSimpleArgs, opts ...InvokeOption) (*GetCwpMachinesSimpleResult, error)
func GetCwpMachinesSimpleOutput(ctx *Context, args *GetCwpMachinesSimpleOutputArgs, opts ...InvokeOption) GetCwpMachinesSimpleResultOutput> Note: This function is named GetCwpMachinesSimple in the Go SDK.
public static class GetCwpMachinesSimple
{
public static Task<GetCwpMachinesSimpleResult> InvokeAsync(GetCwpMachinesSimpleArgs args, InvokeOptions? opts = null)
public static Output<GetCwpMachinesSimpleResult> Invoke(GetCwpMachinesSimpleInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCwpMachinesSimpleResult> getCwpMachinesSimple(GetCwpMachinesSimpleArgs args, InvokeOptions options)
public static Output<GetCwpMachinesSimpleResult> getCwpMachinesSimple(GetCwpMachinesSimpleArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getCwpMachinesSimple:getCwpMachinesSimple
arguments:
# arguments dictionaryThe following arguments are supported:
- Machine
Region string - The area where the machine belongs,Such as: ap-guangzhou, ap-shanghai, all-regions: All server region types.
- Machine
Type string - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- Filters
List<Get
Cwp Machines Simple Filter> - filter list.
- Id string
- Project
Ids List<double> - Project id list.
- Result
Output stringFile - Used to save results.
- Machine
Region string - The area where the machine belongs,Such as: ap-guangzhou, ap-shanghai, all-regions: All server region types.
- Machine
Type string - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- Filters
[]Get
Cwp Machines Simple Filter - filter list.
- Id string
- Project
Ids []float64 - Project id list.
- Result
Output stringFile - Used to save results.
- machine
Region String - The area where the machine belongs,Such as: ap-guangzhou, ap-shanghai, all-regions: All server region types.
- machine
Type String - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- filters
List<Get
Cwp Machines Simple Filter> - filter list.
- id String
- project
Ids List<Double> - Project id list.
- result
Output StringFile - Used to save results.
- machine
Region string - The area where the machine belongs,Such as: ap-guangzhou, ap-shanghai, all-regions: All server region types.
- machine
Type string - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- filters
Get
Cwp Machines Simple Filter[] - filter list.
- id string
- project
Ids number[] - Project id list.
- result
Output stringFile - Used to save results.
- machine_
region str - The area where the machine belongs,Such as: ap-guangzhou, ap-shanghai, all-regions: All server region types.
- machine_
type str - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- filters
Sequence[Get
Cwp Machines Simple Filter] - filter list.
- id str
- project_
ids Sequence[float] - Project id list.
- result_
output_ strfile - Used to save results.
- machine
Region String - The area where the machine belongs,Such as: ap-guangzhou, ap-shanghai, all-regions: All server region types.
- machine
Type String - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- filters List<Property Map>
- filter list.
- id String
- project
Ids List<Number> - Project id list.
- result
Output StringFile - Used to save results.
getCwpMachinesSimple Result
The following output properties are available:
- Id string
- Machine
Region string - Machine
Type string - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- Machines
List<Get
Cwp Machines Simple Machine> - Machine list.
- Filters
List<Get
Cwp Machines Simple Filter> - Project
Ids List<double> - Result
Output stringFile
- Id string
- Machine
Region string - Machine
Type string - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- Machines
[]Get
Cwp Machines Simple Machine - Machine list.
- Filters
[]Get
Cwp Machines Simple Filter - Project
Ids []float64 - Result
Output stringFile
- id String
- machine
Region String - machine
Type String - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- machines
List<Get
Cwp Machines Simple Machine> - Machine list.
- filters
List<Get
Cwp Machines Simple Filter> - project
Ids List<Double> - result
Output StringFile
- id string
- machine
Region string - machine
Type string - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- machines
Get
Cwp Machines Simple Machine[] - Machine list.
- filters
Get
Cwp Machines Simple Filter[] - project
Ids number[] - result
Output stringFile
- id str
- machine_
region str - machine_
type str - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- machines
Sequence[Get
Cwp Machines Simple Machine] - Machine list.
- filters
Sequence[Get
Cwp Machines Simple Filter] - project_
ids Sequence[float] - result_
output_ strfile
- id String
- machine
Region String - machine
Type String - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- machines List<Property Map>
- Machine list.
- filters List<Property Map>
- project
Ids List<Number> - result
Output StringFile
Supporting Types
GetCwpMachinesSimpleFilter
- Name string
- Only supported Keywords, Version and TagId.
- Values List<string>
- If
nameisKeywords: enter keyword query; IfnameisVersion: enter PRO_VERSION: Professional Edition | BASIC_VERSION: Basic | Flagship: Flagship | ProtectedMachines: Professional+Flagship | UnFlagship: Non Flagship | PRO_POST_PAY: Professional Edition Pay by Volume | PRO_PRE_PAY: Professional Edition Monthly Package query; IfnameisTagId: enter tag ID query. - Exact
Match bool - exact match. true or false.
- Name string
- Only supported Keywords, Version and TagId.
- Values []string
- If
nameisKeywords: enter keyword query; IfnameisVersion: enter PRO_VERSION: Professional Edition | BASIC_VERSION: Basic | Flagship: Flagship | ProtectedMachines: Professional+Flagship | UnFlagship: Non Flagship | PRO_POST_PAY: Professional Edition Pay by Volume | PRO_PRE_PAY: Professional Edition Monthly Package query; IfnameisTagId: enter tag ID query. - Exact
Match bool - exact match. true or false.
- name String
- Only supported Keywords, Version and TagId.
- values List<String>
- If
nameisKeywords: enter keyword query; IfnameisVersion: enter PRO_VERSION: Professional Edition | BASIC_VERSION: Basic | Flagship: Flagship | ProtectedMachines: Professional+Flagship | UnFlagship: Non Flagship | PRO_POST_PAY: Professional Edition Pay by Volume | PRO_PRE_PAY: Professional Edition Monthly Package query; IfnameisTagId: enter tag ID query. - exact
Match Boolean - exact match. true or false.
- name string
- Only supported Keywords, Version and TagId.
- values string[]
- If
nameisKeywords: enter keyword query; IfnameisVersion: enter PRO_VERSION: Professional Edition | BASIC_VERSION: Basic | Flagship: Flagship | ProtectedMachines: Professional+Flagship | UnFlagship: Non Flagship | PRO_POST_PAY: Professional Edition Pay by Volume | PRO_PRE_PAY: Professional Edition Monthly Package query; IfnameisTagId: enter tag ID query. - exact
Match boolean - exact match. true or false.
- name str
- Only supported Keywords, Version and TagId.
- values Sequence[str]
- If
nameisKeywords: enter keyword query; IfnameisVersion: enter PRO_VERSION: Professional Edition | BASIC_VERSION: Basic | Flagship: Flagship | ProtectedMachines: Professional+Flagship | UnFlagship: Non Flagship | PRO_POST_PAY: Professional Edition Pay by Volume | PRO_PRE_PAY: Professional Edition Monthly Package query; IfnameisTagId: enter tag ID query. - exact_
match bool - exact match. true or false.
- name String
- Only supported Keywords, Version and TagId.
- values List<String>
- If
nameisKeywords: enter keyword query; IfnameisVersion: enter PRO_VERSION: Professional Edition | BASIC_VERSION: Basic | Flagship: Flagship | ProtectedMachines: Professional+Flagship | UnFlagship: Non Flagship | PRO_POST_PAY: Professional Edition Pay by Volume | PRO_PRE_PAY: Professional Edition Monthly Package query; IfnameisTagId: enter tag ID query. - exact
Match Boolean - exact match. true or false.
GetCwpMachinesSimpleMachine
-
List<Get
Cwp Machines Simple Machine Cloud Tag> - Cloud tags detailNote: This field may return null, indicating that a valid value cannot be obtained.
- Instance
Id string - Instance IDNote: This field may return null, indicating that a valid value cannot be obtained.
- Instance
State string - Instance status.
- Is
Pro boolVersion - Paid version or not. true: yes; false: no.
- Kernel
Version string - Core Version.
- License
Orders List<GetCwp Machines Simple Machine License Order> - License Order ObjectNote: This field may return null, indicating that a valid value cannot be obtained.
- Machine
Ip string - Machine Internal net IP.
- Machine
Name string - Machine name.
- Machine
Os string - Machine OS System.
- Machine
Type string - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- Machine
Wan stringIp - Machine Outer net IP.
- Pay
Mode string - Payment model. POSTPAY: Pay as you go; PREPAY: Monthly subscription.
- Project
Id double - Project ID.
- Protect
Type string - Protection Version. -BASIC_VERSION: Basic Version; -PRO_VERSION: Pro Version -Flagship: Flagship Version; -GENERAL_DISCOUNT: CWP-LH Version.
- Quuid string
- Cloud server sole UUID.
- Region
Infos List<GetCwp Machines Simple Machine Region Info> - Region detail.
-
List<Get
Cwp Machines Simple Machine Tag> - Tag.
- Uuid string
- Cwp client sole UUID.
-
[]Get
Cwp Machines Simple Machine Cloud Tag - Cloud tags detailNote: This field may return null, indicating that a valid value cannot be obtained.
- Instance
Id string - Instance IDNote: This field may return null, indicating that a valid value cannot be obtained.
- Instance
State string - Instance status.
- Is
Pro boolVersion - Paid version or not. true: yes; false: no.
- Kernel
Version string - Core Version.
- License
Orders []GetCwp Machines Simple Machine License Order - License Order ObjectNote: This field may return null, indicating that a valid value cannot be obtained.
- Machine
Ip string - Machine Internal net IP.
- Machine
Name string - Machine name.
- Machine
Os string - Machine OS System.
- Machine
Type string - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- Machine
Wan stringIp - Machine Outer net IP.
- Pay
Mode string - Payment model. POSTPAY: Pay as you go; PREPAY: Monthly subscription.
- Project
Id float64 - Project ID.
- Protect
Type string - Protection Version. -BASIC_VERSION: Basic Version; -PRO_VERSION: Pro Version -Flagship: Flagship Version; -GENERAL_DISCOUNT: CWP-LH Version.
- Quuid string
- Cloud server sole UUID.
- Region
Infos []GetCwp Machines Simple Machine Region Info - Region detail.
-
[]Get
Cwp Machines Simple Machine Tag - Tag.
- Uuid string
- Cwp client sole UUID.
-
List<Get
Cwp Machines Simple Machine Cloud Tag> - Cloud tags detailNote: This field may return null, indicating that a valid value cannot be obtained.
- instance
Id String - Instance IDNote: This field may return null, indicating that a valid value cannot be obtained.
- instance
State String - Instance status.
- is
Pro BooleanVersion - Paid version or not. true: yes; false: no.
- kernel
Version String - Core Version.
- license
Orders List<GetCwp Machines Simple Machine License Order> - License Order ObjectNote: This field may return null, indicating that a valid value cannot be obtained.
- machine
Ip String - Machine Internal net IP.
- machine
Name String - Machine name.
- machine
Os String - Machine OS System.
- machine
Type String - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- machine
Wan StringIp - Machine Outer net IP.
- pay
Mode String - Payment model. POSTPAY: Pay as you go; PREPAY: Monthly subscription.
- project
Id Double - Project ID.
- protect
Type String - Protection Version. -BASIC_VERSION: Basic Version; -PRO_VERSION: Pro Version -Flagship: Flagship Version; -GENERAL_DISCOUNT: CWP-LH Version.
- quuid String
- Cloud server sole UUID.
- region
Infos List<GetCwp Machines Simple Machine Region Info> - Region detail.
-
List<Get
Cwp Machines Simple Machine Tag> - Tag.
- uuid String
- Cwp client sole UUID.
-
Get
Cwp Machines Simple Machine Cloud Tag[] - Cloud tags detailNote: This field may return null, indicating that a valid value cannot be obtained.
- instance
Id string - Instance IDNote: This field may return null, indicating that a valid value cannot be obtained.
- instance
State string - Instance status.
- is
Pro booleanVersion - Paid version or not. true: yes; false: no.
- kernel
Version string - Core Version.
- license
Orders GetCwp Machines Simple Machine License Order[] - License Order ObjectNote: This field may return null, indicating that a valid value cannot be obtained.
- machine
Ip string - Machine Internal net IP.
- machine
Name string - Machine name.
- machine
Os string - Machine OS System.
- machine
Type string - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- machine
Wan stringIp - Machine Outer net IP.
- pay
Mode string - Payment model. POSTPAY: Pay as you go; PREPAY: Monthly subscription.
- project
Id number - Project ID.
- protect
Type string - Protection Version. -BASIC_VERSION: Basic Version; -PRO_VERSION: Pro Version -Flagship: Flagship Version; -GENERAL_DISCOUNT: CWP-LH Version.
- quuid string
- Cloud server sole UUID.
- region
Infos GetCwp Machines Simple Machine Region Info[] - Region detail.
-
Get
Cwp Machines Simple Machine Tag[] - Tag.
- uuid string
- Cwp client sole UUID.
-
Sequence[Get
Cwp Machines Simple Machine Cloud Tag] - Cloud tags detailNote: This field may return null, indicating that a valid value cannot be obtained.
- instance_
id str - Instance IDNote: This field may return null, indicating that a valid value cannot be obtained.
- instance_
state str - Instance status.
- is_
pro_ boolversion - Paid version or not. true: yes; false: no.
- kernel_
version str - Core Version.
- license_
orders Sequence[GetCwp Machines Simple Machine License Order] - License Order ObjectNote: This field may return null, indicating that a valid value cannot be obtained.
- machine_
ip str - Machine Internal net IP.
- machine_
name str - Machine name.
- machine_
os str - Machine OS System.
- machine_
type str - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- machine_
wan_ strip - Machine Outer net IP.
- pay_
mode str - Payment model. POSTPAY: Pay as you go; PREPAY: Monthly subscription.
- project_
id float - Project ID.
- protect_
type str - Protection Version. -BASIC_VERSION: Basic Version; -PRO_VERSION: Pro Version -Flagship: Flagship Version; -GENERAL_DISCOUNT: CWP-LH Version.
- quuid str
- Cloud server sole UUID.
- region_
infos Sequence[GetCwp Machines Simple Machine Region Info] - Region detail.
-
Sequence[Get
Cwp Machines Simple Machine Tag] - Tag.
- uuid str
- Cwp client sole UUID.
- List<Property Map>
- Cloud tags detailNote: This field may return null, indicating that a valid value cannot be obtained.
- instance
Id String - Instance IDNote: This field may return null, indicating that a valid value cannot be obtained.
- instance
State String - Instance status.
- is
Pro BooleanVersion - Paid version or not. true: yes; false: no.
- kernel
Version String - Core Version.
- license
Orders List<Property Map> - License Order ObjectNote: This field may return null, indicating that a valid value cannot be obtained.
- machine
Ip String - Machine Internal net IP.
- machine
Name String - Machine name.
- machine
Os String - Machine OS System.
- machine
Type String - Service types. -CVM: Cloud Virtual Machine; -ECM: Edge Computing Machine; -LH: Lighthouse; -Other: Mixed cloud; -ALL: All server types.
- machine
Wan StringIp - Machine Outer net IP.
- pay
Mode String - Payment model. POSTPAY: Pay as you go; PREPAY: Monthly subscription.
- project
Id Number - Project ID.
- protect
Type String - Protection Version. -BASIC_VERSION: Basic Version; -PRO_VERSION: Pro Version -Flagship: Flagship Version; -GENERAL_DISCOUNT: CWP-LH Version.
- quuid String
- Cloud server sole UUID.
- region
Infos List<Property Map> - Region detail.
- List<Property Map>
- Tag.
- uuid String
- Cwp client sole UUID.
GetCwpMachinesSimpleMachineCloudTag
GetCwpMachinesSimpleMachineLicenseOrder
- License
Id double - License ID.
- License
Type double - License Types.
- Resource
Id string - Resource ID.
- Source
Type double - Order types.
- Status double
- License Order Status.
- License
Id float64 - License ID.
- License
Type float64 - License Types.
- Resource
Id string - Resource ID.
- Source
Type float64 - Order types.
- Status float64
- License Order Status.
- license
Id Double - License ID.
- license
Type Double - License Types.
- resource
Id String - Resource ID.
- source
Type Double - Order types.
- status Double
- License Order Status.
- license
Id number - License ID.
- license
Type number - License Types.
- resource
Id string - Resource ID.
- source
Type number - Order types.
- status number
- License Order Status.
- license_
id float - License ID.
- license_
type float - License Types.
- resource_
id str - Resource ID.
- source_
type float - Order types.
- status float
- License Order Status.
- license
Id Number - License ID.
- license
Type Number - License Types.
- resource
Id String - Resource ID.
- source
Type Number - Order types.
- status Number
- License Order Status.
GetCwpMachinesSimpleMachineRegionInfo
- Region string
- Region, Such as ap-guangzhou, ap-shanghai, ap-beijing.
- Region
Code string - Region Code.
- Region
Id double - Region ID.
- Region
Name string - Regional Chinese name.
- Region
Name stringEn - Regional English name.
- Region string
- Region, Such as ap-guangzhou, ap-shanghai, ap-beijing.
- Region
Code string - Region Code.
- Region
Id float64 - Region ID.
- Region
Name string - Regional Chinese name.
- Region
Name stringEn - Regional English name.
- region String
- Region, Such as ap-guangzhou, ap-shanghai, ap-beijing.
- region
Code String - Region Code.
- region
Id Double - Region ID.
- region
Name String - Regional Chinese name.
- region
Name StringEn - Regional English name.
- region string
- Region, Such as ap-guangzhou, ap-shanghai, ap-beijing.
- region
Code string - Region Code.
- region
Id number - Region ID.
- region
Name string - Regional Chinese name.
- region
Name stringEn - Regional English name.
- region str
- Region, Such as ap-guangzhou, ap-shanghai, ap-beijing.
- region_
code str - Region Code.
- region_
id float - Region ID.
- region_
name str - Regional Chinese name.
- region_
name_ stren - Regional English name.
- region String
- Region, Such as ap-guangzhou, ap-shanghai, ap-beijing.
- region
Code String - Region Code.
- region
Id Number - Region ID.
- region
Name String - Regional Chinese name.
- region
Name StringEn - Regional English name.
GetCwpMachinesSimpleMachineTag
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
