azure-native.certificateregistration.AppServiceCertificateOrder
Explore with Pulumi AI
SSL certificate purchase order.
Uses Azure REST API version 2024-04-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
Other available API versions: 2022-09-01, 2023-01-01, 2023-12-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native certificateregistration [ApiVersion]
. See the version guide for details.
Create AppServiceCertificateOrder Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppServiceCertificateOrder(name: string, args: AppServiceCertificateOrderArgs, opts?: CustomResourceOptions);
@overload
def AppServiceCertificateOrder(resource_name: str,
args: AppServiceCertificateOrderArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AppServiceCertificateOrder(resource_name: str,
opts: Optional[ResourceOptions] = None,
product_type: Optional[CertificateProductType] = None,
resource_group_name: Optional[str] = None,
auto_renew: Optional[bool] = None,
certificate_order_name: Optional[str] = None,
certificates: Optional[Mapping[str, AppServiceCertificateArgs]] = None,
csr: Optional[str] = None,
distinguished_name: Optional[str] = None,
key_size: Optional[int] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
validity_in_years: Optional[int] = None)
func NewAppServiceCertificateOrder(ctx *Context, name string, args AppServiceCertificateOrderArgs, opts ...ResourceOption) (*AppServiceCertificateOrder, error)
public AppServiceCertificateOrder(string name, AppServiceCertificateOrderArgs args, CustomResourceOptions? opts = null)
public AppServiceCertificateOrder(String name, AppServiceCertificateOrderArgs args)
public AppServiceCertificateOrder(String name, AppServiceCertificateOrderArgs args, CustomResourceOptions options)
type: azure-native:certificateregistration:AppServiceCertificateOrder
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AppServiceCertificateOrderArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. AppServiceCertificateOrderArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AppServiceCertificateOrderArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AppServiceCertificateOrderArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. AppServiceCertificateOrderArgs - The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var appServiceCertificateOrderResource = new AzureNative.CertificateRegistration.AppServiceCertificateOrder("appServiceCertificateOrderResource", new()
{
ProductType = AzureNative.CertificateRegistration.CertificateProductType.StandardDomainValidatedSsl,
ResourceGroupName = "string",
AutoRenew = false,
CertificateOrderName = "string",
Certificates =
{
{ "string", new AzureNative.CertificateRegistration.Inputs.AppServiceCertificateArgs
{
KeyVaultId = "string",
KeyVaultSecretName = "string",
} },
},
Csr = "string",
DistinguishedName = "string",
KeySize = 0,
Kind = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
ValidityInYears = 0,
});
example, err := certificateregistration.NewAppServiceCertificateOrder(ctx, "appServiceCertificateOrderResource", &certificateregistration.AppServiceCertificateOrderArgs{
ProductType: certificateregistration.CertificateProductTypeStandardDomainValidatedSsl,
ResourceGroupName: pulumi.String("string"),
AutoRenew: pulumi.Bool(false),
CertificateOrderName: pulumi.String("string"),
Certificates: certificateregistration.AppServiceCertificateMap{
"string": &certificateregistration.AppServiceCertificateArgs{
KeyVaultId: pulumi.String("string"),
KeyVaultSecretName: pulumi.String("string"),
},
},
Csr: pulumi.String("string"),
DistinguishedName: pulumi.String("string"),
KeySize: pulumi.Int(0),
Kind: pulumi.String("string"),
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
ValidityInYears: pulumi.Int(0),
})
var appServiceCertificateOrderResource = new AppServiceCertificateOrder("appServiceCertificateOrderResource", AppServiceCertificateOrderArgs.builder()
.productType("StandardDomainValidatedSsl")
.resourceGroupName("string")
.autoRenew(false)
.certificateOrderName("string")
.certificates(Map.of("string", Map.ofEntries(
Map.entry("keyVaultId", "string"),
Map.entry("keyVaultSecretName", "string")
)))
.csr("string")
.distinguishedName("string")
.keySize(0)
.kind("string")
.location("string")
.tags(Map.of("string", "string"))
.validityInYears(0)
.build());
app_service_certificate_order_resource = azure_native.certificateregistration.AppServiceCertificateOrder("appServiceCertificateOrderResource",
product_type=azure_native.certificateregistration.CertificateProductType.STANDARD_DOMAIN_VALIDATED_SSL,
resource_group_name="string",
auto_renew=False,
certificate_order_name="string",
certificates={
"string": {
"key_vault_id": "string",
"key_vault_secret_name": "string",
},
},
csr="string",
distinguished_name="string",
key_size=0,
kind="string",
location="string",
tags={
"string": "string",
},
validity_in_years=0)
const appServiceCertificateOrderResource = new azure_native.certificateregistration.AppServiceCertificateOrder("appServiceCertificateOrderResource", {
productType: azure_native.certificateregistration.CertificateProductType.StandardDomainValidatedSsl,
resourceGroupName: "string",
autoRenew: false,
certificateOrderName: "string",
certificates: {
string: {
keyVaultId: "string",
keyVaultSecretName: "string",
},
},
csr: "string",
distinguishedName: "string",
keySize: 0,
kind: "string",
location: "string",
tags: {
string: "string",
},
validityInYears: 0,
});
type: azure-native:certificateregistration:AppServiceCertificateOrder
properties:
autoRenew: false
certificateOrderName: string
certificates:
string:
keyVaultId: string
keyVaultSecretName: string
csr: string
distinguishedName: string
keySize: 0
kind: string
location: string
productType: StandardDomainValidatedSsl
resourceGroupName: string
tags:
string: string
validityInYears: 0
AppServiceCertificateOrder 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 AppServiceCertificateOrder resource accepts the following input properties:
- Product
Type This property is required. Changes to this property will trigger replacement.
Azure Native. Certificate Registration. Certificate Product Type - Certificate product type.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group to which the resource belongs.
- Auto
Renew bool - true if the certificate should be automatically renewed when it expires; otherwise, false.
- Certificate
Order Name Changes to this property will trigger replacement.
- Name of the certificate order.
- Certificates
Dictionary<string, Pulumi.
Azure Native. Certificate Registration. Inputs. App Service Certificate Args> - State of the Key Vault secret.
- Csr
Changes to this property will trigger replacement.
- Last CSR that was created for this order.
- Distinguished
Name Changes to this property will trigger replacement.
- Certificate distinguished name.
- Key
Size Changes to this property will trigger replacement.
- Certificate key size.
- Kind string
- Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
- Location string
- Resource Location.
- Dictionary<string, string>
- Resource tags.
- Validity
In Years Changes to this property will trigger replacement.
- Duration in years (must be 1).
- Product
Type This property is required. Changes to this property will trigger replacement.
Product Type - Certificate product type.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group to which the resource belongs.
- Auto
Renew bool - true if the certificate should be automatically renewed when it expires; otherwise, false.
- Certificate
Order Name Changes to this property will trigger replacement.
- Name of the certificate order.
- Certificates
map[string]App
Service Certificate Args - State of the Key Vault secret.
- Csr
Changes to this property will trigger replacement.
- Last CSR that was created for this order.
- Distinguished
Name Changes to this property will trigger replacement.
- Certificate distinguished name.
- Key
Size Changes to this property will trigger replacement.
- Certificate key size.
- Kind string
- Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
- Location string
- Resource Location.
- map[string]string
- Resource tags.
- Validity
In Years Changes to this property will trigger replacement.
- Duration in years (must be 1).
- product
Type This property is required. Changes to this property will trigger replacement.
Product Type - Certificate product type.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group to which the resource belongs.
- auto
Renew Boolean - true if the certificate should be automatically renewed when it expires; otherwise, false.
- certificate
Order Name Changes to this property will trigger replacement.
- Name of the certificate order.
- certificates
Map<String,App
Service Certificate Args> - State of the Key Vault secret.
- csr
Changes to this property will trigger replacement.
- Last CSR that was created for this order.
- distinguished
Name Changes to this property will trigger replacement.
- Certificate distinguished name.
- key
Size Changes to this property will trigger replacement.
- Certificate key size.
- kind String
- Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
- location String
- Resource Location.
- Map<String,String>
- Resource tags.
- validity
In Years Changes to this property will trigger replacement.
- Duration in years (must be 1).
- product
Type This property is required. Changes to this property will trigger replacement.
Product Type - Certificate product type.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group to which the resource belongs.
- auto
Renew boolean - true if the certificate should be automatically renewed when it expires; otherwise, false.
- certificate
Order Name Changes to this property will trigger replacement.
- Name of the certificate order.
- certificates
{[key: string]: App
Service Certificate Args} - State of the Key Vault secret.
- csr
Changes to this property will trigger replacement.
- Last CSR that was created for this order.
- distinguished
Name Changes to this property will trigger replacement.
- Certificate distinguished name.
- key
Size Changes to this property will trigger replacement.
- Certificate key size.
- kind string
- Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
- location string
- Resource Location.
- {[key: string]: string}
- Resource tags.
- validity
In Years Changes to this property will trigger replacement.
- Duration in years (must be 1).
- product_
type This property is required. Changes to this property will trigger replacement.
Product Type - Certificate product type.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- Name of the resource group to which the resource belongs.
- auto_
renew bool - true if the certificate should be automatically renewed when it expires; otherwise, false.
- certificate_
order_ name Changes to this property will trigger replacement.
- Name of the certificate order.
- certificates
Mapping[str, App
Service Certificate Args] - State of the Key Vault secret.
- csr
Changes to this property will trigger replacement.
- Last CSR that was created for this order.
- distinguished_
name Changes to this property will trigger replacement.
- Certificate distinguished name.
- key_
size Changes to this property will trigger replacement.
- Certificate key size.
- kind str
- Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
- location str
- Resource Location.
- Mapping[str, str]
- Resource tags.
- validity_
in_ years Changes to this property will trigger replacement.
- Duration in years (must be 1).
- product
Type This property is required. Changes to this property will trigger replacement.
Domain Validated Ssl" | "Standard Domain Validated Wild Card Ssl" - Certificate product type.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group to which the resource belongs.
- auto
Renew Boolean - true if the certificate should be automatically renewed when it expires; otherwise, false.
- certificate
Order Name Changes to this property will trigger replacement.
- Name of the certificate order.
- certificates Map<Property Map>
- State of the Key Vault secret.
- csr
Changes to this property will trigger replacement.
- Last CSR that was created for this order.
- distinguished
Name Changes to this property will trigger replacement.
- Certificate distinguished name.
- key
Size Changes to this property will trigger replacement.
- Certificate key size.
- kind String
- Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
- location String
- Resource Location.
- Map<String>
- Resource tags.
- validity
In Years Changes to this property will trigger replacement.
- Duration in years (must be 1).
Outputs
All input properties are implicitly available as output properties. Additionally, the AppServiceCertificateOrder resource produces the following output properties:
- App
Service List<string>Certificate Not Renewable Reasons - Reasons why App Service Certificate is not renewable at the current moment.
- Azure
Api stringVersion - The Azure API version of the resource.
- Contact
Pulumi.
Azure Native. Certificate Registration. Outputs. Certificate Order Contact Response - Contact info
- Domain
Verification stringToken - Domain verification token.
- Expiration
Time string - Certificate expiration time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Intermediate
Pulumi.
Azure Native. Certificate Registration. Outputs. Certificate Details Response - Intermediate certificate.
- Is
Private boolKey External - true if private key is external; otherwise, false.
- Last
Certificate stringIssuance Time - Certificate last issuance time.
- Name string
- Resource Name.
- Next
Auto stringRenewal Time Stamp - Time stamp when the certificate would be auto renewed next
- Provisioning
State string - Status of certificate order.
- Root
Pulumi.
Azure Native. Certificate Registration. Outputs. Certificate Details Response - Root certificate.
- Serial
Number string - Current serial number of the certificate.
- Signed
Certificate Pulumi.Azure Native. Certificate Registration. Outputs. Certificate Details Response - Signed certificate.
- Status string
- Current order status.
- Type string
- Resource type.
- App
Service []stringCertificate Not Renewable Reasons - Reasons why App Service Certificate is not renewable at the current moment.
- Azure
Api stringVersion - The Azure API version of the resource.
- Contact
Certificate
Order Contact Response - Contact info
- Domain
Verification stringToken - Domain verification token.
- Expiration
Time string - Certificate expiration time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Intermediate
Certificate
Details Response - Intermediate certificate.
- Is
Private boolKey External - true if private key is external; otherwise, false.
- Last
Certificate stringIssuance Time - Certificate last issuance time.
- Name string
- Resource Name.
- Next
Auto stringRenewal Time Stamp - Time stamp when the certificate would be auto renewed next
- Provisioning
State string - Status of certificate order.
- Root
Certificate
Details Response - Root certificate.
- Serial
Number string - Current serial number of the certificate.
- Signed
Certificate CertificateDetails Response - Signed certificate.
- Status string
- Current order status.
- Type string
- Resource type.
- app
Service List<String>Certificate Not Renewable Reasons - Reasons why App Service Certificate is not renewable at the current moment.
- azure
Api StringVersion - The Azure API version of the resource.
- contact
Certificate
Order Contact Response - Contact info
- domain
Verification StringToken - Domain verification token.
- expiration
Time String - Certificate expiration time.
- id String
- The provider-assigned unique ID for this managed resource.
- intermediate
Certificate
Details Response - Intermediate certificate.
- is
Private BooleanKey External - true if private key is external; otherwise, false.
- last
Certificate StringIssuance Time - Certificate last issuance time.
- name String
- Resource Name.
- next
Auto StringRenewal Time Stamp - Time stamp when the certificate would be auto renewed next
- provisioning
State String - Status of certificate order.
- root
Certificate
Details Response - Root certificate.
- serial
Number String - Current serial number of the certificate.
- signed
Certificate CertificateDetails Response - Signed certificate.
- status String
- Current order status.
- type String
- Resource type.
- app
Service string[]Certificate Not Renewable Reasons - Reasons why App Service Certificate is not renewable at the current moment.
- azure
Api stringVersion - The Azure API version of the resource.
- contact
Certificate
Order Contact Response - Contact info
- domain
Verification stringToken - Domain verification token.
- expiration
Time string - Certificate expiration time.
- id string
- The provider-assigned unique ID for this managed resource.
- intermediate
Certificate
Details Response - Intermediate certificate.
- is
Private booleanKey External - true if private key is external; otherwise, false.
- last
Certificate stringIssuance Time - Certificate last issuance time.
- name string
- Resource Name.
- next
Auto stringRenewal Time Stamp - Time stamp when the certificate would be auto renewed next
- provisioning
State string - Status of certificate order.
- root
Certificate
Details Response - Root certificate.
- serial
Number string - Current serial number of the certificate.
- signed
Certificate CertificateDetails Response - Signed certificate.
- status string
- Current order status.
- type string
- Resource type.
- app_
service_ Sequence[str]certificate_ not_ renewable_ reasons - Reasons why App Service Certificate is not renewable at the current moment.
- azure_
api_ strversion - The Azure API version of the resource.
- contact
Certificate
Order Contact Response - Contact info
- domain_
verification_ strtoken - Domain verification token.
- expiration_
time str - Certificate expiration time.
- id str
- The provider-assigned unique ID for this managed resource.
- intermediate
Certificate
Details Response - Intermediate certificate.
- is_
private_ boolkey_ external - true if private key is external; otherwise, false.
- last_
certificate_ strissuance_ time - Certificate last issuance time.
- name str
- Resource Name.
- next_
auto_ strrenewal_ time_ stamp - Time stamp when the certificate would be auto renewed next
- provisioning_
state str - Status of certificate order.
- root
Certificate
Details Response - Root certificate.
- serial_
number str - Current serial number of the certificate.
- signed_
certificate CertificateDetails Response - Signed certificate.
- status str
- Current order status.
- type str
- Resource type.
- app
Service List<String>Certificate Not Renewable Reasons - Reasons why App Service Certificate is not renewable at the current moment.
- azure
Api StringVersion - The Azure API version of the resource.
- contact Property Map
- Contact info
- domain
Verification StringToken - Domain verification token.
- expiration
Time String - Certificate expiration time.
- id String
- The provider-assigned unique ID for this managed resource.
- intermediate Property Map
- Intermediate certificate.
- is
Private BooleanKey External - true if private key is external; otherwise, false.
- last
Certificate StringIssuance Time - Certificate last issuance time.
- name String
- Resource Name.
- next
Auto StringRenewal Time Stamp - Time stamp when the certificate would be auto renewed next
- provisioning
State String - Status of certificate order.
- root Property Map
- Root certificate.
- serial
Number String - Current serial number of the certificate.
- signed
Certificate Property Map - Signed certificate.
- status String
- Current order status.
- type String
- Resource type.
Supporting Types
AppServiceCertificate, AppServiceCertificateArgs
- Key
Vault stringId - Key Vault resource Id.
- Key
Vault stringSecret Name - Key Vault secret name.
- Key
Vault stringId - Key Vault resource Id.
- Key
Vault stringSecret Name - Key Vault secret name.
- key
Vault StringId - Key Vault resource Id.
- key
Vault StringSecret Name - Key Vault secret name.
- key
Vault stringId - Key Vault resource Id.
- key
Vault stringSecret Name - Key Vault secret name.
- key_
vault_ strid - Key Vault resource Id.
- key_
vault_ strsecret_ name - Key Vault secret name.
- key
Vault StringId - Key Vault resource Id.
- key
Vault StringSecret Name - Key Vault secret name.
AppServiceCertificateResponse, AppServiceCertificateResponseArgs
- Provisioning
State This property is required. string - Status of the Key Vault secret.
- Key
Vault stringId - Key Vault resource Id.
- Key
Vault stringSecret Name - Key Vault secret name.
- Provisioning
State This property is required. string - Status of the Key Vault secret.
- Key
Vault stringId - Key Vault resource Id.
- Key
Vault stringSecret Name - Key Vault secret name.
- provisioning
State This property is required. String - Status of the Key Vault secret.
- key
Vault StringId - Key Vault resource Id.
- key
Vault StringSecret Name - Key Vault secret name.
- provisioning
State This property is required. string - Status of the Key Vault secret.
- key
Vault stringId - Key Vault resource Id.
- key
Vault stringSecret Name - Key Vault secret name.
- provisioning_
state This property is required. str - Status of the Key Vault secret.
- key_
vault_ strid - Key Vault resource Id.
- key_
vault_ strsecret_ name - Key Vault secret name.
- provisioning
State This property is required. String - Status of the Key Vault secret.
- key
Vault StringId - Key Vault resource Id.
- key
Vault StringSecret Name - Key Vault secret name.
CertificateDetailsResponse, CertificateDetailsResponseArgs
- Issuer
This property is required. string - Certificate Issuer.
- Not
After This property is required. string - Date Certificate is valid to.
- Not
Before This property is required. string - Date Certificate is valid from.
- Raw
Data This property is required. string - Raw certificate data.
- Serial
Number This property is required. string - Certificate Serial Number.
- Signature
Algorithm This property is required. string - Certificate Signature algorithm.
- Subject
This property is required. string - Certificate Subject.
- Thumbprint
This property is required. string - Certificate Thumbprint.
- Version
This property is required. int - Certificate Version.
- Issuer
This property is required. string - Certificate Issuer.
- Not
After This property is required. string - Date Certificate is valid to.
- Not
Before This property is required. string - Date Certificate is valid from.
- Raw
Data This property is required. string - Raw certificate data.
- Serial
Number This property is required. string - Certificate Serial Number.
- Signature
Algorithm This property is required. string - Certificate Signature algorithm.
- Subject
This property is required. string - Certificate Subject.
- Thumbprint
This property is required. string - Certificate Thumbprint.
- Version
This property is required. int - Certificate Version.
- issuer
This property is required. String - Certificate Issuer.
- not
After This property is required. String - Date Certificate is valid to.
- not
Before This property is required. String - Date Certificate is valid from.
- raw
Data This property is required. String - Raw certificate data.
- serial
Number This property is required. String - Certificate Serial Number.
- signature
Algorithm This property is required. String - Certificate Signature algorithm.
- subject
This property is required. String - Certificate Subject.
- thumbprint
This property is required. String - Certificate Thumbprint.
- version
This property is required. Integer - Certificate Version.
- issuer
This property is required. string - Certificate Issuer.
- not
After This property is required. string - Date Certificate is valid to.
- not
Before This property is required. string - Date Certificate is valid from.
- raw
Data This property is required. string - Raw certificate data.
- serial
Number This property is required. string - Certificate Serial Number.
- signature
Algorithm This property is required. string - Certificate Signature algorithm.
- subject
This property is required. string - Certificate Subject.
- thumbprint
This property is required. string - Certificate Thumbprint.
- version
This property is required. number - Certificate Version.
- issuer
This property is required. str - Certificate Issuer.
- not_
after This property is required. str - Date Certificate is valid to.
- not_
before This property is required. str - Date Certificate is valid from.
- raw_
data This property is required. str - Raw certificate data.
- serial_
number This property is required. str - Certificate Serial Number.
- signature_
algorithm This property is required. str - Certificate Signature algorithm.
- subject
This property is required. str - Certificate Subject.
- thumbprint
This property is required. str - Certificate Thumbprint.
- version
This property is required. int - Certificate Version.
- issuer
This property is required. String - Certificate Issuer.
- not
After This property is required. String - Date Certificate is valid to.
- not
Before This property is required. String - Date Certificate is valid from.
- raw
Data This property is required. String - Raw certificate data.
- serial
Number This property is required. String - Certificate Serial Number.
- signature
Algorithm This property is required. String - Certificate Signature algorithm.
- subject
This property is required. String - Certificate Subject.
- thumbprint
This property is required. String - Certificate Thumbprint.
- version
This property is required. Number - Certificate Version.
CertificateOrderContactResponse, CertificateOrderContactResponseArgs
- email str
- name_
first str - name_
last str - phone str
CertificateProductType, CertificateProductTypeArgs
- Standard
Domain Validated Ssl - StandardDomainValidatedSsl
- Standard
Domain Validated Wild Card Ssl - StandardDomainValidatedWildCardSsl
- Certificate
Product Type Standard Domain Validated Ssl - StandardDomainValidatedSsl
- Certificate
Product Type Standard Domain Validated Wild Card Ssl - StandardDomainValidatedWildCardSsl
- Standard
Domain Validated Ssl - StandardDomainValidatedSsl
- Standard
Domain Validated Wild Card Ssl - StandardDomainValidatedWildCardSsl
- Standard
Domain Validated Ssl - StandardDomainValidatedSsl
- Standard
Domain Validated Wild Card Ssl - StandardDomainValidatedWildCardSsl
- STANDARD_DOMAIN_VALIDATED_SSL
- StandardDomainValidatedSsl
- STANDARD_DOMAIN_VALIDATED_WILD_CARD_SSL
- StandardDomainValidatedWildCardSsl
- "Standard
Domain Validated Ssl" - StandardDomainValidatedSsl
- "Standard
Domain Validated Wild Card Ssl" - StandardDomainValidatedWildCardSsl
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:certificateregistration:AppServiceCertificateOrder SampleCertificateOrderName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CertificateRegistration/certificateOrders/{certificateOrderName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0