import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a registry namespace. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myNamespace = scaleway.getRegistryNamespace({ * namespaceId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getRegistryNamespace(args?: GetRegistryNamespaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRegistryNamespace. */ export interface GetRegistryNamespaceArgs { /** * 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 getRegistryNamespace. */ export interface GetRegistryNamespaceResult { 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. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myNamespace = scaleway.getRegistryNamespace({ * namespaceId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getRegistryNamespaceOutput(args?: GetRegistryNamespaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRegistryNamespace. */ export interface GetRegistryNamespaceOutputArgs { /** * The namespace name. */ name?: pulumi.Input; /** * The namespace id. * * > **Note** You must specify at least one: `name` and/or `imageId`. */ namespaceId?: pulumi.Input; /** * `projectId`) The ID of the project the namespace is associated with. */ projectId?: pulumi.Input; /** * `region`) The region in which the namespace exists. */ region?: pulumi.Input; }