Show / Hide Table of Contents

Class CertRequestState

Inheritance
System.Object
InputArgs
ResourceArgs
CertRequestState
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.Tls
Assembly: Pulumi.Tls.dll
Syntax
public sealed class CertRequestState : ResourceArgs

Constructors

View Source

CertRequestState()

Declaration
public CertRequestState()

Properties

View Source

CertRequestPem

The certificate request data in PEM format.

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

DnsNames

List of DNS names for which a certificate is being requested.

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

IpAddresses

List of IP addresses for which a certificate is being requested.

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

KeyAlgorithm

The name of the algorithm for the key provided in private_key_pem.

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

PrivateKeyPem

PEM-encoded private key that the certificate will belong to

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

Subjects

The subject for which a certificate is being requested. This is a nested configuration block whose structure is described below.

Declaration
public InputList<CertRequestSubjectGetArgs> Subjects { get; set; }
Property Value
Type Description
InputList<CertRequestSubjectGetArgs>
View Source

Uris

List of URIs for which a certificate is being requested.

Declaration
public InputList<string> Uris { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.