@bdzscaler/pulumi-zpa
Version:
A Pulumi package for creating and managing Zscaler Private Access (ZPA) cloud resources.
84 lines (83 loc) • 3.79 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* * [Official documentation](https://help.zscaler.com/isolation/adding-banner-theme-isolation-end-user-notification-zpa)
*
* The **zpa_cloud_browser_isolation_banner** resource creates a Cloud Browser Isolation banner. This resource is required as part of the attribute `bannerId` when creating an Cloud Browser Isolation External Profile ``zpa.CloudBrowserIsolationExternalProfile``
*
* ## Import
*
* Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZPA configurations into Terraform-compliant HashiCorp Configuration Language.
*
* Visit
*
* Application Segment can be imported by using `<BANNER ID>` or `<BANNER NAME>` as the import ID.
*
* ```sh
* $ pulumi import zpa:index/cloudBrowserIsolationBanner:CloudBrowserIsolationBanner example <banner_id>
* ```
*
* or
*
* ```sh
* $ pulumi import zpa:index/cloudBrowserIsolationBanner:CloudBrowserIsolationBanner example <banner_name>
* ```
*/
export declare class CloudBrowserIsolationBanner extends pulumi.CustomResource {
/**
* Get an existing CloudBrowserIsolationBanner 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?: CloudBrowserIsolationBannerState, opts?: pulumi.CustomResourceOptions): CloudBrowserIsolationBanner;
/**
* Returns true if the given object is an instance of CloudBrowserIsolationBanner. 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 CloudBrowserIsolationBanner;
readonly banner: pulumi.Output<boolean>;
readonly logo: pulumi.Output<string>;
readonly name: pulumi.Output<string>;
readonly notificationText: pulumi.Output<string | undefined>;
readonly notificationTitle: pulumi.Output<string | undefined>;
readonly persist: pulumi.Output<boolean>;
readonly primaryColor: pulumi.Output<string | undefined>;
readonly textColor: pulumi.Output<string | undefined>;
/**
* Create a CloudBrowserIsolationBanner 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?: CloudBrowserIsolationBannerArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering CloudBrowserIsolationBanner resources.
*/
export interface CloudBrowserIsolationBannerState {
banner?: pulumi.Input<boolean>;
logo?: pulumi.Input<string>;
name?: pulumi.Input<string>;
notificationText?: pulumi.Input<string>;
notificationTitle?: pulumi.Input<string>;
persist?: pulumi.Input<boolean>;
primaryColor?: pulumi.Input<string>;
textColor?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a CloudBrowserIsolationBanner resource.
*/
export interface CloudBrowserIsolationBannerArgs {
banner?: pulumi.Input<boolean>;
logo?: pulumi.Input<string>;
name?: pulumi.Input<string>;
notificationText?: pulumi.Input<string>;
notificationTitle?: pulumi.Input<string>;
persist?: pulumi.Input<boolean>;
primaryColor?: pulumi.Input<string>;
textColor?: pulumi.Input<string>;
}