@pulumi/vsphere
Version:
A Pulumi package for creating vsphere resources
142 lines (141 loc) • 5.38 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* ## Import
*
* An existing rule can be imported into this resource by supplying
*
* both the path to the cluster, and the name the rule. If the name or cluster is
*
* not found, or if the rule is of a different type, an error will be returned. An
*
* example is below:
*
* [docs-import]: https://developer.hashicorp.com/terraform/cli/import
*
* ```sh
* $ pulumi import vsphere:index/computeClusterVmAntiAffinityRule:ComputeClusterVmAntiAffinityRule vm_anti_affinity_rule \
* ```
*
* '{"compute_cluster_path": "/dc-01/host/cluster-01", \
*
* "name": "vm-anti-affinity-rule"}'
*/
export declare class ComputeClusterVmAntiAffinityRule extends pulumi.CustomResource {
/**
* Get an existing ComputeClusterVmAntiAffinityRule 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?: ComputeClusterVmAntiAffinityRuleState, opts?: pulumi.CustomResourceOptions): ComputeClusterVmAntiAffinityRule;
/**
* Returns true if the given object is an instance of ComputeClusterVmAntiAffinityRule. 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 ComputeClusterVmAntiAffinityRule;
/**
* The managed object reference
* ID of the cluster to put the group in. Forces a new
* resource if changed.
*/
readonly computeClusterId: pulumi.Output<string>;
/**
* Enable this rule in the cluster. Default: `true`.
*/
readonly enabled: pulumi.Output<boolean | undefined>;
/**
* When this value is `true`, prevents any virtual
* machine operations that may violate this rule. Default: `false`.
*
* > **NOTE:** The namespace for rule names on this resource (defined by the
* `name` argument) is shared with all rules in the cluster - consider
* this when naming your rules.
*/
readonly mandatory: pulumi.Output<boolean | undefined>;
/**
* The name of the rule. This must be unique in the cluster.
*/
readonly name: pulumi.Output<string>;
/**
* The UUIDs of the virtual machines to run
* on hosts different from each other.
*/
readonly virtualMachineIds: pulumi.Output<string[]>;
/**
* Create a ComputeClusterVmAntiAffinityRule 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: ComputeClusterVmAntiAffinityRuleArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ComputeClusterVmAntiAffinityRule resources.
*/
export interface ComputeClusterVmAntiAffinityRuleState {
/**
* The managed object reference
* ID of the cluster to put the group in. Forces a new
* resource if changed.
*/
computeClusterId?: pulumi.Input<string>;
/**
* Enable this rule in the cluster. Default: `true`.
*/
enabled?: pulumi.Input<boolean>;
/**
* When this value is `true`, prevents any virtual
* machine operations that may violate this rule. Default: `false`.
*
* > **NOTE:** The namespace for rule names on this resource (defined by the
* `name` argument) is shared with all rules in the cluster - consider
* this when naming your rules.
*/
mandatory?: pulumi.Input<boolean>;
/**
* The name of the rule. This must be unique in the cluster.
*/
name?: pulumi.Input<string>;
/**
* The UUIDs of the virtual machines to run
* on hosts different from each other.
*/
virtualMachineIds?: pulumi.Input<pulumi.Input<string>[]>;
}
/**
* The set of arguments for constructing a ComputeClusterVmAntiAffinityRule resource.
*/
export interface ComputeClusterVmAntiAffinityRuleArgs {
/**
* The managed object reference
* ID of the cluster to put the group in. Forces a new
* resource if changed.
*/
computeClusterId: pulumi.Input<string>;
/**
* Enable this rule in the cluster. Default: `true`.
*/
enabled?: pulumi.Input<boolean>;
/**
* When this value is `true`, prevents any virtual
* machine operations that may violate this rule. Default: `false`.
*
* > **NOTE:** The namespace for rule names on this resource (defined by the
* `name` argument) is shared with all rules in the cluster - consider
* this when naming your rules.
*/
mandatory?: pulumi.Input<boolean>;
/**
* The name of the rule. This must be unique in the cluster.
*/
name?: pulumi.Input<string>;
/**
* The UUIDs of the virtual machines to run
* on hosts different from each other.
*/
virtualMachineIds: pulumi.Input<pulumi.Input<string>[]>;
}