Viewing docs for Alibaba Cloud v3.106.0
published on Monday, Aug 24, 2026 by Pulumi
published on Monday, Aug 24, 2026 by Pulumi
Viewing docs for Alibaba Cloud v3.106.0
published on Monday, Aug 24, 2026 by Pulumi
published on Monday, Aug 24, 2026 by Pulumi
This data source provides Ssl Certificates Service Instance available to the user.What is Instance
NOTE: Available since v1.287.0.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const defaultSslCertificatesServiceInstance = new alicloud.sslcertificatesserviceinstance.SslCertificatesServiceInstance("default", {
productType: "cas",
period: 12,
pricingCycle: 2,
instanceName: name,
parameters: [
{
code: "fullSpec",
value: "ws.dv.f",
},
{
code: "fullDomainCount",
value: "1",
},
],
});
const _default = alicloud.sslcertificatesservice.InstancesOutput({
ids: [defaultSslCertificatesServiceInstance.id],
});
export const alicloudSslCertificatesServiceInstanceExampleId = _default.apply(_default => _default.instances?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default_ssl_certificates_service_instance = alicloud.sslcertificatesserviceinstance.SslCertificatesServiceInstance("default",
product_type="cas",
period=12,
pricing_cycle=2,
instance_name=name,
parameters=[
{
"code": "fullSpec",
"value": "ws.dv.f",
},
{
"code": "fullDomainCount",
"value": "1",
},
])
default = alicloud.sslcertificatesservice.instances_output(ids=[default_ssl_certificates_service_instance.id])
pulumi.export("alicloudSslCertificatesServiceInstanceExampleId", default.instances[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/sslcertificatesservice"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/sslcertificatesserviceinstance"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
defaultSslCertificatesServiceInstance, err := sslcertificatesserviceinstance.NewSslCertificatesServiceInstance(ctx, "default", &sslcertificatesserviceinstance.SslCertificatesServiceInstanceArgs{
ProductType: pulumi.String("cas"),
Period: pulumi.Int(12),
PricingCycle: pulumi.Int(2),
InstanceName: pulumi.String(name),
Parameters: sslcertificatesserviceinstance.SslCertificatesServiceInstanceParameterArray{
&sslcertificatesserviceinstance.SslCertificatesServiceInstanceParameterArgs{
Code: pulumi.String("fullSpec"),
Value: pulumi.String("ws.dv.f"),
},
&sslcertificatesserviceinstance.SslCertificatesServiceInstanceParameterArgs{
Code: pulumi.String("fullDomainCount"),
Value: pulumi.String("1"),
},
},
})
if err != nil {
return err
}
_default := sslcertificatesservice.InstancesOutput(ctx, sslcertificatesservice.InstancesOutputArgs{
Ids: pulumi.StringArray{
defaultSslCertificatesServiceInstance.ID().ToIDOutput().ToStringOutput(),
},
}, nil)
ctx.Export("alicloudSslCertificatesServiceInstanceExampleId", _default.ApplyT(func(_default sslcertificatesservice.InstancesResult) (*string, error) {
return _default.Instances[0].Id, nil
}).(pulumi.StringPtrOutput))
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var defaultSslCertificatesServiceInstance = new AliCloud.SslCertificatesServiceInstance.SslCertificatesServiceInstance("default", new()
{
ProductType = "cas",
Period = 12,
PricingCycle = 2,
InstanceName = name,
Parameters = new[]
{
new AliCloud.sslCertificatesServiceInstance.Inputs.SslCertificatesServiceInstanceParameterArgs
{
Code = "fullSpec",
Value = "ws.dv.f",
},
new AliCloud.sslCertificatesServiceInstance.Inputs.SslCertificatesServiceInstanceParameterArgs
{
Code = "fullDomainCount",
Value = "1",
},
},
});
var @default = AliCloud.SslCertificatesService.Instances.Invoke(new()
{
Ids = new[]
{
defaultSslCertificatesServiceInstance.Id,
},
});
return new Dictionary<string, object?>
{
["alicloudSslCertificatesServiceInstanceExampleId"] = @default.Apply(@default => @default.Apply(instancesResult => instancesResult.Instances[0]?.Id)),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.sslcertificatesserviceinstance.SslCertificatesServiceInstance;
import com.pulumi.alicloud.sslcertificatesserviceinstance.SslCertificatesServiceInstanceArgs;
import com.pulumi.alicloud.sslcertificatesserviceinstance.inputs.SslCertificatesServiceInstanceParameterArgs;
import com.pulumi.alicloud.sslcertificatesservice.SslcertificatesserviceFunctions;
import com.pulumi.alicloud.sslcertificatesservice.inputs.InstancesArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var defaultSslCertificatesServiceInstance = new SslCertificatesServiceInstance("defaultSslCertificatesServiceInstance", SslCertificatesServiceInstanceArgs.builder()
.productType("cas")
.period(12)
.pricingCycle(2)
.instanceName(name)
.parameters(
SslCertificatesServiceInstanceParameterArgs.builder()
.code("fullSpec")
.value("ws.dv.f")
.build(),
SslCertificatesServiceInstanceParameterArgs.builder()
.code("fullDomainCount")
.value("1")
.build())
.build());
final var default = SslcertificatesserviceFunctions.Instances(InstancesArgs.builder()
.ids(defaultSslCertificatesServiceInstance.id())
.build());
ctx.export("alicloudSslCertificatesServiceInstanceExampleId", default_.applyValue(_default_ -> _default_.instances()[0].id()));
}
}
configuration:
name:
type: string
default: terraform-example
resources:
defaultSslCertificatesServiceInstance:
type: alicloud:sslcertificatesserviceinstance:SslCertificatesServiceInstance
name: default
properties:
productType: cas
period: 12
pricingCycle: 2
instanceName: ${name}
parameters:
- code: fullSpec
value: ws.dv.f
- code: fullDomainCount
value: '1'
variables:
default:
fn::invoke:
function: alicloud:sslcertificatesservice:Instances
arguments:
ids:
- ${defaultSslCertificatesServiceInstance.id}
outputs:
alicloudSslCertificatesServiceInstanceExampleId: ${default.instances[0].id}
pulumi {
required_providers {
alicloud = {
source = "pulumi/alicloud"
}
}
}
data "alicloud_sslcertificatesservice_instances" "default" {
ids = [alicloud_sslcertificatesserviceinstance_sslcertificatesserviceinstance.default.id]
}
resource "alicloud_sslcertificatesserviceinstance_sslcertificatesserviceinstance" "default" {
product_type = "cas"
period = 12
pricing_cycle = 2
instance_name = var.name
parameters {
code = "fullSpec"
value = "ws.dv.f"
}
parameters {
code = "fullDomainCount"
value = "1"
}
}
variable "name" {
type = string
default = "terraform-example"
}
output "alicloudSslCertificatesServiceInstanceExampleId" {
value = data.alicloud_sslcertificatesservice_instances.default.instances[0].id
}
Using Instances
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function instances(args: InstancesArgs, opts?: InvokeOptions): Promise<InstancesResult>
function instancesOutput(args: InstancesOutputArgs, opts?: InvokeOutputOptions): Output<InstancesResult>def instances(brand: Optional[str] = None,
certificate_status: Optional[str] = None,
certificate_type: Optional[str] = None,
enable_details: Optional[bool] = None,
ids: Optional[Sequence[str]] = None,
instance_type: Optional[str] = None,
keyword: Optional[str] = None,
output_file: Optional[str] = None,
resource_group_id: Optional[str] = None,
status: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> InstancesResult
def instances_output(brand: pulumi.Input[Optional[str]] = None,
certificate_status: pulumi.Input[Optional[str]] = None,
certificate_type: pulumi.Input[Optional[str]] = None,
enable_details: pulumi.Input[Optional[bool]] = None,
ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
instance_type: pulumi.Input[Optional[str]] = None,
keyword: pulumi.Input[Optional[str]] = None,
output_file: pulumi.Input[Optional[str]] = None,
resource_group_id: pulumi.Input[Optional[str]] = None,
status: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[InstancesResult]func Instances(ctx *Context, args *InstancesArgs, opts ...InvokeOption) (*InstancesResult, error)
func InstancesOutput(ctx *Context, args *InstancesOutputArgs, opts ...InvokeOption) InstancesResultOutputpublic static class Instances
{
public static Task<InstancesResult> InvokeAsync(InstancesArgs args, InvokeOptions? opts = null)
public static Output<InstancesResult> Invoke(InstancesInvokeArgs args, InvokeOptions? opts = null)
public static Output<InstancesResult> Invoke(InstancesInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<InstancesResult> instances(InstancesArgs args, InvokeOptions options)
public static Output<InstancesResult> instances(InstancesArgs args, InvokeOptions options)
public static Output<InstancesResult> instances(InstancesArgs args, InvokeOutputOptions options)
fn::invoke:
function: alicloud:sslcertificatesservice:Instances
arguments:
# arguments dictionarydata "alicloud_sslcertificatesservice_instances" "name" {
# arguments
}The following arguments are supported:
- Brand string
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- Certificate
Status string - The status of the certificate.
- Certificate
Type string - The type of the certificate. Valid values: DV, OV, and EV.
- Enable
Details bool - Default to
false. Set it totruecan output more details about resource attributes. - Ids List<string>
- A list of Instance IDs.
- Instance
Type string - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- Keyword string
- Fuzzy search that matches domain names, instance names, or corresponding resource IDs.
- Output
File string - File name where to save data source results (after running
pulumi preview). - Resource
Group stringId - The ID of the resource group.
- Status string
- The instance status.
- Brand string
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- Certificate
Status string - The status of the certificate.
- Certificate
Type string - The type of the certificate. Valid values: DV, OV, and EV.
- Enable
Details bool - Default to
false. Set it totruecan output more details about resource attributes. - Ids []string
- A list of Instance IDs.
- Instance
Type string - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- Keyword string
- Fuzzy search that matches domain names, instance names, or corresponding resource IDs.
- Output
File string - File name where to save data source results (after running
pulumi preview). - Resource
Group stringId - The ID of the resource group.
- Status string
- The instance status.
- brand string
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate_
status string - The status of the certificate.
- certificate_
type string - The type of the certificate. Valid values: DV, OV, and EV.
- enable_
details bool - Default to
false. Set it totruecan output more details about resource attributes. - ids list(string)
- A list of Instance IDs.
- instance_
type string - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- keyword string
- Fuzzy search that matches domain names, instance names, or corresponding resource IDs.
- output_
file string - File name where to save data source results (after running
pulumi preview). - resource_
group_ stringid - The ID of the resource group.
- status string
- The instance status.
- brand String
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate
Status String - The status of the certificate.
- certificate
Type String - The type of the certificate. Valid values: DV, OV, and EV.
- enable
Details Boolean - Default to
false. Set it totruecan output more details about resource attributes. - ids List<String>
- A list of Instance IDs.
- instance
Type String - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- keyword String
- Fuzzy search that matches domain names, instance names, or corresponding resource IDs.
- output
File String - File name where to save data source results (after running
pulumi preview). - resource
Group StringId - The ID of the resource group.
- status String
- The instance status.
- brand string
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate
Status string - The status of the certificate.
- certificate
Type string - The type of the certificate. Valid values: DV, OV, and EV.
- enable
Details boolean - Default to
false. Set it totruecan output more details about resource attributes. - ids string[]
- A list of Instance IDs.
- instance
Type string - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- keyword string
- Fuzzy search that matches domain names, instance names, or corresponding resource IDs.
- output
File string - File name where to save data source results (after running
pulumi preview). - resource
Group stringId - The ID of the resource group.
- status string
- The instance status.
- brand str
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate_
status str - The status of the certificate.
- certificate_
type str - The type of the certificate. Valid values: DV, OV, and EV.
- enable_
details bool - Default to
false. Set it totruecan output more details about resource attributes. - ids Sequence[str]
- A list of Instance IDs.
- instance_
type str - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- keyword str
- Fuzzy search that matches domain names, instance names, or corresponding resource IDs.
- output_
file str - File name where to save data source results (after running
pulumi preview). - resource_
group_ strid - The ID of the resource group.
- status str
- The instance status.
- brand String
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate
Status String - The status of the certificate.
- certificate
Type String - The type of the certificate. Valid values: DV, OV, and EV.
- enable
Details Boolean - Default to
false. Set it totruecan output more details about resource attributes. - ids List<String>
- A list of Instance IDs.
- instance
Type String - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- keyword String
- Fuzzy search that matches domain names, instance names, or corresponding resource IDs.
- output
File String - File name where to save data source results (after running
pulumi preview). - resource
Group StringId - The ID of the resource group.
- status String
- The instance status.
Instances Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- A list of Instance IDs.
- Instances
List<Pulumi.
Ali Cloud.ssl Certificates Service. Outputs. Instances Instance> - A list of Instance Entries. Each element contains the following attributes:
- Brand string
- NOTE: This field is only available when
enableDetailsistrue. The certificate brand. - Certificate
Status string - Certificate
Type string - NOTE: This field is only available when
enableDetailsistrue. The type of the certificate. - Enable
Details bool - Instance
Type string - NOTE: This field is only available when
enableDetailsistrue. The instance type. - Keyword string
- Output
File string - Resource
Group stringId - NOTE: This field is only available when
enableDetailsistrue. The ID of the resource group. - Status string
- NOTE: This field is only available when
enableDetailsistrue. The instance status.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- A list of Instance IDs.
- Instances
[]Instances
Instance - A list of Instance Entries. Each element contains the following attributes:
- Brand string
- NOTE: This field is only available when
enableDetailsistrue. The certificate brand. - Certificate
Status string - Certificate
Type string - NOTE: This field is only available when
enableDetailsistrue. The type of the certificate. - Enable
Details bool - Instance
Type string - NOTE: This field is only available when
enableDetailsistrue. The instance type. - Keyword string
- Output
File string - Resource
Group stringId - NOTE: This field is only available when
enableDetailsistrue. The ID of the resource group. - Status string
- NOTE: This field is only available when
enableDetailsistrue. The instance status.
- id string
- The provider-assigned unique ID for this managed resource.
- ids list(string)
- A list of Instance IDs.
- instances list(object)
- A list of Instance Entries. Each element contains the following attributes:
- brand string
- NOTE: This field is only available when
enableDetailsistrue. The certificate brand. - certificate_
status string - certificate_
type string - NOTE: This field is only available when
enableDetailsistrue. The type of the certificate. - enable_
details bool - instance_
type string - NOTE: This field is only available when
enableDetailsistrue. The instance type. - keyword string
- output_
file string - resource_
group_ stringid - NOTE: This field is only available when
enableDetailsistrue. The ID of the resource group. - status string
- NOTE: This field is only available when
enableDetailsistrue. The instance status.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Instance IDs.
- instances
List<Instances
Instance> - A list of Instance Entries. Each element contains the following attributes:
- brand String
- NOTE: This field is only available when
enableDetailsistrue. The certificate brand. - certificate
Status String - certificate
Type String - NOTE: This field is only available when
enableDetailsistrue. The type of the certificate. - enable
Details Boolean - instance
Type String - NOTE: This field is only available when
enableDetailsistrue. The instance type. - keyword String
- output
File String - resource
Group StringId - NOTE: This field is only available when
enableDetailsistrue. The ID of the resource group. - status String
- NOTE: This field is only available when
enableDetailsistrue. The instance status.
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- A list of Instance IDs.
- instances
Instances
Instance[] - A list of Instance Entries. Each element contains the following attributes:
- brand string
- NOTE: This field is only available when
enableDetailsistrue. The certificate brand. - certificate
Status string - certificate
Type string - NOTE: This field is only available when
enableDetailsistrue. The type of the certificate. - enable
Details boolean - instance
Type string - NOTE: This field is only available when
enableDetailsistrue. The instance type. - keyword string
- output
File string - resource
Group stringId - NOTE: This field is only available when
enableDetailsistrue. The ID of the resource group. - status string
- NOTE: This field is only available when
enableDetailsistrue. The instance status.
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- A list of Instance IDs.
- instances
Sequence[Instances
Instance] - A list of Instance Entries. Each element contains the following attributes:
- brand str
- NOTE: This field is only available when
enableDetailsistrue. The certificate brand. - certificate_
status str - certificate_
type str - NOTE: This field is only available when
enableDetailsistrue. The type of the certificate. - enable_
details bool - instance_
type str - NOTE: This field is only available when
enableDetailsistrue. The instance type. - keyword str
- output_
file str - resource_
group_ strid - NOTE: This field is only available when
enableDetailsistrue. The ID of the resource group. - status str
- NOTE: This field is only available when
enableDetailsistrue. The instance status.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Instance IDs.
- instances List<Property Map>
- A list of Instance Entries. Each element contains the following attributes:
- brand String
- NOTE: This field is only available when
enableDetailsistrue. The certificate brand. - certificate
Status String - certificate
Type String - NOTE: This field is only available when
enableDetailsistrue. The type of the certificate. - enable
Details Boolean - instance
Type String - NOTE: This field is only available when
enableDetailsistrue. The instance type. - keyword String
- output
File String - resource
Group StringId - NOTE: This field is only available when
enableDetailsistrue. The ID of the resource group. - status String
- NOTE: This field is only available when
enableDetailsistrue. The instance status.
Supporting Types
InstancesInstance
- Auto
Reissue string - NOTE: This field is only available when
enableDetailsistrue. Specifies whether to enable managed renewal. - Average
Waiting stringTime - NOTE: This field is only available when
enableDetailsistrue. Average waiting time for issuing a certificate of this specification, in seconds. - Brand string
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- Certificate
Type string - The type of the certificate. Valid values: DV, OV, and EV.
- City string
- NOTE: This field is only available when
enableDetailsistrue. The city where the company or organization to which the certificate purchaser belongs is located. - Company
Id string - NOTE: This field is only available when
enableDetailsistrue. The company information ID. - Contact
Id List<int>Lists - NOTE: This field is only available when
enableDetailsistrue. The list of contact IDs. - Country
Code string - NOTE: This field is only available when
enableDetailsistrue. The code of the country or region where the certificate organization is located. - Csr string
- NOTE: This field is only available when
enableDetailsistrue. The CSR content. - Domain string
- NOTE: This field is only available when
enableDetailsistrue. The domain names to be bound to the certificate. - Full
Domain intCount - NOTE: This field is only available when
enableDetailsistrue. The number of single domain names included in the instance. - Generate
Csr stringMethod - NOTE: This field is only available when
enableDetailsistrue. The method used to generate the Certificate Signing Request (CSR). - Id string
- The ID of the resource supplied above.
- Instance
End intTime - NOTE: This field is only available when
enableDetailsistrue. Instance expiration time, a UNIX timestamp in seconds. - Instance
Id string - The instance ID.
- Instance
Name string - NOTE: This field is only available when
enableDetailsistrue. The name of the instance. - Instance
Start intTime - NOTE: This field is only available when
enableDetailsistrue. Instance start time, a UNIX timestamp in seconds. - Instance
Type string - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- Key
Algorithm string - NOTE: This field is only available when
enableDetailsistrue. The certificate algorithm. - Order
End intTime - NOTE: This field is only available when
enableDetailsistrue. Order end time, a UNIX timestamp in seconds. - Order
Start intTime - NOTE: This field is only available when
enableDetailsistrue. Order start time, a UNIX timestamp in seconds. - Province string
- NOTE: This field is only available when
enableDetailsistrue. The province or region where the company is located. - Resource
Group stringId - The ID of the resource group.
- Spec string
- NOTE: This field is only available when
enableDetailsistrue. The specification of the purchased instance. - Status string
- The instance status.
- Dictionary<string, string>
- NOTE: This field is only available when
enableDetailsistrue. The tags of the instance. - Upgrade
Status string - NOTE: This field is only available when
enableDetailsistrue. The upgrade status of the instance. - Validation
Method string - NOTE: This field is only available when
enableDetailsistrue. The verification method for the certificate application. - Wildcard
Domain intCount - NOTE: This field is only available when
enableDetailsistrue. The number of wildcard domain names included in the instance.
- Auto
Reissue string - NOTE: This field is only available when
enableDetailsistrue. Specifies whether to enable managed renewal. - Average
Waiting stringTime - NOTE: This field is only available when
enableDetailsistrue. Average waiting time for issuing a certificate of this specification, in seconds. - Brand string
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- Certificate
Type string - The type of the certificate. Valid values: DV, OV, and EV.
- City string
- NOTE: This field is only available when
enableDetailsistrue. The city where the company or organization to which the certificate purchaser belongs is located. - Company
Id string - NOTE: This field is only available when
enableDetailsistrue. The company information ID. - Contact
Id []intLists - NOTE: This field is only available when
enableDetailsistrue. The list of contact IDs. - Country
Code string - NOTE: This field is only available when
enableDetailsistrue. The code of the country or region where the certificate organization is located. - Csr string
- NOTE: This field is only available when
enableDetailsistrue. The CSR content. - Domain string
- NOTE: This field is only available when
enableDetailsistrue. The domain names to be bound to the certificate. - Full
Domain intCount - NOTE: This field is only available when
enableDetailsistrue. The number of single domain names included in the instance. - Generate
Csr stringMethod - NOTE: This field is only available when
enableDetailsistrue. The method used to generate the Certificate Signing Request (CSR). - Id string
- The ID of the resource supplied above.
- Instance
End intTime - NOTE: This field is only available when
enableDetailsistrue. Instance expiration time, a UNIX timestamp in seconds. - Instance
Id string - The instance ID.
- Instance
Name string - NOTE: This field is only available when
enableDetailsistrue. The name of the instance. - Instance
Start intTime - NOTE: This field is only available when
enableDetailsistrue. Instance start time, a UNIX timestamp in seconds. - Instance
Type string - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- Key
Algorithm string - NOTE: This field is only available when
enableDetailsistrue. The certificate algorithm. - Order
End intTime - NOTE: This field is only available when
enableDetailsistrue. Order end time, a UNIX timestamp in seconds. - Order
Start intTime - NOTE: This field is only available when
enableDetailsistrue. Order start time, a UNIX timestamp in seconds. - Province string
- NOTE: This field is only available when
enableDetailsistrue. The province or region where the company is located. - Resource
Group stringId - The ID of the resource group.
- Spec string
- NOTE: This field is only available when
enableDetailsistrue. The specification of the purchased instance. - Status string
- The instance status.
- map[string]string
- NOTE: This field is only available when
enableDetailsistrue. The tags of the instance. - Upgrade
Status string - NOTE: This field is only available when
enableDetailsistrue. The upgrade status of the instance. - Validation
Method string - NOTE: This field is only available when
enableDetailsistrue. The verification method for the certificate application. - Wildcard
Domain intCount - NOTE: This field is only available when
enableDetailsistrue. The number of wildcard domain names included in the instance.
- auto_
reissue string - NOTE: This field is only available when
enableDetailsistrue. Specifies whether to enable managed renewal. - average_
waiting_ stringtime - NOTE: This field is only available when
enableDetailsistrue. Average waiting time for issuing a certificate of this specification, in seconds. - brand string
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate_
type string - The type of the certificate. Valid values: DV, OV, and EV.
- city string
- NOTE: This field is only available when
enableDetailsistrue. The city where the company or organization to which the certificate purchaser belongs is located. - company_
id string - NOTE: This field is only available when
enableDetailsistrue. The company information ID. - contact_
id_ list(number)lists - NOTE: This field is only available when
enableDetailsistrue. The list of contact IDs. - country_
code string - NOTE: This field is only available when
enableDetailsistrue. The code of the country or region where the certificate organization is located. - csr string
- NOTE: This field is only available when
enableDetailsistrue. The CSR content. - domain string
- NOTE: This field is only available when
enableDetailsistrue. The domain names to be bound to the certificate. - full_
domain_ numbercount - NOTE: This field is only available when
enableDetailsistrue. The number of single domain names included in the instance. - generate_
csr_ stringmethod - NOTE: This field is only available when
enableDetailsistrue. The method used to generate the Certificate Signing Request (CSR). - id string
- The ID of the resource supplied above.
- instance_
end_ numbertime - NOTE: This field is only available when
enableDetailsistrue. Instance expiration time, a UNIX timestamp in seconds. - instance_
id string - The instance ID.
- instance_
name string - NOTE: This field is only available when
enableDetailsistrue. The name of the instance. - instance_
start_ numbertime - NOTE: This field is only available when
enableDetailsistrue. Instance start time, a UNIX timestamp in seconds. - instance_
type string - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- key_
algorithm string - NOTE: This field is only available when
enableDetailsistrue. The certificate algorithm. - order_
end_ numbertime - NOTE: This field is only available when
enableDetailsistrue. Order end time, a UNIX timestamp in seconds. - order_
start_ numbertime - NOTE: This field is only available when
enableDetailsistrue. Order start time, a UNIX timestamp in seconds. - province string
- NOTE: This field is only available when
enableDetailsistrue. The province or region where the company is located. - resource_
group_ stringid - The ID of the resource group.
- spec string
- NOTE: This field is only available when
enableDetailsistrue. The specification of the purchased instance. - status string
- The instance status.
- map(string)
- NOTE: This field is only available when
enableDetailsistrue. The tags of the instance. - upgrade_
status string - NOTE: This field is only available when
enableDetailsistrue. The upgrade status of the instance. - validation_
method string - NOTE: This field is only available when
enableDetailsistrue. The verification method for the certificate application. - wildcard_
domain_ numbercount - NOTE: This field is only available when
enableDetailsistrue. The number of wildcard domain names included in the instance.
- auto
Reissue String - NOTE: This field is only available when
enableDetailsistrue. Specifies whether to enable managed renewal. - average
Waiting StringTime - NOTE: This field is only available when
enableDetailsistrue. Average waiting time for issuing a certificate of this specification, in seconds. - brand String
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate
Type String - The type of the certificate. Valid values: DV, OV, and EV.
- city String
- NOTE: This field is only available when
enableDetailsistrue. The city where the company or organization to which the certificate purchaser belongs is located. - company
Id String - NOTE: This field is only available when
enableDetailsistrue. The company information ID. - contact
Id List<Integer>Lists - NOTE: This field is only available when
enableDetailsistrue. The list of contact IDs. - country
Code String - NOTE: This field is only available when
enableDetailsistrue. The code of the country or region where the certificate organization is located. - csr String
- NOTE: This field is only available when
enableDetailsistrue. The CSR content. - domain String
- NOTE: This field is only available when
enableDetailsistrue. The domain names to be bound to the certificate. - full
Domain IntegerCount - NOTE: This field is only available when
enableDetailsistrue. The number of single domain names included in the instance. - generate
Csr StringMethod - NOTE: This field is only available when
enableDetailsistrue. The method used to generate the Certificate Signing Request (CSR). - id String
- The ID of the resource supplied above.
- instance
End IntegerTime - NOTE: This field is only available when
enableDetailsistrue. Instance expiration time, a UNIX timestamp in seconds. - instance
Id String - The instance ID.
- instance
Name String - NOTE: This field is only available when
enableDetailsistrue. The name of the instance. - instance
Start IntegerTime - NOTE: This field is only available when
enableDetailsistrue. Instance start time, a UNIX timestamp in seconds. - instance
Type String - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- key
Algorithm String - NOTE: This field is only available when
enableDetailsistrue. The certificate algorithm. - order
End IntegerTime - NOTE: This field is only available when
enableDetailsistrue. Order end time, a UNIX timestamp in seconds. - order
Start IntegerTime - NOTE: This field is only available when
enableDetailsistrue. Order start time, a UNIX timestamp in seconds. - province String
- NOTE: This field is only available when
enableDetailsistrue. The province or region where the company is located. - resource
Group StringId - The ID of the resource group.
- spec String
- NOTE: This field is only available when
enableDetailsistrue. The specification of the purchased instance. - status String
- The instance status.
- Map<String,String>
- NOTE: This field is only available when
enableDetailsistrue. The tags of the instance. - upgrade
Status String - NOTE: This field is only available when
enableDetailsistrue. The upgrade status of the instance. - validation
Method String - NOTE: This field is only available when
enableDetailsistrue. The verification method for the certificate application. - wildcard
Domain IntegerCount - NOTE: This field is only available when
enableDetailsistrue. The number of wildcard domain names included in the instance.
- auto
Reissue string - NOTE: This field is only available when
enableDetailsistrue. Specifies whether to enable managed renewal. - average
Waiting stringTime - NOTE: This field is only available when
enableDetailsistrue. Average waiting time for issuing a certificate of this specification, in seconds. - brand string
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate
Type string - The type of the certificate. Valid values: DV, OV, and EV.
- city string
- NOTE: This field is only available when
enableDetailsistrue. The city where the company or organization to which the certificate purchaser belongs is located. - company
Id string - NOTE: This field is only available when
enableDetailsistrue. The company information ID. - contact
Id number[]Lists - NOTE: This field is only available when
enableDetailsistrue. The list of contact IDs. - country
Code string - NOTE: This field is only available when
enableDetailsistrue. The code of the country or region where the certificate organization is located. - csr string
- NOTE: This field is only available when
enableDetailsistrue. The CSR content. - domain string
- NOTE: This field is only available when
enableDetailsistrue. The domain names to be bound to the certificate. - full
Domain numberCount - NOTE: This field is only available when
enableDetailsistrue. The number of single domain names included in the instance. - generate
Csr stringMethod - NOTE: This field is only available when
enableDetailsistrue. The method used to generate the Certificate Signing Request (CSR). - id string
- The ID of the resource supplied above.
- instance
End numberTime - NOTE: This field is only available when
enableDetailsistrue. Instance expiration time, a UNIX timestamp in seconds. - instance
Id string - The instance ID.
- instance
Name string - NOTE: This field is only available when
enableDetailsistrue. The name of the instance. - instance
Start numberTime - NOTE: This field is only available when
enableDetailsistrue. Instance start time, a UNIX timestamp in seconds. - instance
Type string - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- key
Algorithm string - NOTE: This field is only available when
enableDetailsistrue. The certificate algorithm. - order
End numberTime - NOTE: This field is only available when
enableDetailsistrue. Order end time, a UNIX timestamp in seconds. - order
Start numberTime - NOTE: This field is only available when
enableDetailsistrue. Order start time, a UNIX timestamp in seconds. - province string
- NOTE: This field is only available when
enableDetailsistrue. The province or region where the company is located. - resource
Group stringId - The ID of the resource group.
- spec string
- NOTE: This field is only available when
enableDetailsistrue. The specification of the purchased instance. - status string
- The instance status.
- {[key: string]: string}
- NOTE: This field is only available when
enableDetailsistrue. The tags of the instance. - upgrade
Status string - NOTE: This field is only available when
enableDetailsistrue. The upgrade status of the instance. - validation
Method string - NOTE: This field is only available when
enableDetailsistrue. The verification method for the certificate application. - wildcard
Domain numberCount - NOTE: This field is only available when
enableDetailsistrue. The number of wildcard domain names included in the instance.
- auto_
reissue str - NOTE: This field is only available when
enableDetailsistrue. Specifies whether to enable managed renewal. - average_
waiting_ strtime - NOTE: This field is only available when
enableDetailsistrue. Average waiting time for issuing a certificate of this specification, in seconds. - brand str
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate_
type str - The type of the certificate. Valid values: DV, OV, and EV.
- city str
- NOTE: This field is only available when
enableDetailsistrue. The city where the company or organization to which the certificate purchaser belongs is located. - company_
id str - NOTE: This field is only available when
enableDetailsistrue. The company information ID. - contact_
id_ Sequence[int]lists - NOTE: This field is only available when
enableDetailsistrue. The list of contact IDs. - country_
code str - NOTE: This field is only available when
enableDetailsistrue. The code of the country or region where the certificate organization is located. - csr str
- NOTE: This field is only available when
enableDetailsistrue. The CSR content. - domain str
- NOTE: This field is only available when
enableDetailsistrue. The domain names to be bound to the certificate. - full_
domain_ intcount - NOTE: This field is only available when
enableDetailsistrue. The number of single domain names included in the instance. - generate_
csr_ strmethod - NOTE: This field is only available when
enableDetailsistrue. The method used to generate the Certificate Signing Request (CSR). - id str
- The ID of the resource supplied above.
- instance_
end_ inttime - NOTE: This field is only available when
enableDetailsistrue. Instance expiration time, a UNIX timestamp in seconds. - instance_
id str - The instance ID.
- instance_
name str - NOTE: This field is only available when
enableDetailsistrue. The name of the instance. - instance_
start_ inttime - NOTE: This field is only available when
enableDetailsistrue. Instance start time, a UNIX timestamp in seconds. - instance_
type str - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- key_
algorithm str - NOTE: This field is only available when
enableDetailsistrue. The certificate algorithm. - order_
end_ inttime - NOTE: This field is only available when
enableDetailsistrue. Order end time, a UNIX timestamp in seconds. - order_
start_ inttime - NOTE: This field is only available when
enableDetailsistrue. Order start time, a UNIX timestamp in seconds. - province str
- NOTE: This field is only available when
enableDetailsistrue. The province or region where the company is located. - resource_
group_ strid - The ID of the resource group.
- spec str
- NOTE: This field is only available when
enableDetailsistrue. The specification of the purchased instance. - status str
- The instance status.
- Mapping[str, str]
- NOTE: This field is only available when
enableDetailsistrue. The tags of the instance. - upgrade_
status str - NOTE: This field is only available when
enableDetailsistrue. The upgrade status of the instance. - validation_
method str - NOTE: This field is only available when
enableDetailsistrue. The verification method for the certificate application. - wildcard_
domain_ intcount - NOTE: This field is only available when
enableDetailsistrue. The number of wildcard domain names included in the instance.
- auto
Reissue String - NOTE: This field is only available when
enableDetailsistrue. Specifies whether to enable managed renewal. - average
Waiting StringTime - NOTE: This field is only available when
enableDetailsistrue. Average waiting time for issuing a certificate of this specification, in seconds. - brand String
- The certificate brand. Valid values: WoSign, CFCA, DigiCert, GeoTrust, GlobalSign, vTrus, and Alibaba.
- certificate
Type String - The type of the certificate. Valid values: DV, OV, and EV.
- city String
- NOTE: This field is only available when
enableDetailsistrue. The city where the company or organization to which the certificate purchaser belongs is located. - company
Id String - NOTE: This field is only available when
enableDetailsistrue. The company information ID. - contact
Id List<Number>Lists - NOTE: This field is only available when
enableDetailsistrue. The list of contact IDs. - country
Code String - NOTE: This field is only available when
enableDetailsistrue. The code of the country or region where the certificate organization is located. - csr String
- NOTE: This field is only available when
enableDetailsistrue. The CSR content. - domain String
- NOTE: This field is only available when
enableDetailsistrue. The domain names to be bound to the certificate. - full
Domain NumberCount - NOTE: This field is only available when
enableDetailsistrue. The number of single domain names included in the instance. - generate
Csr StringMethod - NOTE: This field is only available when
enableDetailsistrue. The method used to generate the Certificate Signing Request (CSR). - id String
- The ID of the resource supplied above.
- instance
End NumberTime - NOTE: This field is only available when
enableDetailsistrue. Instance expiration time, a UNIX timestamp in seconds. - instance
Id String - The instance ID.
- instance
Name String - NOTE: This field is only available when
enableDetailsistrue. The name of the instance. - instance
Start NumberTime - NOTE: This field is only available when
enableDetailsistrue. Instance start time, a UNIX timestamp in seconds. - instance
Type String - The instance type. Valid values: BUY: official certificate; TEST: test certificate.
- key
Algorithm String - NOTE: This field is only available when
enableDetailsistrue. The certificate algorithm. - order
End NumberTime - NOTE: This field is only available when
enableDetailsistrue. Order end time, a UNIX timestamp in seconds. - order
Start NumberTime - NOTE: This field is only available when
enableDetailsistrue. Order start time, a UNIX timestamp in seconds. - province String
- NOTE: This field is only available when
enableDetailsistrue. The province or region where the company is located. - resource
Group StringId - The ID of the resource group.
- spec String
- NOTE: This field is only available when
enableDetailsistrue. The specification of the purchased instance. - status String
- The instance status.
- Map<String>
- NOTE: This field is only available when
enableDetailsistrue. The tags of the instance. - upgrade
Status String - NOTE: This field is only available when
enableDetailsistrue. The upgrade status of the instance. - validation
Method String - NOTE: This field is only available when
enableDetailsistrue. The verification method for the certificate application. - wildcard
Domain NumberCount - NOTE: This field is only available when
enableDetailsistrue. The number of wildcard domain names included in the instance.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloudTerraform Provider.
Viewing docs for Alibaba Cloud v3.106.0
published on Monday, Aug 24, 2026 by Pulumi
published on Monday, Aug 24, 2026 by Pulumi