Show / Hide Table of Contents

Class SecretArgs

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

Constructors

View Source

SecretArgs()

Declaration
public SecretArgs()

Properties

View Source

ContentType

Specifies the content type for the Key Vault Secret.

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

ExpirationDate

Expiration UTC datetime (Y-m-d'T'H:M:S'Z').

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

KeyVaultId

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

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

Name

Specifies the name of the Key Vault Secret. 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

NotBeforeDate

Key not usable before the provided UTC datetime (Y-m-d'T'H:M:S'Z').

Declaration
public Input<string> NotBeforeDate { 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

Value

Specifies the value of the Key Vault Secret.

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