Linode
getDatabases
Provides information about Linode Managed Databases that match a set of filters.
Attributes
Each engine will be stored in the databases
attribute and will export the following attributes:
allow_list
- A list of IP addresses that can access the Managed Database.cluster_size
- The number of Linode Instance nodes deployed to the Managed Database.created
- When this Managed Database was created.encrypted
- Whether the Managed Databases is encrypted.engine
- The Managed Database engine.host_primary
- The primary host for the Managed Database.host_secondary
- The secondary/private network host for the Managed Database.id
- The ID of the Managed Database.label
- A unique, user-defined string referring to the Managed Database.region
- The region to use for the Managed Database.replication_type
- The replication method used for the Managed Database.ssl_connection
- Whether to require SSL credentials to establish a connection to the Managed Database.status
- The operating status of the Managed Database.type
- The Linode Instance type used for the nodes of the Managed Database instance.updated
- When this Managed Database was last updated.version
- The Managed Database engine version.
Example Usage
using Pulumi;
using Linode = Pulumi.Linode;
class MyStack : Stack
{
public MyStack()
{
var all = Output.Create(Linode.GetDatabases.InvokeAsync());
}
}
package main
import (
"github.com/pulumi/pulumi-linode/sdk/v3/go/linode"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := linode.GetDatabases(ctx, nil, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var all = Output.of(LinodeFunctions.getDatabases());
}
}
import pulumi
import pulumi_linode as linode
all = linode.get_databases()
import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";
const all = pulumi.output(linode.getDatabases());
variables:
all:
Fn::Invoke:
Function: linode:getDatabases
Arguments: {}
Using getDatabases
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 getDatabases(args: GetDatabasesArgs, opts?: InvokeOptions): Promise<GetDatabasesResult>
function getDatabasesOutput(args: GetDatabasesOutputArgs, opts?: InvokeOptions): Output<GetDatabasesResult>
def get_databases(filters: Optional[Sequence[GetDatabasesFilter]] = None,
latest: Optional[bool] = None,
order: Optional[str] = None,
order_by: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDatabasesResult
def get_databases_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDatabasesFilterArgs]]]] = None,
latest: Optional[pulumi.Input[bool]] = None,
order: Optional[pulumi.Input[str]] = None,
order_by: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDatabasesResult]
func GetDatabases(ctx *Context, args *GetDatabasesArgs, opts ...InvokeOption) (*GetDatabasesResult, error)
func GetDatabasesOutput(ctx *Context, args *GetDatabasesOutputArgs, opts ...InvokeOption) GetDatabasesResultOutput
> Note: This function is named GetDatabases
in the Go SDK.
public static class GetDatabases
{
public static Task<GetDatabasesResult> InvokeAsync(GetDatabasesArgs args, InvokeOptions? opts = null)
public static Output<GetDatabasesResult> Invoke(GetDatabasesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDatabasesResult> getDatabases(GetDatabasesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: linode:index/getDatabases:getDatabases
Arguments:
# Arguments dictionary
The following arguments are supported:
- Filters
List<Get
Databases Filter> - Latest bool
If true, only the latest create database will be returned.
- Order string
The order in which results should be returned. (
asc
,desc
; defaultasc
)- Order
By string The attribute to order the results by. (
version
)
- Filters
[]Get
Databases Filter - Latest bool
If true, only the latest create database will be returned.
- Order string
The order in which results should be returned. (
asc
,desc
; defaultasc
)- Order
By string The attribute to order the results by. (
version
)
- filters
List<Get
Databases Filter> - latest Boolean
If true, only the latest create database will be returned.
- order String
The order in which results should be returned. (
asc
,desc
; defaultasc
)- order
By String The attribute to order the results by. (
version
)
- filters
Get
Databases Filter[] - latest boolean
If true, only the latest create database will be returned.
- order string
The order in which results should be returned. (
asc
,desc
; defaultasc
)- order
By string The attribute to order the results by. (
version
)
- filters
Sequence[Get
Databases Filter] - latest bool
If true, only the latest create database will be returned.
- order str
The order in which results should be returned. (
asc
,desc
; defaultasc
)- order_
by str The attribute to order the results by. (
version
)
- filters List<Property Map>
- latest Boolean
If true, only the latest create database will be returned.
- order String
The order in which results should be returned. (
asc
,desc
; defaultasc
)- order
By String The attribute to order the results by. (
version
)
getDatabases Result
The following output properties are available:
- Databases
List<Get
Databases Database> - Id string
The provider-assigned unique ID for this managed resource.
- Filters
List<Get
Databases Filter> - Latest bool
- Order string
- Order
By string
- Databases
[]Get
Databases Database - Id string
The provider-assigned unique ID for this managed resource.
- Filters
[]Get
Databases Filter - Latest bool
- Order string
- Order
By string
- databases
List<Get
Databases Database> - id String
The provider-assigned unique ID for this managed resource.
- filters
List<Get
Databases Filter> - latest Boolean
- order String
- order
By String
- databases
Get
Databases Database[] - id string
The provider-assigned unique ID for this managed resource.
- filters
Get
Databases Filter[] - latest boolean
- order string
- order
By string
- databases
Sequence[Get
Databases Database] - id str
The provider-assigned unique ID for this managed resource.
- filters
Sequence[Get
Databases Filter] - latest bool
- order str
- order_
by str
- databases List<Property Map>
- id String
The provider-assigned unique ID for this managed resource.
- filters List<Property Map>
- latest Boolean
- order String
- order
By String
Supporting Types
GetDatabasesDatabase
- Allow
Lists List<string> - Cluster
Size int - Created string
- Encrypted bool
- Engine string
- Host
Primary string - Host
Secondary string - Id int
- Instance
Uri string - Label string
- Region string
- Replication
Type string - Ssl
Connection bool - Status string
- Type string
- Updated string
- Version string
- Allow
Lists []string - Cluster
Size int - Created string
- Encrypted bool
- Engine string
- Host
Primary string - Host
Secondary string - Id int
- Instance
Uri string - Label string
- Region string
- Replication
Type string - Ssl
Connection bool - Status string
- Type string
- Updated string
- Version string
- allow
Lists List<String> - cluster
Size Integer - created String
- encrypted Boolean
- engine String
- host
Primary String - host
Secondary String - id Integer
- instance
Uri String - label String
- region String
- replication
Type String - ssl
Connection Boolean - status String
- type String
- updated String
- version String
- allow
Lists string[] - cluster
Size number - created string
- encrypted boolean
- engine string
- host
Primary string - host
Secondary string - id number
- instance
Uri string - label string
- region string
- replication
Type string - ssl
Connection boolean - status string
- type string
- updated string
- version string
- allow_
lists Sequence[str] - cluster_
size int - created str
- encrypted bool
- engine str
- host_
primary str - host_
secondary str - id int
- instance_
uri str - label str
- region str
- replication_
type str - ssl_
connection bool - status str
- type str
- updated str
- version str
- allow
Lists List<String> - cluster
Size Number - created String
- encrypted Boolean
- engine String
- host
Primary String - host
Secondary String - id Number
- instance
Uri String - label String
- region String
- replication
Type String - ssl
Connection Boolean - status String
- type String
- updated String
- version String
GetDatabasesFilter
Package Details
- Repository
- https://github.com/pulumi/pulumi-linode
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
linode
Terraform Provider.