ovh.CloudProject.getContainerRegistryUsers

Explore with Pulumi AI

Use this data source to get the list of users of a container registry associated with a public cloud project.

Example Usage

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

return await Deployment.RunAsync(() => 
{
    var registry = Ovh.CloudProject.GetContainerRegistry.Invoke(new()
    {
        ServiceName = "XXXXXX",
        RegistryId = "yyyy",
    });

    var users = Ovh.CloudProject.GetContainerRegistryUsers.Invoke(new()
    {
        ServiceName = ovh_cloud_project_containerregistry.Registry.Service_name,
        RegistryId = ovh_cloud_project_containerregistry.Registry.Id,
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := CloudProject.GetContainerRegistry(ctx, &cloudproject.GetContainerRegistryArgs{
			ServiceName: "XXXXXX",
			RegistryId:  "yyyy",
		}, nil)
		if err != nil {
			return err
		}
		_, err = CloudProject.GetContainerRegistryUsers(ctx, &cloudproject.GetContainerRegistryUsersArgs{
			ServiceName: ovh_cloud_project_containerregistry.Registry.Service_name,
			RegistryId:  ovh_cloud_project_containerregistry.Registry.Id,
		}, 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.CloudProject.CloudProjectFunctions;
import com.pulumi.ovh.CloudProject.inputs.GetContainerRegistryArgs;
import com.pulumi.ovh.CloudProject.inputs.GetContainerRegistryUsersArgs;
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 registry = CloudProjectFunctions.getContainerRegistry(GetContainerRegistryArgs.builder()
            .serviceName("XXXXXX")
            .registryId("yyyy")
            .build());

        final var users = CloudProjectFunctions.getContainerRegistryUsers(GetContainerRegistryUsersArgs.builder()
            .serviceName(ovh_cloud_project_containerregistry.registry().service_name())
            .registryId(ovh_cloud_project_containerregistry.registry().id())
            .build());

    }
}
import pulumi
import pulumi_ovh as ovh

registry = ovh.CloudProject.get_container_registry(service_name="XXXXXX",
    registry_id="yyyy")
users = ovh.CloudProject.get_container_registry_users(service_name=ovh_cloud_project_containerregistry["registry"]["service_name"],
    registry_id=ovh_cloud_project_containerregistry["registry"]["id"])
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@pulumi/ovh";

const registry = ovh.CloudProject.getContainerRegistry({
    serviceName: "XXXXXX",
    registryId: "yyyy",
});
const users = ovh.CloudProject.getContainerRegistryUsers({
    serviceName: ovh_cloud_project_containerregistry.registry.service_name,
    registryId: ovh_cloud_project_containerregistry.registry.id,
});
variables:
  registry:
    fn::invoke:
      Function: ovh:CloudProject:getContainerRegistry
      Arguments:
        serviceName: XXXXXX
        registryId: yyyy
  users:
    fn::invoke:
      Function: ovh:CloudProject:getContainerRegistryUsers
      Arguments:
        serviceName: ${ovh_cloud_project_containerregistry.registry.service_name}
        registryId: ${ovh_cloud_project_containerregistry.registry.id}

Using getContainerRegistryUsers

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 getContainerRegistryUsers(args: GetContainerRegistryUsersArgs, opts?: InvokeOptions): Promise<GetContainerRegistryUsersResult>
function getContainerRegistryUsersOutput(args: GetContainerRegistryUsersOutputArgs, opts?: InvokeOptions): Output<GetContainerRegistryUsersResult>
def get_container_registry_users(registry_id: Optional[str] = None,
                                 service_name: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetContainerRegistryUsersResult
def get_container_registry_users_output(registry_id: Optional[pulumi.Input[str]] = None,
                                 service_name: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetContainerRegistryUsersResult]
func GetContainerRegistryUsers(ctx *Context, args *GetContainerRegistryUsersArgs, opts ...InvokeOption) (*GetContainerRegistryUsersResult, error)
func GetContainerRegistryUsersOutput(ctx *Context, args *GetContainerRegistryUsersOutputArgs, opts ...InvokeOption) GetContainerRegistryUsersResultOutput

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

public static class GetContainerRegistryUsers 
{
    public static Task<GetContainerRegistryUsersResult> InvokeAsync(GetContainerRegistryUsersArgs args, InvokeOptions? opts = null)
    public static Output<GetContainerRegistryUsersResult> Invoke(GetContainerRegistryUsersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetContainerRegistryUsersResult> getContainerRegistryUsers(GetContainerRegistryUsersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: ovh:CloudProject/getContainerRegistryUsers:getContainerRegistryUsers
  arguments:
    # arguments dictionary

The following arguments are supported:

RegistryId string

Registry ID

ServiceName string

The id of the public cloud project. If omitted, the OVH_CLOUD_PROJECT_SERVICE environment variable is used.

RegistryId string

Registry ID

ServiceName string

The id of the public cloud project. If omitted, the OVH_CLOUD_PROJECT_SERVICE environment variable is used.

registryId String

Registry ID

serviceName String

The id of the public cloud project. If omitted, the OVH_CLOUD_PROJECT_SERVICE environment variable is used.

registryId string

Registry ID

serviceName string

The id of the public cloud project. If omitted, the OVH_CLOUD_PROJECT_SERVICE environment variable is used.

registry_id str

Registry ID

service_name str

The id of the public cloud project. If omitted, the OVH_CLOUD_PROJECT_SERVICE environment variable is used.

registryId String

Registry ID

serviceName String

The id of the public cloud project. If omitted, the OVH_CLOUD_PROJECT_SERVICE environment variable is used.

getContainerRegistryUsers Result

The following output properties are available:

Id string

The provider-assigned unique ID for this managed resource.

RegistryId string
Results List<Lbrlabs.PulumiPackage.Ovh.CloudProject.Outputs.GetContainerRegistryUsersResult>

The list of users of the container registry associated with the project.

ServiceName string
Id string

The provider-assigned unique ID for this managed resource.

RegistryId string
Results []GetContainerRegistryUsersResult

The list of users of the container registry associated with the project.

ServiceName string
id String

The provider-assigned unique ID for this managed resource.

registryId String
results List<GetContainerRegistryUsersResult>

The list of users of the container registry associated with the project.

serviceName String
id string

The provider-assigned unique ID for this managed resource.

registryId string
results GetContainerRegistryUsersResult[]

The list of users of the container registry associated with the project.

serviceName string
id str

The provider-assigned unique ID for this managed resource.

registry_id str
results GetContainerRegistryUsersResult]

The list of users of the container registry associated with the project.

service_name str
id String

The provider-assigned unique ID for this managed resource.

registryId String
results List<Property Map>

The list of users of the container registry associated with the project.

serviceName String

Supporting Types

GetContainerRegistryUsersResult

Email string

User email

Id string

User ID

User string

User name

Email string

User email

Id string

User ID

User string

User name

email String

User email

id String

User ID

user String

User name

email string

User email

id string

User ID

user string

User name

email str

User email

id str

User ID

user str

User name

email String

User email

id String

User ID

user String

User name

Package Details

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

This Pulumi package is based on the ovh Terraform Provider.