zia.BrowserControlSettings
The zia_browser_control_policy resource allows you to update the malware protection policy configuration details. To learn more see Configuring the Browser Control Policy
Example Usage
resource "zia_browser_control_policy" "this" {
    plugin_check_frequency = "DAILY"
    bypass_plugins = ["ACROBAT", "FLASH", "SHOCKWAVE"]
    bypass_applications = ["OUTLOOKEXP", "MSOFFICE"]
    blocked_internet_explorer_versions = ["IE10", "MSE81", "MSE92"]
    blocked_chrome_versions = ["CH143", "CH142"]
    blocked_firefox_versions = ["MF145", "MF144"]
    blocked_safari_versions = ["AS19", "AS18"]
    blocked_opera_versions = ["O129X", "O130X"]
    bypass_all_browsers = true
    allow_all_browsers = true
    enable_warnings = true
}
Enable Smart Isolation
data "zia_cloud_browser_isolation_profile" "this" {
    name = "ZS_CBI_Profile1"
}
resource "zia_browser_control_policy" "this" {
    plugin_check_frequency = "DAILY"
    bypass_plugins = ["ACROBAT", "FLASH", "SHOCKWAVE"]
    bypass_applications = ["OUTLOOKEXP", "MSOFFICE"]
    blocked_internet_explorer_versions = ["IE10", "MSE81", "MSE92"]
    blocked_chrome_versions = ["CH143", "CH142"]
    blocked_firefox_versions = ["MF145", "MF144"]
    blocked_safari_versions = ["AS19", "AS18"]
    blocked_opera_versions = ["O129X", "O130X"]
    bypass_all_browsers = true
    allow_all_browsers = true
    enable_warnings = true
    enable_smart_browser_isolation = true
    smart_isolation_profile {
      id = data.zia_cloud_browser_isolation_profile.this.id
    }
}
Create BrowserControlSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BrowserControlSettings(name: string, args?: BrowserControlSettingsArgs, opts?: CustomResourceOptions);@overload
def BrowserControlSettings(resource_name: str,
                           args: Optional[BrowserControlSettingsArgs] = None,
                           opts: Optional[ResourceOptions] = None)
@overload
def BrowserControlSettings(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           allow_all_browsers: Optional[bool] = None,
                           blocked_chrome_versions: Optional[Sequence[str]] = None,
                           blocked_firefox_versions: Optional[Sequence[str]] = None,
                           blocked_internet_explorer_versions: Optional[Sequence[str]] = None,
                           blocked_opera_versions: Optional[Sequence[str]] = None,
                           blocked_safari_versions: Optional[Sequence[str]] = None,
                           bypass_all_browsers: Optional[bool] = None,
                           bypass_applications: Optional[Sequence[str]] = None,
                           bypass_plugins: Optional[Sequence[str]] = None,
                           enable_smart_browser_isolation: Optional[bool] = None,
                           enable_warnings: Optional[bool] = None,
                           plugin_check_frequency: Optional[str] = None,
                           smart_isolation_groups: Optional[BrowserControlSettingsSmartIsolationGroupsArgs] = None,
                           smart_isolation_profiles: Optional[Sequence[BrowserControlSettingsSmartIsolationProfileArgs]] = None,
                           smart_isolation_users: Optional[BrowserControlSettingsSmartIsolationUsersArgs] = None)func NewBrowserControlSettings(ctx *Context, name string, args *BrowserControlSettingsArgs, opts ...ResourceOption) (*BrowserControlSettings, error)public BrowserControlSettings(string name, BrowserControlSettingsArgs? args = null, CustomResourceOptions? opts = null)
