Statistics
| Branch: | Tag: | Revision:

root / lib / rapi / client.py @ 14013e5d

History | View | Annotate | Download (62.7 kB)

1
#
2
#
3

    
4
# Copyright (C) 2010, 2011, 2012 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""Ganeti RAPI client.
23

24
@attention: To use the RAPI client, the application B{must} call
25
            C{pycurl.global_init} during initialization and
26
            C{pycurl.global_cleanup} before exiting the process. This is very
27
            important in multi-threaded programs. See curl_global_init(3) and
28
            curl_global_cleanup(3) for details. The decorator L{UsesRapiClient}
29
            can be used.
30

31
"""
32

    
33
# No Ganeti-specific modules should be imported. The RAPI client is supposed to
34
# be standalone.
35

    
36
import logging
37
import simplejson
38
import socket
39
import urllib
40
import threading
41
import pycurl
42
import time
43

    
44
try:
45
  from cStringIO import StringIO
46
except ImportError:
47
  from StringIO import StringIO
48

    
49

    
50
GANETI_RAPI_PORT = 5080
51
GANETI_RAPI_VERSION = 2
52

    
53
HTTP_DELETE = "DELETE"
54
HTTP_GET = "GET"
55
HTTP_PUT = "PUT"
56
HTTP_POST = "POST"
57
HTTP_OK = 200
58
HTTP_NOT_FOUND = 404
59
HTTP_APP_JSON = "application/json"
60

    
61
REPLACE_DISK_PRI = "replace_on_primary"
62
REPLACE_DISK_SECONDARY = "replace_on_secondary"
63
REPLACE_DISK_CHG = "replace_new_secondary"
64
REPLACE_DISK_AUTO = "replace_auto"
65

    
66
NODE_EVAC_PRI = "primary-only"
67
NODE_EVAC_SEC = "secondary-only"
68
NODE_EVAC_ALL = "all"
69

    
70
NODE_ROLE_DRAINED = "drained"
71
NODE_ROLE_MASTER_CANDIATE = "master-candidate"
72
NODE_ROLE_MASTER = "master"
73
NODE_ROLE_OFFLINE = "offline"
74
NODE_ROLE_REGULAR = "regular"
75

    
76
JOB_STATUS_QUEUED = "queued"
77
JOB_STATUS_WAITING = "waiting"
78
JOB_STATUS_CANCELING = "canceling"
79
JOB_STATUS_RUNNING = "running"
80
JOB_STATUS_CANCELED = "canceled"
81
JOB_STATUS_SUCCESS = "success"
82
JOB_STATUS_ERROR = "error"
83
JOB_STATUS_PENDING = frozenset([
84
  JOB_STATUS_QUEUED,
85
  JOB_STATUS_WAITING,
86
  JOB_STATUS_CANCELING,
87
  ])
88
JOB_STATUS_FINALIZED = frozenset([
89
  JOB_STATUS_CANCELED,
90
  JOB_STATUS_SUCCESS,
91
  JOB_STATUS_ERROR,
92
  ])
93
JOB_STATUS_ALL = frozenset([
94
  JOB_STATUS_RUNNING,
95
  ]) | JOB_STATUS_PENDING | JOB_STATUS_FINALIZED
96

    
97
# Legacy name
98
JOB_STATUS_WAITLOCK = JOB_STATUS_WAITING
99

    
100
# Internal constants
101
_REQ_DATA_VERSION_FIELD = "__version__"
102
_QPARAM_DRY_RUN = "dry-run"
103
_QPARAM_FORCE = "force"
104

    
105
# Feature strings
106
INST_CREATE_REQV1 = "instance-create-reqv1"
107
INST_REINSTALL_REQV1 = "instance-reinstall-reqv1"
108
NODE_MIGRATE_REQV1 = "node-migrate-reqv1"
109
NODE_EVAC_RES1 = "node-evac-res1"
110

    
111
# Old feature constant names in case they're references by users of this module
112
_INST_CREATE_REQV1 = INST_CREATE_REQV1
113
_INST_REINSTALL_REQV1 = INST_REINSTALL_REQV1
114
_NODE_MIGRATE_REQV1 = NODE_MIGRATE_REQV1
115
_NODE_EVAC_RES1 = NODE_EVAC_RES1
116

    
117
#: Resolver errors
118
ECODE_RESOLVER = "resolver_error"
119

    
120
#: Not enough resources (iallocator failure, disk space, memory, etc.)
121
ECODE_NORES = "insufficient_resources"
122

    
123
#: Temporarily out of resources; operation can be tried again
124
ECODE_TEMP_NORES = "temp_insufficient_resources"
125

    
126
#: Wrong arguments (at syntax level)
127
ECODE_INVAL = "wrong_input"
128

    
129
#: Wrong entity state
130
ECODE_STATE = "wrong_state"
131

    
132
#: Entity not found
133
ECODE_NOENT = "unknown_entity"
134

    
135
#: Entity already exists
136
ECODE_EXISTS = "already_exists"
137

    
138
#: Resource not unique (e.g. MAC or IP duplication)
139
ECODE_NOTUNIQUE = "resource_not_unique"
140

    
141
#: Internal cluster error
142
ECODE_FAULT = "internal_error"
143

    
144
#: Environment error (e.g. node disk error)
145
ECODE_ENVIRON = "environment_error"
146

    
147
#: List of all failure types
148
ECODE_ALL = frozenset([
149
  ECODE_RESOLVER,
150
  ECODE_NORES,
151
  ECODE_TEMP_NORES,
152
  ECODE_INVAL,
153
  ECODE_STATE,
154
  ECODE_NOENT,
155
  ECODE_EXISTS,
156
  ECODE_NOTUNIQUE,
157
  ECODE_FAULT,
158
  ECODE_ENVIRON,
159
  ])
160

    
161
# Older pycURL versions don't have all error constants
162
try:
163
  _CURLE_SSL_CACERT = pycurl.E_SSL_CACERT
164
  _CURLE_SSL_CACERT_BADFILE = pycurl.E_SSL_CACERT_BADFILE
165
except AttributeError:
166
  _CURLE_SSL_CACERT = 60
167
  _CURLE_SSL_CACERT_BADFILE = 77
168

    
169
_CURL_SSL_CERT_ERRORS = frozenset([
170
  _CURLE_SSL_CACERT,
171
  _CURLE_SSL_CACERT_BADFILE,
172
  ])
173

    
174

    
175
class Error(Exception):
176
  """Base error class for this module.
177

178
  """
179
  pass
180

    
181

    
182
class GanetiApiError(Error):
183
  """Generic error raised from Ganeti API.
184

185
  """
186
  def __init__(self, msg, code=None):
187
    Error.__init__(self, msg)
188
    self.code = code
189

    
190

    
191
class CertificateError(GanetiApiError):
192
  """Raised when a problem is found with the SSL certificate.
193

194
  """
195
  pass
196

    
197

    
198
def _AppendIf(container, condition, value):
199
  """Appends to a list if a condition evaluates to truth.
200

201
  """
202
  if condition:
203
    container.append(value)
204

    
205
  return condition
206

    
207

    
208
def _AppendDryRunIf(container, condition):
209
  """Appends a "dry-run" parameter if a condition evaluates to truth.
210

211
  """
212
  return _AppendIf(container, condition, (_QPARAM_DRY_RUN, 1))
213

    
214

    
215
def _AppendForceIf(container, condition):
216
  """Appends a "force" parameter if a condition evaluates to truth.
217

218
  """
219
  return _AppendIf(container, condition, (_QPARAM_FORCE, 1))
220

    
221

    
222
def _SetItemIf(container, condition, item, value):
223
  """Sets an item if a condition evaluates to truth.
224

225
  """
226
  if condition:
227
    container[item] = value
228

    
229
  return condition
230

    
231

    
232
def UsesRapiClient(fn):
233
  """Decorator for code using RAPI client to initialize pycURL.
234

235
  """
236
  def wrapper(*args, **kwargs):
237
    # curl_global_init(3) and curl_global_cleanup(3) must be called with only
238
    # one thread running. This check is just a safety measure -- it doesn't
239
    # cover all cases.
240
    assert threading.activeCount() == 1, \
241
           "Found active threads when initializing pycURL"
242

    
243
    pycurl.global_init(pycurl.GLOBAL_ALL)
244
    try:
245
      return fn(*args, **kwargs)
246
    finally:
247
      pycurl.global_cleanup()
248

    
249
  return wrapper
250

    
251

    
252
def GenericCurlConfig(verbose=False, use_signal=False,
253
                      use_curl_cabundle=False, cafile=None, capath=None,
254
                      proxy=None, verify_hostname=False,
255
                      connect_timeout=None, timeout=None,
256
                      _pycurl_version_fn=pycurl.version_info):
257
  """Curl configuration function generator.
258

259
  @type verbose: bool
260
  @param verbose: Whether to set cURL to verbose mode
261
  @type use_signal: bool
262
  @param use_signal: Whether to allow cURL to use signals
263
  @type use_curl_cabundle: bool
264
  @param use_curl_cabundle: Whether to use cURL's default CA bundle
265
  @type cafile: string
266
  @param cafile: In which file we can find the certificates
267
  @type capath: string
268
  @param capath: In which directory we can find the certificates
269
  @type proxy: string
270
  @param proxy: Proxy to use, None for default behaviour and empty string for
271
                disabling proxies (see curl_easy_setopt(3))
272
  @type verify_hostname: bool
273
  @param verify_hostname: Whether to verify the remote peer certificate's
274
                          commonName
275
  @type connect_timeout: number
