import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a resource to create profiles (Software, Network, Database Parameter, Compute) based on the input parameters. */ export declare class NdbProfile extends pulumi.CustomResource { /** * Get an existing NdbProfile 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?: NdbProfileState, opts?: pulumi.CustomResourceOptions): NdbProfile; /** * Returns true if the given object is an instance of NdbProfile. 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 NdbProfile; /** * associated databases of profiles */ readonly assocDatabases: pulumi.Output; /** * associated database servers for associated profiles */ readonly assocDbServers: pulumi.Output; /** * cluster availability of profile */ readonly clusterAvailabilities: pulumi.Output; /** * Compute Profile */ readonly computeProfiles: pulumi.Output; /** * Database Parameter Profile */ readonly databaseParameterProfiles: pulumi.Output; /** * Description of profile */ readonly description: pulumi.Output; /** * Engine Type of database */ readonly engineType: pulumi.Output; /** * latest version of profile */ readonly latestVersion: pulumi.Output; /** * latest version id of profile */ readonly latestVersionId: pulumi.Output; /** * Name of profile */ readonly name: pulumi.Output; /** * Network Profile */ readonly networkProfiles: pulumi.Output; /** * cluster on which profile created */ readonly nxClusterId: pulumi.Output; /** * owner of profile */ readonly owner: pulumi.Output; /** * Publish for all users */ readonly published: pulumi.Output; /** * Software Profile */ readonly softwareProfile: pulumi.Output; /** * status of profile */ readonly status: pulumi.Output; /** * versions of associated profiles */ readonly versions: pulumi.Output; /** * Create a NdbProfile 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?: NdbProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NdbProfile resources. */ export interface NdbProfileState { /** * associated databases of profiles */ assocDatabases?: pulumi.Input[] | undefined>; /** * associated database servers for associated profiles */ assocDbServers?: pulumi.Input[] | undefined>; /** * cluster availability of profile */ clusterAvailabilities?: pulumi.Input[] | undefined>; /** * Compute Profile */ computeProfiles?: pulumi.Input[] | undefined>; /** * Database Parameter Profile */ databaseParameterProfiles?: pulumi.Input[] | undefined>; /** * Description of profile */ description?: pulumi.Input; /** * Engine Type of database */ engineType?: pulumi.Input; /** * latest version of profile */ latestVersion?: pulumi.Input; /** * latest version id of profile */ latestVersionId?: pulumi.Input; /** * Name of profile */ name?: pulumi.Input; /** * Network Profile */ networkProfiles?: pulumi.Input[] | undefined>; /** * cluster on which profile created */ nxClusterId?: pulumi.Input; /** * owner of profile */ owner?: pulumi.Input; /** * Publish for all users */ published?: pulumi.Input; /** * Software Profile */ softwareProfile?: pulumi.Input; /** * status of profile */ status?: pulumi.Input; /** * versions of associated profiles */ versions?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a NdbProfile resource. */ export interface NdbProfileArgs { /** * Compute Profile */ computeProfiles?: pulumi.Input[] | undefined>; /** * Database Parameter Profile */ databaseParameterProfiles?: pulumi.Input[] | undefined>; /** * Description of profile */ description?: pulumi.Input; /** * Engine Type of database */ engineType?: pulumi.Input; /** * Name of profile */ name?: pulumi.Input; /** * Network Profile */ networkProfiles?: pulumi.Input[] | undefined>; /** * Publish for all users */ published?: pulumi.Input; /** * Software Profile */ softwareProfile?: pulumi.Input; } //# sourceMappingURL=ndbProfile.d.ts.map