UNPKG

@pulumiverse/gandi

Version:

A Pulumi package for creating and managing gandi cloud resources.

97 lines (96 loc) 3.32 kB
import * as pulumi from "@pulumi/pulumi"; export declare class Instance extends pulumi.CustomResource { /** * Get an existing Instance 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?: InstanceState, opts?: pulumi.CustomResourceOptions): Instance; /** * Returns true if the given object is an instance of Instance. 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 Instance; /** * The name of the database type ('mysql' or 'pgsql') */ readonly databaseName: pulumi.Output<string>; /** * The name of the language ('php', 'python', 'nodejs' or 'ruby') */ readonly languageName: pulumi.Output<string>; /** * The datacenter location of the instance ('FR' or 'LU') */ readonly location: pulumi.Output<string>; /** * The name of the SimpleHosting instance */ readonly name: pulumi.Output<string>; /** * The size of the SimpleHosting instance ('s+', 'm', 'l' or 'xxl') */ readonly size: pulumi.Output<string>; /** * Create a Instance 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: InstanceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Instance resources. */ export interface InstanceState { /** * The name of the database type ('mysql' or 'pgsql') */ databaseName?: pulumi.Input<string>; /** * The name of the language ('php', 'python', 'nodejs' or 'ruby') */ languageName?: pulumi.Input<string>; /** * The datacenter location of the instance ('FR' or 'LU') */ location?: pulumi.Input<string>; /** * The name of the SimpleHosting instance */ name?: pulumi.Input<string>; /** * The size of the SimpleHosting instance ('s+', 'm', 'l' or 'xxl') */ size?: pulumi.Input<string>; } /** * The set of arguments for constructing a Instance resource. */ export interface InstanceArgs { /** * The name of the database type ('mysql' or 'pgsql') */ databaseName: pulumi.Input<string>; /** * The name of the language ('php', 'python', 'nodejs' or 'ruby') */ languageName: pulumi.Input<string>; /** * The datacenter location of the instance ('FR' or 'LU') */ location: pulumi.Input<string>; /** * The name of the SimpleHosting instance */ name?: pulumi.Input<string>; /** * The size of the SimpleHosting instance ('s+', 'm', 'l' or 'xxl') */ size: pulumi.Input<string>; }