UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

82 lines (81 loc) 2.23 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a registry namespace. */ export declare function getNamespace(args?: GetNamespaceArgs, opts?: pulumi.InvokeOptions): Promise<GetNamespaceResult>; /** * A collection of arguments for invoking getNamespace. */ export interface GetNamespaceArgs { /** * The namespace name. */ name?: string; /** * The namespace id. * * > **Note** You must specify at least one: `name` and/or `imageId`. */ namespaceId?: string; /** * `projectId`) The ID of the project the namespace is associated with. */ projectId?: string; /** * `region`) The region in which the namespace exists. */ region?: string; } /** * A collection of values returned by getNamespace. */ export interface GetNamespaceResult { readonly description: string; /** * The endpoint of the Registry Namespace. */ readonly endpoint: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Namespace Privacy Policy: whether or not the images are public. */ readonly isPublic: boolean; readonly name?: string; readonly namespaceId?: string; /** * The organization ID the namespace is associated with. */ readonly organizationId: string; readonly projectId?: string; readonly region?: string; } /** * Gets information about a registry namespace. */ export declare function getNamespaceOutput(args?: GetNamespaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNamespaceResult>; /** * A collection of arguments for invoking getNamespace. */ export interface GetNamespaceOutputArgs { /** * The namespace name. */ name?: pulumi.Input<string>; /** * The namespace id. * * > **Note** You must specify at least one: `name` and/or `imageId`. */ namespaceId?: pulumi.Input<string>; /** * `projectId`) The ID of the project the namespace is associated with. */ projectId?: pulumi.Input<string>; /** * `region`) The region in which the namespace exists. */ region?: pulumi.Input<string>; }