1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getManagedDatabaseUserObjectPrivilege
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DatabaseManagement.getManagedDatabaseUserObjectPrivilege

Explore with Pulumi AI

This data source provides details about a specific Managed Database User Object Privilege resource in Oracle Cloud Infrastructure Database Management service.

Gets the list of object privileges granted to a specific user.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testManagedDatabaseUserObjectPrivilege = oci.DatabaseManagement.getManagedDatabaseUserObjectPrivilege({
    managedDatabaseId: testManagedDatabase.id,
    userName: testUser.name,
    name: managedDatabaseUserObjectPrivilegeName,
});
Copy
import pulumi
import pulumi_oci as oci

test_managed_database_user_object_privilege = oci.DatabaseManagement.get_managed_database_user_object_privilege(managed_database_id=test_managed_database["id"],
    user_name=test_user["name"],
    name=managed_database_user_object_privilege_name)
Copy
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.GetManagedDatabaseUserObjectPrivilege(ctx, &databasemanagement.GetManagedDatabaseUserObjectPrivilegeArgs{
			ManagedDatabaseId: testManagedDatabase.Id,
			UserName:          testUser.Name,
			Name:              pulumi.StringRef(managedDatabaseUserObjectPrivilegeName),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testManagedDatabaseUserObjectPrivilege = Oci.DatabaseManagement.GetManagedDatabaseUserObjectPrivilege.Invoke(new()
    {
        ManagedDatabaseId = testManagedDatabase.Id,
        UserName = testUser.Name,
        Name = managedDatabaseUserObjectPrivilegeName,
    });

});
Copy
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.GetManagedDatabaseUserObjectPrivilegeArgs;
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 testManagedDatabaseUserObjectPrivilege = DatabaseManagementFunctions.getManagedDatabaseUserObjectPrivilege(GetManagedDatabaseUserObjectPrivilegeArgs.builder()
            .managedDatabaseId(testManagedDatabase.id())
            .userName(testUser.name())
            .name(managedDatabaseUserObjectPrivilegeName)
            .build());

    }
}
Copy
variables:
  testManagedDatabaseUserObjectPrivilege:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedDatabaseUserObjectPrivilege
      arguments:
        managedDatabaseId: ${testManagedDatabase.id}
        userName: ${testUser.name}
        name: ${managedDatabaseUserObjectPrivilegeName}
Copy

