import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * UrlAccessProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single URL Access Profile object by its ID. * // * // Replace the ID with the UUID of the URL Access Profile you want to find. * const example = scm.getUrlAccessProfile({ * id: "e97c7e7e-9906-42d6-90a8-606ed5527125", * }); * export const urlAccessProfileDetails = example; * ``` */ export declare function getUrlAccessProfile(args: GetUrlAccessProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUrlAccessProfile. */ export interface GetUrlAccessProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getUrlAccessProfile. */ export interface GetUrlAccessProfileResult { readonly alerts: string[]; readonly allows: string[]; readonly blocks: string[]; readonly cloudInlineCat: boolean; readonly continues: string[]; readonly credentialEnforcement: outputs.GetUrlAccessProfileCredentialEnforcement; readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly localInlineCat: boolean; readonly logContainerPageOnly: boolean; readonly logHttpHdrReferer: boolean; readonly logHttpHdrUserAgent: boolean; readonly logHttpHdrXff: boolean; readonly mlavCategoryExceptions: string[]; readonly name: string; readonly redirects: string[]; readonly safeSearchEnforcement: boolean; readonly snippet: string; readonly tfid: string; } /** * UrlAccessProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single URL Access Profile object by its ID. * // * // Replace the ID with the UUID of the URL Access Profile you want to find. * const example = scm.getUrlAccessProfile({ * id: "e97c7e7e-9906-42d6-90a8-606ed5527125", * }); * export const urlAccessProfileDetails = example; * ``` */ export declare function getUrlAccessProfileOutput(args: GetUrlAccessProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUrlAccessProfile. */ export interface GetUrlAccessProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getUrlAccessProfile.d.ts.map