public BrowserControlSettings(String name, BrowserControlSettingsArgs args)
public BrowserControlSettings(String name, BrowserControlSettingsArgs args, CustomResourceOptions options)
type: zia:BrowserControlSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BrowserControlSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BrowserControlSettingsArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BrowserControlSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BrowserControlSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BrowserControlSettingsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var browserControlSettingsResource = new Zia.BrowserControlSettings("browserControlSettingsResource", new()
{
    AllowAllBrowsers = false,
    BlockedChromeVersions = new[]
    {
        "string",
    },
    BlockedFirefoxVersions = new[]
    {
        "string",
    },
    BlockedInternetExplorerVersions = new[]
    {
        "string",
    },
    BlockedOperaVersions = new[]
    {
        "string",
    },
    BlockedSafariVersions = new[]
    {
        "string",
    },
    BypassAllBrowsers = false,
    BypassApplications = new[]
    {
        "string",
    },
    BypassPlugins = new[]
    {
        "string",
    },
    EnableSmartBrowserIsolation = false,
    EnableWarnings = false,
    PluginCheckFrequency = "string",
    SmartIsolationGroups = new Zia.Inputs.BrowserControlSettingsSmartIsolationGroupsArgs
    {
        Ids = new[]
        {
            0,
        },
    },
    SmartIsolationProfiles = new[]
    {
        new Zia.Inputs.BrowserControlSettingsSmartIsolationProfileArgs
        {
            Id = "string",
        },
    },
    SmartIsolationUsers = new Zia.Inputs.BrowserControlSettingsSmartIsolationUsersArgs
    {
        Ids = new[]
        {
            0,
        },
    },
});
example, err := zia.NewBrowserControlSettings(ctx, "browserControlSettingsResource", &zia.BrowserControlSettingsArgs{
	AllowAllBrowsers: pulumi.Bool(false),
	BlockedChromeVersions: pulumi.StringArray{
		pulumi.String("string"),
	},
	BlockedFirefoxVersions: pulumi.StringArray{
		pulumi.String("string"),
	},
	BlockedInternetExplorerVersions: pulumi.StringArray{
		pulumi.String("string"),
	},
	BlockedOperaVersions: pulumi.StringArray{
		pulumi.String("string"),
	},
	BlockedSafariVersions: pulumi.StringArray{
		pulumi.String("string"),
	},
	BypassAllBrowsers: pulumi.Bool(false),
	BypassApplications: pulumi.StringArray{
		pulumi.String("string"),
	},
	BypassPlugins: pulumi.StringArray{
		pulumi.String("string"),
	},
	EnableSmartBrowserIsolation: pulumi.Bool(false),
	EnableWarnings:              pulumi.Bool(false),
	PluginCheckFrequency:        pulumi.String("string"),
	SmartIsolationGroups: &zia.BrowserControlSettingsSmartIsolationGroupsArgs{
		Ids: pulumi.IntArray{
			pulumi.Int(0),
		},
	},
	SmartIsolationProfiles: zia.BrowserControlSettingsSmartIsolationProfileArray{
		&zia.BrowserControlSettingsSmartIsolationProfileArgs{
			Id: pulumi.String("string"),
		},
	},
	SmartIsolationUsers: &zia.BrowserControlSettingsSmartIsolationUsersArgs{
		Ids: pulumi.IntArray{
			pulumi.Int(0),
		},
	},
})
var browserControlSettingsResource = new BrowserControlSettings("browserControlSettingsResource", BrowserControlSettingsArgs.builder()
    .allowAllBrowsers(false)
    .blockedChromeVersions("string")
    .blockedFirefoxVersions("string")
    .blockedInternetExplorerVersions("string")
    .blockedOperaVersions("string")
    .blockedSafariVersions("string")
    .bypassAllBrowsers(false)
    .bypassApplications("string")
    .bypassPlugins("string")
    .enableSmartBrowserIsolation(false)
    .enableWarnings(false)
    .pluginCheckFrequency("string")
    .smartIsolationGroups(BrowserControlSettingsSmartIsolationGroupsArgs.builder()
        .ids(0)
        .build())
    .smartIsolationProfiles(BrowserControlSettingsSmartIsolationProfileArgs.builder()
        .id("string")
        .build())
    .smartIsolationUsers(BrowserControlSettingsSmartIsolationUsersArgs.builder()
        .ids(0)
        .build())
    .build());