Using getManagedDatabaseUserObjectPrivilege

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 getManagedDatabaseUserObjectPrivilege(args: GetManagedDatabaseUserObjectPrivilegeArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseUserObjectPrivilegeResult>
function getManagedDatabaseUserObjectPrivilegeOutput(args: GetManagedDatabaseUserObjectPrivilegeOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseUserObjectPrivilegeResult>
Copy
def get_managed_database_user_object_privilege(managed_database_id: Optional[str] = None,
                                               name: Optional[str] = None,
                                               user_name: Optional[str] = None,
                                               opts: Optional[InvokeOptions] = None) -> GetManagedDatabaseUserObjectPrivilegeResult
def get_managed_database_user_object_privilege_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[GetManagedDatabaseUserObjectPrivilegeResult]
Copy
func GetManagedDatabaseUserObjectPrivilege(ctx *Context, args *GetManagedDatabaseUserObjectPrivilegeArgs, opts ...InvokeOption) (*GetManagedDatabaseUserObjectPrivilegeResult, error)
func GetManagedDatabaseUserObjectPrivilegeOutput(ctx *Context, args *GetManagedDatabaseUserObjectPrivilegeOutputArgs, opts ...InvokeOption) GetManagedDatabaseUserObjectPrivilegeResultOutput
Copy

> Note: This function is named GetManagedDatabaseUserObjectPrivilege in the Go SDK.

public static class GetManagedDatabaseUserObjectPrivilege 
{
    public static Task<GetManagedDatabaseUserObjectPrivilegeResult> InvokeAsync(GetManagedDatabaseUserObjectPrivilegeArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedDatabaseUserObjectPrivilegeResult> Invoke(GetManagedDatabaseUserObjectPrivilegeInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetManagedDatabaseUserObjectPrivilegeResult> getManagedDatabaseUserObjectPrivilege(GetManagedDatabaseUserObjectPrivilegeArgs args, InvokeOptions options)
public static Output<GetManagedDatabaseUserObjectPrivilegeResult> getManagedDatabaseUserObjectPrivilege(GetManagedDatabaseUserObjectPrivilegeArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabaseUserObjectPrivilege:getManagedDatabaseUserObjectPrivilege
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ManagedDatabaseId This property is required. string
The OCID of the Managed Database.
UserName This property is required. 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.
ManagedDatabaseId This property is required. string
The OCID of the Managed Database.
UserName This property is required. 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.
managedDatabaseId This property is required. String
The OCID of the Managed Database.
userName This property is required. 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.
managedDatabaseId This property is required. string
The OCID of the Managed Database.
userName This property is required. 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_id This property is required. str
The OCID of the Managed Database.
user_name This property is required. 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.
managedDatabaseId This property is required. String
The OCID of the Managed Database.
userName This property is required. 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.

getManagedDatabaseUserObjectPrivilege Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Items List<GetManagedDatabaseUserObjectPrivilegeItem>
An array of object privileges.
ManagedDatabaseId string
UserName string
Name string
The name of the privilege on the object.
Id string
The provider-assigned unique ID for this managed resource.
Items []GetManagedDatabaseUserObjectPrivilegeItem
An array of object privileges.
ManagedDatabaseId string
UserName string
Name string
The name of the privilege on the object.
id String
The provider-assigned unique ID for this managed resource.
items List<GetManagedDatabaseUserObjectPrivilegeItem>
An array of object privileges.
managedDatabaseId String
userName String
name String
The name of the privilege on the object.
id string
The provider-assigned unique ID for this managed resource.
items GetManagedDatabaseUserObjectPrivilegeItem[]
An array of object privileges.
managedDatabaseId string
userName string
name string
The name of the privilege on the object.
id str
The provider-assigned unique ID for this managed resource.
items Sequence[databasemanagement.GetManagedDatabaseUserObjectPrivilegeItem]
An array of object privileges.
managed_database_id str
user_name str
name str
The name of the privilege on the object.
id String
The provider-assigned unique ID for this managed resource.
items List<Property Map>
An array of object privileges.
managedDatabaseId String
userName String
name String
The name of the privilege on the object.

Supporting Types

GetManagedDatabaseUserObjectPrivilegeItem

Common This property is required. string
Indicates how the object privilege 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)
GrantOption This property is required. string
Indicates whether the privilege is granted with the GRANT OPTION (YES) or not (NO).
Grantor This property is required. string
The name of the user who granted the object privilege.
Hierarchy This property is required. string
Indicates whether the privilege is granted with the HIERARCHY OPTION (YES) or not (NO).
Inherited This property is required. string
Indicates whether the granted privilege is inherited from another container (YES) or not (NO).
Name This property is required. string
A filter to return only resources that match the entire name.
Object This property is required. string
The name of the object. The object can be any object, including tables, packages, indexes, sequences, and so on.
Owner This property is required. string
The owner of the object.
SchemaType This property is required. string
The type of object.
Common This property is required. string
Indicates how the object privilege 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)
GrantOption This property is required. string
Indicates whether the privilege is granted with the GRANT OPTION (YES) or not (NO).
Grantor This property is required. string
The name of the user who granted the object privilege.
Hierarchy This property is required. string
Indicates whether the privilege is granted with the HIERARCHY OPTION (YES) or not (NO).
Inherited This property is required. string
Indicates whether the granted privilege is inherited from another container (YES) or not (NO).
Name This property is required. string
A filter to return only resources that match the entire name.
Object This property is required. string
The name of the object. The object can be any object, including tables, packages, indexes, sequences, and so on.
Owner This property is required. string
The owner of the object.
SchemaType This property is required. string
The type of object.
common This property is required. String
Indicates how the object privilege 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)
grantOption This property is required. String
Indicates whether the privilege is granted with the GRANT OPTION (YES) or not (NO).
grantor This property is required. String
The name of the user who granted the object privilege.
hierarchy This property is required. String
Indicates whether the privilege is granted with the HIERARCHY OPTION (YES) or not (NO).
inherited This property is required. String
Indicates whether the granted privilege is inherited from another container (YES) or not (NO).
name This property is required. String
A filter to return only resources that match the entire name.
object This property is required. String
The name of the object. The object can be any object, including tables, packages, indexes, sequences, and so on.
owner This property is required. String
The owner of the object.
schemaType This property is required. String
The type of object.
common This property is required. string
Indicates how the object privilege 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)
grantOption This property is required. string
Indicates whether the privilege is granted with the GRANT OPTION (YES) or not (NO).
grantor This property is required. string
The name of the user who granted the object privilege.
hierarchy This property is required. string
Indicates whether the privilege is granted with the HIERARCHY OPTION (YES) or not (NO).
inherited This property is required. string
Indicates whether the granted privilege is inherited from another container (YES) or not (NO).
name This property is required. string
A filter to return only resources that match the entire name.
object This property is required. string
The name of the object. The object can be any object, including tables, packages, indexes, sequences, and so on.
owner This property is required. string
The owner of the object.
schemaType This property is required. string
The type of object.
common This property is required. str
Indicates how the object privilege 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)
grant_option This property is required. str
Indicates whether the privilege is granted with the GRANT OPTION (YES) or not (NO).
grantor This property is required. str
The name of the user who granted the object privilege.
hierarchy This property is required. str
Indicates whether the privilege is granted with the HIERARCHY OPTION (YES) or not (NO).
inherited This property is required. str
Indicates whether the granted privilege is inherited from another container (YES) or not (NO).
name This property is required. str
A filter to return only resources that match the entire name.
object This property is required. str
The name of the object. The object can be any object, including tables, packages, indexes, sequences, and so on.
owner This property is required. str
The owner of the object.
schema_type This property is required. str
The type of object.
common This property is required. String
Indicates how the object privilege 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)
grantOption This property is required. String
Indicates whether the privilege is granted with the GRANT OPTION (YES) or not (NO).
grantor This property is required. String
The name of the user who granted the object privilege.
hierarchy This property is required. String
Indicates whether the privilege is granted with the HIERARCHY OPTION (YES) or not (NO).
inherited This property is required. String
Indicates whether the granted privilege is inherited from another container (YES) or not (NO).
name This property is required. String
A filter to return only resources that match the entire name.
object This property is required. String
The name of the object. The object can be any object, including tables, packages, indexes, sequences, and so on.
owner This property is required. String
The owner of the object.
schemaType This property is required. String
The type of object.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.