Show / Hide Table of Contents

Class AuthBackendRole

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

Constructors

View Source

AuthBackendRole(String, AuthBackendRoleArgs, CustomResourceOptions)

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

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

The unique name of the resource

AuthBackendRoleArgs 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

Arn

The role's arn.

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

Backend

Auth backend.

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

Role

Name of the role. Must correspond with the name of the role reflected in the arn.

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

TokenBoundCidrs

Specifies the blocks of IP addresses which are allowed to use the generated token

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

TokenExplicitMaxTtl

Generated Token's Explicit Maximum TTL in seconds

Declaration
public Output<int?> TokenExplicitMaxTtl { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

TokenMaxTtl

The maximum lifetime of the generated token

Declaration
public Output<int?> TokenMaxTtl { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

TokenNoDefaultPolicy

If true, the 'default' policy will not automatically be added to generated tokens

Declaration
public Output<bool?> TokenNoDefaultPolicy { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

TokenNumUses

The maximum number of times a token may be used, a value of zero means unlimited

Declaration
public Output<int?> TokenNumUses { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

TokenPeriod

Generated Token's Period

Declaration
public Output<int?> TokenPeriod { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

TokenPolicies

Generated Token's Policies

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

TokenTtl

The initial ttl of the token to generate in seconds

Declaration
public Output<int?> TokenTtl { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

TokenType

The type of token to generate, service or batch

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

Methods

View Source

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

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

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

AuthBackendRoleState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

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