browser_control_settings_resource = zia.BrowserControlSettings("browserControlSettingsResource",
    allow_all_browsers=False,
    blocked_chrome_versions=["string"],
    blocked_firefox_versions=["string"],
    blocked_internet_explorer_versions=["string"],
    blocked_opera_versions=["string"],
    blocked_safari_versions=["string"],
    bypass_all_browsers=False,
    bypass_applications=["string"],
    bypass_plugins=["string"],
    enable_smart_browser_isolation=False,
    enable_warnings=False,
    plugin_check_frequency="string",
    smart_isolation_groups={
        "ids": [0],
    },
    smart_isolation_profiles=[{
        "id": "string",
    }],
    smart_isolation_users={
        "ids": [0],
    })
const browserControlSettingsResource = new zia.BrowserControlSettings("browserControlSettingsResource", {
    allowAllBrowsers: false,
    blockedChromeVersions: ["string"],
    blockedFirefoxVersions: ["string"],
    blockedInternetExplorerVersions: ["string"],
    blockedOperaVersions: ["string"],
    blockedSafariVersions: ["string"],
    bypassAllBrowsers: false,
    bypassApplications: ["string"],
    bypassPlugins: ["string"],
    enableSmartBrowserIsolation: false,
    enableWarnings: false,
    pluginCheckFrequency: "string",
    smartIsolationGroups: {
        ids: [0],
    },
    smartIsolationProfiles: [{
        id: "string",
    }],
    smartIsolationUsers: {
        ids: [0],
    },
});
type: zia:BrowserControlSettings
properties:
    allowAllBrowsers: false
    blockedChromeVersions:
        - string
    blockedFirefoxVersions:
        - string
    blockedInternetExplorerVersions:
        - string
    blockedOperaVersions:
        - string
    blockedSafariVersions:
        - string
    bypassAllBrowsers: false
    bypassApplications:
        - string
    bypassPlugins:
        - string
    enableSmartBrowserIsolation: false
    enableWarnings: false
    pluginCheckFrequency: string
    smartIsolationGroups:
        ids:
            - 0
    smartIsolationProfiles:
        - id: string
    smartIsolationUsers:
        ids:
            - 0
