Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
oci.DatabaseManagement.getManagedDatabasesUserProxyUser
Explore with Pulumi AI
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
This data source provides details about a specific Managed Databases User Proxy User resource 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 testManagedDatabasesUserProxyUser = oci.DatabaseManagement.getManagedDatabasesUserProxyUser({
    managedDatabaseId: testManagedDatabase.id,
    userName: testUser.name,
    name: managedDatabasesUserProxyUserName,
});
import pulumi
import pulumi_oci as oci
test_managed_databases_user_proxy_user = oci.DatabaseManagement.get_managed_databases_user_proxy_user(managed_database_id=test_managed_database["id"],
    user_name=test_user["name"],
    name=managed_databases_user_proxy_user_name)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/DatabaseManagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := DatabaseManagement.GetManagedDatabasesUserProxyUser(ctx, &databasemanagement.GetManagedDatabasesUserProxyUserArgs{
			ManagedDatabaseId: testManagedDatabase.Id,
			UserName:          testUser.Name,
			Name:              pulumi.StringRef(managedDatabasesUserProxyUserName),
		}, 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 testManagedDatabasesUserProxyUser = Oci.DatabaseManagement.GetManagedDatabasesUserProxyUser.Invoke(new()
    {
        ManagedDatabaseId = testManagedDatabase.Id,
        UserName = testUser.Name,
        Name = managedDatabasesUserProxyUserName,
    });
});
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.GetManagedDatabasesUserProxyUserArgs;
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 testManagedDatabasesUserProxyUser = DatabaseManagementFunctions.getManagedDatabasesUserProxyUser(GetManagedDatabasesUserProxyUserArgs.builder()
            .managedDatabaseId(testManagedDatabase.id())
            .userName(testUser.name())
            .name(managedDatabasesUserProxyUserName)
            .build());
    }
}
variables:
  testManagedDatabasesUserProxyUser:
    fn::invoke:
      Function: oci:DatabaseManagement:getManagedDatabasesUserProxyUser
      Arguments:
        managedDatabaseId: ${testManagedDatabase.id}
        userName: ${testUser.name}
        name: ${managedDatabasesUserProxyUserName}
Using getManagedDatabasesUserProxyUser
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 getManagedDatabasesUserProxyUser(args: GetManagedDatabasesUserProxyUserArgs, opts?: InvokeOptions): Promise<GetManagedDatabasesUserProxyUserResult>
function getManagedDatabasesUserProxyUserOutput(args: GetManagedDatabasesUserProxyUserOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabasesUserProxyUserResult>def get_managed_databases_user_proxy_user(managed_database_id: Optional[str] = None,
                                          name: Optional[str] = None,
                                          user_name: Optional[str] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetManagedDatabasesUserProxyUserResult
def get_managed_databases_user_proxy_user_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[GetManagedDatabasesUserProxyUserResult]func GetManagedDatabasesUserProxyUser(ctx *Context, args *GetManagedDatabasesUserProxyUserArgs, opts ...InvokeOption) (*GetManagedDatabasesUserProxyUserResult, error)
func GetManagedDatabasesUserProxyUserOutput(ctx *Context, args *GetManagedDatabasesUserProxyUserOutputArgs, opts ...InvokeOption) GetManagedDatabasesUserProxyUserResultOutput> Note: This function is named GetManagedDatabasesUserProxyUser in the Go SDK.
public static class GetManagedDatabasesUserProxyUser 
{
    public static Task<GetManagedDatabasesUserProxyUserResult> InvokeAsync(GetManagedDatabasesUserProxyUserArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedDatabasesUserProxyUserResult> Invoke(GetManagedDatabasesUserProxyUserInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagedDatabasesUserProxyUserResult> getManagedDatabasesUserProxyUser(GetManagedDatabasesUserProxyUserArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabasesUserProxyUser:getManagedDatabasesUserProxyUser
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Managed
Database stringId  - The OCID of the Managed Database.
 - User
Name 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 stringId  - The OCID of the Managed Database.
 - User
Name 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 StringId  - The OCID of the Managed Database.
 - user
Name 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 stringId  - The OCID of the Managed Database.
 - user
Name 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.
 
- managed
Database StringId  - The OCID of the Managed Database.
 - user
Name 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.
 
getManagedDatabasesUserProxyUser Result
The following output properties are available:
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Items
List<Get
Managed Databases User Proxy User Item>  - An array of user resources.
 - Managed
Database stringId  - User
Name string - Name string
 - The name of a proxy user or the name of the client user.
 
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Items
[]Get
Managed Databases User Proxy User Item  - An array of user resources.
 - Managed
Database stringId  - User
Name string - Name string
 - The name of a proxy user or the name of the client user.
 
- id String
 - The provider-assigned unique ID for this managed resource.
 - items
List<Get
Managed Databases User Proxy User Item>  - An array of user resources.
 - managed
Database StringId  - user
Name String - name String
 - The name of a proxy user or the name of the client user.
 
- id string
 - The provider-assigned unique ID for this managed resource.
 - items
Get
Managed Databases User Proxy User Item[]  - An array of user resources.
 - managed
Database stringId  - user
Name string - name string
 - The name of a proxy user or the name of the client user.
 
- id str
 - The provider-assigned unique ID for this managed resource.
 - items
Sequence[databasemanagement.
Get Managed Databases User Proxy User Item]  - An array of user resources.
 - managed_
database_ strid  - user_
name str - name str
 - The name of a proxy user or the name of the client user.
 
- id String
 - The provider-assigned unique ID for this managed resource.
 - items List<Property Map>
 - An array of user resources.
 - managed
Database StringId  - user
Name String - name String
 - The name of a proxy user or the name of the client user.
 
Supporting Types
GetManagedDatabasesUserProxyUserItem      
- 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. 
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi