postgresql.Function
The postgresql.Function
resource creates and manages a function on a PostgreSQL
server.
Usage
import * as pulumi from "@pulumi/pulumi";
import * as postgresql from "@pulumi/postgresql";
const increment = new postgresql.Function("increment", {
args: [{
name: "i",
type: "integer",
}],
body: ` AS $
BEGIN
RETURN i + 1;
END;
$ LANGUAGE plpgsql;
`,
returns: "integer",
});
import pulumi
import pulumi_postgresql as postgresql
increment = postgresql.Function("increment",
args=[postgresql.FunctionArgArgs(
name="i",
type="integer",
)],
body=""" AS $
BEGIN
RETURN i + 1;
END;
$ LANGUAGE plpgsql;
""",
returns="integer")
using System.Collections.Generic;
using Pulumi;
using PostgreSql = Pulumi.PostgreSql;
return await Deployment.RunAsync(() =>
{
var increment = new PostgreSql.Function("increment", new()
{
Args = new[]
{
new PostgreSql.Inputs.FunctionArgArgs
{
Name = "i",
Type = "integer",
},
},
Body = @" AS $
BEGIN
RETURN i + 1;
END;
$ LANGUAGE plpgsql;
",
Returns = "integer",
});
});
package main
import (
"fmt"
"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.NewFunction(ctx, "increment", &postgresql.FunctionArgs{
Args: FunctionArgArray{
&FunctionArgArgs{
Name: pulumi.String("i"),
Type: pulumi.String("integer"),
},
},
Body: pulumi.String(fmt.Sprintf(` AS $
BEGIN
RETURN i + 1;
END;
$ LANGUAGE plpgsql;
`)),
Returns: pulumi.String("integer"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.postgresql.Function;
import com.pulumi.postgresql.FunctionArgs;
import com.pulumi.postgresql.inputs.FunctionArgArgs;
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) {
var increment = new Function("increment", FunctionArgs.builder()
.args(FunctionArgArgs.builder()
.name("i")
.type("integer")
.build())
.body("""
AS $
BEGIN
RETURN i + 1;
END;
$ LANGUAGE plpgsql;
""")
.returns("integer")
.build());
}
}
resources:
increment:
type: postgresql:Function
properties:
args:
- name: i
type: integer
body: |2+
AS $
BEGIN
RETURN i + 1;
END;
$ LANGUAGE plpgsql;
returns: integer
Create Function Resource
new Function(name: string, args: FunctionArgs, opts?: CustomResourceOptions);
@overload
def Function(resource_name: str,
opts: Optional[ResourceOptions] = None,
args: Optional[Sequence[FunctionArgArgs]] = None,
body: Optional[str] = None,
database: Optional[str] = None,
drop_cascade: Optional[bool] = None,
name: Optional[str] = None,
returns: Optional[str] = None,
schema: Optional[str] = None)
@overload
def Function(resource_name: str,
args: FunctionArgs,
opts: Optional[ResourceOptions] = None)
func NewFunction(ctx *Context, name string, args FunctionArgs, opts ...ResourceOption) (*Function, error)
public Function(string name, FunctionArgs args, CustomResourceOptions? opts = null)
public Function(String name, FunctionArgs args)
public Function(String name, FunctionArgs args, CustomResourceOptions options)
type: postgresql:Function
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FunctionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FunctionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FunctionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FunctionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FunctionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Function Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Function resource accepts the following input properties:
- Body string
Function body. This should be everything after the return type in the function definition.
- Args
List<Pulumi.
Postgre Sql. Inputs. Function Arg Args> List of arguments for the function.
- Database string
The database where the function is located. If not specified, the function is created in the current database.
- Drop
Cascade bool True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- Name string
The name of the argument.
- Returns string
Type that the function returns.
- Schema string
The schema where the function is located. If not specified, the function is created in the current schema.
- Body string
Function body. This should be everything after the return type in the function definition.
- Args
[]Function
Arg Args List of arguments for the function.
- Database string
The database where the function is located. If not specified, the function is created in the current database.
- Drop
Cascade bool True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- Name string
The name of the argument.
- Returns string
Type that the function returns.
- Schema string
The schema where the function is located. If not specified, the function is created in the current schema.
- body String
Function body. This should be everything after the return type in the function definition.
- args
List<Function
Arg Args> List of arguments for the function.
- database String
The database where the function is located. If not specified, the function is created in the current database.
- drop
Cascade Boolean True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- name String
The name of the argument.
- returns String
Type that the function returns.
- schema String
The schema where the function is located. If not specified, the function is created in the current schema.
- body string
Function body. This should be everything after the return type in the function definition.
- args
Function
Arg Args[] List of arguments for the function.
- database string
The database where the function is located. If not specified, the function is created in the current database.
- drop
Cascade boolean True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- name string
The name of the argument.
- returns string
Type that the function returns.
- schema string
The schema where the function is located. If not specified, the function is created in the current schema.
- body str
Function body. This should be everything after the return type in the function definition.
- args
Sequence[Function
Arg Args] List of arguments for the function.
- database str
The database where the function is located. If not specified, the function is created in the current database.
- drop_
cascade bool True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- name str
The name of the argument.
- returns str
Type that the function returns.
- schema str
The schema where the function is located. If not specified, the function is created in the current schema.
- body String
Function body. This should be everything after the return type in the function definition.
- args List<Property Map>
List of arguments for the function.
- database String
The database where the function is located. If not specified, the function is created in the current database.
- drop
Cascade Boolean True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- name String
The name of the argument.
- returns String
Type that the function returns.
- schema String
The schema where the function is located. If not specified, the function is created in the current schema.
Outputs
All input properties are implicitly available as output properties. Additionally, the Function resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing Function Resource
Get an existing Function resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FunctionState, opts?: CustomResourceOptions): Function
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
args: Optional[Sequence[FunctionArgArgs]] = None,
body: Optional[str] = None,
database: Optional[str] = None,
drop_cascade: Optional[bool] = None,
name: Optional[str] = None,
returns: Optional[str] = None,
schema: Optional[str] = None) -> Function
func GetFunction(ctx *Context, name string, id IDInput, state *FunctionState, opts ...ResourceOption) (*Function, error)
public static Function Get(string name, Input<string> id, FunctionState? state, CustomResourceOptions? opts = null)
public static Function get(String name, Output<String> id, FunctionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Args
List<Pulumi.
Postgre Sql. Inputs. Function Arg Args> List of arguments for the function.
- Body string
Function body. This should be everything after the return type in the function definition.
- Database string
The database where the function is located. If not specified, the function is created in the current database.
- Drop
Cascade bool True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- Name string
The name of the argument.
- Returns string
Type that the function returns.
- Schema string
The schema where the function is located. If not specified, the function is created in the current schema.
- Args
[]Function
Arg Args List of arguments for the function.
- Body string
Function body. This should be everything after the return type in the function definition.
- Database string
The database where the function is located. If not specified, the function is created in the current database.
- Drop
Cascade bool True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- Name string
The name of the argument.
- Returns string
Type that the function returns.
- Schema string
The schema where the function is located. If not specified, the function is created in the current schema.
- args
List<Function
Arg Args> List of arguments for the function.
- body String
Function body. This should be everything after the return type in the function definition.
- database String
The database where the function is located. If not specified, the function is created in the current database.
- drop
Cascade Boolean True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- name String
The name of the argument.
- returns String
Type that the function returns.
- schema String
The schema where the function is located. If not specified, the function is created in the current schema.
- args
Function
Arg Args[] List of arguments for the function.
- body string
Function body. This should be everything after the return type in the function definition.
- database string
The database where the function is located. If not specified, the function is created in the current database.
- drop
Cascade boolean True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- name string
The name of the argument.
- returns string
Type that the function returns.
- schema string
The schema where the function is located. If not specified, the function is created in the current schema.
- args
Sequence[Function
Arg Args] List of arguments for the function.
- body str
Function body. This should be everything after the return type in the function definition.
- database str
The database where the function is located. If not specified, the function is created in the current database.
- drop_
cascade bool True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- name str
The name of the argument.
- returns str
Type that the function returns.
- schema str
The schema where the function is located. If not specified, the function is created in the current schema.
- args List<Property Map>
List of arguments for the function.
- body String
Function body. This should be everything after the return type in the function definition.
- database String
The database where the function is located. If not specified, the function is created in the current database.
- drop
Cascade Boolean True to automatically drop objects that depend on the function (such as operators or triggers), and in turn all objects that depend on those objects. Default is false.
- name String
The name of the argument.
- returns String
Type that the function returns.
- schema String
The schema where the function is located. If not specified, the function is created in the current schema.
Supporting Types
FunctionArg
Package Details
- Repository
- PostgreSQL pulumi/pulumi-postgresql
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
postgresql
Terraform Provider.