Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.DatabaseManagement.getManagedDatabasesUserProxyUsers
Explore with Pulumi AI
This data source provides the list of Managed Databases User Proxy Users in Oracle Cloud Infrastructure Database Management service.
Gets the list of proxy users for the current user.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedDatabasesUserProxyUsers = oci.DatabaseManagement.getManagedDatabasesUserProxyUsers({
    managedDatabaseId: testManagedDatabase.id,
    userName: testUser.name,
    name: managedDatabasesUserProxyUserName,
    opcNamedCredentialId: managedDatabasesUserProxyUserOpcNamedCredentialId,
});
import pulumi
import pulumi_oci as oci
test_managed_databases_user_proxy_users = oci.DatabaseManagement.get_managed_databases_user_proxy_users(managed_database_id=test_managed_database["id"],
    user_name=test_user["name"],
    name=managed_databases_user_proxy_user_name,
    opc_named_credential_id=managed_databases_user_proxy_user_opc_named_credential_id)
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.GetManagedDatabasesUserProxyUsers(ctx, &databasemanagement.GetManagedDatabasesUserProxyUsersArgs{
			ManagedDatabaseId:    testManagedDatabase.Id,
			UserName:             testUser.Name,
			Name:                 pulumi.StringRef(managedDatabasesUserProxyUserName),
			OpcNamedCredentialId: pulumi.StringRef(managedDatabasesUserProxyUserOpcNamedCredentialId),
		}, 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 testManagedDatabasesUserProxyUsers = Oci.DatabaseManagement.GetManagedDatabasesUserProxyUsers.Invoke(new()
    {
        ManagedDatabaseId = testManagedDatabase.Id,
        UserName = testUser.Name,
        Name = managedDatabasesUserProxyUserName,
        OpcNamedCredentialId = managedDatabasesUserProxyUserOpcNamedCredentialId,
    });
});
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.GetManagedDatabasesUserProxyUsersArgs;
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 testManagedDatabasesUserProxyUsers = DatabaseManagementFunctions.getManagedDatabasesUserProxyUsers(GetManagedDatabasesUserProxyUsersArgs.builder()
            .managedDatabaseId(testManagedDatabase.id())
            .userName(testUser.name())
            .name(managedDatabasesUserProxyUserName)
            .opcNamedCredentialId(managedDatabasesUserProxyUserOpcNamedCredentialId)
            .build());
    }
}
variables:
  testManagedDatabasesUserProxyUsers:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedDatabasesUserProxyUsers
      arguments:
        managedDatabaseId: ${testManagedDatabase.id}
        userName: ${testUser.name}
        name: ${managedDatabasesUserProxyUserName}
        opcNamedCredentialId: ${managedDatabasesUserProxyUserOpcNamedCredentialId}
Using getManagedDatabasesUserProxyUsers
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 getManagedDatabasesUserProxyUsers(args: GetManagedDatabasesUserProxyUsersArgs, opts?: InvokeOptions): Promise<GetManagedDatabasesUserProxyUsersResult>
function getManagedDatabasesUserProxyUsersOutput(args: GetManagedDatabasesUserProxyUsersOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabasesUserProxyUsersResult>def get_managed_databases_user_proxy_users(filters: Optional[Sequence[GetManagedDatabasesUserProxyUsersFilter]] = None,
                                           managed_database_id: Optional[str] = None,
                                           name: Optional[str] = None,
                                           opc_named_credential_id: Optional[str] = None,
                                           user_name: Optional[str] = None,
                                           opts: Optional[InvokeOptions] = None) -> GetManagedDatabasesUserProxyUsersResult
def get_managed_databases_user_proxy_users_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetManagedDatabasesUserProxyUsersFilterArgs]]]] = None,
                                           managed_database_id: Optional[pulumi.Input[str]] = None,
                                           name: Optional[pulumi.Input[str]] = None,
                                           opc_named_credential_id: Optional[pulumi.Input[str]] = None,
                                           user_name: Optional[pulumi.Input[str]] = None,
                                           opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabasesUserProxyUsersResult]func GetManagedDatabasesUserProxyUsers(ctx *Context, args *GetManagedDatabasesUserProxyUsersArgs, opts ...InvokeOption) (*GetManagedDatabasesUserProxyUsersResult, error)
