Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.DatabaseManagement.getManagedDatabaseUserRole
Explore with Pulumi AI
This data source provides details about a specific Managed Database User Role resource in Oracle Cloud Infrastructure Database Management service.
Gets the list of roles granted to a specific user.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedDatabaseUserRole = oci.DatabaseManagement.getManagedDatabaseUserRole({
    managedDatabaseId: testManagedDatabase.id,
    userName: testUser.name,
    name: managedDatabaseUserRoleName,
});
import pulumi
import pulumi_oci as oci
test_managed_database_user_role = oci.DatabaseManagement.get_managed_database_user_role(managed_database_id=test_managed_database["id"],
    user_name=test_user["name"],
    name=managed_database_user_role_name)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/databasemanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasemanagement.GetManagedDatabaseUserRole(ctx, &databasemanagement.GetManagedDatabaseUserRoleArgs{
			ManagedDatabaseId: testManagedDatabase.Id,
			UserName:          testUser.Name,
			Name:              pulumi.StringRef(managedDatabaseUserRoleName),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testManagedDatabaseUserRole = Oci.DatabaseManagement.GetManagedDatabaseUserRole.Invoke(new()
    {
        ManagedDatabaseId = testManagedDatabase.Id,
        UserName = testUser.Name,
        Name = managedDatabaseUserRoleName,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
import com.pulumi.oci.DatabaseManagement.inputs.GetManagedDatabaseUserRoleArgs;
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 testManagedDatabaseUserRole = DatabaseManagementFunctions.getManagedDatabaseUserRole(GetManagedDatabaseUserRoleArgs.builder()
            .managedDatabaseId(testManagedDatabase.id())
            .userName(testUser.name())
            .name(managedDatabaseUserRoleName)
            .build());
    }
}
variables:
  testManagedDatabaseUserRole:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedDatabaseUserRole
      arguments:
        managedDatabaseId: ${testManagedDatabase.id}
        userName: ${testUser.name}
        name: ${managedDatabaseUserRoleName}
Using getManagedDatabaseUserRole
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 getManagedDatabaseUserRole(args: GetManagedDatabaseUserRoleArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseUserRoleResult>
function getManagedDatabaseUserRoleOutput(args: GetManagedDatabaseUserRoleOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseUserRoleResult>def get_managed_database_user_role(managed_database_id: Optional[str] = None,
                                   name: Optional[str] = None,
                                   user_name: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetManagedDatabaseUserRoleResult
def get_managed_database_user_role_output(managed_database_id: Optional[pulumi.Input[str]] = None,
                                   name: Optional[pulumi.Input[str]] = None,
                                   user_name: Optional[pulumi.Input[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabaseUserRoleResult]func GetManagedDatabaseUserRole(ctx *Context, args *GetManagedDatabaseUserRoleArgs, opts ...InvokeOption) (*GetManagedDatabaseUserRoleResult, error)
func GetManagedDatabaseUserRoleOutput(ctx *Context, args *GetManagedDatabaseUserRoleOutputArgs, opts ...InvokeOption) GetManagedDatabaseUserRoleResultOutput> Note: This function is named GetManagedDatabaseUserRole in the Go SDK.
public static class GetManagedDatabaseUserRole 
{
    public static Task<GetManagedDatabaseUserRoleResult> InvokeAsync(GetManagedDatabaseUserRoleArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedDatabaseUserRoleResult> Invoke(GetManagedDatabaseUserRoleInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagedDatabaseUserRoleResult> getManagedDatabaseUserRole(GetManagedDatabaseUserRoleArgs args, InvokeOptions options)
public static Output<GetManagedDatabaseUserRoleResult> getManagedDatabaseUserRole(GetManagedDatabaseUserRoleArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabaseUserRole:getManagedDatabaseUserRole
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- UserName string
- The name of the user whose details are to be viewed.
- Name string
- A filter to return only resources that match the entire name.
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- UserName string
- The name of the user whose details are to be viewed.
- Name string
- A filter to return only resources that match the entire name.
- managedDatabase StringId 
- The OCID of the Managed Database.
- userName String
- The name of the user whose details are to be viewed.
- name String
- A filter to return only resources that match the entire name.
- managedDatabase stringId 
- The OCID of the Managed Database.
- userName string
- The name of the user whose details are to be viewed.
- name string
- A filter to return only resources that match the entire name.
- managed_database_ strid 
- The OCID of the Managed Database.
- user_name str
- The name of the user whose details are to be viewed.
- name str
- A filter to return only resources that match the entire name.
- managedDatabase StringId 
- The OCID of the Managed Database.
- userName String
- The name of the user whose details are to be viewed.
- name String
- A filter to return only resources that match the entire name.
getManagedDatabaseUserRole Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<GetManaged Database User Role Item> 
- An array of roles.
- ManagedDatabase stringId 
- UserName string
- Name string
- The name of the role granted to the user.
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]GetManaged Database User Role Item 
- An array of roles.
- ManagedDatabase stringId 
- UserName string
- Name string
- The name of the role granted to the user.
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<GetManaged Database User Role Item> 
- An array of roles.
- managedDatabase StringId 
- userName String
- name String
- The name of the role granted to the user.
- id string
- The provider-assigned unique ID for this managed resource.
- items
GetManaged Database User Role Item[] 
- An array of roles.
- managedDatabase stringId 
- userName string
- name string
- The name of the role granted to the user.
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[GetManaged Database User Role Item] 
- An array of roles.
- managed_database_ strid 
- user_name str
- name str
- The name of the role granted to the user.
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- An array of roles.
- managedDatabase StringId 
- userName String
- name String
- The name of the role granted to the user.
Supporting Types
GetManagedDatabaseUserRoleItem     
- AdminOption string
- Indicates whether the role is granted with the ADMIN OPTION (YES) or not (NO).
- Common string
- Indicates how the role was granted. Possible values: YES if the role is granted commonly (CONTAINER=ALL is used) NO if the role is granted locally (CONTAINER=ALL is not used)
- DefaultRole string
- Indicates whether the role is designated as a DEFAULT ROLE for the user (YES) or not (NO).
- DelegateOption string
- Indicates whether the role is granted with the DELEGATE OPTION (YES) or not (NO).
- Inherited string
- Indicates whether the granted role is inherited from another container (YES) or not (NO).
- Name string
- A filter to return only resources that match the entire name.
- AdminOption string
- Indicates whether the role is granted with the ADMIN OPTION (YES) or not (NO).
- Common string
- Indicates how the role was granted. Possible values: YES if the role is granted commonly (CONTAINER=ALL is used) NO if the role is granted locally (CONTAINER=ALL is not used)
- DefaultRole string
- Indicates whether the role is designated as a DEFAULT ROLE for the user (YES) or not (NO).
- DelegateOption string
- Indicates whether the role is granted with the DELEGATE OPTION (YES) or not (NO).
- Inherited string
- Indicates whether the granted role is inherited from another container (YES) or not (NO).
- Name string
- A filter to return only resources that match the entire name.
- adminOption String
- Indicates whether the role is granted with the ADMIN OPTION (YES) or not (NO).
- common String
- Indicates how the role was granted. Possible values: YES if the role is granted commonly (CONTAINER=ALL is used) NO if the role is granted locally (CONTAINER=ALL is not used)
- defaultRole String
- Indicates whether the role is designated as a DEFAULT ROLE for the user (YES) or not (NO).
- delegateOption String
- Indicates whether the role is granted with the DELEGATE OPTION (YES) or not (NO).
- inherited String
- Indicates whether the granted role is inherited from another container (YES) or not (NO).
- name String
- A filter to return only resources that match the entire name.
- adminOption string
- Indicates whether the role is granted with the ADMIN OPTION (YES) or not (NO).
- common string
- Indicates how the role was granted. Possible values: YES if the role is granted commonly (CONTAINER=ALL is used) NO if the role is granted locally (CONTAINER=ALL is not used)
- defaultRole string
- Indicates whether the role is designated as a DEFAULT ROLE for the user (YES) or not (NO).
- delegateOption string
- Indicates whether the role is granted with the DELEGATE OPTION (YES) or not (NO).
- inherited string
- Indicates whether the granted role is inherited from another container (YES) or not (NO).
- name string
- A filter to return only resources that match the entire name.
- admin_option str
- Indicates whether the role is granted with the ADMIN OPTION (YES) or not (NO).
- common str
- Indicates how the role was granted. Possible values: YES if the role is granted commonly (CONTAINER=ALL is used) NO if the role is granted locally (CONTAINER=ALL is not used)
- default_role str
- Indicates whether the role is designated as a DEFAULT ROLE for the user (YES) or not (NO).
- delegate_option str
- Indicates whether the role is granted with the DELEGATE OPTION (YES) or not (NO).
- inherited str
- Indicates whether the granted role is inherited from another container (YES) or not (NO).
- name str
- A filter to return only resources that match the entire name.
- adminOption String
- Indicates whether the role is granted with the ADMIN OPTION (YES) or not (NO).
- common String
- Indicates how the role was granted. Possible values: YES if the role is granted commonly (CONTAINER=ALL is used) NO if the role is granted locally (CONTAINER=ALL is not used)
- defaultRole String
- Indicates whether the role is designated as a DEFAULT ROLE for the user (YES) or not (NO).
- delegateOption String
- Indicates whether the role is granted with the DELEGATE OPTION (YES) or not (NO).
- inherited String
- Indicates whether the granted role is inherited from another container (YES) or not (NO).
- name String
- A filter to return only resources that match the entire name.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.