import * as pulumi from "@pulumi/pulumi"; /** * Creates a new UrlList in a given project and location. */ export declare class UrlList extends pulumi.CustomResource { /** * Get an existing UrlList 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): UrlList; /** * Returns true if the given object is an instance of UrlList. 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 UrlList; /** * Time when the security policy was created. */ readonly createTime: pulumi.Output; /** * Optional. Free-text description of the resource. */ readonly description: pulumi.Output; readonly location: pulumi.Output; /** * 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: pulumi.Output; readonly project: pulumi.Output; /** * Time when the security policy was updated. */ readonly updateTime: pulumi.Output; /** * Required. Short name of the UrlList resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "url_list". */ readonly urlListId: pulumi.Output; /** * FQDNs and URLs. */ readonly values: pulumi.Output; /** * Create a UrlList 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: UrlListArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a UrlList resource. */ export interface UrlListArgs { /** * Optional. Free-text description of the resource. */ description?: pulumi.Input; location?: pulumi.Input; /** * 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])?$). */ name?: pulumi.Input; project?: pulumi.Input; /** * Required. Short name of the UrlList resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "url_list". */ urlListId: pulumi.Input; /** * FQDNs and URLs. */ values: pulumi.Input[]>; }