postgresql.getSchemas
Explore with Pulumi AI
The postgresql.getSchemas
data source retrieves a list of schema names from a specified PostgreSQL database.
Usage
import * as pulumi from "@pulumi/pulumi";
import * as postgresql from "@pulumi/postgresql";
const mySchemas = postgresql.getSchemas({
database: "my_database",
});
import pulumi
import pulumi_postgresql as postgresql
my_schemas = postgresql.get_schemas(database="my_database")
package main
import (
"github.com/pulumi/pulumi-postgresql/sdk/v3/go/postgresql"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := postgresql.GetSchemas(ctx, &postgresql.GetSchemasArgs{
Database: "my_database",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using PostgreSql = Pulumi.PostgreSql;
return await Deployment.RunAsync(() =>
{
var mySchemas = PostgreSql.GetSchemas.Invoke(new()
{
Database = "my_database",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.postgresql.PostgresqlFunctions;
import com.pulumi.postgresql.inputs.GetSchemasArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var mySchemas = PostgresqlFunctions.getSchemas(GetSchemasArgs.builder()
.database("my_database")
.build());
}
}
variables:
mySchemas:
fn::invoke:
Function: postgresql:getSchemas
Arguments:
database: my_database
Using getSchemas
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSchemas(args: GetSchemasArgs, opts?: InvokeOptions): Promise<GetSchemasResult>
function getSchemasOutput(args: GetSchemasOutputArgs, opts?: InvokeOptions): Output<GetSchemasResult>
def get_schemas(database: Optional[str] = None,
include_system_schemas: Optional[bool] = None,
like_all_patterns: Optional[Sequence[str]] = None,
like_any_patterns: Optional[Sequence[str]] = None,
not_like_all_patterns: Optional[Sequence[str]] = None,
regex_pattern: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSchemasResult
def get_schemas_output(database: Optional[pulumi.Input[str]] = None,
include_system_schemas: Optional[pulumi.Input[bool]] = None,
like_all_patterns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
like_any_patterns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
not_like_all_patterns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
regex_pattern: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSchemasResult]
func GetSchemas(ctx *Context, args *GetSchemasArgs, opts ...InvokeOption) (*GetSchemasResult, error)
func GetSchemasOutput(ctx *Context, args *GetSchemasOutputArgs, opts ...InvokeOption) GetSchemasResultOutput
> Note: This function is named GetSchemas
in the Go SDK.
public static class GetSchemas
{
public static Task<GetSchemasResult> InvokeAsync(GetSchemasArgs args, InvokeOptions? opts = null)
public static Output<GetSchemasResult> Invoke(GetSchemasInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSchemasResult> getSchemas(GetSchemasArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: postgresql:index/getSchemas:getSchemas
arguments:
# arguments dictionary
The following arguments are supported:
- Database string
- The PostgreSQL database which will be queried for schema names.
- Include
System boolSchemas - Determines whether to include system schemas (pg_ prefix and information_schema). 'public' will always be included. Defaults to
false
. - Like
All List<string>Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ALL
operators. - Like
Any List<string>Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ANY
operators. - Not
Like List<string>All Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
NOT LIKE ALL
operators. - Regex
Pattern string Expression which will be pattern matched in the query using the PostgreSQL
~
(regular expression match) operator.Note that all optional arguments can be used in conjunction.
- Database string
- The PostgreSQL database which will be queried for schema names.
- Include
System boolSchemas - Determines whether to include system schemas (pg_ prefix and information_schema). 'public' will always be included. Defaults to
false
. - Like
All []stringPatterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ALL
operators. - Like
Any []stringPatterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ANY
operators. - Not
Like []stringAll Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
NOT LIKE ALL
operators. - Regex
Pattern string Expression which will be pattern matched in the query using the PostgreSQL
~
(regular expression match) operator.Note that all optional arguments can be used in conjunction.
- database String
- The PostgreSQL database which will be queried for schema names.
- include
System BooleanSchemas - Determines whether to include system schemas (pg_ prefix and information_schema). 'public' will always be included. Defaults to
false
. - like
All List<String>Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ALL
operators. - like
Any List<String>Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ANY
operators. - not
Like List<String>All Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
NOT LIKE ALL
operators. - regex
Pattern String Expression which will be pattern matched in the query using the PostgreSQL
~
(regular expression match) operator.Note that all optional arguments can be used in conjunction.
- database string
- The PostgreSQL database which will be queried for schema names.
- include
System booleanSchemas - Determines whether to include system schemas (pg_ prefix and information_schema). 'public' will always be included. Defaults to
false
. - like
All string[]Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ALL
operators. - like
Any string[]Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ANY
operators. - not
Like string[]All Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
NOT LIKE ALL
operators. - regex
Pattern string Expression which will be pattern matched in the query using the PostgreSQL
~
(regular expression match) operator.Note that all optional arguments can be used in conjunction.
- database str
- The PostgreSQL database which will be queried for schema names.
- include_
system_ boolschemas - Determines whether to include system schemas (pg_ prefix and information_schema). 'public' will always be included. Defaults to
false
. - like_
all_ Sequence[str]patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ALL
operators. - like_
any_ Sequence[str]patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ANY
operators. - not_
like_ Sequence[str]all_ patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
NOT LIKE ALL
operators. - regex_
pattern str Expression which will be pattern matched in the query using the PostgreSQL
~
(regular expression match) operator.Note that all optional arguments can be used in conjunction.
- database String
- The PostgreSQL database which will be queried for schema names.
- include
System BooleanSchemas - Determines whether to include system schemas (pg_ prefix and information_schema). 'public' will always be included. Defaults to
false
. - like
All List<String>Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ALL
operators. - like
Any List<String>Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
LIKE ANY
operators. - not
Like List<String>All Patterns - List of expressions which will be pattern matched in the query using the PostgreSQL
NOT LIKE ALL
operators. - regex
Pattern String Expression which will be pattern matched in the query using the PostgreSQL
~
(regular expression match) operator.Note that all optional arguments can be used in conjunction.
getSchemas Result
The following output properties are available:
- Database string
- Id string
- The provider-assigned unique ID for this managed resource.
- Schemas List<string>
- A list of full names of found schemas.
- Include
System boolSchemas - Like
All List<string>Patterns - Like
Any List<string>Patterns - Not
Like List<string>All Patterns - Regex
Pattern string
- Database string
- Id string
- The provider-assigned unique ID for this managed resource.
- Schemas []string
- A list of full names of found schemas.
- Include
System boolSchemas - Like
All []stringPatterns - Like
Any []stringPatterns - Not
Like []stringAll Patterns - Regex
Pattern string
- database String
- id String
- The provider-assigned unique ID for this managed resource.
- schemas List<String>
- A list of full names of found schemas.
- include
System BooleanSchemas - like
All List<String>Patterns - like
Any List<String>Patterns - not
Like List<String>All Patterns - regex
Pattern String
- database string
- id string
- The provider-assigned unique ID for this managed resource.
- schemas string[]
- A list of full names of found schemas.
- include
System booleanSchemas - like
All string[]Patterns - like
Any string[]Patterns - not
Like string[]All Patterns - regex
Pattern string
- database str
- id str
- The provider-assigned unique ID for this managed resource.
- schemas Sequence[str]
- A list of full names of found schemas.
- include_
system_ boolschemas - like_
all_ Sequence[str]patterns - like_
any_ Sequence[str]patterns - not_
like_ Sequence[str]all_ patterns - regex_
pattern str
- database String
- id String
- The provider-assigned unique ID for this managed resource.
- schemas List<String>
- A list of full names of found schemas.
- include
System BooleanSchemas - like
All List<String>Patterns - like
Any List<String>Patterns - not
Like List<String>All Patterns - regex
Pattern String
Package Details
- Repository
- PostgreSQL pulumi/pulumi-postgresql
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
postgresql
Terraform Provider.