import * as pulumi from "@pulumi/pulumi"; export declare class AppleSiliconServer extends pulumi.CustomResource { /** * Get an existing AppleSiliconServer 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?: AppleSiliconServerState, opts?: pulumi.CustomResourceOptions): AppleSiliconServer; /** * Returns true if the given object is an instance of AppleSiliconServer. 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 AppleSiliconServer; /** * The date and time of the creation of the server */ readonly createdAt: pulumi.Output; /** * The minimal date and time on which you can delete this server due to Apple licence */ readonly deletableAt: pulumi.Output; /** * IPv4 address of the server */ readonly ip: pulumi.Output; /** * Name of the server */ readonly name: pulumi.Output; /** * The organizationId you want to attach the resource to */ readonly organizationId: pulumi.Output; /** * The projectId you want to attach the resource to */ readonly projectId: pulumi.Output; /** * The state of the server */ readonly state: pulumi.Output; /** * Type of the server */ readonly type: pulumi.Output; /** * The date and time of the last update of the server */ readonly updatedAt: pulumi.Output; /** * VNC url use to connect remotely to the desktop GUI */ readonly vncUrl: pulumi.Output; /** * The zone you want to attach the resource to */ readonly zone: pulumi.Output; /** * Create a AppleSiliconServer 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: AppleSiliconServerArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AppleSiliconServer resources. */ export interface AppleSiliconServerState { /** * The date and time of the creation of the server */ createdAt?: pulumi.Input; /** * The minimal date and time on which you can delete this server due to Apple licence */ deletableAt?: pulumi.Input; /** * IPv4 address of the server */ ip?: pulumi.Input; /** * Name of the server */ name?: pulumi.Input; /** * The organizationId you want to attach the resource to */ organizationId?: pulumi.Input; /** * The projectId you want to attach the resource to */ projectId?: pulumi.Input; /** * The state of the server */ state?: pulumi.Input; /** * Type of the server */ type?: pulumi.Input; /** * The date and time of the last update of the server */ updatedAt?: pulumi.Input; /** * VNC url use to connect remotely to the desktop GUI */ vncUrl?: pulumi.Input; /** * The zone you want to attach the resource to */ zone?: pulumi.Input; } /** * The set of arguments for constructing a AppleSiliconServer resource. */ export interface AppleSiliconServerArgs { /** * Name of the server */ name?: pulumi.Input; /** * The projectId you want to attach the resource to */ projectId?: pulumi.Input; /** * Type of the server */ type: pulumi.Input; /** * The zone you want to attach the resource to */ zone?: pulumi.Input; }