import * as pulumi from "@pulumi/pulumi"; export declare class SystemWccp extends pulumi.CustomResource { /** * Get an existing SystemWccp 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?: SystemWccpState, opts?: pulumi.CustomResourceOptions): SystemWccp; /** * Returns true if the given object is an instance of SystemWccp. 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 SystemWccp; readonly assignmentBucketFormat: pulumi.Output; readonly assignmentDstaddrMask: pulumi.Output; readonly assignmentMethod: pulumi.Output; readonly assignmentSrcaddrMask: pulumi.Output; readonly assignmentWeight: pulumi.Output; readonly authentication: pulumi.Output; readonly cacheEngineMethod: pulumi.Output; readonly cacheId: pulumi.Output; readonly forwardMethod: pulumi.Output; readonly groupAddress: pulumi.Output; readonly password: pulumi.Output; readonly ports: pulumi.Output; readonly portsDefined: pulumi.Output; readonly primaryHash: pulumi.Output; readonly priority: pulumi.Output; readonly protocol: pulumi.Output; readonly returnMethod: pulumi.Output; readonly routerId: pulumi.Output; readonly routerList: pulumi.Output; readonly serverList: pulumi.Output; readonly serverType: pulumi.Output; readonly serviceId: pulumi.Output; readonly serviceType: pulumi.Output; readonly vdomparam: pulumi.Output; /** * Create a SystemWccp 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?: SystemWccpArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SystemWccp resources. */ export interface SystemWccpState { assignmentBucketFormat?: pulumi.Input; assignmentDstaddrMask?: pulumi.Input; assignmentMethod?: pulumi.Input; assignmentSrcaddrMask?: pulumi.Input; assignmentWeight?: pulumi.Input; authentication?: pulumi.Input; cacheEngineMethod?: pulumi.Input; cacheId?: pulumi.Input; forwardMethod?: pulumi.Input; groupAddress?: pulumi.Input; password?: pulumi.Input; ports?: pulumi.Input; portsDefined?: pulumi.Input; primaryHash?: pulumi.Input; priority?: pulumi.Input; protocol?: pulumi.Input; returnMethod?: pulumi.Input; routerId?: pulumi.Input; routerList?: pulumi.Input; serverList?: pulumi.Input; serverType?: pulumi.Input; serviceId?: pulumi.Input; serviceType?: pulumi.Input; vdomparam?: pulumi.Input; } /** * The set of arguments for constructing a SystemWccp resource. */ export interface SystemWccpArgs { assignmentBucketFormat?: pulumi.Input; assignmentDstaddrMask?: pulumi.Input; assignmentMethod?: pulumi.Input; assignmentSrcaddrMask?: pulumi.Input; assignmentWeight?: pulumi.Input; authentication?: pulumi.Input; cacheEngineMethod?: pulumi.Input; cacheId?: pulumi.Input; forwardMethod?: pulumi.Input; groupAddress?: pulumi.Input; password?: pulumi.Input; ports?: pulumi.Input; portsDefined?: pulumi.Input; primaryHash?: pulumi.Input; priority?: pulumi.Input; protocol?: pulumi.Input; returnMethod?: pulumi.Input; routerId?: pulumi.Input; routerList?: pulumi.Input; serverList?: pulumi.Input; serverType?: pulumi.Input; serviceId?: pulumi.Input; serviceType?: pulumi.Input; vdomparam?: pulumi.Input; }