import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ## Import * * ```sh * $ pulumi import cloudflare:index/devicePostureIntegration:DevicePostureIntegration example '/' * ``` * * @deprecated cloudflare.index/devicepostureintegration.DevicePostureIntegration has been deprecated in favor of cloudflare.index/zerotrustdevicepostureintegration.ZeroTrustDevicePostureIntegration */ export declare class DevicePostureIntegration extends pulumi.CustomResource { /** * Get an existing DevicePostureIntegration 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?: DevicePostureIntegrationState, opts?: pulumi.CustomResourceOptions): DevicePostureIntegration; /** * Returns true if the given object is an instance of DevicePostureIntegration. 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 DevicePostureIntegration; readonly accountId: pulumi.Output; /** * The configuration object containing third-party integration information. */ readonly config: pulumi.Output; /** * The interval between each posture check with the third-party API. Use `m` for minutes (e.g. `5m`) and `h` for hours (e.g. `12h`). */ readonly interval: pulumi.Output; /** * The name of the device posture integration. */ readonly name: pulumi.Output; /** * The type of device posture integration. * Available values: "workspace*one", "crowdstrike*s2s", "uptycs", "intune", "kolide", "tanium*s2s", "sentinelone*s2s", "customS2s". */ readonly type: pulumi.Output; /** * Create a DevicePostureIntegration 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. */ /** @deprecated cloudflare.index/devicepostureintegration.DevicePostureIntegration has been deprecated in favor of cloudflare.index/zerotrustdevicepostureintegration.ZeroTrustDevicePostureIntegration */ constructor(name: string, args: DevicePostureIntegrationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DevicePostureIntegration resources. */ export interface DevicePostureIntegrationState { accountId?: pulumi.Input; /** * The configuration object containing third-party integration information. */ config?: pulumi.Input; /** * The interval between each posture check with the third-party API. Use `m` for minutes (e.g. `5m`) and `h` for hours (e.g. `12h`). */ interval?: pulumi.Input; /** * The name of the device posture integration. */ name?: pulumi.Input; /** * The type of device posture integration. * Available values: "workspace*one", "crowdstrike*s2s", "uptycs", "intune", "kolide", "tanium*s2s", "sentinelone*s2s", "customS2s". */ type?: pulumi.Input; } /** * The set of arguments for constructing a DevicePostureIntegration resource. */ export interface DevicePostureIntegrationArgs { accountId: pulumi.Input; /** * The configuration object containing third-party integration information. */ config: pulumi.Input; /** * The interval between each posture check with the third-party API. Use `m` for minutes (e.g. `5m`) and `h` for hours (e.g. `12h`). */ interval: pulumi.Input; /** * The name of the device posture integration. */ name: pulumi.Input; /** * The type of device posture integration. * Available values: "workspace*one", "crowdstrike*s2s", "uptycs", "intune", "kolide", "tanium*s2s", "sentinelone*s2s", "customS2s". */ type: pulumi.Input; }