Show / Hide Table of Contents

Class SecretBackendRoleArgs

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

Constructors

View Source

SecretBackendRoleArgs()

Declaration
public SecretBackendRoleArgs()

Properties

View Source

Backend

The unique name of the Vault mount to configure.

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

CreationStatements

The database statements to execute when creating a user.

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

DbName

The unique name of the database connection to use for the role.

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

DefaultTtl

The default number of seconds for leases for this role.

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

MaxTtl

The maximum number of seconds for leases for this role.

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

Name

A unique name to give the role.

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

RenewStatements

The database statements to execute when renewing a user.

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

RevocationStatements

The database statements to execute when revoking a user.

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

RollbackStatements

The database statements to execute when rolling back creation due to an error.

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