1. Packages
  2. Glesys Provider
  3. API Docs
  4. Server
glesys 0.16.0 published on Tuesday, Nov 18, 2025 by glesys
glesys logo
glesys 0.16.0 published on Tuesday, Nov 18, 2025 by glesys

    Create a new Glesys virtual server.

    Import

    glesys_server Import

    $ pulumi import glesys:index/server:Server example kvm123456
    

    Create Server Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Server(name: string, args: ServerArgs, opts?: CustomResourceOptions);
    @overload
    def Server(resource_name: str,
               args: ServerArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Server(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               datacenter: Optional[str] = None,
               bandwidth: Optional[float] = None,
               storage: Optional[float] = None,
               memory: Optional[float] = None,
               hostname: Optional[str] = None,
               cpu: Optional[float] = None,
               ipv6_address: Optional[str] = None,
               platform: Optional[str] = None,
               cloudconfigparams: Optional[Mapping[str, str]] = None,
               ipv4_address: Optional[str] = None,
               backups_schedules: Optional[Sequence[ServerBackupsScheduleArgs]] = None,
               cloudconfig: Optional[str] = None,
               password: Optional[str] = None,
               description: Optional[str] = None,
               primary_networkadapter_network: Optional[str] = None,
               publickey: Optional[str] = None,
               server_id: Optional[str] = None,
               campaigncode: Optional[str] = None,
               template: Optional[str] = None,
               timeouts: Optional[ServerTimeoutsArgs] = None,
               users: Optional[Sequence[ServerUserArgs]] = None)
    func NewServer(ctx *Context, name string, args ServerArgs, opts ...ResourceOption) (*Server, error)
    public Server(string name, ServerArgs args, CustomResourceOptions? opts = null)
    public Server(String name, ServerArgs args)
    public Server(String name, ServerArgs args, CustomResourceOptions options)
    
    type: glesys:Server
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ServerArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var serverResource = new Glesys.Server("serverResource", new()
    {
        Datacenter = "string",
        Bandwidth = 0,
        Storage = 0,
        Memory = 0,
        Hostname = "string",
        Cpu = 0,
        Ipv6Address = "string",
        Platform = "string",
        Cloudconfigparams = 
        {
            { "string", "string" },
        },
        Ipv4Address = "string",
        BackupsSchedules = new[]
        {
            new Glesys.Inputs.ServerBackupsScheduleArgs
            {
                Frequency = "string",
                Retention = 0,
            },
        },
        Cloudconfig = "string",
        Password = "string",
        Description = "string",
        PrimaryNetworkadapterNetwork = "string",
        Publickey = "string",
        ServerId = "string",
        Campaigncode = "string",
        Template = "string",
        Timeouts = new Glesys.Inputs.ServerTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
        Users = new[]
        {
            new Glesys.Inputs.ServerUserArgs
            {
                Publickeys = new[]
                {
                    "string",
                },
                Username = "string",
                Password = "string",
            },
        },
    });
    
    example, err := glesys.NewServer(ctx, "serverResource", &glesys.ServerArgs{
    	Datacenter:  pulumi.String("string"),
    	Bandwidth:   pulumi.Float64(0),
    	Storage:     pulumi.Float64(0),
    	Memory:      pulumi.Float64(0),
    	Hostname:    pulumi.String("string"),
    	Cpu:         pulumi.Float64(0),
    	Ipv6Address: pulumi.String("string"),
    	Platform:    pulumi.String("string"),
    	Cloudconfigparams: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Ipv4Address: pulumi.String("string"),
    	BackupsSchedules: glesys.ServerBackupsScheduleArray{
    		&glesys.ServerBackupsScheduleArgs{
    			Frequency: pulumi.String("string"),
    			Retention: pulumi.Float64(0),
    		},
    	},
    	Cloudconfig:                  pulumi.String("string"),
    	Password:                     pulumi.String("string"),
    	Description:                  pulumi.String("string"),
    	PrimaryNetworkadapterNetwork: pulumi.String("string"),
    	Publickey:                    pulumi.String("string"),
    	ServerId:                     pulumi.String("string"),
    	Campaigncode:                 pulumi.String("string"),
    	Template:                     pulumi.String("string"),
    	Timeouts: &glesys.ServerTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    	Users: glesys.ServerUserArray{
    		&glesys.ServerUserArgs{
    			Publickeys: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Username: pulumi.String("string"),
    			Password: pulumi.String("string"),
    		},
    	},
    })
    
    var serverResource = new Server("serverResource", ServerArgs.builder()
        .datacenter("string")
        .bandwidth(0.0)
        .storage(0.0)
        .memory(0.0)
        .hostname("string")
        .cpu(0.0)
        .ipv6Address("string")
        .platform("string")
        .cloudconfigparams(Map.of("string", "string"))
        .ipv4Address("string")
        .backupsSchedules(ServerBackupsScheduleArgs.builder()
            .frequency("string")
            .retention(0.0)
            .build())
        .cloudconfig("string")
        .password("string")
        .description("string")
        .primaryNetworkadapterNetwork("string")
        .publickey("string")
        .serverId("string")
        .campaigncode("string")
        .template("string")
        .timeouts(ServerTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .users(ServerUserArgs.builder()
            .publickeys("string")
            .username("string")
            .password("string")
            .build())
        .build());
    
    server_resource = glesys.Server("serverResource",
        datacenter="string",
        bandwidth=0,
        storage=0,
        memory=0,
        hostname="string",
        cpu=0,
        ipv6_address="string",
        platform="string",
        cloudconfigparams={
            "string": "string",
        },
        ipv4_address="string",
        backups_schedules=[{
            "frequency": "string",
            "retention": 0,
        }],
        cloudconfig="string",
        password="string",
        description="string",
        primary_networkadapter_network="string",
        publickey="string",
        server_id="string",
        campaigncode="string",
        template="string",
        timeouts={
            "create": "string",
            "delete": "string",
        },
        users=[{
            "publickeys": ["string"],
            "username": "string",
            "password": "string",
        }])
    
    const serverResource = new glesys.Server("serverResource", {
        datacenter: "string",
        bandwidth: 0,
        storage: 0,
        memory: 0,
        hostname: "string",
        cpu: 0,
        ipv6Address: "string",
        platform: "string",
        cloudconfigparams: {
            string: "string",
        },
        ipv4Address: "string",
        backupsSchedules: [{
            frequency: "string",
            retention: 0,
        }],
        cloudconfig: "string",
        password: "string",
        description: "string",
        primaryNetworkadapterNetwork: "string",
        publickey: "string",
        serverId: "string",
        campaigncode: "string",
        template: "string",
        timeouts: {
            create: "string",
            "delete": "string",
        },
        users: [{
            publickeys: ["string"],
            username: "string",
            password: "string",
        }],
    });
    
    type: glesys:Server
    properties:
        backupsSchedules:
            - frequency: string
              retention: 0
        bandwidth: 0
        campaigncode: string
        cloudconfig: string
        cloudconfigparams:
            string: string
        cpu: 0
        datacenter: string
        description: string
        hostname: string
        ipv4Address: string
        ipv6Address: string
        memory: 0
        password: string
        platform: string
        primaryNetworkadapterNetwork: string
        publickey: string
        serverId: string
        storage: 0
        template: string
        timeouts:
            create: string
            delete: string
        users:
            - password: string
              publickeys:
                - string
              username: string
    

    Server Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Server resource accepts the following input properties:

    Bandwidth double
    Server network adapter bandwidth
    Cpu double
    Server CPU cores count
    Datacenter string
    Server datacenter placement
    Hostname string
    Server hostname
    Memory double
    Server RAM setting
    Storage double
    Server disk space
    BackupsSchedules List<ServerBackupsSchedule>
    KVM Server backup schedule definition.
    Campaigncode string
    Campaigncode used during creation for possible discount
    Cloudconfig string
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    Cloudconfigparams Dictionary<string, string>
    Description string
    Server description
    Ipv4Address string
    Server IPv4 address, set none to disable IP allocation
    Ipv6Address string
    Server IPv6 address, set none to disable IP allocation
    Password string
    Server root password, VMware only
    Platform string
    Server virtualisation platform, KVM or VMware
    PrimaryNetworkadapterNetwork string
    (VMware) Set the network for the primary network adapter.
    Publickey string
    ServerId string
    The ID of this resource.
    Template string
    Server OS template
    Timeouts ServerTimeouts
    Users List<ServerUser>
    Bandwidth float64
    Server network adapter bandwidth
    Cpu float64
    Server CPU cores count
    Datacenter string
    Server datacenter placement
    Hostname string
    Server hostname
    Memory float64
    Server RAM setting
    Storage float64
    Server disk space
    BackupsSchedules []ServerBackupsScheduleArgs
    KVM Server backup schedule definition.
    Campaigncode string
    Campaigncode used during creation for possible discount
    Cloudconfig string
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    Cloudconfigparams map[string]string
    Description string
    Server description
    Ipv4Address string
    Server IPv4 address, set none to disable IP allocation
    Ipv6Address string
    Server IPv6 address, set none to disable IP allocation
    Password string
    Server root password, VMware only
    Platform string
    Server virtualisation platform, KVM or VMware
    PrimaryNetworkadapterNetwork string
    (VMware) Set the network for the primary network adapter.
    Publickey string
    ServerId string
    The ID of this resource.
    Template string
    Server OS template
    Timeouts ServerTimeoutsArgs
    Users []ServerUserArgs
    bandwidth Double
    Server network adapter bandwidth
    cpu Double
    Server CPU cores count
    datacenter String
    Server datacenter placement
    hostname String
    Server hostname
    memory Double
    Server RAM setting
    storage Double
    Server disk space
    backupsSchedules List<ServerBackupsSchedule>
    KVM Server backup schedule definition.
    campaigncode String
    Campaigncode used during creation for possible discount
    cloudconfig String
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    cloudconfigparams Map<String,String>
    description String
    Server description
    ipv4Address String
    Server IPv4 address, set none to disable IP allocation
    ipv6Address String
    Server IPv6 address, set none to disable IP allocation
    password String
    Server root password, VMware only
    platform String
    Server virtualisation platform, KVM or VMware
    primaryNetworkadapterNetwork String
    (VMware) Set the network for the primary network adapter.
    publickey String
    serverId String
    The ID of this resource.
    template String
    Server OS template
    timeouts ServerTimeouts
    users List<ServerUser>
    bandwidth number
    Server network adapter bandwidth
    cpu number
    Server CPU cores count
    datacenter string
    Server datacenter placement
    hostname string
    Server hostname
    memory number
    Server RAM setting
    storage number
    Server disk space
    backupsSchedules ServerBackupsSchedule[]
    KVM Server backup schedule definition.
    campaigncode string
    Campaigncode used during creation for possible discount
    cloudconfig string
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    cloudconfigparams {[key: string]: string}
    description string
    Server description
    ipv4Address string
    Server IPv4 address, set none to disable IP allocation
    ipv6Address string
    Server IPv6 address, set none to disable IP allocation
    password string
    Server root password, VMware only
    platform string
    Server virtualisation platform, KVM or VMware
    primaryNetworkadapterNetwork string
    (VMware) Set the network for the primary network adapter.
    publickey string
    serverId string
    The ID of this resource.
    template string
    Server OS template
    timeouts ServerTimeouts
    users ServerUser[]
    bandwidth float
    Server network adapter bandwidth
    cpu float
    Server CPU cores count
    datacenter str
    Server datacenter placement
    hostname str
    Server hostname
    memory float
    Server RAM setting
    storage float
    Server disk space
    backups_schedules Sequence[ServerBackupsScheduleArgs]
    KVM Server backup schedule definition.
    campaigncode str
    Campaigncode used during creation for possible discount
    cloudconfig str
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    cloudconfigparams Mapping[str, str]
    description str
    Server description
    ipv4_address str
    Server IPv4 address, set none to disable IP allocation
    ipv6_address str
    Server IPv6 address, set none to disable IP allocation
    password str
    Server root password, VMware only
    platform str
    Server virtualisation platform, KVM or VMware
    primary_networkadapter_network str
    (VMware) Set the network for the primary network adapter.
    publickey str
    server_id str
    The ID of this resource.
    template str
    Server OS template
    timeouts ServerTimeoutsArgs
    users Sequence[ServerUserArgs]
    bandwidth Number
    Server network adapter bandwidth
    cpu Number
    Server CPU cores count
    datacenter String
    Server datacenter placement
    hostname String
    Server hostname
    memory Number
    Server RAM setting
    storage Number
    Server disk space
    backupsSchedules List<Property Map>
    KVM Server backup schedule definition.
    campaigncode String
    Campaigncode used during creation for possible discount
    cloudconfig String
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    cloudconfigparams Map<String>
    description String
    Server description
    ipv4Address String
    Server IPv4 address, set none to disable IP allocation
    ipv6Address String
    Server IPv6 address, set none to disable IP allocation
    password String
    Server root password, VMware only
    platform String
    Server virtualisation platform, KVM or VMware
    primaryNetworkadapterNetwork String
    (VMware) Set the network for the primary network adapter.
    publickey String
    serverId String
    The ID of this resource.
    template String
    Server OS template
    timeouts Property Map
    users List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Server resource produces the following output properties:

    ExtraDisks List<string>
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    Id string
    The provider-assigned unique ID for this managed resource.
    Islocked bool
    Server locked state
    Isrunning bool
    Server running state
    NetworkAdapters List<ServerNetworkAdapter>
    Network adapters associated with the server. glesys.Networkadapter
    ExtraDisks []string
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    Id string
    The provider-assigned unique ID for this managed resource.
    Islocked bool
    Server locked state
    Isrunning bool
    Server running state
    NetworkAdapters []ServerNetworkAdapter
    Network adapters associated with the server. glesys.Networkadapter
    extraDisks List<String>
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    id String
    The provider-assigned unique ID for this managed resource.
    islocked Boolean
    Server locked state
    isrunning Boolean
    Server running state
    networkAdapters List<ServerNetworkAdapter>
    Network adapters associated with the server. glesys.Networkadapter
    extraDisks string[]
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    id string
    The provider-assigned unique ID for this managed resource.
    islocked boolean
    Server locked state
    isrunning boolean
    Server running state
    networkAdapters ServerNetworkAdapter[]
    Network adapters associated with the server. glesys.Networkadapter
    extra_disks Sequence[str]
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    id str
    The provider-assigned unique ID for this managed resource.
    islocked bool
    Server locked state
    isrunning bool
    Server running state
    network_adapters Sequence[ServerNetworkAdapter]
    Network adapters associated with the server. glesys.Networkadapter
    extraDisks List<String>
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    id String
    The provider-assigned unique ID for this managed resource.
    islocked Boolean
    Server locked state
    isrunning Boolean
    Server running state
    networkAdapters List<Property Map>
    Network adapters associated with the server. glesys.Networkadapter

    Look up Existing Server Resource

    Get an existing Server resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ServerState, opts?: CustomResourceOptions): Server
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backups_schedules: Optional[Sequence[ServerBackupsScheduleArgs]] = None,
            bandwidth: Optional[float] = None,
            campaigncode: Optional[str] = None,
            cloudconfig: Optional[str] = None,
            cloudconfigparams: Optional[Mapping[str, str]] = None,
            cpu: Optional[float] = None,
            datacenter: Optional[str] = None,
            description: Optional[str] = None,
            extra_disks: Optional[Sequence[str]] = None,
            hostname: Optional[str] = None,
            ipv4_address: Optional[str] = None,
            ipv6_address: Optional[str] = None,
            islocked: Optional[bool] = None,
            isrunning: Optional[bool] = None,
            memory: Optional[float] = None,
            network_adapters: Optional[Sequence[ServerNetworkAdapterArgs]] = None,
            password: Optional[str] = None,
            platform: Optional[str] = None,
            primary_networkadapter_network: Optional[str] = None,
            publickey: Optional[str] = None,
            server_id: Optional[str] = None,
            storage: Optional[float] = None,
            template: Optional[str] = None,
            timeouts: Optional[ServerTimeoutsArgs] = None,
            users: Optional[Sequence[ServerUserArgs]] = None) -> Server
    func GetServer(ctx *Context, name string, id IDInput, state *ServerState, opts ...ResourceOption) (*Server, error)
    public static Server Get(string name, Input<string> id, ServerState? state, CustomResourceOptions? opts = null)
    public static Server get(String name, Output<String> id, ServerState state, CustomResourceOptions options)
    resources:  _:    type: glesys:Server    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BackupsSchedules List<ServerBackupsSchedule>
    KVM Server backup schedule definition.
    Bandwidth double
    Server network adapter bandwidth
    Campaigncode string
    Campaigncode used during creation for possible discount
    Cloudconfig string
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    Cloudconfigparams Dictionary<string, string>
    Cpu double
    Server CPU cores count
    Datacenter string
    Server datacenter placement
    Description string
    Server description
    ExtraDisks List<string>
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    Hostname string
    Server hostname
    Ipv4Address string
    Server IPv4 address, set none to disable IP allocation
    Ipv6Address string
    Server IPv6 address, set none to disable IP allocation
    Islocked bool
    Server locked state
    Isrunning bool
    Server running state
    Memory double
    Server RAM setting
    NetworkAdapters List<ServerNetworkAdapter>
    Network adapters associated with the server. glesys.Networkadapter
    Password string
    Server root password, VMware only
    Platform string
    Server virtualisation platform, KVM or VMware
    PrimaryNetworkadapterNetwork string
    (VMware) Set the network for the primary network adapter.
    Publickey string
    ServerId string
    The ID of this resource.
    Storage double
    Server disk space
    Template string
    Server OS template
    Timeouts ServerTimeouts
    Users List<ServerUser>
    BackupsSchedules []ServerBackupsScheduleArgs
    KVM Server backup schedule definition.
    Bandwidth float64
    Server network adapter bandwidth
    Campaigncode string
    Campaigncode used during creation for possible discount
    Cloudconfig string
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    Cloudconfigparams map[string]string
    Cpu float64
    Server CPU cores count
    Datacenter string
    Server datacenter placement
    Description string
    Server description
    ExtraDisks []string
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    Hostname string
    Server hostname
    Ipv4Address string
    Server IPv4 address, set none to disable IP allocation
    Ipv6Address string
    Server IPv6 address, set none to disable IP allocation
    Islocked bool
    Server locked state
    Isrunning bool
    Server running state
    Memory float64
    Server RAM setting
    NetworkAdapters []ServerNetworkAdapterArgs
    Network adapters associated with the server. glesys.Networkadapter
    Password string
    Server root password, VMware only
    Platform string
    Server virtualisation platform, KVM or VMware
    PrimaryNetworkadapterNetwork string
    (VMware) Set the network for the primary network adapter.
    Publickey string
    ServerId string
    The ID of this resource.
    Storage float64
    Server disk space
    Template string
    Server OS template
    Timeouts ServerTimeoutsArgs
    Users []ServerUserArgs
    backupsSchedules List<ServerBackupsSchedule>
    KVM Server backup schedule definition.
    bandwidth Double
    Server network adapter bandwidth
    campaigncode String
    Campaigncode used during creation for possible discount
    cloudconfig String
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    cloudconfigparams Map<String,String>
    cpu Double
    Server CPU cores count
    datacenter String
    Server datacenter placement
    description String
    Server description
    extraDisks List<String>
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    hostname String
    Server hostname
    ipv4Address String
    Server IPv4 address, set none to disable IP allocation
    ipv6Address String
    Server IPv6 address, set none to disable IP allocation
    islocked Boolean
    Server locked state
    isrunning Boolean
    Server running state
    memory Double
    Server RAM setting
    networkAdapters List<ServerNetworkAdapter>
    Network adapters associated with the server. glesys.Networkadapter
    password String
    Server root password, VMware only
    platform String
    Server virtualisation platform, KVM or VMware
    primaryNetworkadapterNetwork String
    (VMware) Set the network for the primary network adapter.
    publickey String
    serverId String
    The ID of this resource.
    storage Double
    Server disk space
    template String
    Server OS template
    timeouts ServerTimeouts
    users List<ServerUser>
    backupsSchedules ServerBackupsSchedule[]
    KVM Server backup schedule definition.
    bandwidth number
    Server network adapter bandwidth
    campaigncode string
    Campaigncode used during creation for possible discount
    cloudconfig string
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    cloudconfigparams {[key: string]: string}
    cpu number
    Server CPU cores count
    datacenter string
    Server datacenter placement
    description string
    Server description
    extraDisks string[]
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    hostname string
    Server hostname
    ipv4Address string
    Server IPv4 address, set none to disable IP allocation
    ipv6Address string
    Server IPv6 address, set none to disable IP allocation
    islocked boolean
    Server locked state
    isrunning boolean
    Server running state
    memory number
    Server RAM setting
    networkAdapters ServerNetworkAdapter[]
    Network adapters associated with the server. glesys.Networkadapter
    password string
    Server root password, VMware only
    platform string
    Server virtualisation platform, KVM or VMware
    primaryNetworkadapterNetwork string
    (VMware) Set the network for the primary network adapter.
    publickey string
    serverId string
    The ID of this resource.
    storage number
    Server disk space
    template string
    Server OS template
    timeouts ServerTimeouts
    users ServerUser[]
    backups_schedules Sequence[ServerBackupsScheduleArgs]
    KVM Server backup schedule definition.
    bandwidth float
    Server network adapter bandwidth
    campaigncode str
    Campaigncode used during creation for possible discount
    cloudconfig str
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    cloudconfigparams Mapping[str, str]
    cpu float
    Server CPU cores count
    datacenter str
    Server datacenter placement
    description str
    Server description
    extra_disks Sequence[str]
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    hostname str
    Server hostname
    ipv4_address str
    Server IPv4 address, set none to disable IP allocation
    ipv6_address str
    Server IPv6 address, set none to disable IP allocation
    islocked bool
    Server locked state
    isrunning bool
    Server running state
    memory float
    Server RAM setting
    network_adapters Sequence[ServerNetworkAdapterArgs]
    Network adapters associated with the server. glesys.Networkadapter
    password str
    Server root password, VMware only
    platform str
    Server virtualisation platform, KVM or VMware
    primary_networkadapter_network str
    (VMware) Set the network for the primary network adapter.
    publickey str
    server_id str
    The ID of this resource.
    storage float
    Server disk space
    template str
    Server OS template
    timeouts ServerTimeoutsArgs
    users Sequence[ServerUserArgs]
    backupsSchedules List<Property Map>
    KVM Server backup schedule definition.
    bandwidth Number
    Server network adapter bandwidth
    campaigncode String
    Campaigncode used during creation for possible discount
    cloudconfig String
    Cloudconfig used to provision server using a provided cloud-config mustache template.
    cloudconfigparams Map<String>
    cpu Number
    Server CPU cores count
    datacenter String
    Server datacenter placement
    description String
    Server description
    extraDisks List<String>
    Disks associated with the server. Use glesys.ServerDisk resource to manage these.
    hostname String
    Server hostname
    ipv4Address String
    Server IPv4 address, set none to disable IP allocation
    ipv6Address String
    Server IPv6 address, set none to disable IP allocation
    islocked Boolean
    Server locked state
    isrunning Boolean
    Server running state
    memory Number
    Server RAM setting
    networkAdapters List<Property Map>
    Network adapters associated with the server. glesys.Networkadapter
    password String
    Server root password, VMware only
    platform String
    Server virtualisation platform, KVM or VMware
    primaryNetworkadapterNetwork String
    (VMware) Set the network for the primary network adapter.
    publickey String
    serverId String
    The ID of this resource.
    storage Number
    Server disk space
    template String
    Server OS template
    timeouts Property Map
    users List<Property Map>

    Supporting Types

    ServerBackupsSchedule, ServerBackupsScheduleArgs

    Frequency string
    Retention double
    Frequency string
    Retention float64
    frequency String
    retention Double
    frequency string
    retention number
    frequency String
    retention Number

    ServerNetworkAdapter, ServerNetworkAdapterArgs

    Adaptertype string
    Bandwidth double
    Id string
    Name string
    Networkid string
    Adaptertype string
    Bandwidth float64
    Id string
    Name string
    Networkid string
    adaptertype String
    bandwidth Double
    id String
    name String
    networkid String
    adaptertype string
    bandwidth number
    id string
    name string
    networkid string
    adaptertype String
    bandwidth Number
    id String
    name String
    networkid String

    ServerTimeouts, ServerTimeoutsArgs

    Create string
    Delete string
    Create string
    Delete string
    create String
    delete String
    create string
    delete string
    create str
    delete str
    create String
    delete String

    ServerUser, ServerUserArgs

    Publickeys List<string>
    User SSH key(s), as a list. '["ssh-rsa abc...", "ssh-rsa foo..."]'
    Username string
    Password string
    Publickeys []string
    User SSH key(s), as a list. '["ssh-rsa abc...", "ssh-rsa foo..."]'
    Username string
    Password string
    publickeys List<String>
    User SSH key(s), as a list. '["ssh-rsa abc...", "ssh-rsa foo..."]'
    username String
    password String
    publickeys string[]
    User SSH key(s), as a list. '["ssh-rsa abc...", "ssh-rsa foo..."]'
    username string
    password string
    publickeys Sequence[str]
    User SSH key(s), as a list. '["ssh-rsa abc...", "ssh-rsa foo..."]'
    username str
    password str
    publickeys List<String>
    User SSH key(s), as a list. '["ssh-rsa abc...", "ssh-rsa foo..."]'
    username String
    password String

    Package Details

    Repository
    glesys glesys/terraform-provider-glesys
    License
    Notes
    This Pulumi package is based on the glesys Terraform Provider.
    glesys logo
    glesys 0.16.0 published on Tuesday, Nov 18, 2025 by glesys
      Meet Neo: Your AI Platform Teammate