1. Packages
  2. Zscaler Internet Access (ZIA)
  3. API Docs
  4. UrlFilteringCloudAppSettings
Viewing docs for pulumi-resource-zia v1.3.8
published on Friday, Mar 13, 2026 by Zscaler
zia logo
Viewing docs for pulumi-resource-zia v1.3.8
published on Friday, Mar 13, 2026 by Zscaler

    The zia_url_filtering_and_cloud_app_settings resource manages URL filtering and cloud application settings in the Zscaler Internet Access (ZIA) cloud service. This is a singleton resource that controls global settings for URL filtering features such as safe search enforcement, UCaaS application controls, AI/ML prompt visibility, and CIPA compliance.

    For more information, see the ZIA URL Filtering documentation.

    Example Usage

    Configure URL Filtering and Cloud App Settings

    Example coming soon!

    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	zia "github.com/zscaler/pulumi-zia/sdk/go/pulumi-zia"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zia.NewUrlFilteringCloudAppSettings(ctx, "example", &zia.UrlFilteringCloudAppSettingsArgs{
    			EnableDynamicContentCat: pulumi.BoolRef(true),
    			EnforceSafeSearch:       pulumi.BoolRef(true),
    			EnableOffice365:         pulumi.BoolRef(true),
    			EnableChatgptPrompt:     pulumi.BoolRef(true),
    			EnableCipaCompliance:    pulumi.BoolRef(false),
    		})
    		return err
    	})
    }
    

    Example coming soon!

    import * as zia from "@bdzscaler/pulumi-zia";
    
    const example = new zia.UrlFilteringCloudAppSettings("example", {
        enableDynamicContentCat: true,
        enforceSafeSearch: true,
        enableOffice365: true,
        enableChatgptPrompt: true,
        enableCipaCompliance: false,
    });
    
    import zscaler_pulumi_zia as zia
    
    example = zia.UrlFilteringCloudAppSettings("example",
        enable_dynamic_content_cat=True,
        enforce_safe_search=True,
        enable_office365=True,
        enable_chatgpt_prompt=True,
        enable_cipa_compliance=False,
    )
    
    resources:
      example:
        type: zia:UrlFilteringCloudAppSettings
        properties:
          enableDynamicContentCat: true
          enforceSafeSearch: true
          enableOffice365: true
          enableChatgptPrompt: true
          enableCipaCompliance: false
    

    Create UrlFilteringCloudAppSettings Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new UrlFilteringCloudAppSettings(name: string, args?: UrlFilteringCloudAppSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def UrlFilteringCloudAppSettings(resource_name: str,
                                     args: Optional[UrlFilteringCloudAppSettingsArgs] = None,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def UrlFilteringCloudAppSettings(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     block_skype: Optional[bool] = None,
                                     consider_embedded_sites: Optional[bool] = None,
                                     enable_block_override_for_non_auth_user: Optional[bool] = None,
                                     enable_chatgpt_prompt: Optional[bool] = None,
                                     enable_cipa_compliance: Optional[bool] = None,
                                     enable_claude_prompt: Optional[bool] = None,
                                     enable_creative_commons_search_results: Optional[bool] = None,
                                     enable_deep_seek_prompt: Optional[bool] = None,
                                     enable_dynamic_content_cat: Optional[bool] = None,
                                     enable_gemini_prompt: Optional[bool] = None,
                                     enable_grammarly_prompt: Optional[bool] = None,
                                     enable_grok_prompt: Optional[bool] = None,
                                     enable_meta_prompt: Optional[bool] = None,
                                     enable_microsoft_copilot_prompt: Optional[bool] = None,
                                     enable_mistral_ai_prompt: Optional[bool] = None,
                                     enable_msft_o365: Optional[bool] = None,
                                     enable_newly_registered_domains: Optional[bool] = None,
                                     enable_office365: Optional[bool] = None,
                                     enable_per_plexity_prompt: Optional[bool] = None,
                                     enable_poep_prompt: Optional[bool] = None,
                                     enable_ucaas_logmein: Optional[bool] = None,
                                     enable_ucaas_ring_central: Optional[bool] = None,
                                     enable_ucaas_talkdesk: Optional[bool] = None,
                                     enable_ucaas_webex: Optional[bool] = None,
                                     enable_ucaas_zoom: Optional[bool] = None,
                                     enable_writer_prompt: Optional[bool] = None,
                                     enforce_safe_search: Optional[bool] = None,
                                     safe_search_apps: Optional[Sequence[str]] = None,
                                     zvelo_db_lookup_disabled: Optional[bool] = None)
    func NewUrlFilteringCloudAppSettings(ctx *Context, name string, args *UrlFilteringCloudAppSettingsArgs, opts ...ResourceOption) (*UrlFilteringCloudAppSettings, error)
    public UrlFilteringCloudAppSettings(string name, UrlFilteringCloudAppSettingsArgs? args = null, CustomResourceOptions? opts = null)
    public UrlFilteringCloudAppSettings(String name, UrlFilteringCloudAppSettingsArgs args)
    public UrlFilteringCloudAppSettings(String name, UrlFilteringCloudAppSettingsArgs args, CustomResourceOptions options)
    
    type: zia:UrlFilteringCloudAppSettings
    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 UrlFilteringCloudAppSettingsArgs
    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 UrlFilteringCloudAppSettingsArgs
    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 UrlFilteringCloudAppSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UrlFilteringCloudAppSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UrlFilteringCloudAppSettingsArgs
    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 urlFilteringCloudAppSettingsResource = new Zia.UrlFilteringCloudAppSettings("urlFilteringCloudAppSettingsResource", new()
    {
        BlockSkype = false,
        ConsiderEmbeddedSites = false,
        EnableBlockOverrideForNonAuthUser = false,
        EnableChatgptPrompt = false,
        EnableCipaCompliance = false,
        EnableClaudePrompt = false,
        EnableCreativeCommonsSearchResults = false,
        EnableDeepSeekPrompt = false,
        EnableDynamicContentCat = false,
        EnableGeminiPrompt = false,
        EnableGrammarlyPrompt = false,
        EnableGrokPrompt = false,
        EnableMetaPrompt = false,
        EnableMicrosoftCopilotPrompt = false,
        EnableMistralAiPrompt = false,
        EnableMsftO365 = false,
        EnableNewlyRegisteredDomains = false,
        EnableOffice365 = false,
        EnablePerPlexityPrompt = false,
        EnablePoepPrompt = false,
        EnableUcaasLogmein = false,
        EnableUcaasRingCentral = false,
        EnableUcaasTalkdesk = false,
        EnableUcaasWebex = false,
        EnableUcaasZoom = false,
        EnableWriterPrompt = false,
        EnforceSafeSearch = false,
        SafeSearchApps = new[]
        {
            "string",
        },
        ZveloDbLookupDisabled = false,
    });
    
    example, err := zia.NewUrlFilteringCloudAppSettings(ctx, "urlFilteringCloudAppSettingsResource", &zia.UrlFilteringCloudAppSettingsArgs{
    	BlockSkype:                         pulumi.Bool(false),
    	ConsiderEmbeddedSites:              pulumi.Bool(false),
    	EnableBlockOverrideForNonAuthUser:  pulumi.Bool(false),
    	EnableChatgptPrompt:                pulumi.Bool(false),
    	EnableCipaCompliance:               pulumi.Bool(false),
    	EnableClaudePrompt:                 pulumi.Bool(false),
    	EnableCreativeCommonsSearchResults: pulumi.Bool(false),
    	EnableDeepSeekPrompt:               pulumi.Bool(false),
    	EnableDynamicContentCat:            pulumi.Bool(false),
    	EnableGeminiPrompt:                 pulumi.Bool(false),
    	EnableGrammarlyPrompt:              pulumi.Bool(false),
    	EnableGrokPrompt:                   pulumi.Bool(false),
    	EnableMetaPrompt:                   pulumi.Bool(false),
    	EnableMicrosoftCopilotPrompt:       pulumi.Bool(false),
    	EnableMistralAiPrompt:              pulumi.Bool(false),
    	EnableMsftO365:                     pulumi.Bool(false),
    	EnableNewlyRegisteredDomains:       pulumi.Bool(false),
    	EnableOffice365:                    pulumi.Bool(false),
    	EnablePerPlexityPrompt:             pulumi.Bool(false),
    	EnablePoepPrompt:                   pulumi.Bool(false),
    	EnableUcaasLogmein:                 pulumi.Bool(false),
    	EnableUcaasRingCentral:             pulumi.Bool(false),
    	EnableUcaasTalkdesk:                pulumi.Bool(false),
    	EnableUcaasWebex:                   pulumi.Bool(false),
    	EnableUcaasZoom:                    pulumi.Bool(false),
    	EnableWriterPrompt:                 pulumi.Bool(false),
    	EnforceSafeSearch:                  pulumi.Bool(false),
    	SafeSearchApps: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ZveloDbLookupDisabled: pulumi.Bool(false),
    })
    
    var urlFilteringCloudAppSettingsResource = new UrlFilteringCloudAppSettings("urlFilteringCloudAppSettingsResource", UrlFilteringCloudAppSettingsArgs.builder()
        .blockSkype(false)
        .considerEmbeddedSites(false)
        .enableBlockOverrideForNonAuthUser(false)
        .enableChatgptPrompt(false)
        .enableCipaCompliance(false)
        .enableClaudePrompt(false)
        .enableCreativeCommonsSearchResults(false)
        .enableDeepSeekPrompt(false)
        .enableDynamicContentCat(false)
        .enableGeminiPrompt(false)
        .enableGrammarlyPrompt(false)
        .enableGrokPrompt(false)
        .enableMetaPrompt(false)
        .enableMicrosoftCopilotPrompt(false)
        .enableMistralAiPrompt(false)
        .enableMsftO365(false)
        .enableNewlyRegisteredDomains(false)
        .enableOffice365(false)
        .enablePerPlexityPrompt(false)
        .enablePoepPrompt(false)
        .enableUcaasLogmein(false)
        .enableUcaasRingCentral(false)
        .enableUcaasTalkdesk(false)
        .enableUcaasWebex(false)
        .enableUcaasZoom(false)
        .enableWriterPrompt(false)
        .enforceSafeSearch(false)
        .safeSearchApps("string")
        .zveloDbLookupDisabled(false)
        .build());
    
    url_filtering_cloud_app_settings_resource = zia.UrlFilteringCloudAppSettings("urlFilteringCloudAppSettingsResource",
        block_skype=False,
        consider_embedded_sites=False,
        enable_block_override_for_non_auth_user=False,
        enable_chatgpt_prompt=False,
        enable_cipa_compliance=False,
        enable_claude_prompt=False,
        enable_creative_commons_search_results=False,
        enable_deep_seek_prompt=False,
        enable_dynamic_content_cat=False,
        enable_gemini_prompt=False,
        enable_grammarly_prompt=False,
        enable_grok_prompt=False,
        enable_meta_prompt=False,
        enable_microsoft_copilot_prompt=False,
        enable_mistral_ai_prompt=False,
        enable_msft_o365=False,
        enable_newly_registered_domains=False,
        enable_office365=False,
        enable_per_plexity_prompt=False,
        enable_poep_prompt=False,
        enable_ucaas_logmein=False,
        enable_ucaas_ring_central=False,
        enable_ucaas_talkdesk=False,
        enable_ucaas_webex=False,
        enable_ucaas_zoom=False,
        enable_writer_prompt=False,
        enforce_safe_search=False,
        safe_search_apps=["string"],
        zvelo_db_lookup_disabled=False)
    
    const urlFilteringCloudAppSettingsResource = new zia.UrlFilteringCloudAppSettings("urlFilteringCloudAppSettingsResource", {
        blockSkype: false,
        considerEmbeddedSites: false,
        enableBlockOverrideForNonAuthUser: false,
        enableChatgptPrompt: false,
        enableCipaCompliance: false,
        enableClaudePrompt: false,
        enableCreativeCommonsSearchResults: false,
        enableDeepSeekPrompt: false,
        enableDynamicContentCat: false,
        enableGeminiPrompt: false,
        enableGrammarlyPrompt: false,
        enableGrokPrompt: false,
        enableMetaPrompt: false,
        enableMicrosoftCopilotPrompt: false,
        enableMistralAiPrompt: false,
        enableMsftO365: false,
        enableNewlyRegisteredDomains: false,
        enableOffice365: false,
        enablePerPlexityPrompt: false,
        enablePoepPrompt: false,
        enableUcaasLogmein: false,
        enableUcaasRingCentral: false,
        enableUcaasTalkdesk: false,
        enableUcaasWebex: false,
        enableUcaasZoom: false,
        enableWriterPrompt: false,
        enforceSafeSearch: false,
        safeSearchApps: ["string"],
        zveloDbLookupDisabled: false,
    });
    
    type: zia:UrlFilteringCloudAppSettings
    properties:
        blockSkype: false
        considerEmbeddedSites: false
        enableBlockOverrideForNonAuthUser: false
        enableChatgptPrompt: false
        enableCipaCompliance: false
        enableClaudePrompt: false
        enableCreativeCommonsSearchResults: false
        enableDeepSeekPrompt: false
        enableDynamicContentCat: false
        enableGeminiPrompt: false
        enableGrammarlyPrompt: false
        enableGrokPrompt: false
        enableMetaPrompt: false
        enableMicrosoftCopilotPrompt: false
        enableMistralAiPrompt: false
        enableMsftO365: false
        enableNewlyRegisteredDomains: false
        enableOffice365: false
        enablePerPlexityPrompt: false
        enablePoepPrompt: false
        enableUcaasLogmein: false
        enableUcaasRingCentral: false
        enableUcaasTalkdesk: false
        enableUcaasWebex: false
        enableUcaasZoom: false
        enableWriterPrompt: false
        enforceSafeSearch: false
        safeSearchApps:
            - string
        zveloDbLookupDisabled: false
    

    UrlFilteringCloudAppSettings 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 UrlFilteringCloudAppSettings resource accepts the following input properties:

    BlockSkype bool
    If true, Skype is blocked.
    ConsiderEmbeddedSites bool
    If true, embedded sites within web pages are considered for URL filtering.
    EnableBlockOverrideForNonAuthUser bool
    If true, block override is enabled for non-authenticated users.
    EnableChatgptPrompt bool
    If true, ChatGPT prompt visibility and logging is enabled.
    EnableCipaCompliance bool
    If true, CIPA (Children's Internet Protection Act) compliance mode is enabled.
    EnableClaudePrompt bool
    If true, Claude AI prompt visibility and logging is enabled.
    EnableCreativeCommonsSearchResults bool
    If true, Creative Commons search results are enabled.
    EnableDeepSeekPrompt bool
    If true, DeepSeek AI prompt visibility and logging is enabled.
    EnableDynamicContentCat bool
    If true, dynamic content categorization is enabled.
    EnableGeminiPrompt bool
    If true, Google Gemini prompt visibility and logging is enabled.
    EnableGrammarlyPrompt bool
    If true, Grammarly AI prompt visibility and logging is enabled.
    EnableGrokPrompt bool
    If true, Grok AI prompt visibility and logging is enabled.
    EnableMetaPrompt bool
    If true, Meta AI prompt visibility and logging is enabled.
    EnableMicrosoftCopilotPrompt bool
    If true, Microsoft Copilot prompt visibility and logging is enabled.
    EnableMistralAiPrompt bool
    If true, Mistral AI prompt visibility and logging is enabled.
    EnableMsftO365 bool
    If true, Microsoft Office 365 optimization is enabled.
    EnableNewlyRegisteredDomains bool
    If true, newly registered domains detection is enabled.
    EnableOffice365 bool
    If true, Office 365 one-click configuration is enabled.
    EnablePerPlexityPrompt bool
    If true, Perplexity AI prompt visibility and logging is enabled.
    EnablePoepPrompt bool
    If true, POE prompt visibility and logging is enabled.
    EnableUcaasLogmein bool
    If true, UCaaS controls for LogMeIn are enabled.
    EnableUcaasRingCentral bool
    If true, UCaaS controls for RingCentral are enabled.
    EnableUcaasTalkdesk bool
    If true, UCaaS controls for Talkdesk are enabled.
    EnableUcaasWebex bool
    If true, UCaaS controls for Webex are enabled.
    EnableUcaasZoom bool
    If true, UCaaS controls for Zoom are enabled.
    EnableWriterPrompt bool
    If true, Writer AI prompt visibility and logging is enabled.
    EnforceSafeSearch bool
    If true, safe search is enforced for supported search engines.
    SafeSearchApps List<string>
    List of application names for which safe search is enforced.
    ZveloDbLookupDisabled bool
    If true, Zvelo database lookup is disabled.
    BlockSkype bool
    If true, Skype is blocked.
    ConsiderEmbeddedSites bool
    If true, embedded sites within web pages are considered for URL filtering.
    EnableBlockOverrideForNonAuthUser bool
    If true, block override is enabled for non-authenticated users.
    EnableChatgptPrompt bool
    If true, ChatGPT prompt visibility and logging is enabled.
    EnableCipaCompliance bool
    If true, CIPA (Children's Internet Protection Act) compliance mode is enabled.
    EnableClaudePrompt bool
    If true, Claude AI prompt visibility and logging is enabled.
    EnableCreativeCommonsSearchResults bool
    If true, Creative Commons search results are enabled.
    EnableDeepSeekPrompt bool
    If true, DeepSeek AI prompt visibility and logging is enabled.
    EnableDynamicContentCat bool
    If true, dynamic content categorization is enabled.
    EnableGeminiPrompt bool
    If true, Google Gemini prompt visibility and logging is enabled.
    EnableGrammarlyPrompt bool
    If true, Grammarly AI prompt visibility and logging is enabled.
    EnableGrokPrompt bool
    If true, Grok AI prompt visibility and logging is enabled.
    EnableMetaPrompt bool
    If true, Meta AI prompt visibility and logging is enabled.
    EnableMicrosoftCopilotPrompt bool
    If true, Microsoft Copilot prompt visibility and logging is enabled.
    EnableMistralAiPrompt bool
    If true, Mistral AI prompt visibility and logging is enabled.
    EnableMsftO365 bool
    If true, Microsoft Office 365 optimization is enabled.
    EnableNewlyRegisteredDomains bool
    If true, newly registered domains detection is enabled.
    EnableOffice365 bool
    If true, Office 365 one-click configuration is enabled.
    EnablePerPlexityPrompt bool
    If true, Perplexity AI prompt visibility and logging is enabled.
    EnablePoepPrompt bool
    If true, POE prompt visibility and logging is enabled.
    EnableUcaasLogmein bool
    If true, UCaaS controls for LogMeIn are enabled.
    EnableUcaasRingCentral bool
    If true, UCaaS controls for RingCentral are enabled.
    EnableUcaasTalkdesk bool
    If true, UCaaS controls for Talkdesk are enabled.
    EnableUcaasWebex bool
    If true, UCaaS controls for Webex are enabled.
    EnableUcaasZoom bool
    If true, UCaaS controls for Zoom are enabled.
    EnableWriterPrompt bool
    If true, Writer AI prompt visibility and logging is enabled.
    EnforceSafeSearch bool
    If true, safe search is enforced for supported search engines.
    SafeSearchApps []string
    List of application names for which safe search is enforced.
    ZveloDbLookupDisabled bool
    If true, Zvelo database lookup is disabled.
    blockSkype Boolean
    If true, Skype is blocked.
    considerEmbeddedSites Boolean
    If true, embedded sites within web pages are considered for URL filtering.
    enableBlockOverrideForNonAuthUser Boolean
    If true, block override is enabled for non-authenticated users.
    enableChatgptPrompt Boolean
    If true, ChatGPT prompt visibility and logging is enabled.
    enableCipaCompliance Boolean
    If true, CIPA (Children's Internet Protection Act) compliance mode is enabled.
    enableClaudePrompt Boolean
    If true, Claude AI prompt visibility and logging is enabled.
    enableCreativeCommonsSearchResults Boolean
    If true, Creative Commons search results are enabled.
    enableDeepSeekPrompt Boolean
    If true, DeepSeek AI prompt visibility and logging is enabled.
    enableDynamicContentCat Boolean
    If true, dynamic content categorization is enabled.
    enableGeminiPrompt Boolean
    If true, Google Gemini prompt visibility and logging is enabled.
    enableGrammarlyPrompt Boolean
    If true, Grammarly AI prompt visibility and logging is enabled.
    enableGrokPrompt Boolean
    If true, Grok AI prompt visibility and logging is enabled.
    enableMetaPrompt Boolean
    If true, Meta AI prompt visibility and logging is enabled.
    enableMicrosoftCopilotPrompt Boolean
    If true, Microsoft Copilot prompt visibility and logging is enabled.
    enableMistralAiPrompt Boolean
    If true, Mistral AI prompt visibility and logging is enabled.
    enableMsftO365 Boolean
    If true, Microsoft Office 365 optimization is enabled.
    enableNewlyRegisteredDomains Boolean
    If true, newly registered domains detection is enabled.
    enableOffice365 Boolean
    If true, Office 365 one-click configuration is enabled.
    enablePerPlexityPrompt Boolean
    If true, Perplexity AI prompt visibility and logging is enabled.
    enablePoepPrompt Boolean
    If true, POE prompt visibility and logging is enabled.
    enableUcaasLogmein Boolean
    If true, UCaaS controls for LogMeIn are enabled.
    enableUcaasRingCentral Boolean
    If true, UCaaS controls for RingCentral are enabled.
    enableUcaasTalkdesk Boolean
    If true, UCaaS controls for Talkdesk are enabled.
    enableUcaasWebex Boolean
    If true, UCaaS controls for Webex are enabled.
    enableUcaasZoom Boolean
    If true, UCaaS controls for Zoom are enabled.
    enableWriterPrompt Boolean
    If true, Writer AI prompt visibility and logging is enabled.
    enforceSafeSearch Boolean
    If true, safe search is enforced for supported search engines.
    safeSearchApps List<String>
    List of application names for which safe search is enforced.
    zveloDbLookupDisabled Boolean
    If true, Zvelo database lookup is disabled.
    blockSkype boolean
    If true, Skype is blocked.
    considerEmbeddedSites boolean
    If true, embedded sites within web pages are considered for URL filtering.
    enableBlockOverrideForNonAuthUser boolean
    If true, block override is enabled for non-authenticated users.
    enableChatgptPrompt boolean
    If true, ChatGPT prompt visibility and logging is enabled.
    enableCipaCompliance boolean
    If true, CIPA (Children's Internet Protection Act) compliance mode is enabled.
    enableClaudePrompt boolean
    If true, Claude AI prompt visibility and logging is enabled.
    enableCreativeCommonsSearchResults boolean
    If true, Creative Commons search results are enabled.
    enableDeepSeekPrompt boolean
    If true, DeepSeek AI prompt visibility and logging is enabled.
    enableDynamicContentCat boolean
    If true, dynamic content categorization is enabled.
    enableGeminiPrompt boolean
    If true, Google Gemini prompt visibility and logging is enabled.
    enableGrammarlyPrompt boolean
    If true, Grammarly AI prompt visibility and logging is enabled.
    enableGrokPrompt boolean
    If true, Grok AI prompt visibility and logging is enabled.
    enableMetaPrompt boolean
    If true, Meta AI prompt visibility and logging is enabled.
    enableMicrosoftCopilotPrompt boolean
    If true, Microsoft Copilot prompt visibility and logging is enabled.
    enableMistralAiPrompt boolean
    If true, Mistral AI prompt visibility and logging is enabled.
    enableMsftO365 boolean
    If true, Microsoft Office 365 optimization is enabled.
    enableNewlyRegisteredDomains boolean
    If true, newly registered domains detection is enabled.
    enableOffice365 boolean
    If true, Office 365 one-click configuration is enabled.
    enablePerPlexityPrompt boolean
    If true, Perplexity AI prompt visibility and logging is enabled.
    enablePoepPrompt boolean
    If true, POE prompt visibility and logging is enabled.
    enableUcaasLogmein boolean
    If true, UCaaS controls for LogMeIn are enabled.
    enableUcaasRingCentral boolean
    If true, UCaaS controls for RingCentral are enabled.
    enableUcaasTalkdesk boolean
    If true, UCaaS controls for Talkdesk are enabled.
    enableUcaasWebex boolean
    If true, UCaaS controls for Webex are enabled.
    enableUcaasZoom boolean
    If true, UCaaS controls for Zoom are enabled.
    enableWriterPrompt boolean
    If true, Writer AI prompt visibility and logging is enabled.
    enforceSafeSearch boolean
    If true, safe search is enforced for supported search engines.
    safeSearchApps string[]
    List of application names for which safe search is enforced.
    zveloDbLookupDisabled boolean
    If true, Zvelo database lookup is disabled.
    block_skype bool
    If true, Skype is blocked.
    consider_embedded_sites bool
    If true, embedded sites within web pages are considered for URL filtering.
    enable_block_override_for_non_auth_user bool
    If true, block override is enabled for non-authenticated users.
    enable_chatgpt_prompt bool
    If true, ChatGPT prompt visibility and logging is enabled.
    enable_cipa_compliance bool
    If true, CIPA (Children's Internet Protection Act) compliance mode is enabled.
    enable_claude_prompt bool
    If true, Claude AI prompt visibility and logging is enabled.
    enable_creative_commons_search_results bool
    If true, Creative Commons search results are enabled.
    enable_deep_seek_prompt bool
    If true, DeepSeek AI prompt visibility and logging is enabled.
    enable_dynamic_content_cat bool
    If true, dynamic content categorization is enabled.
    enable_gemini_prompt bool
    If true, Google Gemini prompt visibility and logging is enabled.
    enable_grammarly_prompt bool
    If true, Grammarly AI prompt visibility and logging is enabled.
    enable_grok_prompt bool
    If true, Grok AI prompt visibility and logging is enabled.
    enable_meta_prompt bool
    If true, Meta AI prompt visibility and logging is enabled.
    enable_microsoft_copilot_prompt bool
    If true, Microsoft Copilot prompt visibility and logging is enabled.
    enable_mistral_ai_prompt bool
    If true, Mistral AI prompt visibility and logging is enabled.
    enable_msft_o365 bool
    If true, Microsoft Office 365 optimization is enabled.
    enable_newly_registered_domains bool
    If true, newly registered domains detection is enabled.
    enable_office365 bool
    If true, Office 365 one-click configuration is enabled.
    enable_per_plexity_prompt bool
    If true, Perplexity AI prompt visibility and logging is enabled.
    enable_poep_prompt bool
    If true, POE prompt visibility and logging is enabled.
    enable_ucaas_logmein bool
    If true, UCaaS controls for LogMeIn are enabled.
    enable_ucaas_ring_central bool
    If true, UCaaS controls for RingCentral are enabled.
    enable_ucaas_talkdesk bool
    If true, UCaaS controls for Talkdesk are enabled.
    enable_ucaas_webex bool
    If true, UCaaS controls for Webex are enabled.
    enable_ucaas_zoom bool
    If true, UCaaS controls for Zoom are enabled.
    enable_writer_prompt bool
    If true, Writer AI prompt visibility and logging is enabled.
    enforce_safe_search bool
    If true, safe search is enforced for supported search engines.
    safe_search_apps Sequence[str]
    List of application names for which safe search is enforced.
    zvelo_db_lookup_disabled bool
    If true, Zvelo database lookup is disabled.
    blockSkype Boolean
    If true, Skype is blocked.
    considerEmbeddedSites Boolean
    If true, embedded sites within web pages are considered for URL filtering.
    enableBlockOverrideForNonAuthUser Boolean
    If true, block override is enabled for non-authenticated users.
    enableChatgptPrompt Boolean
    If true, ChatGPT prompt visibility and logging is enabled.
    enableCipaCompliance Boolean
    If true, CIPA (Children's Internet Protection Act) compliance mode is enabled.
    enableClaudePrompt Boolean
    If true, Claude AI prompt visibility and logging is enabled.
    enableCreativeCommonsSearchResults Boolean
    If true, Creative Commons search results are enabled.
    enableDeepSeekPrompt Boolean
    If true, DeepSeek AI prompt visibility and logging is enabled.
    enableDynamicContentCat Boolean
    If true, dynamic content categorization is enabled.
    enableGeminiPrompt Boolean
    If true, Google Gemini prompt visibility and logging is enabled.
    enableGrammarlyPrompt Boolean
    If true, Grammarly AI prompt visibility and logging is enabled.
    enableGrokPrompt Boolean
    If true, Grok AI prompt visibility and logging is enabled.
    enableMetaPrompt Boolean
    If true, Meta AI prompt visibility and logging is enabled.
    enableMicrosoftCopilotPrompt Boolean
    If true, Microsoft Copilot prompt visibility and logging is enabled.
    enableMistralAiPrompt Boolean
    If true, Mistral AI prompt visibility and logging is enabled.
    enableMsftO365 Boolean
    If true, Microsoft Office 365 optimization is enabled.
    enableNewlyRegisteredDomains Boolean
    If true, newly registered domains detection is enabled.
    enableOffice365 Boolean
    If true, Office 365 one-click configuration is enabled.
    enablePerPlexityPrompt Boolean
    If true, Perplexity AI prompt visibility and logging is enabled.
    enablePoepPrompt Boolean
    If true, POE prompt visibility and logging is enabled.
    enableUcaasLogmein Boolean
    If true, UCaaS controls for LogMeIn are enabled.
    enableUcaasRingCentral Boolean
    If true, UCaaS controls for RingCentral are enabled.
    enableUcaasTalkdesk Boolean
    If true, UCaaS controls for Talkdesk are enabled.
    enableUcaasWebex Boolean
    If true, UCaaS controls for Webex are enabled.
    enableUcaasZoom Boolean
    If true, UCaaS controls for Zoom are enabled.
    enableWriterPrompt Boolean
    If true, Writer AI prompt visibility and logging is enabled.
    enforceSafeSearch Boolean
    If true, safe search is enforced for supported search engines.
    safeSearchApps List<String>
    List of application names for which safe search is enforced.
    zveloDbLookupDisabled Boolean
    If true, Zvelo database lookup is disabled.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the UrlFilteringCloudAppSettings resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceId string
    The fixed resource ID of the singleton URL filtering cloud app settings.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceId string
    The fixed resource ID of the singleton URL filtering cloud app settings.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceId String
    The fixed resource ID of the singleton URL filtering cloud app settings.
    id string
    The provider-assigned unique ID for this managed resource.
    resourceId string
    The fixed resource ID of the singleton URL filtering cloud app settings.
    id str
    The provider-assigned unique ID for this managed resource.
    resource_id str
    The fixed resource ID of the singleton URL filtering cloud app settings.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceId String
    The fixed resource ID of the singleton URL filtering cloud app settings.

    Import

    The singleton URL Filtering Cloud App Settings resource can be imported using its fixed ID, e.g.

    $ pulumi import zia:index:UrlFilteringCloudAppSettings example app_setting
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    zia zscaler/pulumi-zia
    License
    zia logo
    Viewing docs for pulumi-resource-zia v1.3.8
    published on Friday, Mar 13, 2026 by Zscaler
      Try Pulumi Cloud free. Your team will thank you.