276
  @param connect_timeout: Timeout for establishing connection in seconds
277
  @type timeout: number
278
  @param timeout: Timeout for complete transfer in seconds (see
279
                  curl_easy_setopt(3)).
280

281
  """
282
  if use_curl_cabundle and (cafile or capath):
283
    raise Error("Can not use default CA bundle when CA file or path is set")
284

    
285
  def _ConfigCurl(curl, logger):
286
    """Configures a cURL object
287

288
    @type curl: pycurl.Curl
289
    @param curl: cURL object
290

291
    """
292
    logger.debug("Using cURL version %s", pycurl.version)
293

    
294
    # pycurl.version_info returns a tuple with information about the used
295
    # version of libcurl. Item 5 is the SSL library linked to it.
296
    # e.g.: (3, '7.18.0', 463360, 'x86_64-pc-linux-gnu', 1581, 'GnuTLS/2.0.4',
297
    # 0, '1.2.3.3', ...)
298
    sslver = _pycurl_version_fn()[5]
299
    if not sslver:
300
      raise Error("No SSL support in cURL")
301

    
302
    lcsslver = sslver.lower()
303
    if lcsslver.startswith("openssl/"):
304
      pass
305
    elif lcsslver.startswith("nss/"):
306
      # TODO: investigate compatibility beyond a simple test
307
      pass
308
    elif lcsslver.startswith("gnutls/"):
309
      if capath:
310
        raise Error("cURL linked against GnuTLS has no support for a"
311
                    " CA path (%s)" % (pycurl.version, ))
312
    else:
313
      raise NotImplementedError("cURL uses unsupported SSL version '%s'" %
314
                                sslver)
315

    
316
    curl.setopt(pycurl.VERBOSE, verbose)
317
    curl.setopt(pycurl.NOSIGNAL, not use_signal)
318

    
319
    # Whether to verify remote peer's CN
320
    if verify_hostname:
321
      # curl_easy_setopt(3): "When CURLOPT_SSL_VERIFYHOST is 2, that
322
      # certificate must indicate that the server is the server to which you
323
      # meant to connect, or the connection fails. [...] When the value is 1,
324
      # the certificate must contain a Common Name field, but it doesn't matter
325
      # what name it says. [...]"
326
      curl.setopt(pycurl.SSL_VERIFYHOST, 2)
327
    else:
328
      curl.setopt(pycurl.SSL_VERIFYHOST, 0)
329

    
330
    if cafile or capath or use_curl_cabundle:
331
      # Require certificates to be checked
332
      curl.setopt(pycurl.SSL_VERIFYPEER, True)
333
      if cafile:
334
        curl.setopt(pycurl.CAINFO, str(cafile))
335
      if capath:
336
        curl.setopt(pycurl.CAPATH, str(capath))
337
      # Not changing anything for using default CA bundle
338
    else:
339
      # Disable SSL certificate verification
340
      curl.setopt(pycurl.SSL_VERIFYPEER, False)
341

    
342
    if proxy is not None:
343
      curl.setopt(pycurl.PROXY, str(proxy))
344

    
345
    # Timeouts
346
    if connect_timeout is not None:
347
      curl.setopt(pycurl.CONNECTTIMEOUT, connect_timeout)
348
    if timeout is not None:
349
      curl.setopt(pycurl.TIMEOUT, timeout)
350

    
351
  return _ConfigCurl
352

    
353

    
354
class GanetiRapiClient(object): # pylint: disable=R0904
355
  """Ganeti RAPI client.
356

357
  """
358
  USER_AGENT = "Ganeti RAPI Client"
359
  _json_encoder = simplejson.JSONEncoder(sort_keys=True)
360

    
361
  def __init__(self, host, port=GANETI_RAPI_PORT,
362
               username=None, password=None, logger=logging,
363
               curl_config_fn=None, curl_factory=None):
364
    """Initializes this class.
365

366
    @type host: string
367
    @param host: the ganeti cluster master to interact with
368
    @type port: int
369
    @param port: the port on which the RAPI is running (default is 5080)
370
    @type username: string
371
    @param username: the username to connect with
372
    @type password: string
373
    @param password: the password to connect with
374
    @type curl_config_fn: callable
375
    @param curl_config_fn: Function to configure C{pycurl.Curl} object
376
    @param logger: Logging object
377

378
    """
379
    self._username = username
380
    self._password = password
381
    self._logger = logger
382
    self._curl_config_fn = curl_config_fn
383
    self._curl_factory = curl_factory
384

    
385
    try:
386
      socket.inet_pton(socket.AF_INET6, host)
387
      address = "[%s]:%s" % (host, port)
388
    except socket.error:
389
      address = "%s:%s" % (host, port)
390

    
391
    self._base_url = "https://%s" % address
392

    
393
    if username is not None:
394
      if password is None:
395
        raise Error("Password not specified")
396
    elif password:
397
      raise Error("Specified password without username")
398

    
399
  def _CreateCurl(self):
400
    """Creates a cURL object.
401

402
    """
403
    # Create pycURL object if no factory is provided
404
    if self._curl_factory:
405
      curl = self._curl_factory()
406
    else:
407
      curl = pycurl.Curl()
408

    
409
    # Default cURL settings
410
    curl.setopt(pycurl.VERBOSE, False)
411
    curl.setopt(pycurl.FOLLOWLOCATION, False)
412
    curl.setopt(pycurl.MAXREDIRS, 5)
413
    curl.setopt(pycurl.NOSIGNAL, True)
414
    curl.setopt(pycurl.USERAGENT, self.USER_AGENT)
415
    curl.setopt(pycurl.SSL_VERIFYHOST, 0)
416
    curl.setopt(pycurl.SSL_VERIFYPEER, False)
417
    curl.setopt(pycurl.HTTPHEADER, [
418
      "Accept: %s" % HTTP_APP_JSON,
419
      "Content-type: %s" % HTTP_APP_JSON,
420
      ])
421

    
422
    assert ((self._username is None and self._password is None) ^
423
            (self._username is not None and self._password is not None))
424

    
425
    if self._username:
426
      # Setup authentication
427
      curl.setopt(pycurl.HTTPAUTH, pycurl.HTTPAUTH_BASIC)
428
      curl.setopt(pycurl.USERPWD,
429
                  str("%s:%s" % (self._username, self._password)))
430

    
431
    # Call external configuration function
432
    if self._curl_config_fn:
433
      self._curl_config_fn(curl, self._logger)
434

    
435
    return curl
436

    
437
  @staticmethod
438
  def _EncodeQuery(query):
439
    """Encode query values for RAPI URL.
440

441
    @type query: list of two-tuples
442
    @param query: Query arguments
443
    @rtype: list
444
    @return: Query list with encoded values
445

446
    """
447
    result = []
448

    
449
    for name, value in query:
450
      if value is None:
451
        result.append((name, ""))
452

    
453
      elif isinstance(value, bool):
454
        # Boolean values must be encoded as 0 or 1
455
        result.append((name, int(value)))
456

    
457
      elif isinstance(value, (list, tuple, dict)):
458
        raise ValueError("Invalid query data type %r" % type(value).__name__)
459

    
460
      else:
461
        result.append((name, value))
462

    
463
    return result
464

    
465
  def _SendRequest(self, method, path, query, content):
466
    """Sends an HTTP request.
467

468
    This constructs a full URL, encodes and decodes HTTP bodies, and
469
    handles invalid responses in a pythonic way.
470

471
    @type method: string
472
    @param method: HTTP method to use
473
    @type path: string
474
    @param path: HTTP URL path
475
    @type query: list of two-tuples
476
    @param query: query arguments to pass to urllib.urlencode
477
    @type content: str or None
478
    @param content: HTTP body content
479

480
    @rtype: str
481
    @return: JSON-Decoded response
482

483
    @raises CertificateError: If an invalid SSL certificate is found
484
    @raises GanetiApiError: If an invalid response is returned
485

486
    """
487
    assert path.startswith("/")
488

    
489
    curl = self._CreateCurl()
490

    
491
    if content is not None:
492
      encoded_content = self._json_encoder.encode(content)
493
    else:
494
      encoded_content = ""
495

    
496
    # Build URL
497
    urlparts = [self._base_url, path]
498
    if query:
499
      urlparts.append("?")
500
      urlparts.append(urllib.urlencode(self._EncodeQuery(query)))
501

    
502
    url = "".join(urlparts)
503

    
504
    self._logger.debug("Sending request %s %s (content=%r)",
505
                       method, url, encoded_content)
506

    
507
    # Buffer for response
508
    encoded_resp_body = StringIO()
509

    
510
    # Configure cURL
511
    curl.setopt(pycurl.CUSTOMREQUEST, str(method))
512
    curl.setopt(pycurl.URL, str(url))
513
    curl.setopt(pycurl.POSTFIELDS, str(encoded_content))
514
    curl.setopt(pycurl.WRITEFUNCTION, encoded_resp_body.write)
515

    
516
    try:
517
      # Send request and wait for response
518
      try:
519
        curl.perform()
520
      except pycurl.error, err:
521
        if err.args[0] in _CURL_SSL_CERT_ERRORS:
522
          raise CertificateError("SSL certificate error %s" % err,
523
                                 code=err.args[0])
524

    
525
        raise GanetiApiError(str(err), code=err.args[0])
526
    finally:
527
      # Reset settings to not keep references to large objects in memory
528
      # between requests
529
      curl.setopt(pycurl.POSTFIELDS, "")
530
      curl.setopt(pycurl.WRITEFUNCTION, lambda _: None)
531

    
532
    # Get HTTP response code
533
    http_code = curl.getinfo(pycurl.RESPONSE_CODE)
534

    
535
    # Was anything written to the response buffer?
536
    if encoded_resp_body.tell():
537
      response_content = simplejson.loads(encoded_resp_body.getvalue())
538
    else:
539
      response_content = None
540

    
541
    if http_code != HTTP_OK:
542
      if isinstance(response_content, dict):
543
        msg = ("%s %s: %s" %
544
               (response_content["code"],
545
                response_content["message"],
546
                response_content["explain"]))
547
      else:
548
        msg = str(response_content)
549

    
550
      raise GanetiApiError(msg, code=http_code)
551

    
552
    return response_content
553

    
554
  def GetVersion(self):
555
    """Gets the Remote API version running on the cluster.
