import * as pulumi from "@pulumi/pulumi"; /** * This resource installs the specified software update to the nodes of the Oracle Cloud Infrastructure Big Data Service cluster. * * Install Software Update of the specified SoftwareUpdateId to this BDS cluster's nodes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBdsInstanceSoftwareUpdateAction = new oci.bigdataservice.BdsInstanceSoftwareUpdateAction("test_bds_instance_software_update_action", { * bdsInstanceId: testBdsInstance.id, * softwareUpdateKey: bdsInstanceSoftwareUpdateActionSoftwareUpdateKey, * }); * ``` */ export declare class BdsInstanceSoftwareUpdateAction extends pulumi.CustomResource { /** * Get an existing BdsInstanceSoftwareUpdateAction 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?: BdsInstanceSoftwareUpdateActionState, opts?: pulumi.CustomResourceOptions): BdsInstanceSoftwareUpdateAction; /** * Returns true if the given object is an instance of BdsInstanceSoftwareUpdateAction. 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 BdsInstanceSoftwareUpdateAction; /** * The OCID of the cluster. */ readonly bdsInstanceId: pulumi.Output; readonly softwareUpdateKeys: pulumi.Output; /** * Create a BdsInstanceSoftwareUpdateAction 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: BdsInstanceSoftwareUpdateActionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering BdsInstanceSoftwareUpdateAction resources. */ export interface BdsInstanceSoftwareUpdateActionState { /** * The OCID of the cluster. */ bdsInstanceId?: pulumi.Input; softwareUpdateKeys?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a BdsInstanceSoftwareUpdateAction resource. */ export interface BdsInstanceSoftwareUpdateActionArgs { /** * The OCID of the cluster. */ bdsInstanceId: pulumi.Input; softwareUpdateKeys: pulumi.Input[]>; } //# sourceMappingURL=bdsInstanceSoftwareUpdateAction.d.ts.map