~kirkland/eucalyptus/label-metadata

« back to all changes in this revision

Viewing changes to cluster/cc-client-marshal.h

  • Committer: graziano obertelli
  • Date: 2009-01-07 03:32:35 UTC
  • Revision ID: graziano@cs.ucsb.edu-20090107033235-oxhuexp18v8hg0pw
Tags: 1.4
from CVS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef INCLUDE_CC_CLIENT_MARSHAL_H
 
2
#define INCLUDE_CC_CLIENT_MARSHAL_H
 
3
 
 
4
#include <stdio.h>
 
5
#include <time.h>
 
6
#include <misc.h>
 
7
#include "axis2_stub_EucalyptusCC.h"
 
8
 
 
9
int cc_registerImage(char *imageloc, axutil_env_t *, axis2_stub_t *);
 
10
int cc_describeResources(axutil_env_t *, axis2_stub_t *);
 
11
int cc_startNetwork(int, char *netName, axutil_env_t *, axis2_stub_t *);
 
12
int cc_stopNetwork(int, char *netName, axutil_env_t *, axis2_stub_t *);
 
13
int cc_assignAddress(char *src, char *dst, axutil_env_t *, axis2_stub_t *);
 
14
int cc_unassignAddress(char *src, char *dst, axutil_env_t *, axis2_stub_t *);
 
15
int cc_describePublicAddresses(axutil_env_t *, axis2_stub_t *);
 
16
int cc_configureNetwork(char *, char *, char *, int, int, char *, axutil_env_t *, axis2_stub_t *);
 
17
int cc_runInstances(char *amiId, char *amiURL, char *kernelId, char *kernelURL, char *ramdiskId, char *ramdiskURL, int num, int vlan, char *netName, axutil_env_t *, axis2_stub_t *);
 
18
int cc_describeInstances(char **instIds, int instIdsLen, axutil_env_t *, axis2_stub_t *);
 
19
int cc_getConsoleOutput(char *instId, axutil_env_t *, axis2_stub_t *);
 
20
int cc_rebootInstances(char **instIds, int instIdsLen, axutil_env_t *, axis2_stub_t *);
 
21
int cc_terminateInstances(char **instIds, int instIdsLen, axutil_env_t *, axis2_stub_t *);
 
22
int cc_killallInstances(axutil_env_t *, axis2_stub_t *);
 
23
 
 
24
#endif