zpa.getCloudBrowserIsolationZPAProfile
Explore with Pulumi AI
Use the zpa_cloud_browser_isolation_zpa_profile data source to get information about an isolation profile in the Zscaler Private Access cloud. This data source is required when configuring an isolation policy rule resource
NOTE: To ensure consistent search results across data sources, please avoid using multiple spaces or special characters in your search queries.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as zpa from "@bdzscaler/pulumi-zpa";
const _this = zpa.getCloudBrowserIsolationZPAProfile({
name: "ZPA_Profile",
});
import pulumi
import pulumi_zpa as zpa
this = zpa.get_cloud_browser_isolation_zpa_profile(name="ZPA_Profile")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/zscaler/pulumi-zpa/sdk/go/zpa"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := zpa.GetCloudBrowserIsolationZPAProfile(ctx, &zpa.GetCloudBrowserIsolationZPAProfileArgs{
Name: pulumi.StringRef("ZPA_Profile"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Zpa = Pulumi.Zpa;
return await Deployment.RunAsync(() =>
{
var @this = Zpa.GetCloudBrowserIsolationZPAProfile.Invoke(new()
{
Name = "ZPA_Profile",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zpa.ZpaFunctions;
import com.pulumi.zpa.inputs.GetCloudBrowserIsolationZPAProfileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var this = ZpaFunctions.getCloudBrowserIsolationZPAProfile(GetCloudBrowserIsolationZPAProfileArgs.builder()
.name("ZPA_Profile")
.build());
}
}
variables:
this:
fn::invoke:
function: zpa:getCloudBrowserIsolationZPAProfile
arguments:
name: ZPA_Profile
Using getCloudBrowserIsolationZPAProfile
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getCloudBrowserIsolationZPAProfile(args: GetCloudBrowserIsolationZPAProfileArgs, opts?: InvokeOptions): Promise<GetCloudBrowserIsolationZPAProfileResult>
function getCloudBrowserIsolationZPAProfileOutput(args: GetCloudBrowserIsolationZPAProfileOutputArgs, opts?: InvokeOptions): Output<GetCloudBrowserIsolationZPAProfileResult>
def get_cloud_browser_isolation_zpa_profile(name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCloudBrowserIsolationZPAProfileResult
def get_cloud_browser_isolation_zpa_profile_output(name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCloudBrowserIsolationZPAProfileResult]
func GetCloudBrowserIsolationZPAProfile(ctx *Context, args *GetCloudBrowserIsolationZPAProfileArgs, opts ...InvokeOption) (*GetCloudBrowserIsolationZPAProfileResult, error)
func GetCloudBrowserIsolationZPAProfileOutput(ctx *Context, args *GetCloudBrowserIsolationZPAProfileOutputArgs, opts ...InvokeOption) GetCloudBrowserIsolationZPAProfileResultOutput
> Note: This function is named GetCloudBrowserIsolationZPAProfile
in the Go SDK.
public static class GetCloudBrowserIsolationZPAProfile
{
public static Task<GetCloudBrowserIsolationZPAProfileResult> InvokeAsync(GetCloudBrowserIsolationZPAProfileArgs args, InvokeOptions? opts = null)
public static Output<GetCloudBrowserIsolationZPAProfileResult> Invoke(GetCloudBrowserIsolationZPAProfileInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetCloudBrowserIsolationZPAProfileResult> getCloudBrowserIsolationZPAProfile(GetCloudBrowserIsolationZPAProfileArgs args, InvokeOptions options)
public static Output<GetCloudBrowserIsolationZPAProfileResult> getCloudBrowserIsolationZPAProfile(GetCloudBrowserIsolationZPAProfileArgs args, InvokeOptions options)
fn::invoke:
function: zpa:index/getCloudBrowserIsolationZPAProfile:getCloudBrowserIsolationZPAProfile
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
- (String) This field defines the name of the isolation profile.
- Name string
- (String) This field defines the name of the isolation profile.
- name String
- (String) This field defines the name of the isolation profile.
- name string
- (String) This field defines the name of the isolation profile.
- name str
- (String) This field defines the name of the isolation profile.
- name String
- (String) This field defines the name of the isolation profile.
getCloudBrowserIsolationZPAProfile Result
The following output properties are available:
- Cbi
Profile stringId - Cbi
Tenant stringId - Cbi
Url string - Creation
Time string - Description string
- Enabled bool
- Id string
- Modified
Time string - Modifiedby string
- Name string
- (String) This field defines the name of the isolation profile.
- Cbi
Profile stringId - Cbi
Tenant stringId - Cbi
Url string - Creation
Time string - Description string
- Enabled bool
- Id string
- Modified
Time string - Modifiedby string
- Name string
- (String) This field defines the name of the isolation profile.
- cbi
Profile StringId - cbi
Tenant StringId - cbi
Url String - creation
Time String - description String
- enabled Boolean
- id String
- modified
Time String - modifiedby String
- name String
- (String) This field defines the name of the isolation profile.
- cbi
Profile stringId - cbi
Tenant stringId - cbi
Url string - creation
Time string - description string
- enabled boolean
- id string
- modified
Time string - modifiedby string
- name string
- (String) This field defines the name of the isolation profile.
- cbi_
profile_ strid - cbi_
tenant_ strid - cbi_
url str - creation_
time str - description str
- enabled bool
- id str
- modified_
time str - modifiedby str
- name str
- (String) This field defines the name of the isolation profile.
- cbi
Profile StringId - cbi
Tenant StringId - cbi
Url String - creation
Time String - description String
- enabled Boolean
- id String
- modified
Time String - modifiedby String
- name String
- (String) This field defines the name of the isolation profile.
Package Details
- Repository
- zpa zscaler/pulumi-zpa
- License
- MIT
- Notes
- This Pulumi package is based on the
zpa
Terraform Provider.