import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class ZeroTrustList extends pulumi.CustomResource { /** * Get an existing ZeroTrustList 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ZeroTrustListState, opts?: pulumi.CustomResourceOptions): ZeroTrustList; /** * Returns true if the given object is an instance of ZeroTrustList. 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 ZeroTrustList; readonly accountId: pulumi.Output; readonly createdAt: pulumi.Output; /** * Provide the list description. */ readonly description: pulumi.Output; /** * Add items to the list. */ readonly items: pulumi.Output; /** * Indicate the number of items in the list. */ readonly listCount: pulumi.Output; /** * Specify the list name. */ readonly name: pulumi.Output; /** * Specify the list type. * Available values: "SERIAL", "URL", "DOMAIN", "EMAIL", "IP", "CATEGORY", "LOCATION", "DEVICE". */ readonly type: pulumi.Output; readonly updatedAt: pulumi.Output; /** * Create a ZeroTrustList 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: ZeroTrustListArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZeroTrustList resources. */ export interface ZeroTrustListState { accountId?: pulumi.Input; createdAt?: pulumi.Input; /** * Provide the list description. */ description?: pulumi.Input; /** * Add items to the list. */ items?: pulumi.Input[]>; /** * Indicate the number of items in the list. */ listCount?: pulumi.Input; /** * Specify the list name. */ name?: pulumi.Input; /** * Specify the list type. * Available values: "SERIAL", "URL", "DOMAIN", "EMAIL", "IP", "CATEGORY", "LOCATION", "DEVICE". */ type?: pulumi.Input; updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a ZeroTrustList resource. */ export interface ZeroTrustListArgs { accountId: pulumi.Input; /** * Provide the list description. */ description?: pulumi.Input; /** * Add items to the list. */ items?: pulumi.Input[]>; /** * Specify the list name. */ name?: pulumi.Input; /** * Specify the list type. * Available values: "SERIAL", "URL", "DOMAIN", "EMAIL", "IP", "CATEGORY", "LOCATION", "DEVICE". */ type: pulumi.Input; } //# sourceMappingURL=zeroTrustList.d.ts.map