func GetManagedDatabasesUserProxyUsersOutput(ctx *Context, args *GetManagedDatabasesUserProxyUsersOutputArgs, opts ...InvokeOption) GetManagedDatabasesUserProxyUsersResultOutput> Note: This function is named GetManagedDatabasesUserProxyUsers in the Go SDK.
public static class GetManagedDatabasesUserProxyUsers 
{
    public static Task<GetManagedDatabasesUserProxyUsersResult> InvokeAsync(GetManagedDatabasesUserProxyUsersArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedDatabasesUserProxyUsersResult> Invoke(GetManagedDatabasesUserProxyUsersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagedDatabasesUserProxyUsersResult> getManagedDatabasesUserProxyUsers(GetManagedDatabasesUserProxyUsersArgs args, InvokeOptions options)
public static Output<GetManagedDatabasesUserProxyUsersResult> getManagedDatabasesUserProxyUsers(GetManagedDatabasesUserProxyUsersArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabasesUserProxyUsers:getManagedDatabasesUserProxyUsers
  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.
- Filters
List<GetManaged Databases User Proxy Users Filter> 
- Name string
- A filter to return only resources that match the entire name.
- OpcNamed stringCredential Id 
- The OCID of the Named Credential.
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- UserName string
- The name of the user whose details are to be viewed.
- Filters
[]GetManaged Databases User Proxy Users Filter 
- Name string
- A filter to return only resources that match the entire name.
- OpcNamed stringCredential Id 
- The OCID of the Named Credential.
- managedDatabase StringId 
- The OCID of the Managed Database.
- userName String
- The name of the user whose details are to be viewed.
- filters
List<GetManaged Databases User Proxy Users Filter> 
- name String
- A filter to return only resources that match the entire name.
- opcNamed StringCredential Id 
- The OCID of the Named Credential.
- managedDatabase stringId 
- The OCID of the Managed Database.
- userName string
- The name of the user whose details are to be viewed.
- filters
GetManaged Databases User Proxy Users Filter[] 
- name string
- A filter to return only resources that match the entire name.
- opcNamed stringCredential Id 
- The OCID of the Named Credential.
- managed_database_ strid 
- The OCID of the Managed Database.
- user_name str
- The name of the user whose details are to be viewed.
- filters
Sequence[GetManaged Databases User Proxy Users Filter] 
- name str
- A filter to return only resources that match the entire name.
- opc_named_ strcredential_ id 
- The OCID of the Named Credential.
- managedDatabase StringId 
- The OCID of the Managed Database.
- userName String
- The name of the user whose details are to be viewed.
- filters List<Property Map>
- name String
- A filter to return only resources that match the entire name.
- opcNamed StringCredential Id 
- The OCID of the Named Credential.
getManagedDatabasesUserProxyUsers Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- ManagedDatabase stringId 
- ProxyUser List<GetCollections Managed Databases User Proxy Users Proxy User Collection> 
- The list of proxy_user_collection.
- UserName string
- Filters
List<GetManaged Databases User Proxy Users Filter> 
- Name string
- The name of a proxy user or the name of the client user.
- OpcNamed stringCredential Id 
- Id string
- The provider-assigned unique ID for this managed resource.
- ManagedDatabase stringId 
- ProxyUser []GetCollections Managed Databases User Proxy Users Proxy User Collection 
- The list of proxy_user_collection.
- UserName string
- Filters
[]GetManaged Databases User Proxy Users Filter 
- Name string
- The name of a proxy user or the name of the client user.
- OpcNamed stringCredential Id 
- id String
- The provider-assigned unique ID for this managed resource.
- managedDatabase StringId 
- proxyUser List<GetCollections Managed Databases User Proxy Users Proxy User Collection> 
- The list of proxy_user_collection.
- userName String
- filters
List<GetManaged Databases User Proxy Users Filter> 
- name String
- The name of a proxy user or the name of the client user.
- opcNamed StringCredential Id 
- id string
- The provider-assigned unique ID for this managed resource.
- managedDatabase stringId 
- proxyUser GetCollections Managed Databases User Proxy Users Proxy User Collection[] 
- The list of proxy_user_collection.
- userName string
- filters
GetManaged Databases User Proxy Users Filter[] 
- name string
- The name of a proxy user or the name of the client user.
- opcNamed stringCredential Id 
- id str
- The provider-assigned unique ID for this managed resource.
- managed_database_ strid 
- proxy_user_ Sequence[Getcollections Managed Databases User Proxy Users Proxy User Collection] 
- The list of proxy_user_collection.
- user_name str
- filters
Sequence[GetManaged Databases User Proxy Users Filter] 
- name str
- The name of a proxy user or the name of the client user.
- opc_named_ strcredential_ id 
- id String
- The provider-assigned unique ID for this managed resource.
- managedDatabase StringId 
- proxyUser List<Property Map>Collections 
- The list of proxy_user_collection.
- userName String
- filters List<Property Map>
- name String
- The name of a proxy user or the name of the client user.
- opcNamed StringCredential Id 
Supporting Types
GetManagedDatabasesUserProxyUsersFilter      
GetManagedDatabasesUserProxyUsersProxyUserCollection        
- Items
List<GetManaged Databases User Proxy Users Proxy User Collection Item> 
- An array of user resources.
- Items
[]GetManaged Databases User Proxy Users Proxy User Collection Item 
- An array of user resources.
- items
List<GetManaged Databases User Proxy Users Proxy User Collection Item> 
- An array of user resources.
- items
GetManaged Databases User Proxy Users Proxy User Collection Item[] 
- An array of user resources.
- items
Sequence[GetManaged Databases User Proxy Users Proxy User Collection Item] 
- An array of user resources.
- items List<Property Map>
- An array of user resources.
GetManagedDatabasesUserProxyUsersProxyUserCollectionItem         
- Authentication string
- Indicates whether the proxy is required to supply the client credentials (YES) or not (NO).
- Flags string
- The flags associated with the proxy/client pair.
- Name string
- A filter to return only resources that match the entire name.
- Authentication string
- Indicates whether the proxy is required to supply the client credentials (YES) or not (NO).
- Flags string
- The flags associated with the proxy/client pair.
- Name string
- A filter to return only resources that match the entire name.
- authentication String
- Indicates whether the proxy is required to supply the client credentials (YES) or not (NO).
- flags String
- The flags associated with the proxy/client pair.
- name String
- A filter to return only resources that match the entire name.
- authentication string
- Indicates whether the proxy is required to supply the client credentials (YES) or not (NO).
- flags string
- The flags associated with the proxy/client pair.
- name string
- A filter to return only resources that match the entire name.
- authentication str
- Indicates whether the proxy is required to supply the client credentials (YES) or not (NO).
- flags str
- The flags associated with the proxy/client pair.
- name str
- A filter to return only resources that match the entire name.
- authentication String
- Indicates whether the proxy is required to supply the client credentials (YES) or not (NO).
- flags String
- The flags associated with the proxy/client pair.
- 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.