tencentcloud.MysqlRenewDbInstanceOperation
Explore with Pulumi AI
Provides a resource to create a mysql renew_db_instance_operation
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const zones = tencentcloud.getAvailabilityZonesByProduct({
product: "cdb",
});
const vpc = new tencentcloud.Vpc("vpc", {cidrBlock: "10.0.0.0/16"});
const subnet = new tencentcloud.Subnet("subnet", {
availabilityZone: zones.then(zones => zones.zones?.[0]?.name),
vpcId: vpc.vpcId,
cidrBlock: "10.0.0.0/16",
isMulticast: false,
});
const securityGroup = new tencentcloud.SecurityGroup("securityGroup", {description: "mysql test"});
const exampleMysqlInstance = new tencentcloud.MysqlInstance("exampleMysqlInstance", {
internetService: 1,
engineVersion: "5.7",
chargeType: "PREPAID",
rootPassword: "PassWord123",
slaveDeployMode: 1,
availabilityZone: zones.then(zones => zones.zones?.[0]?.name),
firstSlaveZone: zones.then(zones => zones.zones?.[1]?.name),
slaveSyncMode: 1,
instanceName: "tf-example-mysql",
memSize: 4000,
volumeSize: 200,
vpcId: vpc.vpcId,
subnetId: subnet.subnetId,
intranetPort: 3306,
securityGroups: [securityGroup.securityGroupId],
tags: {
name: "test",
},
parameters: {
character_set_server: "utf8",
max_connections: "1000",
},
});
const exampleMysqlRollbackRangeTime = tencentcloud.getMysqlRollbackRangeTimeOutput({
instanceIds: [exampleMysqlInstance.mysqlInstanceId],
});
const exampleMysqlRenewDbInstanceOperation = new tencentcloud.MysqlRenewDbInstanceOperation("exampleMysqlRenewDbInstanceOperation", {
instanceId: exampleMysqlInstance.mysqlInstanceId,
timeSpan: 1,
modifyPayType: "PREPAID",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
zones = tencentcloud.get_availability_zones_by_product(product="cdb")
vpc = tencentcloud.Vpc("vpc", cidr_block="10.0.0.0/16")
subnet = tencentcloud.Subnet("subnet",
availability_zone=zones.zones[0].name,
vpc_id=vpc.vpc_id,
cidr_block="10.0.0.0/16",
is_multicast=False)
security_group = tencentcloud.SecurityGroup("securityGroup", description="mysql test")
example_mysql_instance = tencentcloud.MysqlInstance("exampleMysqlInstance",
internet_service=1,
engine_version="5.7",
charge_type="PREPAID",
root_password="PassWord123",
slave_deploy_mode=1,
availability_zone=zones.zones[0].name,
first_slave_zone=zones.zones[1].name,
slave_sync_mode=1,
instance_name="tf-example-mysql",
mem_size=4000,
volume_size=200,
vpc_id=vpc.vpc_id,
subnet_id=subnet.subnet_id,
intranet_port=3306,
security_groups=[security_group.security_group_id],
tags={
"name": "test",
},
parameters={
"character_set_server": "utf8",
"max_connections": "1000",
})
example_mysql_rollback_range_time = tencentcloud.get_mysql_rollback_range_time_output(instance_ids=[example_mysql_instance.mysql_instance_id])
example_mysql_renew_db_instance_operation = tencentcloud.MysqlRenewDbInstanceOperation("exampleMysqlRenewDbInstanceOperation",
instance_id=example_mysql_instance.mysql_instance_id,
time_span=1,
modify_pay_type="PREPAID")
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 {
zones, err := tencentcloud.GetAvailabilityZonesByProduct(ctx, &tencentcloud.GetAvailabilityZonesByProductArgs{
Product: "cdb",
}, nil)
if err != nil {
return err
}
vpc, err := tencentcloud.NewVpc(ctx, "vpc", &tencentcloud.VpcArgs{
CidrBlock: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
subnet, err := tencentcloud.NewSubnet(ctx, "subnet", &tencentcloud.SubnetArgs{
AvailabilityZone: pulumi.String(zones.Zones[0].Name),
VpcId: vpc.VpcId,
CidrBlock: pulumi.String("10.0.0.0/16"),
IsMulticast: pulumi.Bool(false),
})
if err != nil {
return err
}
securityGroup, err := tencentcloud.NewSecurityGroup(ctx, "securityGroup", &tencentcloud.SecurityGroupArgs{
Description: pulumi.String("mysql test"),
})
if err != nil {
return err
}
exampleMysqlInstance, err := tencentcloud.NewMysqlInstance(ctx, "exampleMysqlInstance", &tencentcloud.MysqlInstanceArgs{
InternetService: pulumi.Float64(1),
EngineVersion: pulumi.String("5.7"),
ChargeType: pulumi.String("PREPAID"),
RootPassword: pulumi.String("PassWord123"),
SlaveDeployMode: pulumi.Float64(1),
AvailabilityZone: pulumi.String(zones.Zones[0].Name),
FirstSlaveZone: pulumi.String(zones.Zones[1].Name),
SlaveSyncMode: pulumi.Float64(1),
InstanceName: pulumi.String("tf-example-mysql"),
MemSize: pulumi.Float64(4000),
VolumeSize: pulumi.Float64(200),
VpcId: vpc.VpcId,
SubnetId: subnet.SubnetId,
IntranetPort: pulumi.Float64(3306),
SecurityGroups: pulumi.StringArray{
securityGroup.SecurityGroupId,
},
Tags: pulumi.StringMap{
"name": pulumi.String("test"),
},
Parameters: pulumi.StringMap{
"character_set_server": pulumi.String("utf8"),
"max_connections": pulumi.String("1000"),
},
})
if err != nil {
return err
}
_ = tencentcloud.GetMysqlRollbackRangeTimeOutput(ctx, tencentcloud.GetMysqlRollbackRangeTimeOutputArgs{
InstanceIds: pulumi.StringArray{
exampleMysqlInstance.MysqlInstanceId,
},
}, nil)
_, err = tencentcloud.NewMysqlRenewDbInstanceOperation(ctx, "exampleMysqlRenewDbInstanceOperation", &tencentcloud.MysqlRenewDbInstanceOperationArgs{
InstanceId: exampleMysqlInstance.MysqlInstanceId,
TimeSpan: pulumi.Float64(1),
ModifyPayType: pulumi.String("PREPAID"),
})
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 zones = Tencentcloud.GetAvailabilityZonesByProduct.Invoke(new()
{
Product = "cdb",
});
var vpc = new Tencentcloud.Vpc("vpc", new()
{
CidrBlock = "10.0.0.0/16",
});
var subnet = new Tencentcloud.Subnet("subnet", new()
{
AvailabilityZone = zones.Apply(getAvailabilityZonesByProductResult => getAvailabilityZonesByProductResult.Zones[0]?.Name),
VpcId = vpc.VpcId,
CidrBlock = "10.0.0.0/16",
IsMulticast = false,
});
var securityGroup = new Tencentcloud.SecurityGroup("securityGroup", new()
{
Description = "mysql test",
});
var exampleMysqlInstance = new Tencentcloud.MysqlInstance("exampleMysqlInstance", new()
{
InternetService = 1,
EngineVersion = "5.7",
ChargeType = "PREPAID",
RootPassword = "PassWord123",
SlaveDeployMode = 1,
AvailabilityZone = zones.Apply(getAvailabilityZonesByProductResult => getAvailabilityZonesByProductResult.Zones[0]?.Name),
FirstSlaveZone = zones.Apply(getAvailabilityZonesByProductResult => getAvailabilityZonesByProductResult.Zones[1]?.Name),
SlaveSyncMode = 1,
InstanceName = "tf-example-mysql",
MemSize = 4000,
VolumeSize = 200,
VpcId = vpc.VpcId,
SubnetId = subnet.SubnetId,
IntranetPort = 3306,
SecurityGroups = new[]
{
securityGroup.SecurityGroupId,
},
Tags =
{
{ "name", "test" },
},
Parameters =
{
{ "character_set_server", "utf8" },
{ "max_connections", "1000" },
},
});
var exampleMysqlRollbackRangeTime = Tencentcloud.GetMysqlRollbackRangeTime.Invoke(new()
{
InstanceIds = new[]
{
exampleMysqlInstance.MysqlInstanceId,
},
});
var exampleMysqlRenewDbInstanceOperation = new Tencentcloud.MysqlRenewDbInstanceOperation("exampleMysqlRenewDbInstanceOperation", new()
{
InstanceId = exampleMysqlInstance.MysqlInstanceId,
TimeSpan = 1,
ModifyPayType = "PREPAID",
});
});
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.GetAvailabilityZonesByProductArgs;
import com.pulumi.tencentcloud.Vpc;
import com.pulumi.tencentcloud.VpcArgs;
import com.pulumi.tencentcloud.Subnet;
import com.pulumi.tencentcloud.SubnetArgs;
import com.pulumi.tencentcloud.SecurityGroup;
import com.pulumi.tencentcloud.SecurityGroupArgs;
import com.pulumi.tencentcloud.MysqlInstance;
import com.pulumi.tencentcloud.MysqlInstanceArgs;
import com.pulumi.tencentcloud.inputs.GetMysqlRollbackRangeTimeArgs;
import com.pulumi.tencentcloud.MysqlRenewDbInstanceOperation;
import com.pulumi.tencentcloud.MysqlRenewDbInstanceOperationArgs;
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 zones = TencentcloudFunctions.getAvailabilityZonesByProduct(GetAvailabilityZonesByProductArgs.builder()
.product("cdb")
.build());
var vpc = new Vpc("vpc", VpcArgs.builder()
.cidrBlock("10.0.0.0/16")
.build());
var subnet = new Subnet("subnet", SubnetArgs.builder()
.availabilityZone(zones.applyValue(getAvailabilityZonesByProductResult -> getAvailabilityZonesByProductResult.zones()[0].name()))
.vpcId(vpc.vpcId())
.cidrBlock("10.0.0.0/16")
.isMulticast(false)
.build());
var securityGroup = new SecurityGroup("securityGroup", SecurityGroupArgs.builder()
.description("mysql test")
.build());
var exampleMysqlInstance = new MysqlInstance("exampleMysqlInstance", MysqlInstanceArgs.builder()
.internetService(1)
.engineVersion("5.7")
.chargeType("PREPAID")
.rootPassword("PassWord123")
.slaveDeployMode(1)
.availabilityZone(zones.applyValue(getAvailabilityZonesByProductResult -> getAvailabilityZonesByProductResult.zones()[0].name()))
.firstSlaveZone(zones.applyValue(getAvailabilityZonesByProductResult -> getAvailabilityZonesByProductResult.zones()[1].name()))
.slaveSyncMode(1)
.instanceName("tf-example-mysql")
.memSize(4000)
.volumeSize(200)
.vpcId(vpc.vpcId())
.subnetId(subnet.subnetId())
.intranetPort(3306)
.securityGroups(securityGroup.securityGroupId())
.tags(Map.of("name", "test"))
.parameters(Map.ofEntries(
Map.entry("character_set_server", "utf8"),
Map.entry("max_connections", "1000")
))
.build());
final var exampleMysqlRollbackRangeTime = TencentcloudFunctions.getMysqlRollbackRangeTime(GetMysqlRollbackRangeTimeArgs.builder()
.instanceIds(exampleMysqlInstance.mysqlInstanceId())
.build());
var exampleMysqlRenewDbInstanceOperation = new MysqlRenewDbInstanceOperation("exampleMysqlRenewDbInstanceOperation", MysqlRenewDbInstanceOperationArgs.builder()
.instanceId(exampleMysqlInstance.mysqlInstanceId())
.timeSpan(1)
.modifyPayType("PREPAID")
.build());
}
}
resources:
vpc:
type: tencentcloud:Vpc
properties:
cidrBlock: 10.0.0.0/16
subnet:
type: tencentcloud:Subnet
properties:
availabilityZone: ${zones.zones[0].name}
vpcId: ${vpc.vpcId}
cidrBlock: 10.0.0.0/16
isMulticast: false
securityGroup:
type: tencentcloud:SecurityGroup
properties:
description: mysql test
exampleMysqlInstance:
type: tencentcloud:MysqlInstance
properties:
internetService: 1
engineVersion: '5.7'
chargeType: PREPAID
rootPassword: PassWord123
slaveDeployMode: 1
availabilityZone: ${zones.zones[0].name}
firstSlaveZone: ${zones.zones[1].name}
slaveSyncMode: 1
instanceName: tf-example-mysql
memSize: 4000
volumeSize: 200
vpcId: ${vpc.vpcId}
subnetId: ${subnet.subnetId}
intranetPort: 3306
securityGroups:
- ${securityGroup.securityGroupId}
tags:
name: test
parameters:
character_set_server: utf8
max_connections: '1000'
exampleMysqlRenewDbInstanceOperation:
type: tencentcloud:MysqlRenewDbInstanceOperation
properties:
instanceId: ${exampleMysqlInstance.mysqlInstanceId}
timeSpan: 1
modifyPayType: PREPAID
variables:
zones:
fn::invoke:
function: tencentcloud:getAvailabilityZonesByProduct
arguments:
product: cdb
exampleMysqlRollbackRangeTime:
fn::invoke:
function: tencentcloud:getMysqlRollbackRangeTime
arguments:
instanceIds:
- ${exampleMysqlInstance.mysqlInstanceId}
Create MysqlRenewDbInstanceOperation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MysqlRenewDbInstanceOperation(name: string, args: MysqlRenewDbInstanceOperationArgs, opts?: CustomResourceOptions);
@overload
def MysqlRenewDbInstanceOperation(resource_name: str,
args: MysqlRenewDbInstanceOperationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MysqlRenewDbInstanceOperation(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
time_span: Optional[float] = None,
modify_pay_type: Optional[str] = None,
mysql_renew_db_instance_operation_id: Optional[str] = None)
func NewMysqlRenewDbInstanceOperation(ctx *Context, name string, args MysqlRenewDbInstanceOperationArgs, opts ...ResourceOption) (*MysqlRenewDbInstanceOperation, error)
public MysqlRenewDbInstanceOperation(string name, MysqlRenewDbInstanceOperationArgs args, CustomResourceOptions? opts = null)
public MysqlRenewDbInstanceOperation(String name, MysqlRenewDbInstanceOperationArgs args)
public MysqlRenewDbInstanceOperation(String name, MysqlRenewDbInstanceOperationArgs args, CustomResourceOptions options)
type: tencentcloud:MysqlRenewDbInstanceOperation
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 MysqlRenewDbInstanceOperationArgs
- 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 MysqlRenewDbInstanceOperationArgs
- 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 MysqlRenewDbInstanceOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MysqlRenewDbInstanceOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MysqlRenewDbInstanceOperationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MysqlRenewDbInstanceOperation 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 MysqlRenewDbInstanceOperation resource accepts the following input properties:
- Instance
Id string - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- Time
Span double - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- Modify
Pay stringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - Mysql
Renew stringDb Instance Operation Id - ID of the resource.
- Instance
Id string - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- Time
Span float64 - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- Modify
Pay stringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - Mysql
Renew stringDb Instance Operation Id - ID of the resource.
- instance
Id String - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- time
Span Double - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- modify
Pay StringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - mysql
Renew StringDb Instance Operation Id - ID of the resource.
- instance
Id string - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- time
Span number - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- modify
Pay stringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - mysql
Renew stringDb Instance Operation Id - ID of the resource.
- instance_
id str - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- time_
span float - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- modify_
pay_ strtype - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - mysql_
renew_ strdb_ instance_ operation_ id - ID of the resource.
- instance
Id String - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- time
Span Number - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- modify
Pay StringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - mysql
Renew StringDb Instance Operation Id - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the MysqlRenewDbInstanceOperation resource produces the following output properties:
- Deadline
Time string - Instance expiration time.
- Deal
Id string - Deal id.
- Id string
- The provider-assigned unique ID for this managed resource.
- Deadline
Time string - Instance expiration time.
- Deal
Id string - Deal id.
- Id string
- The provider-assigned unique ID for this managed resource.
- deadline
Time String - Instance expiration time.
- deal
Id String - Deal id.
- id String
- The provider-assigned unique ID for this managed resource.
- deadline
Time string - Instance expiration time.
- deal
Id string - Deal id.
- id string
- The provider-assigned unique ID for this managed resource.
- deadline_
time str - Instance expiration time.
- deal_
id str - Deal id.
- id str
- The provider-assigned unique ID for this managed resource.
- deadline
Time String - Instance expiration time.
- deal
Id String - Deal id.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing MysqlRenewDbInstanceOperation Resource
Get an existing MysqlRenewDbInstanceOperation 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?: MysqlRenewDbInstanceOperationState, opts?: CustomResourceOptions): MysqlRenewDbInstanceOperation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
deadline_time: Optional[str] = None,
deal_id: Optional[str] = None,
instance_id: Optional[str] = None,
modify_pay_type: Optional[str] = None,
mysql_renew_db_instance_operation_id: Optional[str] = None,
time_span: Optional[float] = None) -> MysqlRenewDbInstanceOperation
func GetMysqlRenewDbInstanceOperation(ctx *Context, name string, id IDInput, state *MysqlRenewDbInstanceOperationState, opts ...ResourceOption) (*MysqlRenewDbInstanceOperation, error)
public static MysqlRenewDbInstanceOperation Get(string name, Input<string> id, MysqlRenewDbInstanceOperationState? state, CustomResourceOptions? opts = null)
public static MysqlRenewDbInstanceOperation get(String name, Output<String> id, MysqlRenewDbInstanceOperationState state, CustomResourceOptions options)
resources: _: type: tencentcloud:MysqlRenewDbInstanceOperation 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.
- Deadline
Time string - Instance expiration time.
- Deal
Id string - Deal id.
- Instance
Id string - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- Modify
Pay stringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - Mysql
Renew stringDb Instance Operation Id - ID of the resource.
- Time
Span double - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- Deadline
Time string - Instance expiration time.
- Deal
Id string - Deal id.
- Instance
Id string - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- Modify
Pay stringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - Mysql
Renew stringDb Instance Operation Id - ID of the resource.
- Time
Span float64 - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- deadline
Time String - Instance expiration time.
- deal
Id String - Deal id.
- instance
Id String - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- modify
Pay StringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - mysql
Renew StringDb Instance Operation Id - ID of the resource.
- time
Span Double - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- deadline
Time string - Instance expiration time.
- deal
Id string - Deal id.
- instance
Id string - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- modify
Pay stringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - mysql
Renew stringDb Instance Operation Id - ID of the resource.
- time
Span number - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- deadline_
time str - Instance expiration time.
- deal_
id str - Deal id.
- instance_
id str - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- modify_
pay_ strtype - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - mysql_
renew_ strdb_ instance_ operation_ id - ID of the resource.
- time_
span float - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
- deadline
Time String - Instance expiration time.
- deal
Id String - Deal id.
- instance
Id String - The instance ID to be renewed, the format is: cdb-c1nl9rpv, which is the same as the instance ID displayed on the cloud database console page, you can use [Query Instance List](https://cloud.tencent.com/document/api/236/ 15872).
- modify
Pay StringType - If you need to renew the Pay-As-You-Go instance to a Subscription instance, the value of this input parameter needs to be specified as
PREPAID
. - mysql
Renew StringDb Instance Operation Id - ID of the resource.
- time
Span Number - Renewal duration, unit: month, optional values include [1,2,3,4,5,6,7,8,9,10,11,12,24,36].
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.