Show / Hide Table of Contents

Class TokenState

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

Constructors

View Source

TokenState()

Declaration
public TokenState()

Properties

View Source

ClientToken

String containing the client token if stored in present file

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

DisplayName

String containing the token display name

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

EncryptedClientToken

String containing the client token encrypted with the given pgp_key if stored in present file

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

ExplicitMaxTtl

The explicit max TTL of this token

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

LeaseDuration

String containing the token lease duration if present in state file

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

LeaseStarted

String containing the token lease started time if present in state file

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

NoDefaultPolicy

Flag to not attach the default policy to this token

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

NoParent

Flag to create a token without parent

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

NumUses

The number of allowed uses of this token

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

Period

The period of this token

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

PgpKey

The PGP key (base64 encoded) to encrypt the token.

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

Policies

List of policies to attach to this token

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

Renewable

Flag to allow to renew this token

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

RenewIncrement

The renew increment

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

RenewMinLease

The minimal lease to renew this token

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

RoleName

The token role name

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

Ttl

The TTL period of this token

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

WrappedToken

The client wrapped token.

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

WrappingAccessor

The client wrapping accessor.

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

WrappingTtl

The TTL period of the wrapped token.

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