import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a resource to create software profile versions based on the input parameters. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const name = new nutanix.NdbSoftwareVersionProfile("name", { * engineType: "postgres_database", * profileId: nutanixNdbProfile.name12.id, * name: "test-tf", * description: "made by tf", * postgresDatabases: [{ * sourceDbserverId: "{{ DB_Server_ID }}", * }], * availableClusterIds: ["{{ cluster_ids }}"], * status: "published", * }); * ``` * */ export declare class NdbSoftwareVersionProfile extends pulumi.CustomResource { /** * Get an existing NdbSoftwareVersionProfile 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?: NdbSoftwareVersionProfileState, opts?: pulumi.CustomResourceOptions): NdbSoftwareVersionProfile; /** * Returns true if the given object is an instance of NdbSoftwareVersionProfile. 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 NdbSoftwareVersionProfile; /** * available cluster ids */ readonly availableClusterIds: pulumi.Output; /** * Db version of software profile */ readonly dbVersion: pulumi.Output; /** * deprecated or not */ readonly deprecated: pulumi.Output; /** * description of profile */ readonly description: pulumi.Output; /** * engine type of profile */ readonly engineType: pulumi.Output; /** * Name of profile */ readonly name: pulumi.Output; /** * owner of profile */ readonly owner: pulumi.Output; /** * postgres database info */ readonly postgresDatabases: pulumi.Output; /** * profile id */ readonly profileId: pulumi.Output; /** * properties of software profile */ readonly properties: pulumi.Output; /** * properties map of profile */ readonly propertiesMap: pulumi.Output<{ [key: string]: string; }>; /** * Published or not */ readonly published: pulumi.Output; /** * status of profile. Allowed Values are "deprecated", "published", "unpublished" */ readonly status: pulumi.Output; /** * system profile or not. */ readonly systemProfile: pulumi.Output; /** * topology of software profile */ readonly topology: pulumi.Output; /** * Version of software profile */ readonly version: pulumi.Output; /** * version cluster association */ readonly versionClusterAssociations: pulumi.Output; /** * Create a NdbSoftwareVersionProfile 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: NdbSoftwareVersionProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NdbSoftwareVersionProfile resources. */ export interface NdbSoftwareVersionProfileState { /** * available cluster ids */ availableClusterIds?: pulumi.Input[] | undefined>; /** * Db version of software profile */ dbVersion?: pulumi.Input; /** * deprecated or not */ deprecated?: pulumi.Input; /** * description of profile */ description?: pulumi.Input; /** * engine type of profile */ engineType?: pulumi.Input; /** * Name of profile */ name?: pulumi.Input; /** * owner of profile */ owner?: pulumi.Input; /** * postgres database info */ postgresDatabases?: pulumi.Input[] | undefined>; /** * profile id */ profileId?: pulumi.Input; /** * properties of software profile */ properties?: pulumi.Input[] | undefined>; /** * properties map of profile */ propertiesMap?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Published or not */ published?: pulumi.Input; /** * status of profile. Allowed Values are "deprecated", "published", "unpublished" */ status?: pulumi.Input; /** * system profile or not. */ systemProfile?: pulumi.Input; /** * topology of software profile */ topology?: pulumi.Input; /** * Version of software profile */ version?: pulumi.Input; /** * version cluster association */ versionClusterAssociations?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a NdbSoftwareVersionProfile resource. */ export interface NdbSoftwareVersionProfileArgs { /** * available cluster ids */ availableClusterIds?: pulumi.Input[] | undefined>; /** * description of profile */ description?: pulumi.Input; /** * engine type of profile */ engineType: pulumi.Input; /** * Name of profile */ name?: pulumi.Input; /** * postgres database info */ postgresDatabases?: pulumi.Input[] | undefined>; /** * profile id */ profileId: pulumi.Input; /** * status of profile. Allowed Values are "deprecated", "published", "unpublished" */ status?: pulumi.Input; } //# sourceMappingURL=ndbSoftwareVersionProfile.d.ts.map