Class DefaultPrivilegesArgs
Inherited Members
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 DefaultPrivilegesArgs : ResourceArgs
Constructors
View SourceDefaultPrivilegesArgs()
Declaration
public DefaultPrivilegesArgs()
Properties
View SourceDatabase
The database to grant default privileges for this role.
Declaration
public Input<string> Database { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
Owner
Role for which apply default privileges (You can change default privileges only for objects that will be created by yourself or by roles that you are a member of).
Declaration
public Input<string> Owner { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Privileges
The list of privileges to apply as default privileges.
Declaration
public InputList<string> Privileges { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
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> |
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> |