Show / Hide Table of Contents

Class CertificateOrderArgs

Inheritance
System.Object
InputArgs
ResourceArgs
CertificateOrderArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.AppService
Assembly: Pulumi.Azure.dll
Syntax
public sealed class CertificateOrderArgs : ResourceArgs

Constructors

View Source

CertificateOrderArgs()

Declaration
public CertificateOrderArgs()

Properties

View Source

AutoRenew

true if the certificate should be automatically renewed when it expires; otherwise, false. Defaults to true.

Declaration
public Input<bool> AutoRenew { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Csr

Last CSR that was created for this order.

Declaration
public Input<string> Csr { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DistinguishedName

The Distinguished Name for the App Service Certificate Order.

Declaration
public Input<string> DistinguishedName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

KeySize

Certificate key size. Defaults to 2048.

Declaration
public Input<int> KeySize { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Location

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Currently the only valid value is global.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the name of the certificate. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ProductType

Certificate product type, such as Standard or WildCard.

Declaration
public Input<string> ProductType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

The name of the resource group in which to create the certificate. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

ValidityInYears

Duration in years (must be between 1 and 3). Defaults to 1.

Declaration
public Input<int> ValidityInYears { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.