556

557
    @rtype: int
558
    @return: Ganeti Remote API version
559

560
    """
561
    return self._SendRequest(HTTP_GET, "/version", None, None)
562

    
563
  def GetFeatures(self):
564
    """Gets the list of optional features supported by RAPI server.
565

566
    @rtype: list
567
    @return: List of optional features
568

569
    """
570
    try:
571
      return self._SendRequest(HTTP_GET, "/%s/features" % GANETI_RAPI_VERSION,
572
                               None, None)
573
    except GanetiApiError, err:
574
      # Older RAPI servers don't support this resource
575
      if err.code == HTTP_NOT_FOUND:
576
        return []
577

    
578
      raise
579

    
580
  def GetOperatingSystems(self):
581
    """Gets the Operating Systems running in the Ganeti cluster.
582

583
    @rtype: list of str
584
    @return: operating systems
585

586
    """
587
    return self._SendRequest(HTTP_GET, "/%s/os" % GANETI_RAPI_VERSION,
588
                             None, None)
589

    
590
  def GetInfo(self):
591
    """Gets info about the cluster.
592

593
    @rtype: dict
594
    @return: information about the cluster
595

596
    """
597
    return self._SendRequest(HTTP_GET, "/%s/info" % GANETI_RAPI_VERSION,
598
                             None, None)
599

    
600
  def RedistributeConfig(self):
601
    """Tells the cluster to redistribute its configuration files.
602

603
    @rtype: string
604
    @return: job id
605

606
    """
607
    return self._SendRequest(HTTP_PUT,
608
                             "/%s/redistribute-config" % GANETI_RAPI_VERSION,
609
                             None, None)
610

    
611
  def ModifyCluster(self, **kwargs):
612
    """Modifies cluster parameters.
613

614
    More details for parameters can be found in the RAPI documentation.
615

616
    @rtype: string
617
    @return: job id
618

619
    """
620
    body = kwargs
621

    
622
    return self._SendRequest(HTTP_PUT,
623
                             "/%s/modify" % GANETI_RAPI_VERSION, None, body)
624

    
625
  def GetClusterTags(self):
626
    """Gets the cluster tags.
627

628
    @rtype: list of str
629
    @return: cluster tags
630

631
    """
632
    return self._SendRequest(HTTP_GET, "/%s/tags" % GANETI_RAPI_VERSION,
633
                             None, None)
634

    
635
  def AddClusterTags(self, tags, dry_run=False):
636
    """Adds tags to the cluster.
637

638
    @type tags: list of str
639
    @param tags: tags to add to the cluster
640
    @type dry_run: bool
641
    @param dry_run: whether to perform a dry run
642

643
    @rtype: string
644
    @return: job id
645

646
    """
647
    query = [("tag", t) for t in tags]
648
    _AppendDryRunIf(query, dry_run)
649

    
650
    return self._SendRequest(HTTP_PUT, "/%s/tags" % GANETI_RAPI_VERSION,
651
                             query, None)
652

    
653
  def DeleteClusterTags(self, tags, dry_run=False):
654
    """Deletes tags from the cluster.
655

656
    @type tags: list of str
657
    @param tags: tags to delete
658
    @type dry_run: bool
659
    @param dry_run: whether to perform a dry run
660
    @rtype: string
661
    @return: job id
662

663
    """
664
    query = [("tag", t) for t in tags]
665
    _AppendDryRunIf(query, dry_run)
666

    
667
    return self._SendRequest(HTTP_DELETE, "/%s/tags" % GANETI_RAPI_VERSION,
668
                             query, None)
669

    
670
  def GetInstances(self, bulk=False):
671
    """Gets information about instances on the cluster.
672

673
    @type bulk: bool
674
    @param bulk: whether to return all information about all instances
675

676
    @rtype: list of dict or list of str
677
    @return: if bulk is True, info about the instances, else a list of instances
678

679
    """
680
    query = []
681
    _AppendIf(query, bulk, ("bulk", 1))
682

    
683
    instances = self._SendRequest(HTTP_GET,
684
                                  "/%s/instances" % GANETI_RAPI_VERSION,
685
                                  query, None)
686
    if bulk:
687
      return instances
688
    else:
689
      return [i["id"] for i in instances]
690

    
691
  def GetInstance(self, instance):
692
    """Gets information about an instance.
693

694
    @type instance: str
695
    @param instance: instance whose info to return
696

697
    @rtype: dict
698
    @return: info about the instance
699

700
    """
701
    return self._SendRequest(HTTP_GET,
702
                             ("/%s/instances/%s" %
703
                              (GANETI_RAPI_VERSION, instance)), None, None)
704

    
705
  def GetInstanceInfo(self, instance, static=None):
706
    """Gets information about an instance.
707

708
    @type instance: string
709
    @param instance: Instance name
710
    @rtype: string
711
    @return: Job ID
712

713
    """
714
    if static is not None:
715
      query = [("static", static)]
716
    else:
717
      query = None
718

    
719
    return self._SendRequest(HTTP_GET,
720
                             ("/%s/instances/%s/info" %
721
                              (GANETI_RAPI_VERSION, instance)), query, None)
722

    
723
  @staticmethod
724
  def _UpdateWithKwargs(base, **kwargs):
725
    """Updates the base with params from kwargs.
726

727
    @param base: The base dict, filled with required fields
728

729
    @note: This is an inplace update of base
730

731
    """
732
    conflicts = set(kwargs.iterkeys()) & set(base.iterkeys())
733
    if conflicts:
734
      raise GanetiApiError("Required fields can not be specified as"
735
                           " keywords: %s" % ", ".join(conflicts))
736

    
737
    base.update((key, value) for key, value in kwargs.iteritems()
738
                if key != "dry_run")
739

    
740
  def InstanceAllocation(self, mode, name, disk_template, disks, nics,
741
                         **kwargs):
742
    """Generates an instance allocation as used by multiallocate.
743

744
    More details for parameters can be found in the RAPI documentation.
745
    It is the same as used by CreateInstance.
746

747
    @type mode: string
748
    @param mode: Instance creation mode
749
    @type name: string
750
    @param name: Hostname of the instance to create
751
    @type disk_template: string
752
    @param disk_template: Disk template for instance (e.g. plain, diskless,
753
                          file, or drbd)
754
    @type disks: list of dicts
755
    @param disks: List of disk definitions
756
    @type nics: list of dicts
757
    @param nics: List of NIC definitions
758

759
    @return: A dict with the generated entry
760

761
    """
762
    # All required fields for request data version 1
763
    alloc = {
764
      "mode": mode,
765
      "name": name,
766
      "disk_template": disk_template,
767
      "disks": disks,
768
      "nics": nics,
769
      }
770

    
771
    self._UpdateWithKwargs(alloc, **kwargs)
772

    
773
    return alloc
774

    
775
  def InstancesMultiAlloc(self, instances, **kwargs):
776
    """Tries to allocate multiple instances.
777

778
    More details for parameters can be found in the RAPI documentation.
779

780
    @param instances: A list of L{InstanceAllocation} results
781

782
    """
783
    query = []
784
    body = {
785
      "instances": instances,
786
      }
787
    self._UpdateWithKwargs(body, **kwargs)
788

    
789
    _AppendDryRunIf(query, kwargs.get("dry_run"))
790

    
791
    return self._SendRequest(HTTP_POST,
792
                             "/%s/instances-multi-alloc" % GANETI_RAPI_VERSION,
793
                             query, body)
794

    
795
  def CreateInstance(self, mode, name, disk_template, disks, nics,
796
                     **kwargs):
797
    """Creates a new instance.
798

799
    More details for parameters can be found in the RAPI documentation.
800

801
    @type mode: string
802
    @param mode: Instance creation mode
803
    @type name: string
804
    @param name: Hostname of the instance to create
805
    @type disk_template: string
806
    @param disk_template: Disk template for instance (e.g. plain, diskless,
807
                          file, or drbd)
808
    @type disks: list of dicts
809
    @param disks: List of disk definitions
810
    @type nics: list of dicts
811
    @param nics: List of NIC definitions
812
    @type dry_run: bool
813
    @keyword dry_run: whether to perform a dry run
814

815
    @rtype: string
816
    @return: job id
817

818
    """
819
    query = []
820

    
821
    _AppendDryRunIf(query, kwargs.get("dry_run"))
822

    
823
    if _INST_CREATE_REQV1 in self.GetFeatures():
824
      body = self.InstanceAllocation(mode, name, disk_template, disks, nics,
825
                                     **kwargs)
826
      body[_REQ_DATA_VERSION_FIELD] = 1
827
    else:
828
      raise GanetiApiError("Server does not support new-style (version 1)"
829
                           " instance creation requests")
830

    
831
    return self._SendRequest(HTTP_POST, "/%s/instances" % GANETI_RAPI_VERSION,
832
                             query, body)
833

    
834
  def DeleteInstance(self, instance, dry_run=False):
835
    """Deletes an instance.
