Show / Hide Table of Contents

Class DefaultPrivilegState

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

Constructors

View Source

DefaultPrivilegState()

Declaration
public DefaultPrivilegState()

Properties

View Source

Database

The database to grant default privileges for this role

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

ObjectType

The PostgreSQL object type to set the default privileges on (one of: table, sequence)

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

Owner

Target role for which to alter default privileges.

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

Privileges

The list of privileges to apply as default privileges

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

Role

The name of the role to which grant default privileges on

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

Schema

The database schema to set default privileges for this role

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