Show / Hide Table of Contents

Class Entity

Inheritance
System.Object
Resource
CustomResource
Entity
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.Vault.Identity
Assembly: Pulumi.Vault.dll
Syntax
public class Entity : CustomResource

Constructors

View Source

Entity(String, EntityArgs, CustomResourceOptions)

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

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

The unique name of the resource

EntityArgs 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

Disabled

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

Declaration
public Output<bool?> Disabled { get; }
Property Value
Type Description
Output<System.Nullable<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 Output<bool?> ExternalPolicies { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

Metadata

A Map of additional metadata to associate with the user.

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

Name

Name of the identity entity to create.

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

Policies

A list of policies to apply to the entity.

Declaration
public Output<ImmutableArray<string>> Policies { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>

Methods

View Source

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

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

Declaration
public static Entity Get(string name, Input<string> id, EntityState 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.

EntityState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

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