import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Cluster extends pulumi.CustomResource { /** * Get an existing Cluster 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?: ClusterState, opts?: pulumi.CustomResourceOptions): Cluster; /** * Returns true if the given object is an instance of Cluster. 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 Cluster; /** * The specific availability zones of the cluster. */ readonly availabilityZones: pulumi.Output; readonly clusterId: pulumi.Output; /** * Comment on an object in the database. */ readonly comment: pulumi.Output; /** * **Deprecated**. This attribute is maintained for backward compatibility with existing configurations. New users should use 'cc' sizes for disk access. * * @deprecated Deprecated */ readonly disk: pulumi.Output; /** * Use the cluster name as the resource identifier in your state file, rather than the internal cluster ID. This is particularly useful in scenarios like dbt-materialize blue/green deployments, where clusters are swapped but the ID changes. By identifying by name, the resource can be managed consistently even when the underlying cluster ID is updated. */ readonly identifyByName: pulumi.Output; /** * Whether to introspect the gathering of the introspection data. */ readonly introspectionDebugging: pulumi.Output; /** * The interval at which to collect introspection data. */ readonly introspectionInterval: pulumi.Output; /** * The identifier for the cluster. */ readonly name: pulumi.Output; /** * The owernship role of the object. */ readonly ownershipRole: pulumi.Output; /** * The region to use for the resource connection. If not set, the default region is used. */ readonly region: pulumi.Output; /** * The number of replicas of each dataflow-powered object to maintain. */ readonly replicationFactor: pulumi.Output; /** * Defines the scheduling parameters for the cluster. */ readonly scheduling: pulumi.Output; /** * The size of the managed cluster. */ readonly size: pulumi.Output; /** * Defines the parameters for the WAIT UNTIL READY options */ readonly waitUntilReady: pulumi.Output; /** * Create a Cluster 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?: ClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Cluster resources. */ export interface ClusterState { /** * The specific availability zones of the cluster. */ availabilityZones?: pulumi.Input[]>; clusterId?: pulumi.Input; /** * Comment on an object in the database. */ comment?: pulumi.Input; /** * **Deprecated**. This attribute is maintained for backward compatibility with existing configurations. New users should use 'cc' sizes for disk access. * * @deprecated Deprecated */ disk?: pulumi.Input; /** * Use the cluster name as the resource identifier in your state file, rather than the internal cluster ID. This is particularly useful in scenarios like dbt-materialize blue/green deployments, where clusters are swapped but the ID changes. By identifying by name, the resource can be managed consistently even when the underlying cluster ID is updated. */ identifyByName?: pulumi.Input; /** * Whether to introspect the gathering of the introspection data. */ introspectionDebugging?: pulumi.Input; /** * The interval at which to collect introspection data. */ introspectionInterval?: pulumi.Input; /** * The identifier for the cluster. */ name?: pulumi.Input; /** * The owernship role of the object. */ ownershipRole?: pulumi.Input; /** * The region to use for the resource connection. If not set, the default region is used. */ region?: pulumi.Input; /** * The number of replicas of each dataflow-powered object to maintain. */ replicationFactor?: pulumi.Input; /** * Defines the scheduling parameters for the cluster. */ scheduling?: pulumi.Input; /** * The size of the managed cluster. */ size?: pulumi.Input; /** * Defines the parameters for the WAIT UNTIL READY options */ waitUntilReady?: pulumi.Input; } /** * The set of arguments for constructing a Cluster resource. */ export interface ClusterArgs { /** * The specific availability zones of the cluster. */ availabilityZones?: pulumi.Input[]>; clusterId?: pulumi.Input; /** * Comment on an object in the database. */ comment?: pulumi.Input; /** * **Deprecated**. This attribute is maintained for backward compatibility with existing configurations. New users should use 'cc' sizes for disk access. * * @deprecated Deprecated */ disk?: pulumi.Input; /** * Use the cluster name as the resource identifier in your state file, rather than the internal cluster ID. This is particularly useful in scenarios like dbt-materialize blue/green deployments, where clusters are swapped but the ID changes. By identifying by name, the resource can be managed consistently even when the underlying cluster ID is updated. */ identifyByName?: pulumi.Input; /** * Whether to introspect the gathering of the introspection data. */ introspectionDebugging?: pulumi.Input; /** * The interval at which to collect introspection data. */ introspectionInterval?: pulumi.Input; /** * The identifier for the cluster. */ name?: pulumi.Input; /** * The owernship role of the object. */ ownershipRole?: pulumi.Input; /** * The region to use for the resource connection. If not set, the default region is used. */ region?: pulumi.Input; /** * The number of replicas of each dataflow-powered object to maintain. */ replicationFactor?: pulumi.Input; /** * Defines the scheduling parameters for the cluster. */ scheduling?: pulumi.Input; /** * The size of the managed cluster. */ size?: pulumi.Input; /** * Defines the parameters for the WAIT UNTIL READY options */ waitUntilReady?: pulumi.Input; }