836

837
    @type instance: str
838
    @param instance: the instance to delete
839

840
    @rtype: string
841
    @return: job id
842

843
    """
844
    query = []
845
    _AppendDryRunIf(query, dry_run)
846

    
847
    return self._SendRequest(HTTP_DELETE,
848
                             ("/%s/instances/%s" %
849
                              (GANETI_RAPI_VERSION, instance)), query, None)
850

    
851
  def ModifyInstance(self, instance, **kwargs):
852
    """Modifies an instance.
853

854
    More details for parameters can be found in the RAPI documentation.
855

856
    @type instance: string
857
    @param instance: Instance name
858
    @rtype: string
859
    @return: job id
860

861
    """
862
    body = kwargs
863

    
864
    return self._SendRequest(HTTP_PUT,
865
                             ("/%s/instances/%s/modify" %
866
                              (GANETI_RAPI_VERSION, instance)), None, body)
867

    
868
  def ActivateInstanceDisks(self, instance, ignore_size=None):
869
    """Activates an instance's disks.
870

871
    @type instance: string
872
    @param instance: Instance name
873
    @type ignore_size: bool
874
    @param ignore_size: Whether to ignore recorded size
875
    @rtype: string
876
    @return: job id
877

878
    """
879
    query = []
880
    _AppendIf(query, ignore_size, ("ignore_size", 1))
881

    
882
    return self._SendRequest(HTTP_PUT,
883
                             ("/%s/instances/%s/activate-disks" %
884
                              (GANETI_RAPI_VERSION, instance)), query, None)
885

    
886
  def DeactivateInstanceDisks(self, instance):
887
    """Deactivates an instance's disks.
888

889
    @type instance: string
890
    @param instance: Instance name
891
    @rtype: string
892
    @return: job id
893

894
    """
895
    return self._SendRequest(HTTP_PUT,
896
                             ("/%s/instances/%s/deactivate-disks" %
897
                              (GANETI_RAPI_VERSION, instance)), None, None)
898

    
899
  def RecreateInstanceDisks(self, instance, disks=None, nodes=None):
900
    """Recreate an instance's disks.
901

902
    @type instance: string
903
    @param instance: Instance name
904
    @type disks: list of int
905
    @param disks: List of disk indexes
906
    @type nodes: list of string
907
    @param nodes: New instance nodes, if relocation is desired
908
    @rtype: string
909
    @return: job id
910

911
    """
912
    body = {}
913
    _SetItemIf(body, disks is not None, "disks", disks)
914
    _SetItemIf(body, nodes is not None, "nodes", nodes)
915

    
916
    return self._SendRequest(HTTP_POST,
917
                             ("/%s/instances/%s/recreate-disks" %
918
                              (GANETI_RAPI_VERSION, instance)), None, body)
919

    
920
  def GrowInstanceDisk(self, instance, disk, amount, wait_for_sync=None):
921
    """Grows a disk of an instance.
922

923
    More details for parameters can be found in the RAPI documentation.
924

925
    @type instance: string
926
    @param instance: Instance name
927
    @type disk: integer
928
    @param disk: Disk index
929
    @type amount: integer
930
    @param amount: Grow disk by this amount (MiB)
931
    @type wait_for_sync: bool
932
    @param wait_for_sync: Wait for disk to synchronize
933
    @rtype: string
934
    @return: job id
935

936
    """
937
    body = {
938
      "amount": amount,
939
      }
940

    
941
    _SetItemIf(body, wait_for_sync is not None, "wait_for_sync", wait_for_sync)
942

    
943
    return self._SendRequest(HTTP_POST,
944
                             ("/%s/instances/%s/disk/%s/grow" %
945
                              (GANETI_RAPI_VERSION, instance, disk)),
946
                             None, body)
947

    
948
  def GetInstanceTags(self, instance):
949
    """Gets tags for an instance.
950

951
    @type instance: str
952
    @param instance: instance whose tags to return
953

954
    @rtype: list of str
955
    @return: tags for the instance
956

957
    """
958
    return self._SendRequest(HTTP_GET,
959
                             ("/%s/instances/%s/tags" %
960
                              (GANETI_RAPI_VERSION, instance)), None, None)
961

    
962
  def AddInstanceTags(self, instance, tags, dry_run=False):
963
    """Adds tags to an instance.
964

965
    @type instance: str
966
    @param instance: instance to add tags to
967
    @type tags: list of str
968
    @param tags: tags to add to the instance
969
    @type dry_run: bool
970
    @param dry_run: whether to perform a dry run
971

972
    @rtype: string
973
    @return: job id
974

975
    """
976
    query = [("tag", t) for t in tags]
977
    _AppendDryRunIf(query, dry_run)
978

    
979
    return self._SendRequest(HTTP_PUT,
980
                             ("/%s/instances/%s/tags" %
981
                              (GANETI_RAPI_VERSION, instance)), query, None)
982

    
983
  def DeleteInstanceTags(self, instance, tags, dry_run=False):
984
    """Deletes tags from an instance.
985

986
    @type instance: str
987
    @param instance: instance to delete tags from
988
    @type tags: list of str
989
    @param tags: tags to delete
990
    @type dry_run: bool
991
    @param dry_run: whether to perform a dry run
992
    @rtype: string
993
    @return: job id
994

995
    """
996
    query = [("tag", t) for t in tags]
997
    _AppendDryRunIf(query, dry_run)
998

    
999
    return self._SendRequest(HTTP_DELETE,
1000
                             ("/%s/instances/%s/tags" %
1001
                              (GANETI_RAPI_VERSION, instance)), query, None)
1002

    
1003
  def RebootInstance(self, instance, reboot_type=None, ignore_secondaries=None,
1004
                     dry_run=False, reason_text=None):
1005
    """Reboots an instance.
1006

1007
    @type instance: str
1008
    @param instance: instance to reboot
1009
    @type reboot_type: str
1010
    @param reboot_type: one of: hard, soft, full
1011
    @type ignore_secondaries: bool
1012
    @param ignore_secondaries: if True, ignores errors for the secondary node
1013
        while re-assembling disks (in hard-reboot mode only)
1014
    @type dry_run: bool
1015
    @param dry_run: whether to perform a dry run
1016
    @type reason_text: string
1017
    @param reason_text: the reason for the reboot
1018
    @rtype: string
1019
    @return: job id
1020

1021
    """
1022
    query = []
1023
    _AppendDryRunIf(query, dry_run)
1024
    _AppendIf(query, reboot_type, ("type", reboot_type))
1025
    _AppendIf(query, ignore_secondaries is not None,
1026
              ("ignore_secondaries", ignore_secondaries))
1027
    _AppendIf(query, reason_text, ("reason_text", reason_text))
1028

    
1029
    return self._SendRequest(HTTP_POST,
1030
                             ("/%s/instances/%s/reboot" %
1031
                              (GANETI_RAPI_VERSION, instance)), query, None)
1032

    
1033
  def ShutdownInstance(self, instance, dry_run=False, no_remember=False,
1034
                       **kwargs):
1035
    """Shuts down an instance.
1036

1037
    @type instance: str
1038
    @param instance: the instance to shut down
1039
    @type dry_run: bool
1040
    @param dry_run: whether to perform a dry run
1041
    @type no_remember: bool
1042
    @param no_remember: if true, will not record the state change
1043
    @rtype: string
1044
    @return: job id
1045

1046
    """
1047
    query = []
1048
    body = kwargs
1049

    
1050
    _AppendDryRunIf(query, dry_run)
1051
    _AppendIf(query, no_remember, ("no_remember", 1))
1052

    
1053
    return self._SendRequest(HTTP_PUT,
1054
                             ("/%s/instances/%s/shutdown" %
1055
                              (GANETI_RAPI_VERSION, instance)), query, body)
1056

    
1057
  def StartupInstance(self, instance, dry_run=False, no_remember=False):
1058
    """Starts up an instance.
1059

1060
    @type instance: str
1061
    @param instance: the instance to start up
1062
    @type dry_run: bool
1063
    @param dry_run: whether to perform a dry run
1064
    @type no_remember: bool
1065
    @param no_remember: if true, will not record the state change
1066
    @rtype: string
1067
    @return: job id
1068

1069
    """
1070
    query = []
1071
    _AppendDryRunIf(query, dry_run)
1072
    _AppendIf(query, no_remember, ("no_remember", 1))
1073

    
1074
    return self._SendRequest(HTTP_PUT,
1075
                             ("/%s/instances/%s/startup" %
1076
                              (GANETI_RAPI_VERSION, instance)), query, None)
1077

    
1078
  def ReinstallInstance(self, instance, os=None, no_startup=False,
1079
                        osparams=None):
1080
    """Reinstalls an instance.
1081

1082
    @type instance: str
1083
    @param instance: The instance to reinstall
1084
    @type os: str or None
1085
    @param os: The operating system to reinstall. If None, the instance's
1086
        current operating system will be installed again
1087
    @type no_startup: bool
1088
    @param no_startup: Whether to start the instance automatically
1089
    @rtype: string
1090
    @return: job id
1091

