ovh.Me.getIdentityUsers

Use this data source to retrieve list of user logins of the account’s identity users.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Ovh = Pulumi.Ovh;

return await Deployment.RunAsync(() => 
{
    var users = Ovh.Me.GetIdentityUsers.Invoke();

});
package main

import (
	"github.com/lbrlabs/pulumi-ovh/sdk/go/ovh/Me"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Me.GetIdentityUsers(ctx, nil, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ovh.Me.MeFunctions;
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 users = MeFunctions.getIdentityUsers();

    }
}
import pulumi
import pulumi_ovh as ovh

users = ovh.Me.get_identity_users()
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@pulumi/ovh";

const users = ovh.Me.getIdentityUsers({});
variables:
  users:
    fn::invoke:
      Function: ovh:Me:getIdentityUsers
      Arguments: {}

Using getIdentityUsers

function getIdentityUsers(opts?: InvokeOptions): Promise<GetIdentityUsersResult>
def get_identity_users(opts: Optional[InvokeOptions] = None) -> GetIdentityUsersResult
func GetIdentityUsers(ctx *Context, opts ...InvokeOption) (*GetIdentityUsersResult, error)

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

public static class GetIdentityUsers 
{
    public static Task<GetIdentityUsersResult> InvokeAsync(InvokeOptions? opts = null)
}
public static CompletableFuture<GetIdentityUsersResult> getIdentityUsers(InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: ovh:Me/getIdentityUsers:getIdentityUsers
  arguments:
    # arguments dictionary

getIdentityUsers Result

The following output properties are available:

Id string

The provider-assigned unique ID for this managed resource.

Users List<string>

The list of the user's logins of all the identity users.

Id string

The provider-assigned unique ID for this managed resource.

Users []string

The list of the user's logins of all the identity users.

id String

The provider-assigned unique ID for this managed resource.

users List<String>

The list of the user's logins of all the identity users.

id string

The provider-assigned unique ID for this managed resource.

users string[]

The list of the user's logins of all the identity users.

id str

The provider-assigned unique ID for this managed resource.

users Sequence[str]

The list of the user's logins of all the identity users.

id String

The provider-assigned unique ID for this managed resource.

users List<String>

The list of the user's logins of all the identity users.

Package Details

Repository
ovh lbrlabs/pulumi-ovh
License
Apache-2.0
Notes

This Pulumi package is based on the ovh Terraform Provider.