1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. WedataResourceGroup
tencentcloud 1.82.50 published on Tuesday, Dec 30, 2025 by tencentcloudstack
tencentcloud logo
tencentcloud 1.82.50 published on Tuesday, Dec 30, 2025 by tencentcloudstack

    Provides a resource to create a WeData resource group

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.WedataResourceGroup("example", {
        name: "tf_example",
        type: {
            resourceGroupType: "Integration",
            integration: {
                realTimeDataSync: {
                    specification: "i32c",
                    number: 1,
                },
                offlineDataSync: {
                    specification: "integrated",
                    number: 2,
                },
            },
        },
        autoRenewEnabled: false,
        purchasePeriod: 1,
        vpcId: "vpc-ds5rpnxh",
        subnet: "subnet-fz7rw5zq",
        resourceRegion: "ap-beijing-fsi",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.WedataResourceGroup("example",
        name="tf_example",
        type={
            "resource_group_type": "Integration",
            "integration": {
                "real_time_data_sync": {
                    "specification": "i32c",
                    "number": 1,
                },
                "offline_data_sync": {
                    "specification": "integrated",
                    "number": 2,
                },
            },
        },
        auto_renew_enabled=False,
        purchase_period=1,
        vpc_id="vpc-ds5rpnxh",
        subnet="subnet-fz7rw5zq",
        resource_region="ap-beijing-fsi")
    
    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.NewWedataResourceGroup(ctx, "example", &tencentcloud.WedataResourceGroupArgs{
    			Name: pulumi.String("tf_example"),
    			Type: &tencentcloud.WedataResourceGroupTypeArgs{
    				ResourceGroupType: pulumi.String("Integration"),
    				Integration: &tencentcloud.WedataResourceGroupTypeIntegrationArgs{
    					RealTimeDataSync: &tencentcloud.WedataResourceGroupTypeIntegrationRealTimeDataSyncArgs{
    						Specification: pulumi.String("i32c"),
    						Number:        pulumi.Float64(1),
    					},
    					OfflineDataSync: &tencentcloud.WedataResourceGroupTypeIntegrationOfflineDataSyncArgs{
    						Specification: pulumi.String("integrated"),
    						Number:        pulumi.Float64(2),
    					},
    				},
    			},
    			AutoRenewEnabled: pulumi.Bool(false),
    			PurchasePeriod:   pulumi.Float64(1),
    			VpcId:            pulumi.String("vpc-ds5rpnxh"),
    			Subnet:           pulumi.String("subnet-fz7rw5zq"),
    			ResourceRegion:   pulumi.String("ap-beijing-fsi"),
    		})
    		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 = new Tencentcloud.WedataResourceGroup("example", new()
        {
            Name = "tf_example",
            Type = new Tencentcloud.Inputs.WedataResourceGroupTypeArgs
            {
                ResourceGroupType = "Integration",
                Integration = new Tencentcloud.Inputs.WedataResourceGroupTypeIntegrationArgs
                {
                    RealTimeDataSync = new Tencentcloud.Inputs.WedataResourceGroupTypeIntegrationRealTimeDataSyncArgs
                    {
                        Specification = "i32c",
                        Number = 1,
                    },
                    OfflineDataSync = new Tencentcloud.Inputs.WedataResourceGroupTypeIntegrationOfflineDataSyncArgs
                    {
                        Specification = "integrated",
                        Number = 2,
                    },
                },
            },
            AutoRenewEnabled = false,
            PurchasePeriod = 1,
            VpcId = "vpc-ds5rpnxh",
            Subnet = "subnet-fz7rw5zq",
            ResourceRegion = "ap-beijing-fsi",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.WedataResourceGroup;
    import com.pulumi.tencentcloud.WedataResourceGroupArgs;
    import com.pulumi.tencentcloud.inputs.WedataResourceGroupTypeArgs;
    import com.pulumi.tencentcloud.inputs.WedataResourceGroupTypeIntegrationArgs;
    import com.pulumi.tencentcloud.inputs.WedataResourceGroupTypeIntegrationRealTimeDataSyncArgs;
    import com.pulumi.tencentcloud.inputs.WedataResourceGroupTypeIntegrationOfflineDataSyncArgs;
    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) {
            var example = new WedataResourceGroup("example", WedataResourceGroupArgs.builder()
                .name("tf_example")
                .type(WedataResourceGroupTypeArgs.builder()
                    .resourceGroupType("Integration")
                    .integration(WedataResourceGroupTypeIntegrationArgs.builder()
                        .realTimeDataSync(WedataResourceGroupTypeIntegrationRealTimeDataSyncArgs.builder()
                            .specification("i32c")
                            .number(1.0)
                            .build())
                        .offlineDataSync(WedataResourceGroupTypeIntegrationOfflineDataSyncArgs.builder()
                            .specification("integrated")
                            .number(2.0)
                            .build())
                        .build())
                    .build())
                .autoRenewEnabled(false)
                .purchasePeriod(1.0)
                .vpcId("vpc-ds5rpnxh")
                .subnet("subnet-fz7rw5zq")
                .resourceRegion("ap-beijing-fsi")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:WedataResourceGroup
        properties:
          name: tf_example
          type:
            resourceGroupType: Integration
            integration:
              realTimeDataSync:
                specification: i32c
                number: 1
              offlineDataSync:
                specification: integrated
                number: 2
          autoRenewEnabled: false
          purchasePeriod: 1
          vpcId: vpc-ds5rpnxh
          subnet: subnet-fz7rw5zq
          resourceRegion: ap-beijing-fsi
    

    Create WedataResourceGroup Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WedataResourceGroup(name: string, args: WedataResourceGroupArgs, opts?: CustomResourceOptions);
    @overload
    def WedataResourceGroup(resource_name: str,
                            args: WedataResourceGroupArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def WedataResourceGroup(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            auto_renew_enabled: Optional[bool] = None,
                            purchase_period: Optional[float] = None,
                            resource_region: Optional[str] = None,
                            subnet: Optional[str] = None,
                            type: Optional[WedataResourceGroupTypeArgs] = None,
                            vpc_id: Optional[str] = None,
                            associated_project_id: Optional[str] = None,
                            name: Optional[str] = None,
                            wedata_resource_group_id: Optional[str] = None)
    func NewWedataResourceGroup(ctx *Context, name string, args WedataResourceGroupArgs, opts ...ResourceOption) (*WedataResourceGroup, error)
    public WedataResourceGroup(string name, WedataResourceGroupArgs args, CustomResourceOptions? opts = null)
    public WedataResourceGroup(String name, WedataResourceGroupArgs args)
    public WedataResourceGroup(String name, WedataResourceGroupArgs args, CustomResourceOptions options)
    
    type: tencentcloud:WedataResourceGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args WedataResourceGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args WedataResourceGroupArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args WedataResourceGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WedataResourceGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WedataResourceGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    WedataResourceGroup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The WedataResourceGroup resource accepts the following input properties:

    AutoRenewEnabled bool
    Whether auto-renewal is enabled.
    PurchasePeriod double
    Purchase duration, in months.
    ResourceRegion string
    Resource purchase region.
    Subnet string
    Subnet.
    Type WedataResourceGroupType
    Information about the activated resource group.
    VpcId string
    VPC ID.
    AssociatedProjectId string
    Associated project space project ID.
    Name string
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    WedataResourceGroupId string
    ID of the resource.
    AutoRenewEnabled bool
    Whether auto-renewal is enabled.
    PurchasePeriod float64
    Purchase duration, in months.
    ResourceRegion string
    Resource purchase region.
    Subnet string
    Subnet.
    Type WedataResourceGroupTypeArgs
    Information about the activated resource group.
    VpcId string
    VPC ID.
    AssociatedProjectId string
    Associated project space project ID.
    Name string
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    WedataResourceGroupId string
    ID of the resource.
    autoRenewEnabled Boolean
    Whether auto-renewal is enabled.
    purchasePeriod Double
    Purchase duration, in months.
    resourceRegion String
    Resource purchase region.
    subnet String
    Subnet.
    type WedataResourceGroupType
    Information about the activated resource group.
    vpcId String
    VPC ID.
    associatedProjectId String
    Associated project space project ID.
    name String
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    wedataResourceGroupId String
    ID of the resource.
    autoRenewEnabled boolean
    Whether auto-renewal is enabled.
    purchasePeriod number
    Purchase duration, in months.
    resourceRegion string
    Resource purchase region.
    subnet string
    Subnet.
    type WedataResourceGroupType
    Information about the activated resource group.
    vpcId string
    VPC ID.
    associatedProjectId string
    Associated project space project ID.
    name string
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    wedataResourceGroupId string
    ID of the resource.
    auto_renew_enabled bool
    Whether auto-renewal is enabled.
    purchase_period float
    Purchase duration, in months.
    resource_region str
    Resource purchase region.
    subnet str
    Subnet.
    type WedataResourceGroupTypeArgs
    Information about the activated resource group.
    vpc_id str
    VPC ID.
    associated_project_id str
    Associated project space project ID.
    name str
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    wedata_resource_group_id str
    ID of the resource.
    autoRenewEnabled Boolean
    Whether auto-renewal is enabled.
    purchasePeriod Number
    Purchase duration, in months.
    resourceRegion String
    Resource purchase region.
    subnet String
    Subnet.
    type Property Map
    Information about the activated resource group.
    vpcId String
    VPC ID.
    associatedProjectId String
    Associated project space project ID.
    name String
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    wedataResourceGroupId String
    ID of the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WedataResourceGroup resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceGroupId string
    Resource group ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceGroupId string
    Resource group ID.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceGroupId String
    Resource group ID.
    id string
    The provider-assigned unique ID for this managed resource.
    resourceGroupId string
    Resource group ID.
    id str
    The provider-assigned unique ID for this managed resource.
    resource_group_id str
    Resource group ID.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceGroupId String
    Resource group ID.

    Look up Existing WedataResourceGroup Resource

    Get an existing WedataResourceGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: WedataResourceGroupState, opts?: CustomResourceOptions): WedataResourceGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            associated_project_id: Optional[str] = None,
            auto_renew_enabled: Optional[bool] = None,
            name: Optional[str] = None,
            purchase_period: Optional[float] = None,
            resource_group_id: Optional[str] = None,
            resource_region: Optional[str] = None,
            subnet: Optional[str] = None,
            type: Optional[WedataResourceGroupTypeArgs] = None,
            vpc_id: Optional[str] = None,
            wedata_resource_group_id: Optional[str] = None) -> WedataResourceGroup
    func GetWedataResourceGroup(ctx *Context, name string, id IDInput, state *WedataResourceGroupState, opts ...ResourceOption) (*WedataResourceGroup, error)
    public static WedataResourceGroup Get(string name, Input<string> id, WedataResourceGroupState? state, CustomResourceOptions? opts = null)
    public static WedataResourceGroup get(String name, Output<String> id, WedataResourceGroupState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:WedataResourceGroup    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AssociatedProjectId string
    Associated project space project ID.
    AutoRenewEnabled bool
    Whether auto-renewal is enabled.
    Name string
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    PurchasePeriod double
    Purchase duration, in months.
    ResourceGroupId string
    Resource group ID.
    ResourceRegion string
    Resource purchase region.
    Subnet string
    Subnet.
    Type WedataResourceGroupType
    Information about the activated resource group.
    VpcId string
    VPC ID.
    WedataResourceGroupId string
    ID of the resource.
    AssociatedProjectId string
    Associated project space project ID.
    AutoRenewEnabled bool
    Whether auto-renewal is enabled.
    Name string
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    PurchasePeriod float64
    Purchase duration, in months.
    ResourceGroupId string
    Resource group ID.
    ResourceRegion string
    Resource purchase region.
    Subnet string
    Subnet.
    Type WedataResourceGroupTypeArgs
    Information about the activated resource group.
    VpcId string
    VPC ID.
    WedataResourceGroupId string
    ID of the resource.
    associatedProjectId String
    Associated project space project ID.
    autoRenewEnabled Boolean
    Whether auto-renewal is enabled.
    name String
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    purchasePeriod Double
    Purchase duration, in months.
    resourceGroupId String
    Resource group ID.
    resourceRegion String
    Resource purchase region.
    subnet String
    Subnet.
    type WedataResourceGroupType
    Information about the activated resource group.
    vpcId String
    VPC ID.
    wedataResourceGroupId String
    ID of the resource.
    associatedProjectId string
    Associated project space project ID.
    autoRenewEnabled boolean
    Whether auto-renewal is enabled.
    name string
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    purchasePeriod number
    Purchase duration, in months.
    resourceGroupId string
    Resource group ID.
    resourceRegion string
    Resource purchase region.
    subnet string
    Subnet.
    type WedataResourceGroupType
    Information about the activated resource group.
    vpcId string
    VPC ID.
    wedataResourceGroupId string
    ID of the resource.
    associated_project_id str
    Associated project space project ID.
    auto_renew_enabled bool
    Whether auto-renewal is enabled.
    name str
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    purchase_period float
    Purchase duration, in months.
    resource_group_id str
    Resource group ID.
    resource_region str
    Resource purchase region.
    subnet str
    Subnet.
    type WedataResourceGroupTypeArgs
    Information about the activated resource group.
    vpc_id str
    VPC ID.
    wedata_resource_group_id str
    ID of the resource.
    associatedProjectId String
    Associated project space project ID.
    autoRenewEnabled Boolean
    Whether auto-renewal is enabled.
    name String
    Resource group name. The name for creating a general resource group must start with a letter, can contain letters, numbers, underscores (_), and up to 64 characters.
    purchasePeriod Number
    Purchase duration, in months.
    resourceGroupId String
    Resource group ID.
    resourceRegion String
    Resource purchase region.
    subnet String
    Subnet.
    type Property Map
    Information about the activated resource group.
    vpcId String
    VPC ID.
    wedataResourceGroupId String
    ID of the resource.

    Supporting Types

    WedataResourceGroupType, WedataResourceGroupTypeArgs

    ResourceGroupType string
    Resource group type.

    • Schedule --- Scheduling resource group
    • Integration --- Integration resource group
    • DataService -- Data service resource group.
    DataService WedataResourceGroupTypeDataService

    Data service resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - ds_t (Test specification) - ds_s (Basic specification) - ds_m (Popular specification) - ds_l (Professional specification).

    Integration WedataResourceGroupTypeIntegration
    Integration resource group, subdivided into real-time resource group and offline resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).
    Schedule WedataResourceGroupTypeSchedule

    Scheduling resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - s_test (Test specification) - s_small (Basic specification) - s_medium (Popular specification) - s_large (Professional specification).

    ResourceGroupType string
    Resource group type.

    • Schedule --- Scheduling resource group
    • Integration --- Integration resource group
    • DataService -- Data service resource group.
    DataService WedataResourceGroupTypeDataService

    Data service resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - ds_t (Test specification) - ds_s (Basic specification) - ds_m (Popular specification) - ds_l (Professional specification).

    Integration WedataResourceGroupTypeIntegration
    Integration resource group, subdivided into real-time resource group and offline resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).
    Schedule WedataResourceGroupTypeSchedule

    Scheduling resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - s_test (Test specification) - s_small (Basic specification) - s_medium (Popular specification) - s_large (Professional specification).

    resourceGroupType String
    Resource group type.

    • Schedule --- Scheduling resource group
    • Integration --- Integration resource group
    • DataService -- Data service resource group.
    dataService WedataResourceGroupTypeDataService

    Data service resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - ds_t (Test specification) - ds_s (Basic specification) - ds_m (Popular specification) - ds_l (Professional specification).

    integration WedataResourceGroupTypeIntegration
    Integration resource group, subdivided into real-time resource group and offline resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).
    schedule WedataResourceGroupTypeSchedule

    Scheduling resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - s_test (Test specification) - s_small (Basic specification) - s_medium (Popular specification) - s_large (Professional specification).

    resourceGroupType string
    Resource group type.

    • Schedule --- Scheduling resource group
    • Integration --- Integration resource group
    • DataService -- Data service resource group.
    dataService WedataResourceGroupTypeDataService

    Data service resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - ds_t (Test specification) - ds_s (Basic specification) - ds_m (Popular specification) - ds_l (Professional specification).

    integration WedataResourceGroupTypeIntegration
    Integration resource group, subdivided into real-time resource group and offline resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).
    schedule WedataResourceGroupTypeSchedule

    Scheduling resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - s_test (Test specification) - s_small (Basic specification) - s_medium (Popular specification) - s_large (Professional specification).

    resource_group_type str
    Resource group type.

    • Schedule --- Scheduling resource group
    • Integration --- Integration resource group
    • DataService -- Data service resource group.
    data_service WedataResourceGroupTypeDataService

    Data service resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - ds_t (Test specification) - ds_s (Basic specification) - ds_m (Popular specification) - ds_l (Professional specification).

    integration WedataResourceGroupTypeIntegration
    Integration resource group, subdivided into real-time resource group and offline resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).
    schedule WedataResourceGroupTypeSchedule

    Scheduling resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - s_test (Test specification) - s_small (Basic specification) - s_medium (Popular specification) - s_large (Professional specification).

    resourceGroupType String
    Resource group type.

    • Schedule --- Scheduling resource group
    • Integration --- Integration resource group
    • DataService -- Data service resource group.
    dataService Property Map

    Data service resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - ds_t (Test specification) - ds_s (Basic specification) - ds_m (Popular specification) - ds_l (Professional specification).

    integration Property Map
    Integration resource group, subdivided into real-time resource group and offline resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).
    schedule Property Map

    Scheduling resource group (Integration, scheduling, and data service resource groups cannot be purchased simultaneously).

    - s_test (Test specification) - s_small (Basic specification) - s_medium (Popular specification) - s_large (Professional specification).

    WedataResourceGroupTypeDataService, WedataResourceGroupTypeDataServiceArgs

    Number double
    Quantity.
    Specification string
    Resource group specification.
    Number float64
    Quantity.
    Specification string
    Resource group specification.
    number Double
    Quantity.
    specification String
    Resource group specification.
    number number
    Quantity.
    specification string
    Resource group specification.
    number float
    Quantity.
    specification str
    Resource group specification.
    number Number
    Quantity.
    specification String
    Resource group specification.

    WedataResourceGroupTypeIntegration, WedataResourceGroupTypeIntegrationArgs

    OfflineDataSync WedataResourceGroupTypeIntegrationOfflineDataSync
    Offline integration resource group.

    • integrated (Offline data synchronization - 8C16G)
    • i16 (Offline data synchronization - 8C32G).
    RealTimeDataSync WedataResourceGroupTypeIntegrationRealTimeDataSync
    Real-time integration resource group.

    • i32c (Real-time data synchronization - 16C64G).
    OfflineDataSync WedataResourceGroupTypeIntegrationOfflineDataSync
    Offline integration resource group.

    • integrated (Offline data synchronization - 8C16G)
    • i16 (Offline data synchronization - 8C32G).
    RealTimeDataSync WedataResourceGroupTypeIntegrationRealTimeDataSync
    Real-time integration resource group.

    • i32c (Real-time data synchronization - 16C64G).
    offlineDataSync WedataResourceGroupTypeIntegrationOfflineDataSync
    Offline integration resource group.

    • integrated (Offline data synchronization - 8C16G)
    • i16 (Offline data synchronization - 8C32G).
    realTimeDataSync WedataResourceGroupTypeIntegrationRealTimeDataSync
    Real-time integration resource group.

    • i32c (Real-time data synchronization - 16C64G).
    offlineDataSync WedataResourceGroupTypeIntegrationOfflineDataSync
    Offline integration resource group.

    • integrated (Offline data synchronization - 8C16G)
    • i16 (Offline data synchronization - 8C32G).
    realTimeDataSync WedataResourceGroupTypeIntegrationRealTimeDataSync
    Real-time integration resource group.

    • i32c (Real-time data synchronization - 16C64G).
    offline_data_sync WedataResourceGroupTypeIntegrationOfflineDataSync
    Offline integration resource group.

    • integrated (Offline data synchronization - 8C16G)
    • i16 (Offline data synchronization - 8C32G).
    real_time_data_sync WedataResourceGroupTypeIntegrationRealTimeDataSync
    Real-time integration resource group.

    • i32c (Real-time data synchronization - 16C64G).
    offlineDataSync Property Map
    Offline integration resource group.

    • integrated (Offline data synchronization - 8C16G)
    • i16 (Offline data synchronization - 8C32G).
    realTimeDataSync Property Map
    Real-time integration resource group.

    • i32c (Real-time data synchronization - 16C64G).

    WedataResourceGroupTypeIntegrationOfflineDataSync, WedataResourceGroupTypeIntegrationOfflineDataSyncArgs

    Number double
    Quantity.
    Specification string
    Resource group specification.
    Number float64
    Quantity.
    Specification string
    Resource group specification.
    number Double
    Quantity.
    specification String
    Resource group specification.
    number number
    Quantity.
    specification string
    Resource group specification.
    number float
    Quantity.
    specification str
    Resource group specification.
    number Number
    Quantity.
    specification String
    Resource group specification.

    WedataResourceGroupTypeIntegrationRealTimeDataSync, WedataResourceGroupTypeIntegrationRealTimeDataSyncArgs

    Number double
    Quantity.
    Specification string
    Resource group specification.
    Number float64
    Quantity.
    Specification string
    Resource group specification.
    number Double
    Quantity.
    specification String
    Resource group specification.
    number number
    Quantity.
    specification string
    Resource group specification.
    number float
    Quantity.
    specification str
    Resource group specification.
    number Number
    Quantity.
    specification String
    Resource group specification.

    WedataResourceGroupTypeSchedule, WedataResourceGroupTypeScheduleArgs

    Number double
    Quantity.
    Specification string
    Resource group specification.
    Number float64
    Quantity.
    Specification string
    Resource group specification.
    number Double
    Quantity.
    specification String
    Resource group specification.
    number number
    Quantity.
    specification string
    Resource group specification.
    number float
    Quantity.
    specification str
    Resource group specification.
    number Number
    Quantity.
    specification String
    Resource group specification.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.82.50 published on Tuesday, Dec 30, 2025 by tencentcloudstack
      Meet Neo: Your AI Platform Teammate