1092
    """
1093
    if _INST_REINSTALL_REQV1 in self.GetFeatures():
1094
      body = {
1095
        "start": not no_startup,
1096
        }
1097
      _SetItemIf(body, os is not None, "os", os)
1098
      _SetItemIf(body, osparams is not None, "osparams", osparams)
1099
      return self._SendRequest(HTTP_POST,
1100
                               ("/%s/instances/%s/reinstall" %
1101
                                (GANETI_RAPI_VERSION, instance)), None, body)
1102

    
1103
    # Use old request format
1104
    if osparams:
1105
      raise GanetiApiError("Server does not support specifying OS parameters"
1106
                           " for instance reinstallation")
1107

    
1108
    query = []
1109
    _AppendIf(query, os, ("os", os))
1110
    _AppendIf(query, no_startup, ("nostartup", 1))
1111

    
1112
    return self._SendRequest(HTTP_POST,
1113
                             ("/%s/instances/%s/reinstall" %
1114
                              (GANETI_RAPI_VERSION, instance)), query, None)
1115

    
1116
  def ReplaceInstanceDisks(self, instance, disks=None, mode=REPLACE_DISK_AUTO,
1117
                           remote_node=None, iallocator=None):
1118
    """Replaces disks on an instance.
1119

1120
    @type instance: str
1121
    @param instance: instance whose disks to replace
1122
    @type disks: list of ints
1123
    @param disks: Indexes of disks to replace
1124
    @type mode: str
1125
    @param mode: replacement mode to use (defaults to replace_auto)
1126
    @type remote_node: str or None
1127
    @param remote_node: new secondary node to use (for use with
1128
        replace_new_secondary mode)
1129
    @type iallocator: str or None
1130
    @param iallocator: instance allocator plugin to use (for use with
1131
                       replace_auto mode)
1132

1133
    @rtype: string
1134
    @return: job id
1135

1136
    """
1137
    query = [
1138
      ("mode", mode),
1139
      ]
1140

    
1141
    # TODO: Convert to body parameters
1142

    
1143
    if disks is not None:
1144
      _AppendIf(query, True,
1145
                ("disks", ",".join(str(idx) for idx in disks)))
1146

    
1147
    _AppendIf(query, remote_node is not None, ("remote_node", remote_node))
1148
    _AppendIf(query, iallocator is not None, ("iallocator", iallocator))
1149

    
1150
    return self._SendRequest(HTTP_POST,
1151
                             ("/%s/instances/%s/replace-disks" %
1152
                              (GANETI_RAPI_VERSION, instance)), query, None)
1153

    
1154
  def PrepareExport(self, instance, mode):
1155
    """Prepares an instance for an export.
1156

1157
    @type instance: string
1158
    @param instance: Instance name
1159
    @type mode: string
1160
    @param mode: Export mode
1161
    @rtype: string
1162
    @return: Job ID
1163

1164
    """
1165
    query = [("mode", mode)]
1166
    return self._SendRequest(HTTP_PUT,
1167
                             ("/%s/instances/%s/prepare-export" %
1168
                              (GANETI_RAPI_VERSION, instance)), query, None)
1169

    
1170
  def ExportInstance(self, instance, mode, destination, shutdown=None,
1171
                     remove_instance=None,
1172
                     x509_key_name=None, destination_x509_ca=None):
1173
    """Exports an instance.
1174

1175
    @type instance: string
1176
    @param instance: Instance name
1177
    @type mode: string
1178
    @param mode: Export mode
1179
    @rtype: string
1180
    @return: Job ID
1181

1182
    """
1183
    body = {
1184
      "destination": destination,
1185
      "mode": mode,
1186
      }
1187

    
1188
    _SetItemIf(body, shutdown is not None, "shutdown", shutdown)
1189
    _SetItemIf(body, remove_instance is not None,
1190
               "remove_instance", remove_instance)
1191
    _SetItemIf(body, x509_key_name is not None, "x509_key_name", x509_key_name)
1192
    _SetItemIf(body, destination_x509_ca is not None,
1193
               "destination_x509_ca", destination_x509_ca)
1194

    
1195
    return self._SendRequest(HTTP_PUT,
1196
                             ("/%s/instances/%s/export" %
1197
                              (GANETI_RAPI_VERSION, instance)), None, body)
1198

    
1199
  def MigrateInstance(self, instance, mode=None, cleanup=None):
1200
    """Migrates an instance.
1201

1202
    @type instance: string
1203
    @param instance: Instance name
1204
    @type mode: string
1205
    @param mode: Migration mode
1206
    @type cleanup: bool
1207
    @param cleanup: Whether to clean up a previously failed migration
1208
    @rtype: string
1209
    @return: job id
1210

1211
    """
1212
    body = {}
1213
    _SetItemIf(body, mode is not None, "mode", mode)
1214
    _SetItemIf(body, cleanup is not None, "cleanup", cleanup)
1215

    
1216
    return self._SendRequest(HTTP_PUT,
1217
                             ("/%s/instances/%s/migrate" %
1218
                              (GANETI_RAPI_VERSION, instance)), None, body)
1219

    
1220
  def FailoverInstance(self, instance, iallocator=None,
1221
                       ignore_consistency=None, target_node=None):
1222
    """Does a failover of an instance.
1223

1224
    @type instance: string
1225
    @param instance: Instance name
1226
    @type iallocator: string
1227
    @param iallocator: Iallocator for deciding the target node for
1228
      shared-storage instances
1229
    @type ignore_consistency: bool
1230
    @param ignore_consistency: Whether to ignore disk consistency
1231
    @type target_node: string
1232
    @param target_node: Target node for shared-storage instances
1233
    @rtype: string
1234
    @return: job id
1235

1236
    """
1237
    body = {}
1238
    _SetItemIf(body, iallocator is not None, "iallocator", iallocator)
1239
    _SetItemIf(body, ignore_consistency is not None,
1240
               "ignore_consistency", ignore_consistency)
1241
    _SetItemIf(body, target_node is not None, "target_node", target_node)
1242

    
1243
    return self._SendRequest(HTTP_PUT,
1244
                             ("/%s/instances/%s/failover" %
1245
                              (GANETI_RAPI_VERSION, instance)), None, body)
1246

    
1247
  def RenameInstance(self, instance, new_name, ip_check=None, name_check=None):
1248
    """Changes the name of an instance.
1249

1250
    @type instance: string
1251
    @param instance: Instance name
1252
    @type new_name: string
1253
    @param new_name: New instance name
1254
    @type ip_check: bool
1255
    @param ip_check: Whether to ensure instance's IP address is inactive
1256
    @type name_check: bool
1257
    @param name_check: Whether to ensure instance's name is resolvable
1258
    @rtype: string
1259
    @return: job id
1260

1261
    """
1262
    body = {
1263
      "new_name": new_name,
1264
      }
1265

    
1266
    _SetItemIf(body, ip_check is not None, "ip_check", ip_check)
1267
    _SetItemIf(body, name_check is not None, "name_check", name_check)
1268

    
1269
    return self._SendRequest(HTTP_PUT,
1270
                             ("/%s/instances/%s/rename" %
1271
                              (GANETI_RAPI_VERSION, instance)), None, body)
1272

    
1273
  def GetInstanceConsole(self, instance):
1274
    """Request information for connecting to instance's console.
1275

1276
    @type instance: string
1277
    @param instance: Instance name
1278
    @rtype: dict
1279
    @return: dictionary containing information about instance's console
1280

1281
    """
1282
    return self._SendRequest(HTTP_GET,
1283
                             ("/%s/instances/%s/console" %
1284
                              (GANETI_RAPI_VERSION, instance)), None, None)
1285

    
1286
  def GetJobs(self):
1287
    """Gets all jobs for the cluster.
1288

1289
    @rtype: list of int
1290
    @return: job ids for the cluster
1291

1292
    """
1293
    return [int(j["id"])
1294
            for j in self._SendRequest(HTTP_GET,
1295
                                       "/%s/jobs" % GANETI_RAPI_VERSION,
1296
                                       None, None)]
1297

    
1298
  def GetJobStatus(self, job_id):
1299
    """Gets the status of a job.
1300

1301
    @type job_id: string
1302
    @param job_id: job id whose status to query
1303

1304
    @rtype: dict
1305
    @return: job status
1306

1307
    """
1308
    return self._SendRequest(HTTP_GET,
1309
                             "/%s/jobs/%s" % (GANETI_RAPI_VERSION, job_id),
1310
                             None, None)
1311

    
1312
  def WaitForJobCompletion(self, job_id, period=5, retries=-1):
1313
    """Polls cluster for job status until completion.
1314

1315
    Completion is defined as any of the following states listed in
1316
    L{JOB_STATUS_FINALIZED}.
1317

1318
    @type job_id: string
1319
    @param job_id: job id to watch
1320
    @type period: int
1321
    @param period: how often to poll for status (optional, default 5s)
1322
    @type retries: int
1323
    @param retries: how many time to poll before giving up
1324
                    (optional, default -1 means unlimited)
1325

1326
    @rtype: bool
1327
    @return: C{True} if job succeeded or C{False} if failed/status timeout
1328
    @deprecated: It is recommended to use L{WaitForJobChange} wherever
1329
      possible; L{WaitForJobChange} returns immediately after a job changed and
1330
      does not use polling
1331

1332
    """
1333
    while retries != 0:
1334
      job_result = self.GetJobStatus(job_id)
1335

    
1336
      if job_result and job_result["status"] == JOB_STATUS_SUCCESS:
1337
        return True
1338
      elif not job_result or job_result["status"] in JOB_STATUS_FINALIZED:
1339
        return False
1340

    
1341
      if period:
1342
        time.sleep(period)
1343

    
1344
      if retries > 0:
1345
        retries -= 1
1346

    
1347
    return False
1348

    
1349
  def WaitForJobChange(self, job_id, fields, prev_job_info, prev_log_serial):
1350
    """Waits for job changes.
1351

1352
    @type job_id: string
1353
    @param job_id: Job ID for which to wait
