import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a cloud browser isolation profile by name. */ export declare function getCloudBrowserIsolationProfile(args?: GetCloudBrowserIsolationProfileArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetCloudBrowserIsolationProfileArgs { /** * The name of the cloud browser isolation profile to look up. */ name?: string; } export interface GetCloudBrowserIsolationProfileResult { /** * Whether this is the default profile. */ readonly defaultProfile: boolean; /** * The name of the cloud browser isolation profile. */ readonly name: string; /** * The ID of the cloud browser isolation profile. */ readonly resourceId: string; /** * The URL of the cloud browser isolation profile. */ readonly url: string; } /** * Use this data source to look up a cloud browser isolation profile by name. */ export declare function getCloudBrowserIsolationProfileOutput(args?: GetCloudBrowserIsolationProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetCloudBrowserIsolationProfileOutputArgs { /** * The name of the cloud browser isolation profile to look up. */ name?: pulumi.Input; } //# sourceMappingURL=getCloudBrowserIsolationProfile.d.ts.map