import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * The zia_cloud_application_instance resource manages cloud application instances in the Zscaler Internet Access (ZIA) cloud service. Cloud application instances allow you to define specific tenants or instances of cloud applications for granular policy control. * * ## Example Usage * ### Cloud Application Instance * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.CloudApplicationInstance("example", { * name: "Example Instance", * instanceType: "SALESFORCE", * instanceIdentifiers: [{ * instanceIdentifier: "example.my.salesforce.com", * identifierType: "URL", * }], * }); * ``` * * ## Import * * An existing Cloud Application Instance can be imported using its resource ID, e.g. * * ```sh * $ pulumi import zia:index:CloudApplicationInstance example 12345 * ``` */ export declare class CloudApplicationInstance extends pulumi.CustomResource { /** * Get an existing CloudApplicationInstance 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): CloudApplicationInstance; /** * Returns true if the given object is an instance of CloudApplicationInstance. 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 CloudApplicationInstance; /** * The system-generated ID of the cloud application instance. */ readonly instanceId: pulumi.Output; /** * List of instance identifiers for the cloud application. */ readonly instanceIdentifiers: pulumi.Output; /** * The type of cloud application (e.g. `SALESFORCE`, `SLACK`, `OFFICE365`). */ readonly instanceType: pulumi.Output; /** * The name of the cloud application instance. */ readonly name: pulumi.Output; /** * Create a CloudApplicationInstance 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?: CloudApplicationInstanceArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CloudApplicationInstance resource. */ export interface CloudApplicationInstanceArgs { /** * List of instance identifiers for the cloud application. */ instanceIdentifiers?: pulumi.Input[] | undefined>; /** * The type of cloud application (e.g. `SALESFORCE`, `SLACK`, `OFFICE365`). */ instanceType?: pulumi.Input; /** * The name of the cloud application instance. */ name?: pulumi.Input; } //# sourceMappingURL=cloudApplicationInstance.d.ts.map