1354
    @return: C{None} if no changes have been detected and a dict with two keys,
1355
      C{job_info} and C{log_entries} otherwise.
1356
    @rtype: dict
1357

1358
    """
1359
    body = {
1360
      "fields": fields,
1361
      "previous_job_info": prev_job_info,
1362
      "previous_log_serial": prev_log_serial,
1363
      }
1364

    
1365
    return self._SendRequest(HTTP_GET,
1366
                             "/%s/jobs/%s/wait" % (GANETI_RAPI_VERSION, job_id),
1367
                             None, body)
1368

    
1369
  def CancelJob(self, job_id, dry_run=False):
1370
    """Cancels a job.
1371

1372
    @type job_id: string
1373
    @param job_id: id of the job to delete
1374
    @type dry_run: bool
1375
    @param dry_run: whether to perform a dry run
1376
    @rtype: tuple
1377
    @return: tuple containing the result, and a message (bool, string)
1378

1379
    """
1380
    query = []
1381
    _AppendDryRunIf(query, dry_run)
1382

    
1383
    return self._SendRequest(HTTP_DELETE,
1384
                             "/%s/jobs/%s" % (GANETI_RAPI_VERSION, job_id),
1385
                             query, None)
1386

    
1387
  def GetNodes(self, bulk=False):
1388
    """Gets all nodes in the cluster.
1389

1390
    @type bulk: bool
1391
    @param bulk: whether to return all information about all instances
1392

1393
    @rtype: list of dict or str
1394
    @return: if bulk is true, info about nodes in the cluster,
1395
        else list of nodes in the cluster
1396

1397
    """
1398
    query = []
1399
    _AppendIf(query, bulk, ("bulk", 1))
1400

    
1401
    nodes = self._SendRequest(HTTP_GET, "/%s/nodes" % GANETI_RAPI_VERSION,
1402
                              query, None)
1403
    if bulk:
1404
      return nodes
1405
    else:
1406
      return [n["id"] for n in nodes]
1407

    
1408
  def GetNode(self, node):
1409
    """Gets information about a node.
1410

1411
    @type node: str
1412
    @param node: node whose info to return
1413

1414
    @rtype: dict
1415
    @return: info about the node
1416

1417
    """
1418
    return self._SendRequest(HTTP_GET,
1419
                             "/%s/nodes/%s" % (GANETI_RAPI_VERSION, node),
1420
                             None, None)
1421

    
1422
  def EvacuateNode(self, node, iallocator=None, remote_node=None,
1423
                   dry_run=False, early_release=None,
1424
                   mode=None, accept_old=False):
1425
    """Evacuates instances from a Ganeti node.
1426

1427
    @type node: str
1428
    @param node: node to evacuate
1429
    @type iallocator: str or None
1430
    @param iallocator: instance allocator to use
1431
    @type remote_node: str
1432
    @param remote_node: node to evaucate to
1433
    @type dry_run: bool
1434
    @param dry_run: whether to perform a dry run
1435
    @type early_release: bool
1436
    @param early_release: whether to enable parallelization
1437
    @type mode: string
1438
    @param mode: Node evacuation mode
1439
    @type accept_old: bool
1440
    @param accept_old: Whether caller is ready to accept old-style (pre-2.5)
1441
        results
1442

1443
    @rtype: string, or a list for pre-2.5 results
1444
    @return: Job ID or, if C{accept_old} is set and server is pre-2.5,
1445
      list of (job ID, instance name, new secondary node); if dry_run was
1446
      specified, then the actual move jobs were not submitted and the job IDs
1447
      will be C{None}
1448

1449
    @raises GanetiApiError: if an iallocator and remote_node are both
1450
        specified
1451

1452
    """
1453
    if iallocator and remote_node:
1454
      raise GanetiApiError("Only one of iallocator or remote_node can be used")
1455

    
1456
    query = []
1457
    _AppendDryRunIf(query, dry_run)
1458

    
1459
    if _NODE_EVAC_RES1 in self.GetFeatures():
1460
      # Server supports body parameters
1461
      body = {}
1462

    
1463
      _SetItemIf(body, iallocator is not None, "iallocator", iallocator)
1464
      _SetItemIf(body, remote_node is not None, "remote_node", remote_node)
1465
      _SetItemIf(body, early_release is not None,
1466
                 "early_release", early_release)
1467
      _SetItemIf(body, mode is not None, "mode", mode)
1468
    else:
1469
      # Pre-2.5 request format
1470
      body = None
1471

    
1472
      if not accept_old:
1473
        raise GanetiApiError("Server is version 2.4 or earlier and caller does"
1474
                             " not accept old-style results (parameter"
1475
                             " accept_old)")
1476

    
1477
      # Pre-2.5 servers can only evacuate secondaries
1478
      if mode is not None and mode != NODE_EVAC_SEC:
1479
        raise GanetiApiError("Server can only evacuate secondary instances")
1480

    
1481
      _AppendIf(query, iallocator, ("iallocator", iallocator))
1482
      _AppendIf(query, remote_node, ("remote_node", remote_node))
1483
      _AppendIf(query, early_release, ("early_release", 1))
1484

    
1485
    return self._SendRequest(HTTP_POST,
1486
                             ("/%s/nodes/%s/evacuate" %
1487
                              (GANETI_RAPI_VERSION, node)), query, body)
1488

    
1489
  def MigrateNode(self, node, mode=None, dry_run=False, iallocator=None,
1490
                  target_node=None):
1491
    """Migrates all primary instances from a node.
1492

1493
    @type node: str
1494
    @param node: node to migrate
1495
    @type mode: string
1496
    @param mode: if passed, it will overwrite the live migration type,
1497
        otherwise the hypervisor default will be used
1498
    @type dry_run: bool
1499
    @param dry_run: whether to perform a dry run
1500
    @type iallocator: string
1501
    @param iallocator: instance allocator to use
1502
    @type target_node: string
1503
    @param target_node: Target node for shared-storage instances
1504

1505
    @rtype: string
1506
    @return: job id
1507

1508
    """
1509
    query = []
1510
    _AppendDryRunIf(query, dry_run)
1511

    
1512
    if _NODE_MIGRATE_REQV1 in self.GetFeatures():
1513
      body = {}
1514

    
1515
      _SetItemIf(body, mode is not None, "mode", mode)
1516
      _SetItemIf(body, iallocator is not None, "iallocator", iallocator)
1517
      _SetItemIf(body, target_node is not None, "target_node", target_node)
1518

    
1519
      assert len(query) <= 1
1520

    
1521
      return self._SendRequest(HTTP_POST,
1522
                               ("/%s/nodes/%s/migrate" %
1523
                                (GANETI_RAPI_VERSION, node)), query, body)
1524
    else:
1525
      # Use old request format
1526
      if target_node is not None:
1527
        raise GanetiApiError("Server does not support specifying target node"
1528
                             " for node migration")
1529

    
1530
      _AppendIf(query, mode is not None, ("mode", mode))
1531

    
1532
      return self._SendRequest(HTTP_POST,
1533
                               ("/%s/nodes/%s/migrate" %
1534
                                (GANETI_RAPI_VERSION, node)), query, None)
1535

    
1536
  def GetNodeRole(self, node):
1537
    """Gets the current role for a node.
1538

1539
    @type node: str
1540
    @param node: node whose role to return
1541

1542
    @rtype: str
1543
    @return: the current role for a node
1544

1545
    """
1546
    return self._SendRequest(HTTP_GET,
1547
                             ("/%s/nodes/%s/role" %
1548
                              (GANETI_RAPI_VERSION, node)), None, None)
1549

    
1550
  def SetNodeRole(self, node, role, force=False, auto_promote=None):
1551
    """Sets the role for a node.
1552

1553
    @type node: str
1554
    @param node: the node whose role to set
1555
    @type role: str
1556
    @param role: the role to set for the node
1557
    @type force: bool
1558
    @param force: whether to force the role change
1559
    @type auto_promote: bool
1560
    @param auto_promote: Whether node(s) should be promoted to master candidate
1561
                         if necessary
1562

1563
    @rtype: string
1564
    @return: job id
1565

1566
    """
1567
    query = []
1568
    _AppendForceIf(query, force)
1569
    _AppendIf(query, auto_promote is not None, ("auto-promote", auto_promote))
1570

    
1571
    return self._SendRequest(HTTP_PUT,
1572
                             ("/%s/nodes/%s/role" %
1573
                              (GANETI_RAPI_VERSION, node)), query, role)
1574

    
1575
  def PowercycleNode(self, node, force=False):
1576
    """Powercycles a node.
1577

1578
    @type node: string
1579
    @param node: Node name
1580
    @type force: bool
1581
    @param force: Whether to force the operation
1582
    @rtype: string
1583
    @return: job id
1584

1585
    """
1586
    query = []
1587
    _AppendForceIf(query, force)
1588

    
1589
    return self._SendRequest(HTTP_POST,
1590
                             ("/%s/nodes/%s/powercycle" %
1591
                              (GANETI_RAPI_VERSION, node)), query, None)
1592

    
1593
  def ModifyNode(self, node, **kwargs):
1594
    """Modifies a node.
1595

1596
    More details for parameters can be found in the RAPI documentation.
1597

1598
    @type node: string
1599
    @param node: Node name
1600
    @rtype: string
1601
    @return: job id
1602

1603
    """
1604
    return self._SendRequest(HTTP_POST,
1605
                             ("/%s/nodes/%s/modify" %
1606
                              (GANETI_RAPI_VERSION, node)), None, kwargs)
1607

    
1608
  def GetNodeStorageUnits(self, node, storage_type, output_fields):
1609
    """Gets the storage units for a node.
