import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource allows management of sensor update policies in the CrowdStrike Falcon platform. Sensor update policies allow you to control the update process across a set of hosts. * * ## API Scopes * * The following API scopes are required: * * - Sensor update policies | Read & Write * * ## Import * * sensor update policies can be imported by specifying the policy id. * * ```sh * $ pulumi import crowdstrike:index/sensorUpdatePolicy:SensorUpdatePolicy example 7fb858a949034a0cbca175f660f1e769 * ``` */ export declare class SensorUpdatePolicy extends pulumi.CustomResource { /** * Get an existing SensorUpdatePolicy 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?: SensorUpdatePolicyState, opts?: pulumi.CustomResourceOptions): SensorUpdatePolicy; /** * Returns true if the given object is an instance of SensorUpdatePolicy. 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 SensorUpdatePolicy; /** * Sensor build to use for the sensor update policy. */ readonly build: pulumi.Output; /** * Sensor arm64 build to use for the sensor update policy (Linux only). Required if platformName is Linux. */ readonly buildArm64: pulumi.Output; /** * Description of the sensor update policy. */ readonly description: pulumi.Output; /** * Enable the sensor update policy. */ readonly enabled: pulumi.Output; /** * Host Group ids to attach to the sensor update policy. */ readonly hostGroups: pulumi.Output; readonly lastUpdated: pulumi.Output; /** * Name of the sensor update policy. */ readonly name: pulumi.Output; /** * Platform for the sensor update policy to manage. (Windows, Mac, Linux) */ readonly platformName: pulumi.Output; /** * Prohibit sensor updates during a set of time blocks. */ readonly schedule: pulumi.Output; /** * Enable uninstall protection. Windows and Mac only. */ readonly uninstallProtection: pulumi.Output; /** * Create a SensorUpdatePolicy 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: SensorUpdatePolicyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SensorUpdatePolicy resources. */ export interface SensorUpdatePolicyState { /** * Sensor build to use for the sensor update policy. */ build?: pulumi.Input; /** * Sensor arm64 build to use for the sensor update policy (Linux only). Required if platformName is Linux. */ buildArm64?: pulumi.Input; /** * Description of the sensor update policy. */ description?: pulumi.Input; /** * Enable the sensor update policy. */ enabled?: pulumi.Input; /** * Host Group ids to attach to the sensor update policy. */ hostGroups?: pulumi.Input[]>; lastUpdated?: pulumi.Input; /** * Name of the sensor update policy. */ name?: pulumi.Input; /** * Platform for the sensor update policy to manage. (Windows, Mac, Linux) */ platformName?: pulumi.Input; /** * Prohibit sensor updates during a set of time blocks. */ schedule?: pulumi.Input; /** * Enable uninstall protection. Windows and Mac only. */ uninstallProtection?: pulumi.Input; } /** * The set of arguments for constructing a SensorUpdatePolicy resource. */ export interface SensorUpdatePolicyArgs { /** * Sensor build to use for the sensor update policy. */ build: pulumi.Input; /** * Sensor arm64 build to use for the sensor update policy (Linux only). Required if platformName is Linux. */ buildArm64?: pulumi.Input; /** * Description of the sensor update policy. */ description?: pulumi.Input; /** * Enable the sensor update policy. */ enabled?: pulumi.Input; /** * Host Group ids to attach to the sensor update policy. */ hostGroups?: pulumi.Input[]>; /** * Name of the sensor update policy. */ name?: pulumi.Input; /** * Platform for the sensor update policy to manage. (Windows, Mac, Linux) */ platformName: pulumi.Input; /** * Prohibit sensor updates during a set of time blocks. */ schedule: pulumi.Input; /** * Enable uninstall protection. Windows and Mac only. */ uninstallProtection?: pulumi.Input; }