BrowserControlSettings Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BrowserControlSettings resource accepts the following input properties:
- AllowAll boolBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- BlockedChrome List<string>Versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- BlockedFirefox List<string>Versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- BlockedInternet List<string>Explorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- BlockedOpera List<string>Versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- BlockedSafari List<string>Versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- BypassAll boolBrowsers 
- If set to true, all the browsers are bypassed for warnings
- BypassApplications List<string>
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- BypassPlugins List<string>
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- EnableSmart boolBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- EnableWarnings bool
- A Boolean value that specifies if the warnings are enabled
- PluginCheck stringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- SmartIsolation zscaler.Groups Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Groups 
- Name-ID pairs of groups for which the rule is applied
- SmartIsolation List<zscaler.Profiles Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Profile> 
- The isolation profile
- SmartIsolation zscaler.Users Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Users 
- Name-ID pairs of users for which the rule is applied
- AllowAll boolBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- BlockedChrome []stringVersions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- BlockedFirefox []stringVersions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- BlockedInternet []stringExplorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- BlockedOpera []stringVersions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- BlockedSafari []stringVersions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- BypassAll boolBrowsers 
- If set to true, all the browsers are bypassed for warnings
- BypassApplications []string
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- BypassPlugins []string
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- EnableSmart boolBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- EnableWarnings bool
- A Boolean value that specifies if the warnings are enabled
- PluginCheck stringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- SmartIsolation BrowserGroups Control Settings Smart Isolation Groups Args 
- Name-ID pairs of groups for which the rule is applied
- SmartIsolation []BrowserProfiles Control Settings Smart Isolation Profile Args 
- The isolation profile
- SmartIsolation BrowserUsers Control Settings Smart Isolation Users Args 
- Name-ID pairs of users for which the rule is applied
- allowAll BooleanBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blockedChrome List<String>Versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blockedFirefox List<String>Versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blockedInternet List<String>Explorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blockedOpera List<String>Versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blockedSafari List<String>Versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypassAll BooleanBrowsers 
- If set to true, all the browsers are bypassed for warnings
- bypassApplications List<String>
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypassPlugins List<String>
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enableSmart BooleanBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- enableWarnings Boolean
- A Boolean value that specifies if the warnings are enabled
- pluginCheck StringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smartIsolation BrowserGroups Control Settings Smart Isolation Groups 
- Name-ID pairs of groups for which the rule is applied
- smartIsolation List<BrowserProfiles Control Settings Smart Isolation Profile> 
- The isolation profile
- smartIsolation BrowserUsers Control Settings Smart Isolation Users 
- Name-ID pairs of users for which the rule is applied
- allowAll booleanBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blockedChrome string[]Versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blockedFirefox string[]Versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blockedInternet string[]Explorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blockedOpera string[]Versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blockedSafari string[]Versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypassAll booleanBrowsers 
- If set to true, all the browsers are bypassed for warnings
- bypassApplications string[]
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypassPlugins string[]
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enableSmart booleanBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- enableWarnings boolean
- A Boolean value that specifies if the warnings are enabled
- pluginCheck stringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smartIsolation BrowserGroups Control Settings Smart Isolation Groups 
- Name-ID pairs of groups for which the rule is applied
- smartIsolation BrowserProfiles Control Settings Smart Isolation Profile[] 
- The isolation profile
- smartIsolation BrowserUsers Control Settings Smart Isolation Users 
- Name-ID pairs of users for which the rule is applied
- allow_all_ boolbrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked_chrome_ Sequence[str]versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked_firefox_ Sequence[str]versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked_internet_ Sequence[str]explorer_ versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked_opera_ Sequence[str]versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked_safari_ Sequence[str]versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass_all_ boolbrowsers 
- If set to true, all the browsers are bypassed for warnings
- bypass_applications Sequence[str]
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass_plugins Sequence[str]
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable_smart_ boolbrowser_ isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- enable_warnings bool
- A Boolean value that specifies if the warnings are enabled
- plugin_check_ strfrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart_isolation_ Browsergroups Control Settings Smart Isolation Groups Args 
- Name-ID pairs of groups for which the rule is applied
- smart_isolation_ Sequence[Browserprofiles Control Settings Smart Isolation Profile Args] 
- The isolation profile
- smart_isolation_ Browserusers Control Settings Smart Isolation Users Args 
- Name-ID pairs of users for which the rule is applied
- allowAll BooleanBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blockedChrome List<String>Versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blockedFirefox List<String>Versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blockedInternet List<String>Explorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blockedOpera List<String>Versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blockedSafari List<String>Versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypassAll BooleanBrowsers 
- If set to true, all the browsers are bypassed for warnings
- bypassApplications List<String>
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypassPlugins List<String>
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enableSmart BooleanBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- enableWarnings Boolean
- A Boolean value that specifies if the warnings are enabled
- pluginCheck StringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smartIsolation Property MapGroups 
- Name-ID pairs of groups for which the rule is applied
- smartIsolation List<Property Map>Profiles 
- The isolation profile
- smartIsolation Property MapUsers 
- Name-ID pairs of users for which the rule is applied
Outputs
All input properties are implicitly available as output properties. Additionally, the BrowserControlSettings resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing BrowserControlSettings Resource
Get an existing BrowserControlSettings resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BrowserControlSettingsState, opts?: CustomResourceOptions): BrowserControlSettings@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        allow_all_browsers: Optional[bool] = None,
        blocked_chrome_versions: Optional[Sequence[str]] = None,
        blocked_firefox_versions: Optional[Sequence[str]] = None,
        blocked_internet_explorer_versions: Optional[Sequence[str]] = None,
        blocked_opera_versions: Optional[Sequence[str]] = None,
        blocked_safari_versions: Optional[Sequence[str]] = None,
        bypass_all_browsers: Optional[bool] = None,
        bypass_applications: Optional[Sequence[str]] = None,
        bypass_plugins: Optional[Sequence[str]] = None,
        enable_smart_browser_isolation: Optional[bool] = None,
        enable_warnings: Optional[bool] = None,
        plugin_check_frequency: Optional[str] = None,
        smart_isolation_groups: Optional[BrowserControlSettingsSmartIsolationGroupsArgs] = None,
        smart_isolation_profiles: Optional[Sequence[BrowserControlSettingsSmartIsolationProfileArgs]] = None,
        smart_isolation_users: Optional[BrowserControlSettingsSmartIsolationUsersArgs] = None) -> BrowserControlSettingsfunc GetBrowserControlSettings(ctx *Context, name string, id IDInput, state *BrowserControlSettingsState, opts ...ResourceOption) (*BrowserControlSettings, error)public static BrowserControlSettings Get(string name, Input<string> id, BrowserControlSettingsState? state, CustomResourceOptions? opts = null)public static BrowserControlSettings get(String name, Output<String> id, BrowserControlSettingsState state, CustomResourceOptions options)resources:  _:    type: zia:BrowserControlSettings    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AllowAll boolBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- BlockedChrome List<string>Versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- BlockedFirefox List<string>Versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- BlockedInternet List<string>Explorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- BlockedOpera List<string>Versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- BlockedSafari List<string>Versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- BypassAll boolBrowsers 
