Show / Hide Table of Contents

Class SchemaPolicy

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

Fields

View Source

Create

Should the specified ROLE have CREATE privileges to the specified SCHEMA.

Declaration
public readonly bool? Create
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

CreateWithGrant

Should the specified ROLE have CREATE privileges to the specified SCHEMA and the ability to GRANT the CREATE privilege to other ROLEs.

Declaration
public readonly bool? CreateWithGrant
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

Role

The ROLE who is receiving the policy. If this value is empty or not specified it implies the policy is referring to the PUBLIC role.

Declaration
public readonly string Role
Field Value
Type Description
System.String
View Source

Usage

Should the specified ROLE have USAGE privileges to the specified SCHEMA.

Declaration
public readonly bool? Usage
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

UsageWithGrant

Should the specified ROLE have USAGE privileges to the specified SCHEMA and the ability to GRANT the USAGE privilege to other ROLEs.

Declaration
public readonly bool? UsageWithGrant
Field Value
Type Description
System.Nullable<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.