UNPKG

@pulumiverse/cpln

Version:

A Pulumi package for creating and managing Control Plane (cpln) resources.

107 lines (106 loc) 4.16 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CatalogTemplate extends pulumi.CustomResource { /** * Get an existing CatalogTemplate resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: CatalogTemplateState, opts?: pulumi.CustomResourceOptions): CatalogTemplate; /** * Returns true if the given object is an instance of CatalogTemplate. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CatalogTemplate; /** * The GVC where the template will be deployed. Leave empty if the template creates its own GVC (check template's createsGvc field). */ readonly gvc: pulumi.Output<string>; /** * The release name for this catalog release. */ readonly name: pulumi.Output<string>; /** * List of Control Plane resources created by this release. Populated from the helm release secret. */ readonly resources: pulumi.Output<outputs.CatalogTemplateResource[]>; /** * The name of the catalog template to deploy (e.g., 'postgres', 'nginx', 'redis'). */ readonly template: pulumi.Output<string>; /** * The values file content (YAML format) for customizing the template deployment. */ readonly values: pulumi.Output<string>; /** * The version of the catalog template to deploy. */ readonly version: pulumi.Output<string>; /** * Create a CatalogTemplate resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CatalogTemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CatalogTemplate resources. */ export interface CatalogTemplateState { /** * The GVC where the template will be deployed. Leave empty if the template creates its own GVC (check template's createsGvc field). */ gvc?: pulumi.Input<string>; /** * The release name for this catalog release. */ name?: pulumi.Input<string>; /** * List of Control Plane resources created by this release. Populated from the helm release secret. */ resources?: pulumi.Input<pulumi.Input<inputs.CatalogTemplateResource>[]>; /** * The name of the catalog template to deploy (e.g., 'postgres', 'nginx', 'redis'). */ template?: pulumi.Input<string>; /** * The values file content (YAML format) for customizing the template deployment. */ values?: pulumi.Input<string>; /** * The version of the catalog template to deploy. */ version?: pulumi.Input<string>; } /** * The set of arguments for constructing a CatalogTemplate resource. */ export interface CatalogTemplateArgs { /** * The GVC where the template will be deployed. Leave empty if the template creates its own GVC (check template's createsGvc field). */ gvc?: pulumi.Input<string>; /** * The release name for this catalog release. */ name?: pulumi.Input<string>; /** * The name of the catalog template to deploy (e.g., 'postgres', 'nginx', 'redis'). */ template: pulumi.Input<string>; /** * The values file content (YAML format) for customizing the template deployment. */ values: pulumi.Input<string>; /** * The version of the catalog template to deploy. */ version: pulumi.Input<string>; }