1610

1611
    @type node: str
1612
    @param node: the node whose storage units to return
1613
    @type storage_type: str
1614
    @param storage_type: storage type whose units to return
1615
    @type output_fields: str
1616
    @param output_fields: storage type fields to return
1617

1618
    @rtype: string
1619
    @return: job id where results can be retrieved
1620

1621
    """
1622
    query = [
1623
      ("storage_type", storage_type),
1624
      ("output_fields", output_fields),
1625
      ]
1626

    
1627
    return self._SendRequest(HTTP_GET,
1628
                             ("/%s/nodes/%s/storage" %
1629
                              (GANETI_RAPI_VERSION, node)), query, None)
1630

    
1631
  def ModifyNodeStorageUnits(self, node, storage_type, name, allocatable=None):
1632
    """Modifies parameters of storage units on the node.
1633

1634
    @type node: str
1635
    @param node: node whose storage units to modify
1636
    @type storage_type: str
1637
    @param storage_type: storage type whose units to modify
1638
    @type name: str
1639
    @param name: name of the storage unit
1640
    @type allocatable: bool or None
1641
    @param allocatable: Whether to set the "allocatable" flag on the storage
1642
                        unit (None=no modification, True=set, False=unset)
1643

1644
    @rtype: string
1645
    @return: job id
1646

1647
    """
1648
    query = [
1649
      ("storage_type", storage_type),
1650
      ("name", name),
1651
      ]
1652

    
1653
    _AppendIf(query, allocatable is not None, ("allocatable", allocatable))
1654

    
1655
    return self._SendRequest(HTTP_PUT,
1656
                             ("/%s/nodes/%s/storage/modify" %
1657
                              (GANETI_RAPI_VERSION, node)), query, None)
1658

    
1659
  def RepairNodeStorageUnits(self, node, storage_type, name):
1660
    """Repairs a storage unit on the node.
1661

1662
    @type node: str
1663
    @param node: node whose storage units to repair
1664
    @type storage_type: str
1665
    @param storage_type: storage type to repair
1666
    @type name: str
1667
    @param name: name of the storage unit to repair
1668

1669
    @rtype: string
1670
    @return: job id
1671

1672
    """
1673
    query = [
1674
      ("storage_type", storage_type),
1675
      ("name", name),
1676
      ]
1677

    
1678
    return self._SendRequest(HTTP_PUT,
1679
                             ("/%s/nodes/%s/storage/repair" %
1680
                              (GANETI_RAPI_VERSION, node)), query, None)
1681

    
1682
  def GetNodeTags(self, node):
1683
    """Gets the tags for a node.
1684

1685
    @type node: str
1686
    @param node: node whose tags to return
1687

1688
    @rtype: list of str
1689
    @return: tags for the node
1690

1691
    """
1692
    return self._SendRequest(HTTP_GET,
1693
                             ("/%s/nodes/%s/tags" %
1694
                              (GANETI_RAPI_VERSION, node)), None, None)
1695

    
1696
  def AddNodeTags(self, node, tags, dry_run=False):
1697
    """Adds tags to a node.
1698

1699
    @type node: str
1700
    @param node: node to add tags to
1701
    @type tags: list of str
1702
    @param tags: tags to add to the node
1703
    @type dry_run: bool
1704
    @param dry_run: whether to perform a dry run
1705

1706
    @rtype: string
1707
    @return: job id
1708

1709
    """
1710
    query = [("tag", t) for t in tags]
1711
    _AppendDryRunIf(query, dry_run)
1712

    
1713
    return self._SendRequest(HTTP_PUT,
1714
                             ("/%s/nodes/%s/tags" %
1715
                              (GANETI_RAPI_VERSION, node)), query, tags)
1716

    
1717
  def DeleteNodeTags(self, node, tags, dry_run=False):
1718
    """Delete tags from a node.
1719

1720
    @type node: str
1721
    @param node: node to remove tags from
1722
    @type tags: list of str
1723
    @param tags: tags to remove from the node
1724
    @type dry_run: bool
1725
    @param dry_run: whether to perform a dry run
1726

1727
    @rtype: string
1728
    @return: job id
1729

1730
    """
1731
    query = [("tag", t) for t in tags]
1732
    _AppendDryRunIf(query, dry_run)
1733

    
1734
    return self._SendRequest(HTTP_DELETE,
1735
                             ("/%s/nodes/%s/tags" %
1736
                              (GANETI_RAPI_VERSION, node)), query, None)
1737

    
1738
  def GetNetworks(self, bulk=False):
1739
    """Gets all networks in the cluster.
1740

1741
    @type bulk: bool
1742
    @param bulk: whether to return all information about the networks
1743

1744
    @rtype: list of dict or str
1745
    @return: if bulk is true, a list of dictionaries with info about all
1746
        networks in the cluster, else a list of names of those networks
1747

1748
    """
1749
    query = []
1750
    _AppendIf(query, bulk, ("bulk", 1))
1751

    
1752
    networks = self._SendRequest(HTTP_GET, "/%s/networks" % GANETI_RAPI_VERSION,
1753
                                 query, None)
1754
    if bulk:
1755
      return networks
1756
    else:
1757
      return [n["name"] for n in networks]
1758

    
1759
  def GetNetwork(self, network):
1760
    """Gets information about a network.
1761

1762
    @type network: str
1763
    @param network: name of the network whose info to return
1764

1765
    @rtype: dict
1766
    @return: info about the network
1767

1768
    """
1769
    return self._SendRequest(HTTP_GET,
1770
                             "/%s/networks/%s" % (GANETI_RAPI_VERSION, network),
1771
                             None, None)
1772

    
1773
  def CreateNetwork(self, network_name, network, gateway=None, network6=None,
1774
                    gateway6=None, mac_prefix=None,
1775
                    add_reserved_ips=None, tags=None, dry_run=False):
1776
    """Creates a new network.
1777

1778
    @type network_name: str
1779
    @param network_name: the name of network to create
1780
    @type dry_run: bool
1781
    @param dry_run: whether to peform a dry run
1782

1783
    @rtype: string
1784
    @return: job id
1785

1786
    """
1787
    query = []
1788
    _AppendDryRunIf(query, dry_run)
1789

    
1790
    if add_reserved_ips:
1791
      add_reserved_ips = add_reserved_ips.split(",")
1792

    
1793
    if tags:
1794
      tags = tags.split(",")
1795

    
1796
    body = {
1797
      "network_name": network_name,
1798
      "gateway": gateway,
1799
      "network": network,
1800
      "gateway6": gateway6,
1801
      "network6": network6,
1802
      "mac_prefix": mac_prefix,
1803
      "add_reserved_ips": add_reserved_ips,
1804
      "tags": tags,
1805
      }
1806

    
1807
    return self._SendRequest(HTTP_POST, "/%s/networks" % GANETI_RAPI_VERSION,
1808
                             query, body)
1809

    
1810
  def ConnectNetwork(self, network_name, group_name, mode, link, dry_run=False):
1811
    """Connects a Network to a NodeGroup with the given netparams
1812

1813
    """
1814
    body = {
1815
      "group_name": group_name,
1816
      "network_mode": mode,
1817
      "network_link": link,
1818
      }
1819

    
1820
    query = []
1821
    _AppendDryRunIf(query, dry_run)
1822

    
1823
    return self._SendRequest(HTTP_PUT,
1824
                             ("/%s/networks/%s/connect" %
1825
                             (GANETI_RAPI_VERSION, network_name)), query, body)
1826

    
1827
  def DisconnectNetwork(self, network_name, group_name, dry_run=False):
1828
    """Connects a Network to a NodeGroup with the given netparams
1829

1830
    """
1831
    body = {
1832
      "group_name": group_name,
1833
      }
1834

    
1835
    query = []
1836
    _AppendDryRunIf(query, dry_run)
1837

    
1838
    return self._SendRequest(HTTP_PUT,
1839
                             ("/%s/networks/%s/disconnect" %
1840
                             (GANETI_RAPI_VERSION, network_name)), query, body)
1841

    
1842
  def ModifyNetwork(self, network, **kwargs):
1843
    """Modifies a network.
1844

1845
    More details for parameters can be found in the RAPI documentation.
1846

1847
    @type network: string
1848
    @param network: Network name
1849
    @rtype: string
1850
    @return: job id
1851

1852
    """
1853
    return self._SendRequest(HTTP_PUT,
1854
                             ("/%s/networks/%s/modify" %
1855
                              (GANETI_RAPI_VERSION, network)), None, kwargs)
1856

    
1857
  def DeleteNetwork(self, network, dry_run=False):
1858
    """Deletes a network.
1859

1860
    @type network: str
1861
    @param network: the network to delete
1862
    @type dry_run: bool
1863
    @param dry_run: whether to peform a dry run
1864

1865
    @rtype: string
1866
    @return: job id
1867

1868
    """
1869
    query = []
1870
    _AppendDryRunIf(query, dry_run)
1871

    
1872
    return self._SendRequest(HTTP_DELETE,
1873
                             ("/%s/networks/%s" %
1874
                              (GANETI_RAPI_VERSION, network)), query, None)
1875

    
1876
  def GetNetworkTags(self, network):
1877
    """Gets tags for a network.
1878

1879
    @type network: string
1880
    @param network: Node group whose tags to return
1881

1882
    @rtype: list of strings
1883
    @return: tags for the network
1884

