import * as pulumi from "@pulumi/pulumi"; export declare class ServerIp extends pulumi.CustomResource { /** * Get an existing ServerIp 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?: ServerIpState, opts?: pulumi.CustomResourceOptions): ServerIp; /** * Returns true if the given object is an instance of ServerIp. 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 ServerIp; /** * Address of created IP */ readonly ip: pulumi.Output; /** * Flag that shows IP is main or not (always `false` for now) */ readonly isMain: pulumi.Output; /** * PTR for created IP. Must be valid domain name without trailing dot */ readonly ptr: pulumi.Output; readonly serverIpId: pulumi.Output; /** * Server ID for which IP should be created */ readonly sourceServerId: pulumi.Output; /** * Type for created IP (`ipv4`, `ipv6`) */ readonly type: pulumi.Output; /** * Create a ServerIp 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: ServerIpArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServerIp resources. */ export interface ServerIpState { /** * Address of created IP */ ip?: pulumi.Input; /** * Flag that shows IP is main or not (always `false` for now) */ isMain?: pulumi.Input; /** * PTR for created IP. Must be valid domain name without trailing dot */ ptr?: pulumi.Input; serverIpId?: pulumi.Input; /** * Server ID for which IP should be created */ sourceServerId?: pulumi.Input; /** * Type for created IP (`ipv4`, `ipv6`) */ type?: pulumi.Input; } /** * The set of arguments for constructing a ServerIp resource. */ export interface ServerIpArgs { /** * PTR for created IP. Must be valid domain name without trailing dot */ ptr?: pulumi.Input; serverIpId?: pulumi.Input; /** * Server ID for which IP should be created */ sourceServerId: pulumi.Input; /** * Type for created IP (`ipv4`, `ipv6`) */ type: pulumi.Input; }