Show / Hide Table of Contents

Class EntityArgs

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

Constructors

View Source

EntityArgs()

Declaration
public EntityArgs()

Properties

View Source

Disabled

True/false Is this entity currently disabled. Defaults to false

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

ExternalPolicies

false by default. If set to true, this resource will ignore any policies return from Vault or specified in the resource. You can use vault.identity.EntityPolicies to manage policies for this entity in a decoupled manner.

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

Metadata

A Map of additional metadata to associate with the user.

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

Name

Name of the identity entity to create.

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

Policies

A list of policies to apply to the entity.

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