Show / Hide Table of Contents

Class GetRegistry

Inheritance
System.Object
GetRegistry
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Rancher2
Assembly: Pulumi.Rancher2.dll
Syntax
public static class GetRegistry

Methods

View Source

InvokeAsync(GetRegistryArgs, InvokeOptions)

Use this data source to retrieve information about a Rancher v2 docker registry.

Depending of the availability, there are 2 types of Rancher v2 docker registries:

  • Project registry: Available to all namespaces in the project_id
  • Namespaced registry: Available to just namespace_id in the project_id

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Rancher2 = Pulumi.Rancher2;

class MyStack : Stack
{
public MyStack()
{
    var foo = Output.Create(Rancher2.GetRegistry.InvokeAsync(new Rancher2.GetRegistryArgs
    {
        Name = "<name>",
        ProjectId = "<project_id>",
    }));
}

}
using Pulumi;
using Rancher2 = Pulumi.Rancher2;

class MyStack : Stack
{
public MyStack()
{
    var foo = Output.Create(Rancher2.GetRegistry.InvokeAsync(new Rancher2.GetRegistryArgs
    {
        Name = "<name>",
        NamespaceId = "<namespace_id>",
        ProjectId = "<project_id>",
    }));
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetRegistryResult> InvokeAsync(GetRegistryArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetRegistryArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetRegistryResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.