import * as pulumi from "@pulumi/pulumi"; /** * Gets details of a single UrlList. */ export declare function getUrlList(args: GetUrlListArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetUrlListArgs { location: string; project?: string; urlListId: string; } export interface GetUrlListResult { /** * Time when the security policy was created. */ readonly createTime: string; /** * Optional. Free-text description of the resource. */ readonly description: string; /** * Name of the resource provided by the user. Name is of the form projects/{project}/locations/{location}/urlLists/{url_list} url_list should match the pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$). */ readonly name: string; /** * Time when the security policy was updated. */ readonly updateTime: string; /** * FQDNs and URLs. */ readonly values: string[]; } /** * Gets details of a single UrlList. */ export declare function getUrlListOutput(args: GetUrlListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetUrlListOutputArgs { location: pulumi.Input; project?: pulumi.Input; urlListId: pulumi.Input; }