import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class SystemIke extends pulumi.CustomResource { /** * Get an existing SystemIke 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?: SystemIkeState, opts?: pulumi.CustomResourceOptions): SystemIke; /** * Returns true if the given object is an instance of SystemIke. 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 SystemIke; readonly dhGroup1: pulumi.Output; readonly dhGroup14: pulumi.Output; readonly dhGroup15: pulumi.Output; readonly dhGroup16: pulumi.Output; readonly dhGroup17: pulumi.Output; readonly dhGroup18: pulumi.Output; readonly dhGroup19: pulumi.Output; readonly dhGroup2: pulumi.Output; readonly dhGroup20: pulumi.Output; readonly dhGroup21: pulumi.Output; readonly dhGroup27: pulumi.Output; readonly dhGroup28: pulumi.Output; readonly dhGroup29: pulumi.Output; readonly dhGroup30: pulumi.Output; readonly dhGroup31: pulumi.Output; readonly dhGroup32: pulumi.Output; readonly dhGroup5: pulumi.Output; readonly dhKeypairCache: pulumi.Output; readonly dhKeypairCount: pulumi.Output; readonly dhKeypairThrottle: pulumi.Output; readonly dhMode: pulumi.Output; readonly dhMultiprocess: pulumi.Output; readonly dhWorkerCount: pulumi.Output; readonly embryonicLimit: pulumi.Output; readonly getAllTables: pulumi.Output; readonly vdomparam: pulumi.Output; /** * Create a SystemIke 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?: SystemIkeArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SystemIke resources. */ export interface SystemIkeState { dhGroup1?: pulumi.Input; dhGroup14?: pulumi.Input; dhGroup15?: pulumi.Input; dhGroup16?: pulumi.Input; dhGroup17?: pulumi.Input; dhGroup18?: pulumi.Input; dhGroup19?: pulumi.Input; dhGroup2?: pulumi.Input; dhGroup20?: pulumi.Input; dhGroup21?: pulumi.Input; dhGroup27?: pulumi.Input; dhGroup28?: pulumi.Input; dhGroup29?: pulumi.Input; dhGroup30?: pulumi.Input; dhGroup31?: pulumi.Input; dhGroup32?: pulumi.Input; dhGroup5?: pulumi.Input; dhKeypairCache?: pulumi.Input; dhKeypairCount?: pulumi.Input; dhKeypairThrottle?: pulumi.Input; dhMode?: pulumi.Input; dhMultiprocess?: pulumi.Input; dhWorkerCount?: pulumi.Input; embryonicLimit?: pulumi.Input; getAllTables?: pulumi.Input; vdomparam?: pulumi.Input; } /** * The set of arguments for constructing a SystemIke resource. */ export interface SystemIkeArgs { dhGroup1?: pulumi.Input; dhGroup14?: pulumi.Input; dhGroup15?: pulumi.Input; dhGroup16?: pulumi.Input; dhGroup17?: pulumi.Input; dhGroup18?: pulumi.Input; dhGroup19?: pulumi.Input; dhGroup2?: pulumi.Input; dhGroup20?: pulumi.Input; dhGroup21?: pulumi.Input; dhGroup27?: pulumi.Input; dhGroup28?: pulumi.Input; dhGroup29?: pulumi.Input; dhGroup30?: pulumi.Input; dhGroup31?: pulumi.Input; dhGroup32?: pulumi.Input; dhGroup5?: pulumi.Input; dhKeypairCache?: pulumi.Input; dhKeypairCount?: pulumi.Input; dhKeypairThrottle?: pulumi.Input; dhMode?: pulumi.Input; dhMultiprocess?: pulumi.Input; dhWorkerCount?: pulumi.Input; embryonicLimit?: pulumi.Input; getAllTables?: pulumi.Input; vdomparam?: pulumi.Input; }