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, 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; /** * The release name for this catalog release. */ readonly name: pulumi.Output; /** * List of Control Plane resources created by this release. Populated from the helm release secret. */ readonly resources: pulumi.Output; /** * The name of the catalog template to deploy (e.g., 'postgres', 'nginx', 'redis'). */ readonly template: pulumi.Output; /** * The values file content (YAML format) for customizing the template deployment. */ readonly values: pulumi.Output; /** * The version of the catalog template to deploy. */ readonly version: pulumi.Output; /** * 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; /** * The release name for this catalog release. */ name?: pulumi.Input; /** * List of Control Plane resources created by this release. Populated from the helm release secret. */ resources?: pulumi.Input[]>; /** * The name of the catalog template to deploy (e.g., 'postgres', 'nginx', 'redis'). */ template?: pulumi.Input; /** * The values file content (YAML format) for customizing the template deployment. */ values?: pulumi.Input; /** * The version of the catalog template to deploy. */ version?: pulumi.Input; } /** * 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; /** * The release name for this catalog release. */ name?: pulumi.Input; /** * The name of the catalog template to deploy (e.g., 'postgres', 'nginx', 'redis'). */ template: pulumi.Input; /** * The values file content (YAML format) for customizing the template deployment. */ values: pulumi.Input; /** * The version of the catalog template to deploy. */ version: pulumi.Input; }