- If set to true, all the browsers are bypassed for warnings
- BypassApplications List<string>
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- BypassPlugins List<string>
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- EnableSmart boolBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- EnableWarnings bool
- A Boolean value that specifies if the warnings are enabled
- PluginCheck stringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- SmartIsolation zscaler.Groups Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Groups 
- Name-ID pairs of groups for which the rule is applied
- SmartIsolation List<zscaler.Profiles Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Profile> 
- The isolation profile
- SmartIsolation zscaler.Users Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Users 
- Name-ID pairs of users for which the rule is applied
- AllowAll boolBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- BlockedChrome []stringVersions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- BlockedFirefox []stringVersions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- BlockedInternet []stringExplorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- BlockedOpera []stringVersions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- BlockedSafari []stringVersions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- BypassAll boolBrowsers 
- If set to true, all the browsers are bypassed for warnings
- BypassApplications []string
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- BypassPlugins []string
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- EnableSmart boolBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- EnableWarnings bool
- A Boolean value that specifies if the warnings are enabled
- PluginCheck stringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- SmartIsolation BrowserGroups Control Settings Smart Isolation Groups Args 
- Name-ID pairs of groups for which the rule is applied
- SmartIsolation []BrowserProfiles Control Settings Smart Isolation Profile Args 
- The isolation profile
- SmartIsolation BrowserUsers Control Settings Smart Isolation Users Args 
- Name-ID pairs of users for which the rule is applied
- allowAll BooleanBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blockedChrome List<String>Versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blockedFirefox List<String>Versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blockedInternet List<String>Explorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blockedOpera List<String>Versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blockedSafari List<String>Versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypassAll BooleanBrowsers 
- If set to true, all the browsers are bypassed for warnings
- bypassApplications List<String>
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypassPlugins List<String>
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enableSmart BooleanBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- enableWarnings Boolean
- A Boolean value that specifies if the warnings are enabled
- pluginCheck StringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smartIsolation BrowserGroups Control Settings Smart Isolation Groups 
- Name-ID pairs of groups for which the rule is applied
- smartIsolation List<BrowserProfiles Control Settings Smart Isolation Profile> 
- The isolation profile
- smartIsolation BrowserUsers Control Settings Smart Isolation Users 
- Name-ID pairs of users for which the rule is applied
- allowAll booleanBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blockedChrome string[]Versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blockedFirefox string[]Versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blockedInternet string[]Explorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blockedOpera string[]Versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blockedSafari string[]Versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypassAll booleanBrowsers 
- If set to true, all the browsers are bypassed for warnings
- bypassApplications string[]
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypassPlugins string[]
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enableSmart booleanBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- enableWarnings boolean
- A Boolean value that specifies if the warnings are enabled
- pluginCheck stringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smartIsolation BrowserGroups Control Settings Smart Isolation Groups 
- Name-ID pairs of groups for which the rule is applied
- smartIsolation BrowserProfiles Control Settings Smart Isolation Profile[] 
- The isolation profile
- smartIsolation BrowserUsers Control Settings Smart Isolation Users 
- Name-ID pairs of users for which the rule is applied
- allow_all_ boolbrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked_chrome_ Sequence[str]versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked_firefox_ Sequence[str]versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked_internet_ Sequence[str]explorer_ versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked_opera_ Sequence[str]versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked_safari_ Sequence[str]versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass_all_ boolbrowsers 
- If set to true, all the browsers are bypassed for warnings
- bypass_applications Sequence[str]
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass_plugins Sequence[str]
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable_smart_ boolbrowser_ isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- enable_warnings bool
- A Boolean value that specifies if the warnings are enabled
- plugin_check_ strfrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart_isolation_ Browsergroups Control Settings Smart Isolation Groups Args 
- Name-ID pairs of groups for which the rule is applied
- smart_isolation_ Sequence[Browserprofiles Control Settings Smart Isolation Profile Args] 
- The isolation profile
- smart_isolation_ Browserusers Control Settings Smart Isolation Users Args 
- Name-ID pairs of users for which the rule is applied
- allowAll BooleanBrowsers 
- A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blockedChrome List<String>Versions 
- Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blockedFirefox List<String>Versions 
- Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blockedInternet List<String>Explorer Versions 
- Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blockedOpera List<String>Versions 
- Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blockedSafari List<String>Versions 
- Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypassAll BooleanBrowsers 
- If set to true, all the browsers are bypassed for warnings
- bypassApplications List<String>
- List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypassPlugins List<String>
- List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enableSmart BooleanBrowser Isolation 
- A Boolean value that specifies if Smart Browser Isolation is enabled
- enableWarnings Boolean
- A Boolean value that specifies if the warnings are enabled
- pluginCheck StringFrequency 
- Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smartIsolation Property MapGroups 
- Name-ID pairs of groups for which the rule is applied
- smartIsolation List<Property Map>Profiles 
- The isolation profile
- smartIsolation Property MapUsers 
- Name-ID pairs of users for which the rule is applied
Supporting Types
BrowserControlSettingsSmartIsolationGroups, BrowserControlSettingsSmartIsolationGroupsArgs            
- Ids List<int>
- A unique identifier for an entity.
- Ids []int
- A unique identifier for an entity.
- ids List<Integer>
- A unique identifier for an entity.
- ids number[]
- A unique identifier for an entity.
- ids Sequence[int]
- A unique identifier for an entity.
- ids List<Number>
- A unique identifier for an entity.
BrowserControlSettingsSmartIsolationProfile, BrowserControlSettingsSmartIsolationProfileArgs            
- Id string
- The universally unique identifier (UUID) for the browser isolation profile
- Id string
- The universally unique identifier (UUID) for the browser isolation profile
- id String
- The universally unique identifier (UUID) for the browser isolation profile
- id string
- The universally unique identifier (UUID) for the browser isolation profile
- id str
- The universally unique identifier (UUID) for the browser isolation profile
- id String
- The universally unique identifier (UUID) for the browser isolation profile
BrowserControlSettingsSmartIsolationUsers, BrowserControlSettingsSmartIsolationUsersArgs            
- Ids List<int>
- A unique identifier for an entity.
- Ids []int
- A unique identifier for an entity.
- ids List<Integer>
- A unique identifier for an entity.
- ids number[]
- A unique identifier for an entity.
- ids Sequence[int]
- A unique identifier for an entity.
- ids List<Number>
- A unique identifier for an entity.
Import
Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZIA configurations into Terraform-compliant HashiCorp Configuration Language.
Visit
zia_browser_control_policy can be imported by using browser_settings as the import ID.
For example:
$ pulumi import zia:index/browserControlSettings:BrowserControlSettings this "browser_settings"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- zia zscaler/pulumi-zia
- License
- MIT
- Notes
- This Pulumi package is based on the ziaTerraform Provider.
 
