UNPKG

@bdzscaler/pulumi-zia

Version:

A Pulumi package for creating and managing zia cloud resources.

31 lines (30 loc) 1.45 kB
import * as pulumi from "@pulumi/pulumi"; /** * * [Official documentation](https://help.zscaler.com/zia/security-policy-settings#/security-put) * * [API documentation](https://help.zscaler.com/zia/security-policy-settings#/security-put) * * Use the **zia_security_settings** data source to get a list of URLs that were added to the allow and denylist under the Advanced Threat Protection policy in the Zscaler Internet Access cloud or via the API. * * ## Example Usage */ export declare function getSecuritySettings(opts?: pulumi.InvokeOptions): Promise<GetSecuritySettingsResult>; /** * A collection of values returned by getSecuritySettings. */ export interface GetSecuritySettingsResult { readonly blacklistUrls: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly whitelistUrls: string[]; } /** * * [Official documentation](https://help.zscaler.com/zia/security-policy-settings#/security-put) * * [API documentation](https://help.zscaler.com/zia/security-policy-settings#/security-put) * * Use the **zia_security_settings** data source to get a list of URLs that were added to the allow and denylist under the Advanced Threat Protection policy in the Zscaler Internet Access cloud or via the API. * * ## Example Usage */ export declare function getSecuritySettingsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecuritySettingsResult>;