import * as pulumi from "@pulumi/pulumi"; /** * The zia_auth_settings_urls resource manages the URLs that are exempted from user authentication in the Zscaler Internet Access (ZIA) cloud service. This singleton resource allows you to define a list of URLs that bypass the ZIA authentication process. * * For more information, see the [ZIA User Authentication documentation](https://help.zscaler.com/zia/authentication-exemptions). * * ## Example Usage * ### Basic Authentication Settings URLs * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.AuthSettingsUrls("example", { * urls: [ * ".example.com", * ".internal.corp.com", * ], * }); * ``` * * ## Import * * This is a singleton resource and does not support traditional import. It is automatically managed by the provider. */ export declare class AuthSettingsUrls extends pulumi.CustomResource { /** * Get an existing AuthSettingsUrls resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): AuthSettingsUrls; /** * Returns true if the given object is an instance of AuthSettingsUrls. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AuthSettingsUrls; /** * The internal resource identifier for the authentication settings URLs. */ readonly resourceId: pulumi.Output; /** * List of URLs that are exempted from user authentication. */ readonly urls: pulumi.Output; /** * Create a AuthSettingsUrls resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: AuthSettingsUrlsArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AuthSettingsUrls resource. */ export interface AuthSettingsUrlsArgs { /** * List of URLs that are exempted from user authentication. */ urls?: pulumi.Input[] | undefined>; } //# sourceMappingURL=authSettingsUrls.d.ts.map