import * as pulumi from "@pulumi/pulumi"; export declare class NetworkList extends pulumi.CustomResource { /** * Get an existing NetworkList 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?: NetworkListState, opts?: pulumi.CustomResourceOptions): NetworkList; /** * Returns true if the given object is an instance of NetworkList. 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 NetworkList; /** * contract ID */ readonly contractId: pulumi.Output; /** * A description of the network list */ readonly description: pulumi.Output; /** * group ID */ readonly groupId: pulumi.Output; /** * A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list */ readonly lists: pulumi.Output; /** * A string specifying the interpretation of the `list` parameter. Must be 'APPEND', 'REPLACE', or 'REMOVE' */ readonly mode: pulumi.Output; /** * The name to be assigned to the network list */ readonly name: pulumi.Output; /** * network list ID */ readonly networkListId: pulumi.Output; /** * sync point */ readonly syncPoint: pulumi.Output; /** * The type of the network list; must be either 'IP' or 'GEO' */ readonly type: pulumi.Output; /** * unique ID */ readonly uniqueid: pulumi.Output; /** * Create a NetworkList 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: NetworkListArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkList resources. */ export interface NetworkListState { /** * contract ID */ contractId?: pulumi.Input; /** * A description of the network list */ description?: pulumi.Input; /** * group ID */ groupId?: pulumi.Input; /** * A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list */ lists?: pulumi.Input[] | undefined>; /** * A string specifying the interpretation of the `list` parameter. Must be 'APPEND', 'REPLACE', or 'REMOVE' */ mode?: pulumi.Input; /** * The name to be assigned to the network list */ name?: pulumi.Input; /** * network list ID */ networkListId?: pulumi.Input; /** * sync point */ syncPoint?: pulumi.Input; /** * The type of the network list; must be either 'IP' or 'GEO' */ type?: pulumi.Input; /** * unique ID */ uniqueid?: pulumi.Input; } /** * The set of arguments for constructing a NetworkList resource. */ export interface NetworkListArgs { /** * contract ID */ contractId?: pulumi.Input; /** * A description of the network list */ description: pulumi.Input; /** * group ID */ groupId?: pulumi.Input; /** * A list of IP addresses or locations to be included in the list, added to an existing list, or removed from an existing list */ lists?: pulumi.Input[] | undefined>; /** * A string specifying the interpretation of the `list` parameter. Must be 'APPEND', 'REPLACE', or 'REMOVE' */ mode: pulumi.Input; /** * The name to be assigned to the network list */ name?: pulumi.Input; /** * The type of the network list; must be either 'IP' or 'GEO' */ type: pulumi.Input; } //# sourceMappingURL=networkList.d.ts.map