Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Extension ¶
type Extension struct {
// contains filtered or unexported fields
}
The “postgresql_extension“ resource creates and manages an extension on a PostgreSQL server.
func GetExtension ¶
func GetExtension(ctx *pulumi.Context, name string, id pulumi.ID, state *ExtensionState, opts ...pulumi.ResourceOpt) (*Extension, error)
GetExtension gets an existing Extension resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewExtension ¶
func NewExtension(ctx *pulumi.Context, name string, args *ExtensionArgs, opts ...pulumi.ResourceOpt) (*Extension, error)
NewExtension registers a new resource with the given unique name, arguments, and options.
func (*Extension) Schema ¶
func (r *Extension) Schema() *pulumi.StringOutput
Sets the schema of an extension.
func (*Extension) Version ¶
func (r *Extension) Version() *pulumi.StringOutput
Sets the version number of the extension.
type ExtensionArgs ¶
type ExtensionArgs struct { // The name of the extension. Name interface{} // Sets the schema of an extension. Schema interface{} // Sets the version number of the extension. Version interface{} }
The set of arguments for constructing a Extension resource.
type ExtensionState ¶
type ExtensionState struct { // The name of the extension. Name interface{} // Sets the schema of an extension. Schema interface{} // Sets the version number of the extension. Version interface{} }
Input properties used for looking up and filtering Extension resources.
Click to show internal directories.
Click to hide internal directories.