1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. LighthouseDisk
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.LighthouseDisk

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a lighthouse disk

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const disk = new tencentcloud.LighthouseDisk("disk", {
        diskChargePrepaid: {
            period: 1,
            renewFlag: "NOTIFY_AND_AUTO_RENEW",
            timeUnit: "m",
        },
        diskName: "test",
        diskSize: 20,
        diskType: "CLOUD_SSD",
        zone: "ap-hongkong-2",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    disk = tencentcloud.LighthouseDisk("disk",
        disk_charge_prepaid={
            "period": 1,
            "renew_flag": "NOTIFY_AND_AUTO_RENEW",
            "time_unit": "m",
        },
        disk_name="test",
        disk_size=20,
        disk_type="CLOUD_SSD",
        zone="ap-hongkong-2")
    
    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.NewLighthouseDisk(ctx, "disk", &tencentcloud.LighthouseDiskArgs{
    			DiskChargePrepaid: &tencentcloud.LighthouseDiskDiskChargePrepaidArgs{
    				Period:    pulumi.Float64(1),
    				RenewFlag: pulumi.String("NOTIFY_AND_AUTO_RENEW"),
    				TimeUnit:  pulumi.String("m"),
    			},
    			DiskName: pulumi.String("test"),
    			DiskSize: pulumi.Float64(20),
    			DiskType: pulumi.String("CLOUD_SSD"),
    			Zone:     pulumi.String("ap-hongkong-2"),
    		})
    		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 disk = new Tencentcloud.LighthouseDisk("disk", new()
        {
            DiskChargePrepaid = new Tencentcloud.Inputs.LighthouseDiskDiskChargePrepaidArgs
            {
                Period = 1,
                RenewFlag = "NOTIFY_AND_AUTO_RENEW",
                TimeUnit = "m",
            },
            DiskName = "test",
            DiskSize = 20,
            DiskType = "CLOUD_SSD",
            Zone = "ap-hongkong-2",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.LighthouseDisk;
    import com.pulumi.tencentcloud.LighthouseDiskArgs;
    import com.pulumi.tencentcloud.inputs.LighthouseDiskDiskChargePrepaidArgs;
    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 disk = new LighthouseDisk("disk", LighthouseDiskArgs.builder()
                .diskChargePrepaid(LighthouseDiskDiskChargePrepaidArgs.builder()
                    .period(1)
                    .renewFlag("NOTIFY_AND_AUTO_RENEW")
                    .timeUnit("m")
                    .build())
                .diskName("test")
                .diskSize(20)
                .diskType("CLOUD_SSD")
                .zone("ap-hongkong-2")
                .build());
    
        }
    }
    
    resources:
      disk:
        type: tencentcloud:LighthouseDisk
        properties:
          diskChargePrepaid:
            period: 1
            renewFlag: NOTIFY_AND_AUTO_RENEW
            timeUnit: m
          diskName: test
          diskSize: 20
          diskType: CLOUD_SSD
          zone: ap-hongkong-2
    

    Create LighthouseDisk Resource

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

    Constructor syntax

    new LighthouseDisk(name: string, args: LighthouseDiskArgs, opts?: CustomResourceOptions);
    @overload
    def LighthouseDisk(resource_name: str,
                       args: LighthouseDiskArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def LighthouseDisk(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       disk_charge_prepaid: Optional[LighthouseDiskDiskChargePrepaidArgs] = None,
                       disk_size: Optional[float] = None,
                       disk_type: Optional[str] = None,
                       zone: Optional[str] = None,
                       auto_mount_configuration: Optional[LighthouseDiskAutoMountConfigurationArgs] = None,
                       auto_voucher: Optional[bool] = None,
                       disk_backup_quota: Optional[float] = None,
                       disk_count: Optional[float] = None,
                       disk_name: Optional[str] = None,
                       lighthouse_disk_id: Optional[str] = None)
    func NewLighthouseDisk(ctx *Context, name string, args LighthouseDiskArgs, opts ...ResourceOption) (*LighthouseDisk, error)
    public LighthouseDisk(string name, LighthouseDiskArgs args, CustomResourceOptions? opts = null)
    public LighthouseDisk(String name, LighthouseDiskArgs args)
    public LighthouseDisk(String name, LighthouseDiskArgs args, CustomResourceOptions options)
    
    type: tencentcloud:LighthouseDisk
    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 LighthouseDiskArgs
    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 LighthouseDiskArgs
    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 LighthouseDiskArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LighthouseDiskArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LighthouseDiskArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    LighthouseDisk 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 LighthouseDisk resource accepts the following input properties:

    DiskChargePrepaid LighthouseDiskDiskChargePrepaid
    Disk subscription related parameter settings.
    DiskSize double
    Disk size, unit: GB.
    DiskType string
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    Zone string
    Availability zone.
    AutoMountConfiguration LighthouseDiskAutoMountConfiguration
    Automatically mount and initialize data disks.
    AutoVoucher bool
    Whether to automatically use the voucher. Not used by default.
    DiskBackupQuota double
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    DiskCount double
    Disk count. Values: [1, 30]. Default: 1.
    DiskName string
    Disk name. Maximum length 60.
    LighthouseDiskId string
    ID of the resource.
    DiskChargePrepaid LighthouseDiskDiskChargePrepaidArgs
    Disk subscription related parameter settings.
    DiskSize float64
    Disk size, unit: GB.
    DiskType string
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    Zone string
    Availability zone.
    AutoMountConfiguration LighthouseDiskAutoMountConfigurationArgs
    Automatically mount and initialize data disks.
    AutoVoucher bool
    Whether to automatically use the voucher. Not used by default.
    DiskBackupQuota float64
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    DiskCount float64
    Disk count. Values: [1, 30]. Default: 1.
    DiskName string
    Disk name. Maximum length 60.
    LighthouseDiskId string
    ID of the resource.
    diskChargePrepaid LighthouseDiskDiskChargePrepaid
    Disk subscription related parameter settings.
    diskSize Double
    Disk size, unit: GB.
    diskType String
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    zone String
    Availability zone.
    autoMountConfiguration LighthouseDiskAutoMountConfiguration
    Automatically mount and initialize data disks.
    autoVoucher Boolean
    Whether to automatically use the voucher. Not used by default.
    diskBackupQuota Double
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    diskCount Double
    Disk count. Values: [1, 30]. Default: 1.
    diskName String
    Disk name. Maximum length 60.
    lighthouseDiskId String
    ID of the resource.
    diskChargePrepaid LighthouseDiskDiskChargePrepaid
    Disk subscription related parameter settings.
    diskSize number
    Disk size, unit: GB.
    diskType string
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    zone string
    Availability zone.
    autoMountConfiguration LighthouseDiskAutoMountConfiguration
    Automatically mount and initialize data disks.
    autoVoucher boolean
    Whether to automatically use the voucher. Not used by default.
    diskBackupQuota number
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    diskCount number
    Disk count. Values: [1, 30]. Default: 1.
    diskName string
    Disk name. Maximum length 60.
    lighthouseDiskId string
    ID of the resource.
    disk_charge_prepaid LighthouseDiskDiskChargePrepaidArgs
    Disk subscription related parameter settings.
    disk_size float
    Disk size, unit: GB.
    disk_type str
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    zone str
    Availability zone.
    auto_mount_configuration LighthouseDiskAutoMountConfigurationArgs
    Automatically mount and initialize data disks.
    auto_voucher bool
    Whether to automatically use the voucher. Not used by default.
    disk_backup_quota float
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    disk_count float
    Disk count. Values: [1, 30]. Default: 1.
    disk_name str
    Disk name. Maximum length 60.
    lighthouse_disk_id str
    ID of the resource.
    diskChargePrepaid Property Map
    Disk subscription related parameter settings.
    diskSize Number
    Disk size, unit: GB.
    diskType String
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    zone String
    Availability zone.
    autoMountConfiguration Property Map
    Automatically mount and initialize data disks.
    autoVoucher Boolean
    Whether to automatically use the voucher. Not used by default.
    diskBackupQuota Number
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    diskCount Number
    Disk count. Values: [1, 30]. Default: 1.
    diskName String
    Disk name. Maximum length 60.
    lighthouseDiskId String
    ID of the resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing LighthouseDisk Resource

    Get an existing LighthouseDisk 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?: LighthouseDiskState, opts?: CustomResourceOptions): LighthouseDisk
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_mount_configuration: Optional[LighthouseDiskAutoMountConfigurationArgs] = None,
            auto_voucher: Optional[bool] = None,
            disk_backup_quota: Optional[float] = None,
            disk_charge_prepaid: Optional[LighthouseDiskDiskChargePrepaidArgs] = None,
            disk_count: Optional[float] = None,
            disk_name: Optional[str] = None,
            disk_size: Optional[float] = None,
            disk_type: Optional[str] = None,
            lighthouse_disk_id: Optional[str] = None,
            zone: Optional[str] = None) -> LighthouseDisk
    func GetLighthouseDisk(ctx *Context, name string, id IDInput, state *LighthouseDiskState, opts ...ResourceOption) (*LighthouseDisk, error)
    public static LighthouseDisk Get(string name, Input<string> id, LighthouseDiskState? state, CustomResourceOptions? opts = null)
    public static LighthouseDisk get(String name, Output<String> id, LighthouseDiskState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:LighthouseDisk    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:
    AutoMountConfiguration LighthouseDiskAutoMountConfiguration
    Automatically mount and initialize data disks.
    AutoVoucher bool
    Whether to automatically use the voucher. Not used by default.
    DiskBackupQuota double
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    DiskChargePrepaid LighthouseDiskDiskChargePrepaid
    Disk subscription related parameter settings.
    DiskCount double
    Disk count. Values: [1, 30]. Default: 1.
    DiskName string
    Disk name. Maximum length 60.
    DiskSize double
    Disk size, unit: GB.
    DiskType string
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    LighthouseDiskId string
    ID of the resource.
    Zone string
    Availability zone.
    AutoMountConfiguration LighthouseDiskAutoMountConfigurationArgs
    Automatically mount and initialize data disks.
    AutoVoucher bool
    Whether to automatically use the voucher. Not used by default.
    DiskBackupQuota float64
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    DiskChargePrepaid LighthouseDiskDiskChargePrepaidArgs
    Disk subscription related parameter settings.
    DiskCount float64
    Disk count. Values: [1, 30]. Default: 1.
    DiskName string
    Disk name. Maximum length 60.
    DiskSize float64
    Disk size, unit: GB.
    DiskType string
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    LighthouseDiskId string
    ID of the resource.
    Zone string
    Availability zone.
    autoMountConfiguration LighthouseDiskAutoMountConfiguration
    Automatically mount and initialize data disks.
    autoVoucher Boolean
    Whether to automatically use the voucher. Not used by default.
    diskBackupQuota Double
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    diskChargePrepaid LighthouseDiskDiskChargePrepaid
    Disk subscription related parameter settings.
    diskCount Double
    Disk count. Values: [1, 30]. Default: 1.
    diskName String
    Disk name. Maximum length 60.
    diskSize Double
    Disk size, unit: GB.
    diskType String
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    lighthouseDiskId String
    ID of the resource.
    zone String
    Availability zone.
    autoMountConfiguration LighthouseDiskAutoMountConfiguration
    Automatically mount and initialize data disks.
    autoVoucher boolean
    Whether to automatically use the voucher. Not used by default.
    diskBackupQuota number
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    diskChargePrepaid LighthouseDiskDiskChargePrepaid
    Disk subscription related parameter settings.
    diskCount number
    Disk count. Values: [1, 30]. Default: 1.
    diskName string
    Disk name. Maximum length 60.
    diskSize number
    Disk size, unit: GB.
    diskType string
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    lighthouseDiskId string
    ID of the resource.
    zone string
    Availability zone.
    auto_mount_configuration LighthouseDiskAutoMountConfigurationArgs
    Automatically mount and initialize data disks.
    auto_voucher bool
    Whether to automatically use the voucher. Not used by default.
    disk_backup_quota float
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    disk_charge_prepaid LighthouseDiskDiskChargePrepaidArgs
    Disk subscription related parameter settings.
    disk_count float
    Disk count. Values: [1, 30]. Default: 1.
    disk_name str
    Disk name. Maximum length 60.
    disk_size float
    Disk size, unit: GB.
    disk_type str
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    lighthouse_disk_id str
    ID of the resource.
    zone str
    Availability zone.
    autoMountConfiguration Property Map
    Automatically mount and initialize data disks.
    autoVoucher Boolean
    Whether to automatically use the voucher. Not used by default.
    diskBackupQuota Number
    Specify the disk backup quota. If not uploaded, the default is no backup quota. Currently, only one disk backup quota is supported.
    diskChargePrepaid Property Map
    Disk subscription related parameter settings.
    diskCount Number
    Disk count. Values: [1, 30]. Default: 1.
    diskName String
    Disk name. Maximum length 60.
    diskSize Number
    Disk size, unit: GB.
    diskType String
    Disk type. Value:CLOUD_PREMIUM, CLOUD_SSD.
    lighthouseDiskId String
    ID of the resource.
    zone String
    Availability zone.

    Supporting Types

    LighthouseDiskAutoMountConfiguration, LighthouseDiskAutoMountConfigurationArgs

    InstanceId string
    Instance ID to be mounted. The specified instance must be in the Running state.
    FileSystemType string
    The file system type. Value: ext4, xfs. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it defaults to ext4.
    MountPoint string
    The mount point within the instance. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it will be mounted under the /data/disk path by default.
    InstanceId string
    Instance ID to be mounted. The specified instance must be in the Running state.
    FileSystemType string
    The file system type. Value: ext4, xfs. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it defaults to ext4.
    MountPoint string
    The mount point within the instance. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it will be mounted under the /data/disk path by default.
    instanceId String
    Instance ID to be mounted. The specified instance must be in the Running state.
    fileSystemType String
    The file system type. Value: ext4, xfs. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it defaults to ext4.
    mountPoint String
    The mount point within the instance. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it will be mounted under the /data/disk path by default.
    instanceId string
    Instance ID to be mounted. The specified instance must be in the Running state.
    fileSystemType string
    The file system type. Value: ext4, xfs. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it defaults to ext4.
    mountPoint string
    The mount point within the instance. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it will be mounted under the /data/disk path by default.
    instance_id str
    Instance ID to be mounted. The specified instance must be in the Running state.
    file_system_type str
    The file system type. Value: ext4, xfs. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it defaults to ext4.
    mount_point str
    The mount point within the instance. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it will be mounted under the /data/disk path by default.
    instanceId String
    Instance ID to be mounted. The specified instance must be in the Running state.
    fileSystemType String
    The file system type. Value: ext4, xfs. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it defaults to ext4.
    mountPoint String
    The mount point within the instance. Only instances of the Linux operating system can pass in this parameter, and if it is not passed, it will be mounted under the /data/disk path by default.

    LighthouseDiskDiskChargePrepaid, LighthouseDiskDiskChargePrepaidArgs

    Period double
    new purchase cycle.
    RenewFlag string
    Automatic renewal flag. Value: NOTIFY_AND_AUTO_RENEW: Notice expires and auto-renews. NOTIFY_AND_MANUAL_RENEW: Notification expires without automatic renewal, users need to manually renew. DISABLE_NOTIFY_AND_AUTO_RENEW: No automatic renewal and no notification. Default: NOTIFY_AND_MANUAL_RENEW. If this parameter is specified as NOTIFY_AND_AUTO_RENEW, the disk will be automatically renewed monthly when the account balance is sufficient.
    TimeUnit string
    newly purchased unit. Default: m.
    Period float64
    new purchase cycle.
    RenewFlag string
    Automatic renewal flag. Value: NOTIFY_AND_AUTO_RENEW: Notice expires and auto-renews. NOTIFY_AND_MANUAL_RENEW: Notification expires without automatic renewal, users need to manually renew. DISABLE_NOTIFY_AND_AUTO_RENEW: No automatic renewal and no notification. Default: NOTIFY_AND_MANUAL_RENEW. If this parameter is specified as NOTIFY_AND_AUTO_RENEW, the disk will be automatically renewed monthly when the account balance is sufficient.
    TimeUnit string
    newly purchased unit. Default: m.
    period Double
    new purchase cycle.
    renewFlag String
    Automatic renewal flag. Value: NOTIFY_AND_AUTO_RENEW: Notice expires and auto-renews. NOTIFY_AND_MANUAL_RENEW: Notification expires without automatic renewal, users need to manually renew. DISABLE_NOTIFY_AND_AUTO_RENEW: No automatic renewal and no notification. Default: NOTIFY_AND_MANUAL_RENEW. If this parameter is specified as NOTIFY_AND_AUTO_RENEW, the disk will be automatically renewed monthly when the account balance is sufficient.
    timeUnit String
    newly purchased unit. Default: m.
    period number
    new purchase cycle.
    renewFlag string
    Automatic renewal flag. Value: NOTIFY_AND_AUTO_RENEW: Notice expires and auto-renews. NOTIFY_AND_MANUAL_RENEW: Notification expires without automatic renewal, users need to manually renew. DISABLE_NOTIFY_AND_AUTO_RENEW: No automatic renewal and no notification. Default: NOTIFY_AND_MANUAL_RENEW. If this parameter is specified as NOTIFY_AND_AUTO_RENEW, the disk will be automatically renewed monthly when the account balance is sufficient.
    timeUnit string
    newly purchased unit. Default: m.
    period float
    new purchase cycle.
    renew_flag str
    Automatic renewal flag. Value: NOTIFY_AND_AUTO_RENEW: Notice expires and auto-renews. NOTIFY_AND_MANUAL_RENEW: Notification expires without automatic renewal, users need to manually renew. DISABLE_NOTIFY_AND_AUTO_RENEW: No automatic renewal and no notification. Default: NOTIFY_AND_MANUAL_RENEW. If this parameter is specified as NOTIFY_AND_AUTO_RENEW, the disk will be automatically renewed monthly when the account balance is sufficient.
    time_unit str
    newly purchased unit. Default: m.
    period Number
    new purchase cycle.
    renewFlag String
    Automatic renewal flag. Value: NOTIFY_AND_AUTO_RENEW: Notice expires and auto-renews. NOTIFY_AND_MANUAL_RENEW: Notification expires without automatic renewal, users need to manually renew. DISABLE_NOTIFY_AND_AUTO_RENEW: No automatic renewal and no notification. Default: NOTIFY_AND_MANUAL_RENEW. If this parameter is specified as NOTIFY_AND_AUTO_RENEW, the disk will be automatically renewed monthly when the account balance is sufficient.
    timeUnit String
    newly purchased unit. Default: m.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack