Show / Hide Table of Contents

Class Certifiate

Manages a Key Vault Certificate.

Inheritance
System.Object
Resource
CustomResource
Certifiate
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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.KeyVault
Assembly: Pulumi.Azure.dll
Syntax
[Obsolete("azure.keyvault.Certifiate has been deprecated in favor of azure.keyvault.Certificate")]
public class Certifiate : CustomResource

Constructors

View Source

Certifiate(String, CertifiateArgs, CustomResourceOptions)

Create a Certifiate resource with the given unique name, arguments, and options.

Declaration
public Certifiate(string name, CertifiateArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

CertifiateArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

CertificateData

The raw Key Vault Certificate data represented as a hexadecimal string.

Declaration
public Output<string> CertificateData { get; }
Property Value
Type Description
Output<System.String>
View Source

CertificatePolicy

A certificate_policy block as defined below.

Declaration
public Output<CertifiateCertificatePolicy> CertificatePolicy { get; }
Property Value
Type Description
Output<CertifiateCertificatePolicy>
View Source

KeyVaultCertificate

A certificate block as defined below, used to Import an existing certificate.

Declaration
public Output<CertifiateCertificate> KeyVaultCertificate { get; }
Property Value
Type Description
Output<CertifiateCertificate>
View Source

KeyVaultId

The ID of the Key Vault where the Certificate should be created.

Declaration
public Output<string> KeyVaultId { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

Specifies the name of the Key Vault Certificate. Changing this forces a new resource to be created.

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

SecretId

The ID of the associated Key Vault Secret.

Declaration
public Output<string> SecretId { get; }
Property Value
Type Description
Output<System.String>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public Output<ImmutableDictionary<string, string>> Tags { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableDictionary<System.String, System.String>>
View Source

Thumbprint

The X509 Thumbprint of the Key Vault Certificate represented as a hexadecimal string.

Declaration
public Output<string> Thumbprint { get; }
Property Value
Type Description
Output<System.String>
View Source

Version

The current version of the Key Vault Certificate.

Declaration
public Output<string> Version { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, CertifiateState, CustomResourceOptions)

Get an existing Certifiate resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static Certifiate Get(string name, Input<string> id, CertifiateState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

CertifiateState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
Certifiate
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.