marvin_refactor: fixing the imports

Signed-off-by: Prasanna Santhanam <tsp@apache.org>
This commit is contained in:
Prasanna Santhanam 2013-01-26 19:25:30 +05:30
parent 6ffe0c42a8
commit 23a2042df0
159 changed files with 184 additions and 48 deletions

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Account(CloudStackEntity):
def enable(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class AccountFromProject(CloudStackEntity):
def delete(self, apiclient, projectid, account, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class AccountToProject(CloudStackEntity):
def add(self, apiclient, projectid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Alerts(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ApiLimit(CloudStackEntity):
def reset(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Apis(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class AsyncJobResult(CloudStackEntity):
def query(self, apiclient, jobid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class AsyncJobs(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class AutoScalePolicies(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class AutoScalePolicy(CloudStackEntity):
def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class AutoScaleVmGroup(CloudStackEntity):
def enable(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class AutoScaleVmProfile(CloudStackEntity):
def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Capabilities(CloudStackEntity):
def list(self, apiclient):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Capacity(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class CloudIdentifier(CloudStackEntity):
def get(self, apiclient, userid, **kwargs):

View File

@ -0,0 +1,25 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
cloudstack_version = "4.1.0"
class CloudStackEntity(object):
__version__ = cloudstack_version
def getVersion(self):
return self.__version__

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Cluster(CloudStackEntity):
def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Condition(CloudStackEntity):
def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Config(CloudStackEntity):
def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Configuration(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Counter(CloudStackEntity):
def create(self, apiclient, CounterFactory, source, name, value, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class CustomCertificate(CloudStackEntity):
def upload(self, apiclient, domainsuffix, certificate, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class DefaultZoneForAccount(CloudStackEntity):
def mark(self, apiclient, account, domainid, zoneid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class DiskOffering(CloudStackEntity):
def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Domain(CloudStackEntity):
def create(self, apiclient, DomainFactory, name, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class DomainChildren(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class EventTypes(CloudStackEntity):
def list(self, apiclient):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Events(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class FirewallRule(CloudStackEntity):
def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class FromLoadBalancerRule(CloudStackEntity):
def remove(self, apiclient, id, virtualmachineids, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Host(CloudStackEntity):
def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class HostForMaintenance(CloudStackEntity):
def prepare(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class HostMaintenance(CloudStackEntity):
def cancel(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class HostPassword(CloudStackEntity):
def update(self, apiclient, username, password, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class HypervisorCapabilities(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Hypervisors(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class InstanceGroup(CloudStackEntity):
def create(self, apiclient, InstanceGroupFactory, name, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class IpAddress(CloudStackEntity):
def disassociate(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class IpForwardingRule(CloudStackEntity):
def create(self, apiclient, IpForwardingRuleFactory, startport, protocol, ipaddressid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Iso(CloudStackEntity):
def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class IsoPermissions(CloudStackEntity):
def list(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class LBStickinessPolicies(CloudStackEntity):
def list(self, apiclient, lbruleid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class LBStickinessPolicy(CloudStackEntity):
def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class LoadBalancerRule(CloudStackEntity):
def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class LoadBalancerRuleInstances(CloudStackEntity):
def list(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Network(CloudStackEntity):
def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class NetworkACL(CloudStackEntity):
def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class NetworkDevice(CloudStackEntity):
def add(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class NetworkOffering(CloudStackEntity):
def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class NetworkServiceProvider(CloudStackEntity):
def add(self, apiclient, physicalnetworkid, name, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class NiciraNvpDevice(CloudStackEntity):
def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class NiciraNvpDeviceNetworks(CloudStackEntity):
def list(self, apiclient, nvpdeviceid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class OsCategories(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class OsTypes(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class PasswordForVirtualMachine(CloudStackEntity):
def reset(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class PhysicalNetwork(CloudStackEntity):
def create(self, apiclient, PhysicalNetworkFactory, name, zoneid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Pod(CloudStackEntity):
def create(self, apiclient, PodFactory, startip, netmask, zoneid, gateway, name, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class PortForwardingRule(CloudStackEntity):
def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class PrivateGateway(CloudStackEntity):
def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Project(CloudStackEntity):
def suspend(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ProjectAccounts(CloudStackEntity):
def list(self, apiclient, projectid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ProjectInvitation(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class PublicIpAddresses(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class RemoteAccessVpn(CloudStackEntity):
def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Remove(CloudStackEntity):
def ldap(self, apiclient):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ResourceCount(CloudStackEntity):
def update(self, apiclient, domainid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ResourceLimit(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Router(CloudStackEntity):
def destroy(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class S3(CloudStackEntity):
def add(self, apiclient, secretkey, accesskey, bucket, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class SSHKeyPair(CloudStackEntity):
def create(self, apiclient, SSHKeyPairFactory, name, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class SecondaryStorage(CloudStackEntity):
def add(self, apiclient, url, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class SecurityGroup(CloudStackEntity):
def create(self, apiclient, SecurityGroupFactory, name, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class SecurityGroupEgress(CloudStackEntity):
def authorize(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class SecurityGroupIngress(CloudStackEntity):
def authorize(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ServiceForRouter(CloudStackEntity):
def change(self, apiclient, id, serviceofferingid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ServiceForSystemVm(CloudStackEntity):
def change(self, apiclient, id, serviceofferingid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ServiceForVirtualMachine(CloudStackEntity):
def change(self, apiclient, id, serviceofferingid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ServiceOffering(CloudStackEntity):
def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Snapshot(CloudStackEntity):
def create(self, apiclient, SnapshotFactory, volumeid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class SnapshotPolicies(CloudStackEntity):
def list(self, apiclient, volumeid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class SnapshotPolicy(CloudStackEntity):
def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class StaticNat(CloudStackEntity):
def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class StaticRoute(CloudStackEntity):
def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class StorageMaintenance(CloudStackEntity):
def cancel(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class StorageNetworkIpRange(CloudStackEntity):
def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class StoragePool(CloudStackEntity):
def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class SupportedNetworkServices(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Swift(CloudStackEntity):
def add(self, apiclient, url, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class SystemVm(CloudStackEntity):
def migrate(self, apiclient, hostid, virtualmachineid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Tags(CloudStackEntity):
def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class Template(CloudStackEntity):
def prepare(self, apiclient, zoneid, templateid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class TemplatePermissions(CloudStackEntity):
def list(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class ToLoadBalancerRule(CloudStackEntity):
def assign(self, apiclient, id, virtualmachineids, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class TrafficMonitor(CloudStackEntity):
def add(self, apiclient, url, zoneid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class TrafficType(CloudStackEntity):
def add(self, apiclient, traffictype, physicalnetworkid, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class TrafficTypeImplementors(CloudStackEntity):
def list(self, apiclient, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class UsageRecords(CloudStackEntity):
def list(self, apiclient, startdate, enddate, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class UsageTypes(CloudStackEntity):
def list(self, apiclient):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class User(CloudStackEntity):
def enable(self, apiclient, id, **kwargs):

View File

@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from . import CloudStackEntity
class UserKeys(CloudStackEntity):
def register(self, apiclient, id, **kwargs):

Some files were not shown because too many files have changed in this diff Show More