Viewing docs for edgecenter 0.13.0
published on Tuesday, Jun 16, 2026 by edge-center
published on Tuesday, Jun 16, 2026 by edge-center
Viewing docs for edgecenter 0.13.0
published on Tuesday, Jun 16, 2026 by edge-center
published on Tuesday, Jun 16, 2026 by edge-center
Represent DBaaS users data source.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as edgecenter from "@pulumi/edgecenter";
const example = edgecenter.getDbaasUsers({
clusterId: "080bbca5-1234-1234-1234-0bccd6f8f1b0",
projectId: 1,
regionId: 1,
});
import pulumi
import pulumi_edgecenter as edgecenter
example = edgecenter.get_dbaas_users(cluster_id="080bbca5-1234-1234-1234-0bccd6f8f1b0",
project_id=1,
region_id=1)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/edgecenter/edgecenter"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := edgecenter.GetDbaasUsers(ctx, &edgecenter.GetDbaasUsersArgs{
ClusterId: "080bbca5-1234-1234-1234-0bccd6f8f1b0",
ProjectId: pulumi.Float64Ref(1),
RegionId: pulumi.Float64Ref(1),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Edgecenter = Pulumi.Edgecenter;
return await Deployment.RunAsync(() =>
{
var example = Edgecenter.GetDbaasUsers.Invoke(new()
{
ClusterId = "080bbca5-1234-1234-1234-0bccd6f8f1b0",
ProjectId = 1,
RegionId = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.edgecenter.EdgecenterFunctions;
import com.pulumi.edgecenter.inputs.GetDbaasUsersArgs;
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 example = EdgecenterFunctions.getDbaasUsers(GetDbaasUsersArgs.builder()
.clusterId("080bbca5-1234-1234-1234-0bccd6f8f1b0")
.projectId(1)
.regionId(1)
.build());
}
}
variables:
example:
fn::invoke:
function: edgecenter:getDbaasUsers
arguments:
clusterId: 080bbca5-1234-1234-1234-0bccd6f8f1b0
projectId: 1
regionId: 1
Example coming soon!
Using getDbaasUsers
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 getDbaasUsers(args: GetDbaasUsersArgs, opts?: InvokeOptions): Promise<GetDbaasUsersResult>
function getDbaasUsersOutput(args: GetDbaasUsersOutputArgs, opts?: InvokeOptions): Output<GetDbaasUsersResult>def get_dbaas_users(cluster_id: Optional[str] = None,
id: Optional[str] = None,
name: Optional[str] = None,
project_id: Optional[float] = None,
project_name: Optional[str] = None,
region_id: Optional[float] = None,
region_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDbaasUsersResult
def get_dbaas_users_output(cluster_id: pulumi.Input[Optional[str]] = None,
id: pulumi.Input[Optional[str]] = None,
name: pulumi.Input[Optional[str]] = None,
project_id: pulumi.Input[Optional[float]] = None,
project_name: pulumi.Input[Optional[str]] = None,
region_id: pulumi.Input[Optional[float]] = None,
region_name: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDbaasUsersResult]func GetDbaasUsers(ctx *Context, args *GetDbaasUsersArgs, opts ...InvokeOption) (*GetDbaasUsersResult, error)
func GetDbaasUsersOutput(ctx *Context, args *GetDbaasUsersOutputArgs, opts ...InvokeOption) GetDbaasUsersResultOutput> Note: This function is named GetDbaasUsers in the Go SDK.
public static class GetDbaasUsers
{
public static Task<GetDbaasUsersResult> InvokeAsync(GetDbaasUsersArgs args, InvokeOptions? opts = null)
public static Output<GetDbaasUsersResult> Invoke(GetDbaasUsersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDbaasUsersResult> getDbaasUsers(GetDbaasUsersArgs args, InvokeOptions options)
public static Output<GetDbaasUsersResult> getDbaasUsers(GetDbaasUsersArgs args, InvokeOptions options)
fn::invoke:
function: edgecenter:index/getDbaasUsers:getDbaasUsers
arguments:
# arguments dictionarydata "edgecenter_getdbaasusers" "name" {
# arguments
}The following arguments are supported:
- Cluster
Id string - The ID of the DBaaS cluster.
- Id string
- The ID of this resource.
- Name string
- The name of the user to filter by.
- Project
Id double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Cluster
Id string - The ID of the DBaaS cluster.
- Id string
- The ID of this resource.
- Name string
- The name of the user to filter by.
- Project
Id float64 - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id float64 - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster_
id string - The ID of the DBaaS cluster.
- id string
- The ID of this resource.
- name string
- The name of the user to filter by.
- project_
id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster
Id String - The ID of the DBaaS cluster.
- id String
- The ID of this resource.
- name String
- The name of the user to filter by.
- project
Id Double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster
Id string - The ID of the DBaaS cluster.
- id string
- The ID of this resource.
- name string
- The name of the user to filter by.
- project
Id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster_
id str - The ID of the DBaaS cluster.
- id str
- The ID of this resource.
- name str
- The name of the user to filter by.
- project_
id float - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name str - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id float - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name str - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster
Id String - The ID of the DBaaS cluster.
- id String
- The ID of this resource.
- name String
- The name of the user to filter by.
- project
Id Number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
getDbaasUsers Result
The following output properties are available:
- Cluster
Id string - The ID of the DBaaS cluster.
- Id string
- The ID of this resource.
- Items
List<Get
Dbaas Users Item> - Name string
- The name of the user to filter by.
- Project
Id double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Cluster
Id string - The ID of the DBaaS cluster.
- Id string
- The ID of this resource.
- Items
[]Get
Dbaas Users Item - Name string
- The name of the user to filter by.
- Project
Id float64 - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id float64 - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster_
id string - The ID of the DBaaS cluster.
- id string
- The ID of this resource.
- items list(object)
- name string
- The name of the user to filter by.
- project_
id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster
Id String - The ID of the DBaaS cluster.
- id String
- The ID of this resource.
- items
List<Get
Dbaas Users Item> - name String
- The name of the user to filter by.
- project
Id Double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster
Id string - The ID of the DBaaS cluster.
- id string
- The ID of this resource.
- items
Get
Dbaas Users Item[] - name string
- The name of the user to filter by.
- project
Id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster_
id str - The ID of the DBaaS cluster.
- id str
- The ID of this resource.
- items
Sequence[Get
Dbaas Users Item] - name str
- The name of the user to filter by.
- project_
id float - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name str - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id float - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name str - The name of the region. Either 'regionid' or 'regionname' must be specified.
- cluster
Id String - The ID of the DBaaS cluster.
- id String
- The ID of this resource.
- items List<Property Map>
- name String
- The name of the user to filter by.
- project
Id Number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
Supporting Types
GetDbaasUsersItem
Package Details
- Repository
- edgecenter edge-center/terraform-provider-edgecenter
- License
- Notes
- This Pulumi package is based on the
edgecenterTerraform Provider.
Viewing docs for edgecenter 0.13.0
published on Tuesday, Jun 16, 2026 by edge-center
published on Tuesday, Jun 16, 2026 by edge-center