tencentcloud.SslUpdateCertificateInstanceOperation
Explore with Pulumi AI
Provides a resource to create a ssl update_certificate_instance
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const updateCertificateInstance = new tencentcloud.SslUpdateCertificateInstanceOperation("updateCertificateInstance", {
certificateId: "8x1eUSSl",
oldCertificateId: "8xNdi2ig",
resourceTypes: ["cdn"],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
update_certificate_instance = tencentcloud.SslUpdateCertificateInstanceOperation("updateCertificateInstance",
certificate_id="8x1eUSSl",
old_certificate_id="8xNdi2ig",
resource_types=["cdn"])
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.NewSslUpdateCertificateInstanceOperation(ctx, "updateCertificateInstance", &tencentcloud.SslUpdateCertificateInstanceOperationArgs{
CertificateId: pulumi.String("8x1eUSSl"),
OldCertificateId: pulumi.String("8xNdi2ig"),
ResourceTypes: pulumi.StringArray{
pulumi.String("cdn"),
},
})
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 updateCertificateInstance = new Tencentcloud.SslUpdateCertificateInstanceOperation("updateCertificateInstance", new()
{
CertificateId = "8x1eUSSl",
OldCertificateId = "8xNdi2ig",
ResourceTypes = new[]
{
"cdn",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.SslUpdateCertificateInstanceOperation;
import com.pulumi.tencentcloud.SslUpdateCertificateInstanceOperationArgs;
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 updateCertificateInstance = new SslUpdateCertificateInstanceOperation("updateCertificateInstance", SslUpdateCertificateInstanceOperationArgs.builder()
.certificateId("8x1eUSSl")
.oldCertificateId("8xNdi2ig")
.resourceTypes("cdn")
.build());
}
}
resources:
updateCertificateInstance:
type: tencentcloud:SslUpdateCertificateInstanceOperation
properties:
certificateId: 8x1eUSSl
oldCertificateId: 8xNdi2ig
resourceTypes:
- cdn
Upload certificate
import * as pulumi from "@pulumi/pulumi";
import * as fs from "fs";
import * as tencentcloud from "@pulumi/tencentcloud";
const updateCertificateInstance = new tencentcloud.SslUpdateCertificateInstanceOperation("updateCertificateInstance", {
oldCertificateId: "xxx",
certificatePublicKey: fs.readFileSync("xxx.crt", "utf8"),
certificatePrivateKey: fs.readFileSync("xxx.key", "utf8"),
repeatable: true,
resourceTypes: ["cdn"],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
update_certificate_instance = tencentcloud.SslUpdateCertificateInstanceOperation("updateCertificateInstance",
old_certificate_id="xxx",
certificate_public_key=(lambda path: open(path).read())("xxx.crt"),
certificate_private_key=(lambda path: open(path).read())("xxx.key"),
repeatable=True,
resource_types=["cdn"])
package main
import (
"os"
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func readFileOrPanic(path string) pulumi.StringPtrInput {
data, err := os.ReadFile(path)
if err != nil {
panic(err.Error())
}
return pulumi.String(string(data))
}
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewSslUpdateCertificateInstanceOperation(ctx, "updateCertificateInstance", &tencentcloud.SslUpdateCertificateInstanceOperationArgs{
OldCertificateId: pulumi.String("xxx"),
CertificatePublicKey: pulumi.String(readFileOrPanic("xxx.crt")),
CertificatePrivateKey: pulumi.String(readFileOrPanic("xxx.key")),
Repeatable: pulumi.Bool(true),
ResourceTypes: pulumi.StringArray{
pulumi.String("cdn"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var updateCertificateInstance = new Tencentcloud.SslUpdateCertificateInstanceOperation("updateCertificateInstance", new()
{
OldCertificateId = "xxx",
CertificatePublicKey = File.ReadAllText("xxx.crt"),
CertificatePrivateKey = File.ReadAllText("xxx.key"),
Repeatable = true,
ResourceTypes = new[]
{
"cdn",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.SslUpdateCertificateInstanceOperation;
import com.pulumi.tencentcloud.SslUpdateCertificateInstanceOperationArgs;
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 updateCertificateInstance = new SslUpdateCertificateInstanceOperation("updateCertificateInstance", SslUpdateCertificateInstanceOperationArgs.builder()
.oldCertificateId("xxx")
.certificatePublicKey(Files.readString(Paths.get("xxx.crt")))
.certificatePrivateKey(Files.readString(Paths.get("xxx.key")))
.repeatable(true)
.resourceTypes("cdn")
.build());
}
}
resources:
updateCertificateInstance:
type: tencentcloud:SslUpdateCertificateInstanceOperation
properties:
oldCertificateId: xxx
certificatePublicKey:
fn::readFile: xxx.crt
certificatePrivateKey:
fn::readFile: xxx.key
repeatable: true
resourceTypes:
- cdn
Create SslUpdateCertificateInstanceOperation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SslUpdateCertificateInstanceOperation(name: string, args: SslUpdateCertificateInstanceOperationArgs, opts?: CustomResourceOptions);
@overload
def SslUpdateCertificateInstanceOperation(resource_name: str,
args: SslUpdateCertificateInstanceOperationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SslUpdateCertificateInstanceOperation(resource_name: str,
opts: Optional[ResourceOptions] = None,
old_certificate_id: Optional[str] = None,
resource_types: Optional[Sequence[str]] = None,
allow_download: Optional[bool] = None,
certificate_id: Optional[str] = None,
certificate_private_key: Optional[str] = None,
certificate_public_key: Optional[str] = None,
expiring_notification_switch: Optional[float] = None,
project_id: Optional[float] = None,
repeatable: Optional[bool] = None,
resource_types_regions: Optional[Sequence[SslUpdateCertificateInstanceOperationResourceTypesRegionArgs]] = None,
ssl_update_certificate_instance_operation_id: Optional[str] = None)
func NewSslUpdateCertificateInstanceOperation(ctx *Context, name string, args SslUpdateCertificateInstanceOperationArgs, opts ...ResourceOption) (*SslUpdateCertificateInstanceOperation, error)
public SslUpdateCertificateInstanceOperation(string name, SslUpdateCertificateInstanceOperationArgs args, CustomResourceOptions? opts = null)
public SslUpdateCertificateInstanceOperation(String name, SslUpdateCertificateInstanceOperationArgs args)
public SslUpdateCertificateInstanceOperation(String name, SslUpdateCertificateInstanceOperationArgs args, CustomResourceOptions options)
type: tencentcloud:SslUpdateCertificateInstanceOperation
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 SslUpdateCertificateInstanceOperationArgs
- 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 SslUpdateCertificateInstanceOperationArgs
- 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 SslUpdateCertificateInstanceOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SslUpdateCertificateInstanceOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SslUpdateCertificateInstanceOperationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
SslUpdateCertificateInstanceOperation 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 SslUpdateCertificateInstanceOperation resource accepts the following input properties:
- Old
Certificate stringId - Update the original certificate ID.
- Resource
Types List<string> - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- Allow
Download bool - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- Certificate
Id string - Update new certificate ID.
- Certificate
Private stringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- Certificate
Public stringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- Expiring
Notification doubleSwitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- Project
Id double - Project ID, if you choose to upload the certificate, you can configure this parameter.
- Repeatable bool
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- Resource
Types List<SslRegions Update Certificate Instance Operation Resource Types Region> - List of regions where cloud resources need to be deploye.
- Ssl
Update stringCertificate Instance Operation Id - ID of the resource.
- Old
Certificate stringId - Update the original certificate ID.
- Resource
Types []string - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- Allow
Download bool - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- Certificate
Id string - Update new certificate ID.
- Certificate
Private stringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- Certificate
Public stringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- Expiring
Notification float64Switch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- Project
Id float64 - Project ID, if you choose to upload the certificate, you can configure this parameter.
- Repeatable bool
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- Resource
Types []SslRegions Update Certificate Instance Operation Resource Types Region Args - List of regions where cloud resources need to be deploye.
- Ssl
Update stringCertificate Instance Operation Id - ID of the resource.
- old
Certificate StringId - Update the original certificate ID.
- resource
Types List<String> - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- allow
Download Boolean - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- certificate
Id String - Update new certificate ID.
- certificate
Private StringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- certificate
Public StringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- expiring
Notification DoubleSwitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- project
Id Double - Project ID, if you choose to upload the certificate, you can configure this parameter.
- repeatable Boolean
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- resource
Types List<SslRegions Update Certificate Instance Operation Resource Types Region> - List of regions where cloud resources need to be deploye.
- ssl
Update StringCertificate Instance Operation Id - ID of the resource.
- old
Certificate stringId - Update the original certificate ID.
- resource
Types string[] - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- allow
Download boolean - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- certificate
Id string - Update new certificate ID.
- certificate
Private stringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- certificate
Public stringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- expiring
Notification numberSwitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- project
Id number - Project ID, if you choose to upload the certificate, you can configure this parameter.
- repeatable boolean
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- resource
Types SslRegions Update Certificate Instance Operation Resource Types Region[] - List of regions where cloud resources need to be deploye.
- ssl
Update stringCertificate Instance Operation Id - ID of the resource.
- old_
certificate_ strid - Update the original certificate ID.
- resource_
types Sequence[str] - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- allow_
download bool - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- certificate_
id str - Update new certificate ID.
- certificate_
private_ strkey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- certificate_
public_ strkey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- expiring_
notification_ floatswitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- project_
id float - Project ID, if you choose to upload the certificate, you can configure this parameter.
- repeatable bool
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- resource_
types_ Sequence[Sslregions Update Certificate Instance Operation Resource Types Region Args] - List of regions where cloud resources need to be deploye.
- ssl_
update_ strcertificate_ instance_ operation_ id - ID of the resource.
- old
Certificate StringId - Update the original certificate ID.
- resource
Types List<String> - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- allow
Download Boolean - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- certificate
Id String - Update new certificate ID.
- certificate
Private StringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- certificate
Public StringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- expiring
Notification NumberSwitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- project
Id Number - Project ID, if you choose to upload the certificate, you can configure this parameter.
- repeatable Boolean
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- resource
Types List<Property Map>Regions - List of regions where cloud resources need to be deploye.
- ssl
Update StringCertificate Instance Operation Id - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the SslUpdateCertificateInstanceOperation 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 SslUpdateCertificateInstanceOperation Resource
Get an existing SslUpdateCertificateInstanceOperation 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?: SslUpdateCertificateInstanceOperationState, opts?: CustomResourceOptions): SslUpdateCertificateInstanceOperation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_download: Optional[bool] = None,
certificate_id: Optional[str] = None,
certificate_private_key: Optional[str] = None,
certificate_public_key: Optional[str] = None,
expiring_notification_switch: Optional[float] = None,
old_certificate_id: Optional[str] = None,
project_id: Optional[float] = None,
repeatable: Optional[bool] = None,
resource_types: Optional[Sequence[str]] = None,
resource_types_regions: Optional[Sequence[SslUpdateCertificateInstanceOperationResourceTypesRegionArgs]] = None,
ssl_update_certificate_instance_operation_id: Optional[str] = None) -> SslUpdateCertificateInstanceOperation
func GetSslUpdateCertificateInstanceOperation(ctx *Context, name string, id IDInput, state *SslUpdateCertificateInstanceOperationState, opts ...ResourceOption) (*SslUpdateCertificateInstanceOperation, error)
public static SslUpdateCertificateInstanceOperation Get(string name, Input<string> id, SslUpdateCertificateInstanceOperationState? state, CustomResourceOptions? opts = null)
public static SslUpdateCertificateInstanceOperation get(String name, Output<String> id, SslUpdateCertificateInstanceOperationState state, CustomResourceOptions options)
resources: _: type: tencentcloud:SslUpdateCertificateInstanceOperation 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.
- Allow
Download bool - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- Certificate
Id string - Update new certificate ID.
- Certificate
Private stringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- Certificate
Public stringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- Expiring
Notification doubleSwitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- Old
Certificate stringId - Update the original certificate ID.
- Project
Id double - Project ID, if you choose to upload the certificate, you can configure this parameter.
- Repeatable bool
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- Resource
Types List<string> - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- Resource
Types List<SslRegions Update Certificate Instance Operation Resource Types Region> - List of regions where cloud resources need to be deploye.
- Ssl
Update stringCertificate Instance Operation Id - ID of the resource.
- Allow
Download bool - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- Certificate
Id string - Update new certificate ID.
- Certificate
Private stringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- Certificate
Public stringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- Expiring
Notification float64Switch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- Old
Certificate stringId - Update the original certificate ID.
- Project
Id float64 - Project ID, if you choose to upload the certificate, you can configure this parameter.
- Repeatable bool
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- Resource
Types []string - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- Resource
Types []SslRegions Update Certificate Instance Operation Resource Types Region Args - List of regions where cloud resources need to be deploye.
- Ssl
Update stringCertificate Instance Operation Id - ID of the resource.
- allow
Download Boolean - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- certificate
Id String - Update new certificate ID.
- certificate
Private StringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- certificate
Public StringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- expiring
Notification DoubleSwitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- old
Certificate StringId - Update the original certificate ID.
- project
Id Double - Project ID, if you choose to upload the certificate, you can configure this parameter.
- repeatable Boolean
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- resource
Types List<String> - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- resource
Types List<SslRegions Update Certificate Instance Operation Resource Types Region> - List of regions where cloud resources need to be deploye.
- ssl
Update StringCertificate Instance Operation Id - ID of the resource.
- allow
Download boolean - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- certificate
Id string - Update new certificate ID.
- certificate
Private stringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- certificate
Public stringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- expiring
Notification numberSwitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- old
Certificate stringId - Update the original certificate ID.
- project
Id number - Project ID, if you choose to upload the certificate, you can configure this parameter.
- repeatable boolean
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- resource
Types string[] - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- resource
Types SslRegions Update Certificate Instance Operation Resource Types Region[] - List of regions where cloud resources need to be deploye.
- ssl
Update stringCertificate Instance Operation Id - ID of the resource.
- allow_
download bool - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- certificate_
id str - Update new certificate ID.
- certificate_
private_ strkey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- certificate_
public_ strkey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- expiring_
notification_ floatswitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- old_
certificate_ strid - Update the original certificate ID.
- project_
id float - Project ID, if you choose to upload the certificate, you can configure this parameter.
- repeatable bool
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- resource_
types Sequence[str] - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- resource_
types_ Sequence[Sslregions Update Certificate Instance Operation Resource Types Region Args] - List of regions where cloud resources need to be deploye.
- ssl_
update_ strcertificate_ instance_ operation_ id - ID of the resource.
- allow
Download Boolean - Whether to allow downloading, if you choose to upload the certificate, you can configure this parameter.
- certificate
Id String - Update new certificate ID.
- certificate
Private StringKey - Certificate private key. If you upload the certificate public key, CertificateId does not need to be passed.
- certificate
Public StringKey - Certificate public key. If you upload the certificate public key, CertificateId does not need to be passed.
- expiring
Notification NumberSwitch - Whether to ignore expiration reminders for old certificates 0: Do not ignore notifications. 1: Ignore the notification and ignore the OldCertificateId expiration reminder.
- old
Certificate StringId - Update the original certificate ID.
- project
Id Number - Project ID, if you choose to upload the certificate, you can configure this parameter.
- repeatable Boolean
- Whether the same certificate is allowed to be uploaded repeatedly. If you choose to upload the certificate, you can configure this parameter.
- resource
Types List<String> - The resource type that needs to be deployed. The parameter value is optional: clb, cdn, waf, live, ddos, teo, apigateway, vod, tke, tcb.
- resource
Types List<Property Map>Regions - List of regions where cloud resources need to be deploye.
- ssl
Update StringCertificate Instance Operation Id - ID of the resource.
Supporting Types
SslUpdateCertificateInstanceOperationResourceTypesRegion, SslUpdateCertificateInstanceOperationResourceTypesRegionArgs
- Regions List<string>
- Region list.
- Resource
Type string - Cloud resource type.
- Regions []string
- Region list.
- Resource
Type string - Cloud resource type.
- regions List<String>
- Region list.
- resource
Type String - Cloud resource type.
- regions string[]
- Region list.
- resource
Type string - Cloud resource type.
- regions Sequence[str]
- Region list.
- resource_
type str - Cloud resource type.
- regions List<String>
- Region list.
- resource
Type String - Cloud resource type.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.