1885
    """
1886
    return self._SendRequest(HTTP_GET,
1887
                             ("/%s/networks/%s/tags" %
1888
                              (GANETI_RAPI_VERSION, network)), None, None)
1889

    
1890
  def AddNetworkTags(self, network, tags, dry_run=False):
1891
    """Adds tags to a network.
1892

1893
    @type network: str
1894
    @param network: network to add tags to
1895
    @type tags: list of string
1896
    @param tags: tags to add to the network
1897
    @type dry_run: bool
1898
    @param dry_run: whether to perform a dry run
1899

1900
    @rtype: string
1901
    @return: job id
1902

1903
    """
1904
    query = [("tag", t) for t in tags]
1905
    _AppendDryRunIf(query, dry_run)
1906

    
1907
    return self._SendRequest(HTTP_PUT,
1908
                             ("/%s/networks/%s/tags" %
1909
                              (GANETI_RAPI_VERSION, network)), query, None)
1910

    
1911
  def DeleteNetworkTags(self, network, tags, dry_run=False):
1912
    """Deletes tags from a network.
1913

1914
    @type network: str
1915
    @param network: network to delete tags from
1916
    @type tags: list of string
1917
    @param tags: tags to delete
1918
    @type dry_run: bool
1919
    @param dry_run: whether to perform a dry run
1920
    @rtype: string
1921
    @return: job id
1922

1923
    """
1924
    query = [("tag", t) for t in tags]
1925
    _AppendDryRunIf(query, dry_run)
1926

    
1927
    return self._SendRequest(HTTP_DELETE,
1928
                             ("/%s/networks/%s/tags" %
1929
                              (GANETI_RAPI_VERSION, network)), query, None)
1930

    
1931
  def GetGroups(self, bulk=False):
1932
    """Gets all node groups in the cluster.
1933

1934
    @type bulk: bool
1935
    @param bulk: whether to return all information about the groups
1936

1937
    @rtype: list of dict or str
1938
    @return: if bulk is true, a list of dictionaries with info about all node
1939
        groups in the cluster, else a list of names of those node groups
1940

1941
    """
1942
    query = []
1943
    _AppendIf(query, bulk, ("bulk", 1))
1944

    
1945
    groups = self._SendRequest(HTTP_GET, "/%s/groups" % GANETI_RAPI_VERSION,
1946
                               query, None)
1947
    if bulk:
1948
      return groups
1949
    else:
1950
      return [g["name"] for g in groups]
1951

    
1952
  def GetGroup(self, group):
1953
    """Gets information about a node group.
1954

1955
    @type group: str
1956
    @param group: name of the node group whose info to return
1957

1958
    @rtype: dict
1959
    @return: info about the node group
1960

1961
    """
1962
    return self._SendRequest(HTTP_GET,
1963
                             "/%s/groups/%s" % (GANETI_RAPI_VERSION, group),
1964
                             None, None)
1965

    
1966
  def CreateGroup(self, name, alloc_policy=None, dry_run=False):
1967
    """Creates a new node group.
1968

1969
    @type name: str
1970
    @param name: the name of node group to create
1971
    @type alloc_policy: str
1972
    @param alloc_policy: the desired allocation policy for the group, if any
1973
    @type dry_run: bool
1974
    @param dry_run: whether to peform a dry run
1975

1976
    @rtype: string
1977
    @return: job id
1978

1979
    """
1980
    query = []
1981
    _AppendDryRunIf(query, dry_run)
1982

    
1983
    body = {
1984
      "name": name,
1985
      "alloc_policy": alloc_policy,
1986
      }
1987

    
1988
    return self._SendRequest(HTTP_POST, "/%s/groups" % GANETI_RAPI_VERSION,
1989
                             query, body)
1990

    
1991
  def ModifyGroup(self, group, **kwargs):
1992
    """Modifies a node group.
1993

1994
    More details for parameters can be found in the RAPI documentation.
1995

1996
    @type group: string
1997
    @param group: Node group name
1998
    @rtype: string
1999
    @return: job id
2000

2001
    """
2002
    return self._SendRequest(HTTP_PUT,
2003
                             ("/%s/groups/%s/modify" %
2004
                              (GANETI_RAPI_VERSION, group)), None, kwargs)
2005

    
2006
  def DeleteGroup(self, group, dry_run=False):
2007
    """Deletes a node group.
2008

2009
    @type group: str
2010
    @param group: the node group to delete
2011
    @type dry_run: bool
2012
    @param dry_run: whether to peform a dry run
2013

2014
    @rtype: string
2015
    @return: job id
2016

2017
    """
2018
    query = []
2019
    _AppendDryRunIf(query, dry_run)
2020

    
2021
    return self._SendRequest(HTTP_DELETE,
2022
                             ("/%s/groups/%s" %
2023
                              (GANETI_RAPI_VERSION, group)), query, None)
2024

    
2025
  def RenameGroup(self, group, new_name):
2026
    """Changes the name of a node group.
2027

2028
    @type group: string
2029
    @param group: Node group name
2030
    @type new_name: string
2031
    @param new_name: New node group name
2032

2033
    @rtype: string
2034
    @return: job id
2035

2036
    """
2037
    body = {
2038
      "new_name": new_name,
2039
      }
2040

    
2041
    return self._SendRequest(HTTP_PUT,
2042
                             ("/%s/groups/%s/rename" %
2043
                              (GANETI_RAPI_VERSION, group)), None, body)
2044

    
2045
  def AssignGroupNodes(self, group, nodes, force=False, dry_run=False):
2046
    """Assigns nodes to a group.
2047

2048
    @type group: string
2049
    @param group: Node group name
2050
    @type nodes: list of strings
2051
    @param nodes: List of nodes to assign to the group
2052

2053
    @rtype: string
2054
    @return: job id
2055

2056
    """
2057
    query = []
2058
    _AppendForceIf(query, force)
2059
    _AppendDryRunIf(query, dry_run)
2060

    
2061
    body = {
2062
      "nodes": nodes,
2063
      }
2064

    
2065
    return self._SendRequest(HTTP_PUT,
2066
                             ("/%s/groups/%s/assign-nodes" %
2067
                             (GANETI_RAPI_VERSION, group)), query, body)
2068

    
2069
  def GetGroupTags(self, group):
2070
    """Gets tags for a node group.
2071

2072
    @type group: string
2073
    @param group: Node group whose tags to return
2074

2075
    @rtype: list of strings
2076
    @return: tags for the group
2077

2078
    """
2079
    return self._SendRequest(HTTP_GET,
2080
                             ("/%s/groups/%s/tags" %
2081
                              (GANETI_RAPI_VERSION, group)), None, None)
2082

    
2083
  def AddGroupTags(self, group, tags, dry_run=False):
2084
    """Adds tags to a node group.
2085

2086
    @type group: str
2087
    @param group: group to add tags to
2088
    @type tags: list of string
2089
    @param tags: tags to add to the group
2090
    @type dry_run: bool
2091
    @param dry_run: whether to perform a dry run
2092

2093
    @rtype: string
2094
    @return: job id
2095

2096
    """
2097
    query = [("tag", t) for t in tags]
2098
    _AppendDryRunIf(query, dry_run)
2099

    
2100
    return self._SendRequest(HTTP_PUT,
2101
                             ("/%s/groups/%s/tags" %
2102
                              (GANETI_RAPI_VERSION, group)), query, None)
2103

    
2104
  def DeleteGroupTags(self, group, tags, dry_run=False):
2105
    """Deletes tags from a node group.
2106

2107
    @type group: str
2108
    @param group: group to delete tags from
2109
    @type tags: list of string
2110
    @param tags: tags to delete
2111
    @type dry_run: bool
2112
    @param dry_run: whether to perform a dry run
2113
    @rtype: string
2114
    @return: job id
2115

2116
    """
2117
    query = [("tag", t) for t in tags]
2118
    _AppendDryRunIf(query, dry_run)
2119

    
2120
    return self._SendRequest(HTTP_DELETE,
2121
                             ("/%s/groups/%s/tags" %
2122
                              (GANETI_RAPI_VERSION, group)), query, None)
2123

    
2124
  def Query(self, what, fields, qfilter=None):
2125
    """Retrieves information about resources.
2126

2127
    @type what: string
2128
    @param what: Resource name, one of L{constants.QR_VIA_RAPI}
2129
    @type fields: list of string
2130
    @param fields: Requested fields
2131
    @type qfilter: None or list
2132
    @param qfilter: Query filter
2133

2134
    @rtype: string
2135
    @return: job id
2136

2137
    """
2138
    body = {
2139
      "fields": fields,
2140
      }
2141

    
2142
    _SetItemIf(body, qfilter is not None, "qfilter", qfilter)
2143
    # TODO: remove "filter" after 2.7
2144
    _SetItemIf(body, qfilter is not None, "filter", qfilter)
2145

    
2146
    return self._SendRequest(HTTP_PUT,
2147
                             ("/%s/query/%s" %
2148
                              (GANETI_RAPI_VERSION, what)), None, body)
2149

    
2150
  def QueryFields(self, what, fields=None):
2151
    """Retrieves available fields for a resource.
2152

2153
    @type what: string
2154
    @param what: Resource name, one of L{constants.QR_VIA_RAPI}
2155
    @type fields: list of string
2156
    @param fields: Requested fields
2157

2158
    @rtype: string
2159
    @return: job id
2160

2161
    """
2162
    query = []
2163

    
2164
    if fields is not None:
2165
      _AppendIf(query, True, ("fields", ",".join(fields)))
2166

    
2167
    return self._SendRequest(HTTP_GET,
2168
                             ("/%s/query/%s/fields" %
2169
                              (GANETI_RAPI_VERSION, what)), query, None)