From d2b3c7f100f3de31dcb7217602f45d90e9f072a3 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Fri, 12 Apr 2013 17:25:01 +0530 Subject: [PATCH] marvin_refactor: not all factories are required. Factories are reqd. for entities that come into existense through the process of a CLoudStack API create command. Some entities are added from external sources for which factories are not reqd. Signed-off-by: Prasanna Santhanam --- .../marvin/integration/lib/base/IpAddress.py | 9 + .../lib/base/LBHealthCheckPolicy.py | 3 +- .../integration/lib/base/ProjectInvitation.py | 3 +- .../integration/lib/base/PublicIpAddresses.py | 32 - .../integration/lib/base/TrafficMonitor.py | 3 +- .../integration/lib/base/TrafficType.py | 6 +- .../marvin/integration/lib/base/User.py | 15 +- .../lib/base/VirtualRouterElement.py | 3 +- .../lib/factory/AccountFromProjectFactory.py | 8 - .../lib/factory/AccountToProjectFactory.py | 7 - .../integration/lib/factory/AlertsFactory.py | 5 - .../integration/lib/factory/ApisFactory.py | 5 - .../lib/factory/AsyncJobResultFactory.py | 7 - .../lib/factory/AsyncJobsFactory.py | 5 - .../lib/factory/AutoScalePoliciesFactory.py | 5 - .../lib/factory/CapabilitiesFactory.py | 5 - .../lib/factory/CapacityFactory.py | 5 - .../lib/factory/CloudIdentifierFactory.py | 7 - .../integration/lib/factory/ClusterFactory.py | 2 +- .../integration/lib/factory/ConfigFactory.py | 9 - .../lib/factory/ConfigurationFactory.py | 11 - .../lib/factory/CustomCertificateFactory.py | 8 - .../factory/DefaultZoneForAccountFactory.py | 9 - .../lib/factory/DomainChildrenFactory.py | 5 - .../lib/factory/EventTypesFactory.py | 5 - .../integration/lib/factory/EventsFactory.py | 5 - .../factory/FromLoadBalancerRuleFactory.py | 8 - .../integration/lib/factory/HostFactory.py | 20 +- .../lib/factory/HostForMaintenanceFactory.py | 7 - .../lib/factory/HostMaintenanceFactory.py | 7 - .../lib/factory/HostPasswordFactory.py | 8 - .../factory/HypervisorCapabilitiesFactory.py | 9 - .../lib/factory/HypervisorsFactory.py | 5 - .../lib/factory/InstanceGroupFactory.py | 2 +- .../lib/factory/IpAddressFactory.py | 2 +- .../integration/lib/factory/IsoFactory.py | 2 +- .../lib/factory/IsoPermissionsFactory.py | 12 - ...ctory.py => LBHealthCheckPolicyFactory.py} | 11 +- .../factory/LBStickinessPoliciesFactory.py | 7 - .../LoadBalancerRuleInstancesFactory.py | 7 - .../lib/factory/NetworkDeviceFactory.py | 15 - .../factory/NetworkServiceProviderFactory.py | 16 +- .../lib/factory/NiciraNvpDeviceFactory.py | 11 +- .../factory/NiciraNvpDeviceNetworksFactory.py | 7 - .../lib/factory/OsCategoriesFactory.py | 2 +- .../integration/lib/factory/OsTypesFactory.py | 2 +- .../PasswordForVirtualMachineFactory.py | 7 - .../lib/factory/ProjectAccountsFactory.py | 7 - .../lib/factory/ProjectInvitationFactory.py | 11 +- .../lib/factory/PublicIpAddressesFactory.py | 5 - .../integration/lib/factory/RemoveFactory.py | 5 - .../lib/factory/ResourceCountFactory.py | 7 - .../lib/factory/ResourceLimitFactory.py | 11 - .../integration/lib/factory/RouterFactory.py | 26 - .../integration/lib/factory/S3Factory.py | 8 +- .../lib/factory/SecondaryStorageFactory.py | 2 +- .../lib/factory/SecurityGroupEgressFactory.py | 11 - .../factory/SecurityGroupIngressFactory.py | 11 - .../lib/factory/ServiceForRouterFactory.py | 8 - .../lib/factory/ServiceForSystemVmFactory.py | 8 - .../ServiceForVirtualMachineFactory.py | 8 - .../lib/factory/SnapshotPoliciesFactory.py | 10 - .../lib/factory/StaticNatFactory.py | 7 +- .../lib/factory/StorageMaintenanceFactory.py | 12 - .../lib/factory/StoragePoolFactory.py | 4 - .../SupportedNetworkServicesFactory.py | 5 - .../integration/lib/factory/SwiftFactory.py | 10 - .../lib/factory/SystemVmFactory.py | 32 - .../lib/factory/TemplatePermissionsFactory.py | 12 - .../lib/factory/ToLoadBalancerRuleFactory.py | 8 - .../lib/factory/TrafficMonitorFactory.py | 12 +- .../lib/factory/TrafficTypeFactory.py | 16 +- .../factory/TrafficTypeImplementorsFactory.py | 5 - .../lib/factory/UsageRecordsFactory.py | 8 +- .../lib/factory/UsageTypesFactory.py | 5 - .../lib/factory/VMPasswordFactory.py | 7 - .../integration/lib/factory/VpnUserFactory.py | 11 +- .../marvin/marvin/integration/lib/newbase.py | 62907 ---------------- 78 files changed, 45 insertions(+), 63508 deletions(-) delete mode 100644 tools/marvin/marvin/integration/lib/base/PublicIpAddresses.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/AccountFromProjectFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/AccountToProjectFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/AlertsFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ApisFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/AsyncJobResultFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/AsyncJobsFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/AutoScalePoliciesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/CapabilitiesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/CapacityFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/CloudIdentifierFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ConfigFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ConfigurationFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/CustomCertificateFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/DefaultZoneForAccountFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/DomainChildrenFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/EventTypesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/EventsFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/FromLoadBalancerRuleFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/HostForMaintenanceFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/HostMaintenanceFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/HostPasswordFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/HypervisorCapabilitiesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/HypervisorsFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/IsoPermissionsFactory.py rename tools/marvin/marvin/integration/lib/factory/{UserKeysFactory.py => LBHealthCheckPolicyFactory.py} (77%) delete mode 100644 tools/marvin/marvin/integration/lib/factory/LBStickinessPoliciesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleInstancesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/NetworkDeviceFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceNetworksFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/PasswordForVirtualMachineFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ProjectAccountsFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/PublicIpAddressesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/RemoveFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ResourceCountFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ResourceLimitFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/RouterFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/SecurityGroupEgressFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/SecurityGroupIngressFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ServiceForRouterFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ServiceForSystemVmFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ServiceForVirtualMachineFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/SnapshotPoliciesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/StorageMaintenanceFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/SupportedNetworkServicesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/SwiftFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/SystemVmFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/TemplatePermissionsFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/ToLoadBalancerRuleFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/TrafficTypeImplementorsFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/UsageTypesFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/factory/VMPasswordFactory.py delete mode 100644 tools/marvin/marvin/integration/lib/newbase.py diff --git a/tools/marvin/marvin/integration/lib/base/IpAddress.py b/tools/marvin/marvin/integration/lib/base/IpAddress.py index ac7f458b3b3..0f81e320378 100644 --- a/tools/marvin/marvin/integration/lib/base/IpAddress.py +++ b/tools/marvin/marvin/integration/lib/base/IpAddress.py @@ -17,6 +17,7 @@ from marvin.integration.lib.base import CloudStackEntity from marvin.cloudstackAPI import disassociateIpAddress from marvin.cloudstackAPI import associateIpAddress +from marvin.cloudstackAPI import listPublicIpAddresses class IpAddress(CloudStackEntity.CloudStackEntity): @@ -40,3 +41,11 @@ class IpAddress(CloudStackEntity.CloudStackEntity): [setattr(cmd, key, value) for key,value in kwargs.iteritems()] ipaddress = apiclient.associateIpAddress(cmd) return ipaddress + + + @classmethod + def list(self, apiclient, **kwargs): + cmd = listPublicIpAddresses.listPublicIpAddressesCmd() + [setattr(cmd, key, value) for key,value in kwargs.iteritems()] + publicipaddresses = apiclient.listPublicIpAddresses(cmd) + return map(lambda e: IpAddress(e.__dict__), publicipaddresses) diff --git a/tools/marvin/marvin/integration/lib/base/LBHealthCheckPolicy.py b/tools/marvin/marvin/integration/lib/base/LBHealthCheckPolicy.py index 1ecc03daa24..5527a1cd14f 100644 --- a/tools/marvin/marvin/integration/lib/base/LBHealthCheckPolicy.py +++ b/tools/marvin/marvin/integration/lib/base/LBHealthCheckPolicy.py @@ -35,10 +35,9 @@ class LBHealthCheckPolicy(CloudStackEntity.CloudStackEntity): return LBHealthCheckPolicy(lbhealthcheckpolicy.__dict__) - def delete(self, apiclient, id, **kwargs): + def delete(self, apiclient, **kwargs): cmd = deleteLBHealthCheckPolicy.deleteLBHealthCheckPolicyCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] lbhealthcheckpolicy = apiclient.deleteLBHealthCheckPolicy(cmd) return lbhealthcheckpolicy diff --git a/tools/marvin/marvin/integration/lib/base/ProjectInvitation.py b/tools/marvin/marvin/integration/lib/base/ProjectInvitation.py index c9a1e25d043..7306bc21653 100644 --- a/tools/marvin/marvin/integration/lib/base/ProjectInvitation.py +++ b/tools/marvin/marvin/integration/lib/base/ProjectInvitation.py @@ -43,10 +43,9 @@ class ProjectInvitation(CloudStackEntity.CloudStackEntity): return projectinvitation - def delete(self, apiclient, id, **kwargs): + def delete(self, apiclient, **kwargs): cmd = deleteProjectInvitation.deleteProjectInvitationCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] projectinvitation = apiclient.deleteProjectInvitation(cmd) return projectinvitation diff --git a/tools/marvin/marvin/integration/lib/base/PublicIpAddresses.py b/tools/marvin/marvin/integration/lib/base/PublicIpAddresses.py deleted file mode 100644 index c64311d3a62..00000000000 --- a/tools/marvin/marvin/integration/lib/base/PublicIpAddresses.py +++ /dev/null @@ -1,32 +0,0 @@ -# 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. -from marvin.integration.lib.base import CloudStackEntity -from marvin.cloudstackAPI import listPublicIpAddresses - -class PublicIpAddresses(CloudStackEntity.CloudStackEntity): - - - def __init__(self, items): - self.__dict__.update(items) - - - @classmethod - def list(self, apiclient, **kwargs): - cmd = listPublicIpAddresses.listPublicIpAddressesCmd() - [setattr(cmd, key, value) for key,value in kwargs.iteritems()] - publicipaddresses = apiclient.listPublicIpAddresses(cmd) - return map(lambda e: PublicIpAddresses(e.__dict__), publicipaddresses) diff --git a/tools/marvin/marvin/integration/lib/base/TrafficMonitor.py b/tools/marvin/marvin/integration/lib/base/TrafficMonitor.py index caf72ef572b..089088f398d 100644 --- a/tools/marvin/marvin/integration/lib/base/TrafficMonitor.py +++ b/tools/marvin/marvin/integration/lib/base/TrafficMonitor.py @@ -45,10 +45,9 @@ class TrafficMonitor(CloudStackEntity.CloudStackEntity): return map(lambda e: TrafficMonitor(e.__dict__), trafficmonitor) - def delete(self, apiclient, id, **kwargs): + def delete(self, apiclient, **kwargs): cmd = deleteTrafficMonitor.deleteTrafficMonitorCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] trafficmonitor = apiclient.deleteTrafficMonitor(cmd) return trafficmonitor diff --git a/tools/marvin/marvin/integration/lib/base/TrafficType.py b/tools/marvin/marvin/integration/lib/base/TrafficType.py index 7f369d1518f..f227673b649 100644 --- a/tools/marvin/marvin/integration/lib/base/TrafficType.py +++ b/tools/marvin/marvin/integration/lib/base/TrafficType.py @@ -46,19 +46,17 @@ class TrafficType(CloudStackEntity.CloudStackEntity): return map(lambda e: TrafficType(e.__dict__), traffictype) - def update(self, apiclient, id, **kwargs): + def update(self, apiclient, **kwargs): cmd = updateTrafficType.updateTrafficTypeCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] traffictype = apiclient.updateTrafficType(cmd) return traffictype - def delete(self, apiclient, id, **kwargs): + def delete(self, apiclient, **kwargs): cmd = deleteTrafficType.deleteTrafficTypeCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] traffictype = apiclient.deleteTrafficType(cmd) return traffictype diff --git a/tools/marvin/marvin/integration/lib/base/User.py b/tools/marvin/marvin/integration/lib/base/User.py index 71028f80dc4..e019c202632 100644 --- a/tools/marvin/marvin/integration/lib/base/User.py +++ b/tools/marvin/marvin/integration/lib/base/User.py @@ -32,10 +32,9 @@ class User(CloudStackEntity.CloudStackEntity): self.__dict__.update(items) - def enable(self, apiclient, id, **kwargs): + def enable(self, apiclient, **kwargs): cmd = enableUser.enableUserCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] user = apiclient.enableUser(cmd) return user @@ -50,10 +49,9 @@ class User(CloudStackEntity.CloudStackEntity): return user - def lock(self, apiclient, id, **kwargs): + def lock(self, apiclient, **kwargs): cmd = lockUser.lockUserCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] user = apiclient.lockUser(cmd) return user @@ -76,28 +74,25 @@ class User(CloudStackEntity.CloudStackEntity): return map(lambda e: User(e.__dict__), user) - def update(self, apiclient, id, **kwargs): + def update(self, apiclient, **kwargs): cmd = updateUser.updateUserCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] user = apiclient.updateUser(cmd) return user - def disable(self, apiclient, id, **kwargs): + def disable(self, apiclient, **kwargs): cmd = disableUser.disableUserCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] user = apiclient.disableUser(cmd) return user - def delete(self, apiclient, id, **kwargs): + def delete(self, apiclient, **kwargs): cmd = deleteUser.deleteUserCmd() cmd.id = self.id - cmd.id = id [setattr(cmd, key, value) for key,value in kwargs.iteritems()] user = apiclient.deleteUser(cmd) return user diff --git a/tools/marvin/marvin/integration/lib/base/VirtualRouterElement.py b/tools/marvin/marvin/integration/lib/base/VirtualRouterElement.py index efa844031d6..f053c9cb657 100644 --- a/tools/marvin/marvin/integration/lib/base/VirtualRouterElement.py +++ b/tools/marvin/marvin/integration/lib/base/VirtualRouterElement.py @@ -43,10 +43,9 @@ class VirtualRouterElement(CloudStackEntity.CloudStackEntity): return map(lambda e: VirtualRouterElement(e.__dict__), virtualrouterelement) - def configure(self, apiclient, enabled, id, **kwargs): + def configure(self, apiclient, enabled, **kwargs): cmd = configureVirtualRouterElement.configureVirtualRouterElementCmd() cmd.id = self.id - cmd.id = id cmd.enabled = enabled [setattr(cmd, key, value) for key,value in kwargs.iteritems()] virtualrouterelement = apiclient.configureVirtualRouterElement(cmd) diff --git a/tools/marvin/marvin/integration/lib/factory/AccountFromProjectFactory.py b/tools/marvin/marvin/integration/lib/factory/AccountFromProjectFactory.py deleted file mode 100644 index ef67a93fe09..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/AccountFromProjectFactory.py +++ /dev/null @@ -1,8 +0,0 @@ -import factory -from marvin.integration.lib.newbase import AccountFromProject -class AccountFromProjectFactory(factory.Factory): - - FACTORY_FOR = AccountFromProject - - account = None - projectid = None diff --git a/tools/marvin/marvin/integration/lib/factory/AccountToProjectFactory.py b/tools/marvin/marvin/integration/lib/factory/AccountToProjectFactory.py deleted file mode 100644 index df54c18aaa8..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/AccountToProjectFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import AccountToProject -class AccountToProjectFactory(factory.Factory): - - FACTORY_FOR = AccountToProject - - projectid = None diff --git a/tools/marvin/marvin/integration/lib/factory/AlertsFactory.py b/tools/marvin/marvin/integration/lib/factory/AlertsFactory.py deleted file mode 100644 index 18ee4e0446b..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/AlertsFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Alerts -class AlertsFactory(factory.Factory): - - FACTORY_FOR = Alerts diff --git a/tools/marvin/marvin/integration/lib/factory/ApisFactory.py b/tools/marvin/marvin/integration/lib/factory/ApisFactory.py deleted file mode 100644 index 78b5986f498..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ApisFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Apis -class ApisFactory(factory.Factory): - - FACTORY_FOR = Apis diff --git a/tools/marvin/marvin/integration/lib/factory/AsyncJobResultFactory.py b/tools/marvin/marvin/integration/lib/factory/AsyncJobResultFactory.py deleted file mode 100644 index d36fad83d1d..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/AsyncJobResultFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import AsyncJobResult -class AsyncJobResultFactory(factory.Factory): - - FACTORY_FOR = AsyncJobResult - - jobid = None diff --git a/tools/marvin/marvin/integration/lib/factory/AsyncJobsFactory.py b/tools/marvin/marvin/integration/lib/factory/AsyncJobsFactory.py deleted file mode 100644 index c85b28185cb..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/AsyncJobsFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import AsyncJobs -class AsyncJobsFactory(factory.Factory): - - FACTORY_FOR = AsyncJobs diff --git a/tools/marvin/marvin/integration/lib/factory/AutoScalePoliciesFactory.py b/tools/marvin/marvin/integration/lib/factory/AutoScalePoliciesFactory.py deleted file mode 100644 index 2cf690226e1..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/AutoScalePoliciesFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import AutoScalePolicies -class AutoScalePoliciesFactory(factory.Factory): - - FACTORY_FOR = AutoScalePolicies diff --git a/tools/marvin/marvin/integration/lib/factory/CapabilitiesFactory.py b/tools/marvin/marvin/integration/lib/factory/CapabilitiesFactory.py deleted file mode 100644 index bb40fd493cc..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/CapabilitiesFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Capabilities -class CapabilitiesFactory(factory.Factory): - - FACTORY_FOR = Capabilities diff --git a/tools/marvin/marvin/integration/lib/factory/CapacityFactory.py b/tools/marvin/marvin/integration/lib/factory/CapacityFactory.py deleted file mode 100644 index 5f4c40658f0..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/CapacityFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Capacity -class CapacityFactory(factory.Factory): - - FACTORY_FOR = Capacity diff --git a/tools/marvin/marvin/integration/lib/factory/CloudIdentifierFactory.py b/tools/marvin/marvin/integration/lib/factory/CloudIdentifierFactory.py deleted file mode 100644 index 22c27d714ea..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/CloudIdentifierFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import CloudIdentifier -class CloudIdentifierFactory(factory.Factory): - - FACTORY_FOR = CloudIdentifier - - userid = None diff --git a/tools/marvin/marvin/integration/lib/factory/ClusterFactory.py b/tools/marvin/marvin/integration/lib/factory/ClusterFactory.py index 2697f6aa3f4..eaf7daa5fa5 100644 --- a/tools/marvin/marvin/integration/lib/factory/ClusterFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/ClusterFactory.py @@ -1,5 +1,5 @@ import factory -from marvin.integration.lib.newbase import Cluster +from marvin.integration.lib.base import Cluster class ClusterFactory(factory.Factory): FACTORY_FOR = Cluster diff --git a/tools/marvin/marvin/integration/lib/factory/ConfigFactory.py b/tools/marvin/marvin/integration/lib/factory/ConfigFactory.py deleted file mode 100644 index f62c5836dd5..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ConfigFactory.py +++ /dev/null @@ -1,9 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Config -class ConfigFactory(factory.Factory): - - FACTORY_FOR = Config - - hostname = None - queryfilter = None - searchbase = None diff --git a/tools/marvin/marvin/integration/lib/factory/ConfigurationFactory.py b/tools/marvin/marvin/integration/lib/factory/ConfigurationFactory.py deleted file mode 100644 index 88c65568e87..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ConfigurationFactory.py +++ /dev/null @@ -1,11 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Configuration -class ConfigurationFactory(factory.Factory): - - FACTORY_FOR = Configuration - - - - FACTORY_FOR = Configuration - - name = None diff --git a/tools/marvin/marvin/integration/lib/factory/CustomCertificateFactory.py b/tools/marvin/marvin/integration/lib/factory/CustomCertificateFactory.py deleted file mode 100644 index c3f8c62b993..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/CustomCertificateFactory.py +++ /dev/null @@ -1,8 +0,0 @@ -import factory -from marvin.integration.lib.newbase import CustomCertificate -class CustomCertificateFactory(factory.Factory): - - FACTORY_FOR = CustomCertificate - - certificate = None - domainsuffix = None diff --git a/tools/marvin/marvin/integration/lib/factory/DefaultZoneForAccountFactory.py b/tools/marvin/marvin/integration/lib/factory/DefaultZoneForAccountFactory.py deleted file mode 100644 index 15da73a6d42..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/DefaultZoneForAccountFactory.py +++ /dev/null @@ -1,9 +0,0 @@ -import factory -from marvin.integration.lib.newbase import DefaultZoneForAccount -class DefaultZoneForAccountFactory(factory.Factory): - - FACTORY_FOR = DefaultZoneForAccount - - account = None - domainid = None - zoneid = None diff --git a/tools/marvin/marvin/integration/lib/factory/DomainChildrenFactory.py b/tools/marvin/marvin/integration/lib/factory/DomainChildrenFactory.py deleted file mode 100644 index 44d350ab8bb..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/DomainChildrenFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import DomainChildren -class DomainChildrenFactory(factory.Factory): - - FACTORY_FOR = DomainChildren diff --git a/tools/marvin/marvin/integration/lib/factory/EventTypesFactory.py b/tools/marvin/marvin/integration/lib/factory/EventTypesFactory.py deleted file mode 100644 index 5e7d7185b75..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/EventTypesFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import EventTypes -class EventTypesFactory(factory.Factory): - - FACTORY_FOR = EventTypes diff --git a/tools/marvin/marvin/integration/lib/factory/EventsFactory.py b/tools/marvin/marvin/integration/lib/factory/EventsFactory.py deleted file mode 100644 index 700f5ae31a8..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/EventsFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Events -class EventsFactory(factory.Factory): - - FACTORY_FOR = Events diff --git a/tools/marvin/marvin/integration/lib/factory/FromLoadBalancerRuleFactory.py b/tools/marvin/marvin/integration/lib/factory/FromLoadBalancerRuleFactory.py deleted file mode 100644 index 82e46cbfe09..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/FromLoadBalancerRuleFactory.py +++ /dev/null @@ -1,8 +0,0 @@ -import factory -from marvin.integration.lib.newbase import FromLoadBalancerRule -class FromLoadBalancerRuleFactory(factory.Factory): - - FACTORY_FOR = FromLoadBalancerRule - - id = None - virtualmachineids = None diff --git a/tools/marvin/marvin/integration/lib/factory/HostFactory.py b/tools/marvin/marvin/integration/lib/factory/HostFactory.py index fcdf07423f2..3bbbaf61236 100644 --- a/tools/marvin/marvin/integration/lib/factory/HostFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/HostFactory.py @@ -1,5 +1,5 @@ import factory -from marvin.integration.lib.newbase import Host +from marvin.integration.lib.base import Host class HostFactory(factory.Factory): FACTORY_FOR = Host @@ -11,21 +11,3 @@ class HostFactory(factory.Factory): username = None zoneid = None - - FACTORY_FOR = Host - - - - FACTORY_FOR = Host - - id = None - - - FACTORY_FOR = Host - - id = None - - - FACTORY_FOR = Host - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/HostForMaintenanceFactory.py b/tools/marvin/marvin/integration/lib/factory/HostForMaintenanceFactory.py deleted file mode 100644 index 653e37a7157..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/HostForMaintenanceFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import HostForMaintenance -class HostForMaintenanceFactory(factory.Factory): - - FACTORY_FOR = HostForMaintenance - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/HostMaintenanceFactory.py b/tools/marvin/marvin/integration/lib/factory/HostMaintenanceFactory.py deleted file mode 100644 index d491e00f5c4..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/HostMaintenanceFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import HostMaintenance -class HostMaintenanceFactory(factory.Factory): - - FACTORY_FOR = HostMaintenance - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/HostPasswordFactory.py b/tools/marvin/marvin/integration/lib/factory/HostPasswordFactory.py deleted file mode 100644 index 316af2b359d..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/HostPasswordFactory.py +++ /dev/null @@ -1,8 +0,0 @@ -import factory -from marvin.integration.lib.newbase import HostPassword -class HostPasswordFactory(factory.Factory): - - FACTORY_FOR = HostPassword - - password = None - username = None diff --git a/tools/marvin/marvin/integration/lib/factory/HypervisorCapabilitiesFactory.py b/tools/marvin/marvin/integration/lib/factory/HypervisorCapabilitiesFactory.py deleted file mode 100644 index 4819a531faa..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/HypervisorCapabilitiesFactory.py +++ /dev/null @@ -1,9 +0,0 @@ -import factory -from marvin.integration.lib.newbase import HypervisorCapabilities -class HypervisorCapabilitiesFactory(factory.Factory): - - FACTORY_FOR = HypervisorCapabilities - - - - FACTORY_FOR = HypervisorCapabilities diff --git a/tools/marvin/marvin/integration/lib/factory/HypervisorsFactory.py b/tools/marvin/marvin/integration/lib/factory/HypervisorsFactory.py deleted file mode 100644 index 7b69ccbdb8d..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/HypervisorsFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Hypervisors -class HypervisorsFactory(factory.Factory): - - FACTORY_FOR = Hypervisors diff --git a/tools/marvin/marvin/integration/lib/factory/InstanceGroupFactory.py b/tools/marvin/marvin/integration/lib/factory/InstanceGroupFactory.py index 022a79a0a71..426c00cc553 100644 --- a/tools/marvin/marvin/integration/lib/factory/InstanceGroupFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/InstanceGroupFactory.py @@ -18,6 +18,6 @@ import factory from marvin.integration.lib.base import InstanceGroup class InstanceGroupFactory(factory.Factory): - FACTORY_FOR = InstanceGroup + FACTORY_FOR = InstanceGroup.InstanceGroup name = None diff --git a/tools/marvin/marvin/integration/lib/factory/IpAddressFactory.py b/tools/marvin/marvin/integration/lib/factory/IpAddressFactory.py index f8c689478ea..46b931ac8fc 100644 --- a/tools/marvin/marvin/integration/lib/factory/IpAddressFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/IpAddressFactory.py @@ -18,5 +18,5 @@ import factory from marvin.integration.lib.base import IpAddress class IpAddressFactory(factory.Factory): - FACTORY_FOR = IpAddress + FACTORY_FOR = IpAddress.IpAddress diff --git a/tools/marvin/marvin/integration/lib/factory/IsoFactory.py b/tools/marvin/marvin/integration/lib/factory/IsoFactory.py index 086c7e5a6d0..65655aa9e18 100644 --- a/tools/marvin/marvin/integration/lib/factory/IsoFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/IsoFactory.py @@ -18,7 +18,7 @@ import factory from marvin.integration.lib.base import Iso class IsoFactory(factory.Factory): - FACTORY_FOR = Iso + FACTORY_FOR = Iso.Iso displaytext = None name = None diff --git a/tools/marvin/marvin/integration/lib/factory/IsoPermissionsFactory.py b/tools/marvin/marvin/integration/lib/factory/IsoPermissionsFactory.py deleted file mode 100644 index 9116ff95acb..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/IsoPermissionsFactory.py +++ /dev/null @@ -1,12 +0,0 @@ -import factory -from marvin.integration.lib.newbase import IsoPermissions -class IsoPermissionsFactory(factory.Factory): - - FACTORY_FOR = IsoPermissions - - id = None - - - FACTORY_FOR = IsoPermissions - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/UserKeysFactory.py b/tools/marvin/marvin/integration/lib/factory/LBHealthCheckPolicyFactory.py similarity index 77% rename from tools/marvin/marvin/integration/lib/factory/UserKeysFactory.py rename to tools/marvin/marvin/integration/lib/factory/LBHealthCheckPolicyFactory.py index c905c1c6aa3..215c4c369e1 100644 --- a/tools/marvin/marvin/integration/lib/factory/UserKeysFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/LBHealthCheckPolicyFactory.py @@ -15,9 +15,12 @@ # specific language governing permissions and limitations # under the License. import factory -from marvin.integration.lib.base import UserKeys -class UserKeysFactory(factory.Factory): +from marvin.integration.lib.base import LBHealthCheckPolicy - FACTORY_FOR = UserKeys +class LBHealthCheckPolicyFactory(factory.Factory): - id = None + FACTORY_FOR = LBHealthCheckPolicy.LBHealthCheckPolicy + + lbruleid = None + methodname = None + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/LBStickinessPoliciesFactory.py b/tools/marvin/marvin/integration/lib/factory/LBStickinessPoliciesFactory.py deleted file mode 100644 index 1ed738bcb1f..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/LBStickinessPoliciesFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import LBStickinessPolicies -class LBStickinessPoliciesFactory(factory.Factory): - - FACTORY_FOR = LBStickinessPolicies - - lbruleid = None diff --git a/tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleInstancesFactory.py b/tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleInstancesFactory.py deleted file mode 100644 index f5abf63df00..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleInstancesFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import LoadBalancerRuleInstances -class LoadBalancerRuleInstancesFactory(factory.Factory): - - FACTORY_FOR = LoadBalancerRuleInstances - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/NetworkDeviceFactory.py b/tools/marvin/marvin/integration/lib/factory/NetworkDeviceFactory.py deleted file mode 100644 index 1437e256c65..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/NetworkDeviceFactory.py +++ /dev/null @@ -1,15 +0,0 @@ -import factory -from marvin.integration.lib.newbase import NetworkDevice -class NetworkDeviceFactory(factory.Factory): - - FACTORY_FOR = NetworkDevice - - - - FACTORY_FOR = NetworkDevice - - - - FACTORY_FOR = NetworkDevice - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/NetworkServiceProviderFactory.py b/tools/marvin/marvin/integration/lib/factory/NetworkServiceProviderFactory.py index 108af5d6e0d..649ea1675a6 100644 --- a/tools/marvin/marvin/integration/lib/factory/NetworkServiceProviderFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/NetworkServiceProviderFactory.py @@ -1,22 +1,8 @@ import factory -from marvin.integration.lib.newbase import NetworkServiceProvider +from marvin.integration.lib.base import NetworkServiceProvider class NetworkServiceProviderFactory(factory.Factory): FACTORY_FOR = NetworkServiceProvider name = None physicalnetworkid = None - - - FACTORY_FOR = NetworkServiceProvider - - - - FACTORY_FOR = NetworkServiceProvider - - id = None - - - FACTORY_FOR = NetworkServiceProvider - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceFactory.py b/tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceFactory.py index 8448c420626..1e71beb39af 100644 --- a/tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceFactory.py @@ -1,5 +1,5 @@ import factory -from marvin.integration.lib.newbase import NiciraNvpDevice +from marvin.integration.lib.base import NiciraNvpDevice class NiciraNvpDeviceFactory(factory.Factory): FACTORY_FOR = NiciraNvpDevice @@ -9,12 +9,3 @@ class NiciraNvpDeviceFactory(factory.Factory): physicalnetworkid = None transportzoneuuid = None username = None - - - FACTORY_FOR = NiciraNvpDevice - - - - FACTORY_FOR = NiciraNvpDevice - - nvpdeviceid = None diff --git a/tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceNetworksFactory.py b/tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceNetworksFactory.py deleted file mode 100644 index fe7dc707198..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceNetworksFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import NiciraNvpDeviceNetworks -class NiciraNvpDeviceNetworksFactory(factory.Factory): - - FACTORY_FOR = NiciraNvpDeviceNetworks - - nvpdeviceid = None diff --git a/tools/marvin/marvin/integration/lib/factory/OsCategoriesFactory.py b/tools/marvin/marvin/integration/lib/factory/OsCategoriesFactory.py index 0d60359b570..0e0e79ad274 100644 --- a/tools/marvin/marvin/integration/lib/factory/OsCategoriesFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/OsCategoriesFactory.py @@ -1,5 +1,5 @@ import factory -from marvin.integration.lib.newbase import OsCategories +from marvin.integration.lib.base import OsCategories class OsCategoriesFactory(factory.Factory): FACTORY_FOR = OsCategories diff --git a/tools/marvin/marvin/integration/lib/factory/OsTypesFactory.py b/tools/marvin/marvin/integration/lib/factory/OsTypesFactory.py index fe105b3a567..dacdfd37ed6 100644 --- a/tools/marvin/marvin/integration/lib/factory/OsTypesFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/OsTypesFactory.py @@ -1,5 +1,5 @@ import factory -from marvin.integration.lib.newbase import OsTypes +from marvin.integration.lib.base import OsTypes class OsTypesFactory(factory.Factory): FACTORY_FOR = OsTypes diff --git a/tools/marvin/marvin/integration/lib/factory/PasswordForVirtualMachineFactory.py b/tools/marvin/marvin/integration/lib/factory/PasswordForVirtualMachineFactory.py deleted file mode 100644 index b9592260c2b..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/PasswordForVirtualMachineFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import PasswordForVirtualMachine -class PasswordForVirtualMachineFactory(factory.Factory): - - FACTORY_FOR = PasswordForVirtualMachine - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/ProjectAccountsFactory.py b/tools/marvin/marvin/integration/lib/factory/ProjectAccountsFactory.py deleted file mode 100644 index e242004b860..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ProjectAccountsFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import ProjectAccounts -class ProjectAccountsFactory(factory.Factory): - - FACTORY_FOR = ProjectAccounts - - projectid = None diff --git a/tools/marvin/marvin/integration/lib/factory/ProjectInvitationFactory.py b/tools/marvin/marvin/integration/lib/factory/ProjectInvitationFactory.py index 762a9d440c4..70034a376b4 100644 --- a/tools/marvin/marvin/integration/lib/factory/ProjectInvitationFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/ProjectInvitationFactory.py @@ -1,16 +1,7 @@ import factory -from marvin.integration.lib.newbase import ProjectInvitation +from marvin.integration.lib.base import ProjectInvitation class ProjectInvitationFactory(factory.Factory): FACTORY_FOR = ProjectInvitation - - - - FACTORY_FOR = ProjectInvitation - projectid = None - - - FACTORY_FOR = ProjectInvitation - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/PublicIpAddressesFactory.py b/tools/marvin/marvin/integration/lib/factory/PublicIpAddressesFactory.py deleted file mode 100644 index 32e899e64b9..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/PublicIpAddressesFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import PublicIpAddresses -class PublicIpAddressesFactory(factory.Factory): - - FACTORY_FOR = PublicIpAddresses diff --git a/tools/marvin/marvin/integration/lib/factory/RemoveFactory.py b/tools/marvin/marvin/integration/lib/factory/RemoveFactory.py deleted file mode 100644 index 4cdb94f9c1f..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/RemoveFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Remove -class RemoveFactory(factory.Factory): - - FACTORY_FOR = Remove diff --git a/tools/marvin/marvin/integration/lib/factory/ResourceCountFactory.py b/tools/marvin/marvin/integration/lib/factory/ResourceCountFactory.py deleted file mode 100644 index 7e41d964eae..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ResourceCountFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import ResourceCount -class ResourceCountFactory(factory.Factory): - - FACTORY_FOR = ResourceCount - - domainid = None diff --git a/tools/marvin/marvin/integration/lib/factory/ResourceLimitFactory.py b/tools/marvin/marvin/integration/lib/factory/ResourceLimitFactory.py deleted file mode 100644 index 9e9f0a062bd..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ResourceLimitFactory.py +++ /dev/null @@ -1,11 +0,0 @@ -import factory -from marvin.integration.lib.newbase import ResourceLimit -class ResourceLimitFactory(factory.Factory): - - FACTORY_FOR = ResourceLimit - - - - FACTORY_FOR = ResourceLimit - - resourcetype = None diff --git a/tools/marvin/marvin/integration/lib/factory/RouterFactory.py b/tools/marvin/marvin/integration/lib/factory/RouterFactory.py deleted file mode 100644 index e5d8a6e80b5..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/RouterFactory.py +++ /dev/null @@ -1,26 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Router -class RouterFactory(factory.Factory): - - FACTORY_FOR = Router - - id = None - - - FACTORY_FOR = Router - - - - FACTORY_FOR = Router - - id = None - - - FACTORY_FOR = Router - - id = None - - - FACTORY_FOR = Router - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/S3Factory.py b/tools/marvin/marvin/integration/lib/factory/S3Factory.py index a4942c972d4..56765cead3e 100644 --- a/tools/marvin/marvin/integration/lib/factory/S3Factory.py +++ b/tools/marvin/marvin/integration/lib/factory/S3Factory.py @@ -1,12 +1,8 @@ import factory -from marvin.integration.lib.newbase import S3 +from marvin.integration.lib.base import S3 class S3Factory(factory.Factory): - - FACTORY_FOR = S3 + FACTORY_FOR = S3.S3 accesskey = None bucket = None secretkey = None - - - FACTORY_FOR = S3 diff --git a/tools/marvin/marvin/integration/lib/factory/SecondaryStorageFactory.py b/tools/marvin/marvin/integration/lib/factory/SecondaryStorageFactory.py index b44f1ede12e..6af655c3d8f 100644 --- a/tools/marvin/marvin/integration/lib/factory/SecondaryStorageFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/SecondaryStorageFactory.py @@ -1,5 +1,5 @@ import factory -from marvin.integration.lib.newbase import SecondaryStorage +from marvin.integration.lib.base import SecondaryStorage class SecondaryStorageFactory(factory.Factory): FACTORY_FOR = SecondaryStorage diff --git a/tools/marvin/marvin/integration/lib/factory/SecurityGroupEgressFactory.py b/tools/marvin/marvin/integration/lib/factory/SecurityGroupEgressFactory.py deleted file mode 100644 index 19e715db9d4..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/SecurityGroupEgressFactory.py +++ /dev/null @@ -1,11 +0,0 @@ -import factory -from marvin.integration.lib.newbase import SecurityGroupEgress -class SecurityGroupEgressFactory(factory.Factory): - - FACTORY_FOR = SecurityGroupEgress - - - - FACTORY_FOR = SecurityGroupEgress - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/SecurityGroupIngressFactory.py b/tools/marvin/marvin/integration/lib/factory/SecurityGroupIngressFactory.py deleted file mode 100644 index d0f44476915..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/SecurityGroupIngressFactory.py +++ /dev/null @@ -1,11 +0,0 @@ -import factory -from marvin.integration.lib.newbase import SecurityGroupIngress -class SecurityGroupIngressFactory(factory.Factory): - - FACTORY_FOR = SecurityGroupIngress - - - - FACTORY_FOR = SecurityGroupIngress - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/ServiceForRouterFactory.py b/tools/marvin/marvin/integration/lib/factory/ServiceForRouterFactory.py deleted file mode 100644 index faa7d7dc2fb..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ServiceForRouterFactory.py +++ /dev/null @@ -1,8 +0,0 @@ -import factory -from marvin.integration.lib.newbase import ServiceForRouter -class ServiceForRouterFactory(factory.Factory): - - FACTORY_FOR = ServiceForRouter - - id = None - serviceofferingid = None diff --git a/tools/marvin/marvin/integration/lib/factory/ServiceForSystemVmFactory.py b/tools/marvin/marvin/integration/lib/factory/ServiceForSystemVmFactory.py deleted file mode 100644 index 42ee08183cb..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ServiceForSystemVmFactory.py +++ /dev/null @@ -1,8 +0,0 @@ -import factory -from marvin.integration.lib.newbase import ServiceForSystemVm -class ServiceForSystemVmFactory(factory.Factory): - - FACTORY_FOR = ServiceForSystemVm - - id = None - serviceofferingid = None diff --git a/tools/marvin/marvin/integration/lib/factory/ServiceForVirtualMachineFactory.py b/tools/marvin/marvin/integration/lib/factory/ServiceForVirtualMachineFactory.py deleted file mode 100644 index 28845946756..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ServiceForVirtualMachineFactory.py +++ /dev/null @@ -1,8 +0,0 @@ -import factory -from marvin.integration.lib.newbase import ServiceForVirtualMachine -class ServiceForVirtualMachineFactory(factory.Factory): - - FACTORY_FOR = ServiceForVirtualMachine - - id = None - serviceofferingid = None diff --git a/tools/marvin/marvin/integration/lib/factory/SnapshotPoliciesFactory.py b/tools/marvin/marvin/integration/lib/factory/SnapshotPoliciesFactory.py deleted file mode 100644 index bf4cd1679a5..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/SnapshotPoliciesFactory.py +++ /dev/null @@ -1,10 +0,0 @@ -import factory -from marvin.integration.lib.newbase import SnapshotPolicies -class SnapshotPoliciesFactory(factory.Factory): - - FACTORY_FOR = SnapshotPolicies - - volumeid = None - - - FACTORY_FOR = SnapshotPolicies diff --git a/tools/marvin/marvin/integration/lib/factory/StaticNatFactory.py b/tools/marvin/marvin/integration/lib/factory/StaticNatFactory.py index 817fb27a2a0..72c5437ee52 100644 --- a/tools/marvin/marvin/integration/lib/factory/StaticNatFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/StaticNatFactory.py @@ -1,13 +1,8 @@ import factory -from marvin.integration.lib.newbase import StaticNat +from marvin.integration.lib.base import StaticNat class StaticNatFactory(factory.Factory): FACTORY_FOR = StaticNat ipaddressid = None virtualmachineid = None - - - FACTORY_FOR = StaticNat - - ipaddressid = None diff --git a/tools/marvin/marvin/integration/lib/factory/StorageMaintenanceFactory.py b/tools/marvin/marvin/integration/lib/factory/StorageMaintenanceFactory.py deleted file mode 100644 index 90335c08221..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/StorageMaintenanceFactory.py +++ /dev/null @@ -1,12 +0,0 @@ -import factory -from marvin.integration.lib.newbase import StorageMaintenance -class StorageMaintenanceFactory(factory.Factory): - - FACTORY_FOR = StorageMaintenance - - id = None - - - FACTORY_FOR = StorageMaintenance - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/StoragePoolFactory.py b/tools/marvin/marvin/integration/lib/factory/StoragePoolFactory.py index 775375d29f5..da45385716f 100644 --- a/tools/marvin/marvin/integration/lib/factory/StoragePoolFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/StoragePoolFactory.py @@ -24,7 +24,3 @@ class StoragePoolFactory(factory.Factory): name = None podid = None url = None - zoneid = None - name = None - url = None - zoneid = None diff --git a/tools/marvin/marvin/integration/lib/factory/SupportedNetworkServicesFactory.py b/tools/marvin/marvin/integration/lib/factory/SupportedNetworkServicesFactory.py deleted file mode 100644 index d82ab68c949..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/SupportedNetworkServicesFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import SupportedNetworkServices -class SupportedNetworkServicesFactory(factory.Factory): - - FACTORY_FOR = SupportedNetworkServices diff --git a/tools/marvin/marvin/integration/lib/factory/SwiftFactory.py b/tools/marvin/marvin/integration/lib/factory/SwiftFactory.py deleted file mode 100644 index a52da8ea82f..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/SwiftFactory.py +++ /dev/null @@ -1,10 +0,0 @@ -import factory -from marvin.integration.lib.newbase import Swift -class SwiftFactory(factory.Factory): - - FACTORY_FOR = Swift - - url = None - - - FACTORY_FOR = Swift diff --git a/tools/marvin/marvin/integration/lib/factory/SystemVmFactory.py b/tools/marvin/marvin/integration/lib/factory/SystemVmFactory.py deleted file mode 100644 index 65c4311f755..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/SystemVmFactory.py +++ /dev/null @@ -1,32 +0,0 @@ -import factory -from marvin.integration.lib.newbase import SystemVm -class SystemVmFactory(factory.Factory): - - FACTORY_FOR = SystemVm - - hostid = None - virtualmachineid = None - - - FACTORY_FOR = SystemVm - - id = None - - - FACTORY_FOR = SystemVm - - - - FACTORY_FOR = SystemVm - - id = None - - - FACTORY_FOR = SystemVm - - id = None - - - FACTORY_FOR = SystemVm - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/TemplatePermissionsFactory.py b/tools/marvin/marvin/integration/lib/factory/TemplatePermissionsFactory.py deleted file mode 100644 index 88f2493137e..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/TemplatePermissionsFactory.py +++ /dev/null @@ -1,12 +0,0 @@ -import factory -from marvin.integration.lib.newbase import TemplatePermissions -class TemplatePermissionsFactory(factory.Factory): - - FACTORY_FOR = TemplatePermissions - - id = None - - - FACTORY_FOR = TemplatePermissions - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/ToLoadBalancerRuleFactory.py b/tools/marvin/marvin/integration/lib/factory/ToLoadBalancerRuleFactory.py deleted file mode 100644 index 57ad32a3313..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/ToLoadBalancerRuleFactory.py +++ /dev/null @@ -1,8 +0,0 @@ -import factory -from marvin.integration.lib.newbase import ToLoadBalancerRule -class ToLoadBalancerRuleFactory(factory.Factory): - - FACTORY_FOR = ToLoadBalancerRule - - id = None - virtualmachineids = None diff --git a/tools/marvin/marvin/integration/lib/factory/TrafficMonitorFactory.py b/tools/marvin/marvin/integration/lib/factory/TrafficMonitorFactory.py index cc6db015d66..63841cbcfc5 100644 --- a/tools/marvin/marvin/integration/lib/factory/TrafficMonitorFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/TrafficMonitorFactory.py @@ -1,18 +1,8 @@ import factory -from marvin.integration.lib.newbase import TrafficMonitor +from marvin.integration.lib.base import TrafficMonitor class TrafficMonitorFactory(factory.Factory): FACTORY_FOR = TrafficMonitor url = None zoneid = None - - - FACTORY_FOR = TrafficMonitor - - zoneid = None - - - FACTORY_FOR = TrafficMonitor - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/TrafficTypeFactory.py b/tools/marvin/marvin/integration/lib/factory/TrafficTypeFactory.py index 78f61a71812..c3368109904 100644 --- a/tools/marvin/marvin/integration/lib/factory/TrafficTypeFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/TrafficTypeFactory.py @@ -1,23 +1,9 @@ import factory -from marvin.integration.lib.newbase import TrafficType +from marvin.integration.lib.base import TrafficType class TrafficTypeFactory(factory.Factory): FACTORY_FOR = TrafficType physicalnetworkid = None traffictype = None - - - FACTORY_FOR = TrafficType - - physicalnetworkid = None - - - FACTORY_FOR = TrafficType - - id = None - - - FACTORY_FOR = TrafficType - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/TrafficTypeImplementorsFactory.py b/tools/marvin/marvin/integration/lib/factory/TrafficTypeImplementorsFactory.py deleted file mode 100644 index 3879caf071b..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/TrafficTypeImplementorsFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import TrafficTypeImplementors -class TrafficTypeImplementorsFactory(factory.Factory): - - FACTORY_FOR = TrafficTypeImplementors diff --git a/tools/marvin/marvin/integration/lib/factory/UsageRecordsFactory.py b/tools/marvin/marvin/integration/lib/factory/UsageRecordsFactory.py index 045bdd07d88..e0c73c89dad 100644 --- a/tools/marvin/marvin/integration/lib/factory/UsageRecordsFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/UsageRecordsFactory.py @@ -1,14 +1,8 @@ import factory -from marvin.integration.lib.newbase import UsageRecords +from marvin.integration.lib.base import UsageRecords class UsageRecordsFactory(factory.Factory): FACTORY_FOR = UsageRecords enddate = None startdate = None - - - FACTORY_FOR = UsageRecords - - enddate = None - startdate = None diff --git a/tools/marvin/marvin/integration/lib/factory/UsageTypesFactory.py b/tools/marvin/marvin/integration/lib/factory/UsageTypesFactory.py deleted file mode 100644 index 6778df45e28..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/UsageTypesFactory.py +++ /dev/null @@ -1,5 +0,0 @@ -import factory -from marvin.integration.lib.newbase import UsageTypes -class UsageTypesFactory(factory.Factory): - - FACTORY_FOR = UsageTypes diff --git a/tools/marvin/marvin/integration/lib/factory/VMPasswordFactory.py b/tools/marvin/marvin/integration/lib/factory/VMPasswordFactory.py deleted file mode 100644 index b1cd5bf1774..00000000000 --- a/tools/marvin/marvin/integration/lib/factory/VMPasswordFactory.py +++ /dev/null @@ -1,7 +0,0 @@ -import factory -from marvin.integration.lib.newbase import VMPassword -class VMPasswordFactory(factory.Factory): - - FACTORY_FOR = VMPassword - - id = None diff --git a/tools/marvin/marvin/integration/lib/factory/VpnUserFactory.py b/tools/marvin/marvin/integration/lib/factory/VpnUserFactory.py index 1dce088e9b4..8a7121e5e0f 100644 --- a/tools/marvin/marvin/integration/lib/factory/VpnUserFactory.py +++ b/tools/marvin/marvin/integration/lib/factory/VpnUserFactory.py @@ -1,17 +1,8 @@ import factory -from marvin.integration.lib.newbase import VpnUser +from marvin.integration.lib.base import VpnUser class VpnUserFactory(factory.Factory): FACTORY_FOR = VpnUser password = None username = None - - - FACTORY_FOR = VpnUser - - - - FACTORY_FOR = VpnUser - - username = None diff --git a/tools/marvin/marvin/integration/lib/newbase.py b/tools/marvin/marvin/integration/lib/newbase.py deleted file mode 100644 index 769092b2b2f..00000000000 --- a/tools/marvin/marvin/integration/lib/newbase.py +++ /dev/null @@ -1,62907 +0,0 @@ -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - -class SSHKeyPair: - - def create(self, apiclient, SSHKeyPairFactory, name, **kwargs): - pass - - def register(self, apiclient, publickey, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, name, **kwargs): - pass - -class PhysicalNetwork: - - def create(self, apiclient, PhysicalNetworkFactory, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class IpForwardingRule: - - def create(self, apiclient, IpForwardingRuleFactory, startport, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ProjectInvitation: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, projectid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Hypervisors: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - -class SSHKeyPair: - - def create(self, apiclient, SSHKeyPairFactory, name, **kwargs): - pass - - def register(self, apiclient, publickey, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, name, **kwargs): - pass - -class PhysicalNetwork: - - def create(self, apiclient, PhysicalNetworkFactory, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class IpForwardingRule: - - def create(self, apiclient, IpForwardingRuleFactory, startport, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ProjectInvitation: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, projectid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - -class SSHKeyPair: - - def create(self, apiclient, SSHKeyPairFactory, name, **kwargs): - pass - - def register(self, apiclient, publickey, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, name, **kwargs): - pass - -class PhysicalNetwork: - - def create(self, apiclient, PhysicalNetworkFactory, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class IpForwardingRule: - - def create(self, apiclient, IpForwardingRuleFactory, startport, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - -class SSHKeyPair: - - def create(self, apiclient, SSHKeyPairFactory, name, **kwargs): - pass - - def register(self, apiclient, publickey, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, name, **kwargs): - pass - -class PhysicalNetwork: - - def create(self, apiclient, PhysicalNetworkFactory, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class IpForwardingRule: - - def create(self, apiclient, IpForwardingRuleFactory, startport, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ProjectInvitation: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, projectid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Hypervisors: - - def list(self, apiclient, **kwargs): - pass - -class ToLoadBalancerRule: - - def assign(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class DomainChildren: - - def list(self, apiclient, **kwargs): - pass - -class Pod: - - def create(self, apiclient, PodFactory, startip, netmask, zoneid, gateway, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - -class SSHKeyPair: - - def create(self, apiclient, SSHKeyPairFactory, name, **kwargs): - pass - - def register(self, apiclient, publickey, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, name, **kwargs): - pass - -class PhysicalNetwork: - - def create(self, apiclient, PhysicalNetworkFactory, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - -class SSHKeyPair: - - def create(self, apiclient, SSHKeyPairFactory, name, **kwargs): - pass - - def register(self, apiclient, publickey, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, name, **kwargs): - pass - -class PhysicalNetwork: - - def create(self, apiclient, PhysicalNetworkFactory, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class IpForwardingRule: - - def create(self, apiclient, IpForwardingRuleFactory, startport, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ProjectInvitation: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, projectid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Hypervisors: - - def list(self, apiclient, **kwargs): - pass - -class ToLoadBalancerRule: - - def assign(self, apiclient, id, virtualmachineids, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - -class SSHKeyPair: - - def create(self, apiclient, SSHKeyPairFactory, name, **kwargs): - pass - - def register(self, apiclient, publickey, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, name, **kwargs): - pass - -class PhysicalNetwork: - - def create(self, apiclient, PhysicalNetworkFactory, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class IpForwardingRule: - - def create(self, apiclient, IpForwardingRuleFactory, startport, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ProjectInvitation: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, projectid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Hypervisors: - - def list(self, apiclient, **kwargs): - pass - -class ToLoadBalancerRule: - - def assign(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class DomainChildren: - - def list(self, apiclient, **kwargs): - pass - -class Pod: - - def create(self, apiclient, PodFactory, startip, netmask, zoneid, gateway, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceForSystemVm: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - -class SSHKeyPair: - - def create(self, apiclient, SSHKeyPairFactory, name, **kwargs): - pass - - def register(self, apiclient, publickey, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, name, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - -class Remove: - - def ldap(self, apiclient): - pass - -class Iso: - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def register(self, apiclient, url, displaytext, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, virtualmachineid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnUser: - - def add(self, apiclient, username, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def remove(self, apiclient, username, **kwargs): - pass - -class SSHKeyPair: - - def create(self, apiclient, SSHKeyPairFactory, name, **kwargs): - pass - - def register(self, apiclient, publickey, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, name, **kwargs): - pass - -class PhysicalNetwork: - - def create(self, apiclient, PhysicalNetworkFactory, name, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class IpForwardingRule: - - def create(self, apiclient, IpForwardingRuleFactory, startport, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ProjectInvitation: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, projectid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Hypervisors: - - def list(self, apiclient, **kwargs): - pass - -class ToLoadBalancerRule: - - def assign(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class DomainChildren: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass - -class Events: - - def list(self, apiclient, **kwargs): - pass - -class Network: - - def create(self, apiclient, NetworkFactory, displaytext, name, networkofferingid, zoneid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def restart(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Tags: - - def create(self, apiclient, TagsFactory, resourcetype, resourceids, tags, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, resourcetype, resourceids, **kwargs): - pass - -class SecurityGroupIngress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class CloudIdentifier: - - def get(self, apiclient, userid, **kwargs): - pass - -class User: - - def enable(self, apiclient, id, **kwargs): - pass - - def get(self, apiclient, userapikey, **kwargs): - pass - - def lock(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, UserFactory, username, account, firstname, lastname, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Condition: - - def create(self, apiclient, ConditionFactory, threshold, relationaloperator, counterid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UserKeys: - - def register(self, apiclient, id, **kwargs): - pass - -class PrivateGateway: - - def create(self, apiclient, PrivateGatewayFactory, netmask, vlan, ipaddress, gateway, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Domain: - - def create(self, apiclient, DomainFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class OsTypes: - - def list(self, apiclient, **kwargs): - pass - -class Snapshot: - - def create(self, apiclient, SnapshotFactory, volumeid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Router: - - def destroy(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - -class IsoPermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicy: - - def create(self, apiclient, LBStickinessPolicyFactory, lbruleid, methodname, name, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class InstanceGroup: - - def create(self, apiclient, InstanceGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Cluster: - - def add(self, apiclient, clustername, hypervisor, zoneid, clustertype, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountFromProject: - - def delete(self, apiclient, projectid, account, **kwargs): - pass - -class Apis: - - def list(self, apiclient, **kwargs): - pass - -class TrafficMonitor: - - def add(self, apiclient, url, zoneid, **kwargs): - pass - - def list(self, apiclient, zoneid, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capabilities: - - def list(self, apiclient): - pass - -class NiciraNvpDevice: - - def add(self, apiclient, username, physicalnetworkid, password, hostname, transportzoneuuid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, nvpdeviceid, **kwargs): - pass - -class SnapshotPolicy: - - def create(self, apiclient, SnapshotPolicyFactory, timezone, maxsnaps, schedule, volumeid, intervaltype, **kwargs): - pass - -class IpAddress: - - def disassociate(self, apiclient, id, **kwargs): - pass - - def associate(self, apiclient, **kwargs): - pass - -class ResourceLimit: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, resourcetype, **kwargs): - pass - -class DefaultZoneForAccount: - - def mark(self, apiclient, account, domainid, zoneid, **kwargs): - pass - -class Volume: - - def migrate(self, apiclient, storageid, volumeid, **kwargs): - pass - - def create(self, apiclient, VolumeFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def upload(self, apiclient, url, zoneid, name, format, **kwargs): - pass - - def attach(self, apiclient, id, virtualmachineid, **kwargs): - pass - - def detach(self, apiclient, **kwargs): - pass - - def extract(self, apiclient, zoneid, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPC: - - def create(self, apiclient, VPCFactory, cidr, zoneid, displaytext, name, vpcofferingid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def restart(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnGateway: - - def create(self, apiclient, VpnGatewayFactory, vpcid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class TrafficTypeImplementors: - - def list(self, apiclient, **kwargs): - pass - -class VpnConnection: - - def reset(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, VpnConnectionFactory, s2scustomergatewayid, s2svpngatewayid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class CustomCertificate: - - def upload(self, apiclient, domainsuffix, certificate, **kwargs): - pass - -class UsageRecords: - - def list(self, apiclient, startdate, enddate, **kwargs): - pass - - def generate(self, apiclient, startdate, enddate, **kwargs): - pass - -class StaticNat: - - def enable(self, apiclient, ipaddressid, virtualmachineid, **kwargs): - pass - - def disable(self, apiclient, ipaddressid, **kwargs): - pass - -class VlanIpRange: - - def create(self, apiclient, VlanIpRangeFactory, startip, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScalePolicy: - - def create(self, apiclient, AutoScalePolicyFactory, action, duration, conditionids, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobs: - - def list(self, apiclient, **kwargs): - pass - - -class SystemVm: - - def migrate(self, apiclient, hostid, virtualmachineid, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - -class SecurityGroupEgress: - - def authorize(self, apiclient, **kwargs): - pass - - def revoke(self, apiclient, id, **kwargs): - pass - -class HostForMaintenance: - - def prepare(self, apiclient, id, **kwargs): - pass - -class HostPassword: - - def update(self, apiclient, username, password, **kwargs): - pass - -class PasswordForVirtualMachine: - - def reset(self, apiclient, id, **kwargs): - pass - -class ResourceCount: - - def update(self, apiclient, domainid, **kwargs): - pass - -class OsCategories: - - def list(self, apiclient, **kwargs): - pass - -class SupportedNetworkServices: - - def list(self, apiclient, **kwargs): - pass - -class LoadBalancerRuleInstances: - - def list(self, apiclient, id, **kwargs): - pass - -class Host: - - def add(self, apiclient, username, podid, url, hypervisor, zoneid, password, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def reconnect(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class UsageTypes: - - def list(self, apiclient): - pass - -class Account: - - def enable(self, apiclient, **kwargs): - pass - - def lock(self, apiclient, account, domainid, **kwargs): - pass - - def create(self, apiclient, AccountFactory, username, firstname, lastname, accounttype, password, email, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, newname, **kwargs): - pass - - def disable(self, apiclient, lock, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkACL: - - def create(self, apiclient, NetworkACLFactory, networkid, protocol, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualMachine: - - def restore(self, apiclient, virtualmachineid, **kwargs): - pass - - def deploy(self, apiclient, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def migrate(self, apiclient, virtualmachineid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def stop(self, apiclient, id, **kwargs): - pass - - def reboot(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def start(self, apiclient, id, **kwargs): - pass - - def destroy(self, apiclient, id, **kwargs): - pass - - def assign(self, apiclient, account, domainid, virtualmachineid, **kwargs): - pass - -class RemoteAccessVpn: - - def create(self, apiclient, RemoteAccessVpnFactory, publicipid, **kwargs): - pass - - def list(self, apiclient, publicipid, **kwargs): - pass - - def delete(self, apiclient, publicipid, **kwargs): - pass - -class Project: - - def suspend(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, ProjectFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def activate(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AsyncJobResult: - - def query(self, apiclient, jobid, **kwargs): - pass - -class NetworkDevice: - - def add(self, apiclient, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VirtualRouterElement: - - def create(self, apiclient, VirtualRouterElementFactory, nspid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def configure(self, apiclient, enabled, id, **kwargs): - pass - -class StorageNetworkIpRange: - - def create(self, apiclient, StorageNetworkIpRangeFactory, startip, netmask, gateway, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VpnCustomerGateway: - - def create(self, apiclient, VpnCustomerGatewayFactory, ipsecpsk, cidrlist, esppolicy, ikepolicy, gateway, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, ikepolicy, cidrlist, gateway, ipsecpsk, esppolicy, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LoadBalancerRule: - - def create(self, apiclient, LoadBalancerRuleFactory, publicport, name, algorithm, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VPCOffering: - - def create(self, apiclient, VPCOfferingFactory, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class LBStickinessPolicies: - - def list(self, apiclient, lbruleid, **kwargs): - pass - -class ServiceForVirtualMachine: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class AutoScalePolicies: - - def list(self, apiclient, **kwargs): - pass - -class NiciraNvpDeviceNetworks: - - def list(self, apiclient, nvpdeviceid, **kwargs): - pass - -class HypervisorCapabilities: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - -class ProjectAccounts: - - def list(self, apiclient, projectid, **kwargs): - pass - -class DiskOffering: - - def create(self, apiclient, DiskOfferingFactory, displaytext, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Zone: - - def create(self, apiclient, ZoneFactory, networktype, dns1, internaldns1, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StaticRoute: - - def create(self, apiclient, StaticRouteFactory, gatewayid, cidr, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class NetworkServiceProvider: - - def add(self, apiclient, physicalnetworkid, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class PublicIpAddresses: - - def list(self, apiclient, **kwargs): - pass - -class NetworkOffering: - - def create(self, apiclient, NetworkOfferingFactory, guestiptype, traffictype, displaytext, name, supportedservices, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class HostMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - -class TemplatePermissions: - - def list(self, apiclient, id, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - -class StoragePool: - - def create(self, apiclient, StoragePoolFactory, url, zoneid, clusterid, name, podid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class StorageMaintenance: - - def cancel(self, apiclient, id, **kwargs): - pass - - def enable(self, apiclient, id, **kwargs): - pass - -class Template: - - def prepare(self, apiclient, zoneid, templateid, **kwargs): - pass - - def create(self, apiclient, TemplateFactory, displaytext, name, ostypeid, **kwargs): - pass - - def register(self, apiclient, name, format, url, hypervisor, zoneid, displaytext, ostypeid, **kwargs): - pass - - def list(self, apiclient, templatefilter, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def copy(self, apiclient, sourcezoneid, id, destzoneid, **kwargs): - pass - - def extract(self, apiclient, id, mode, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Configuration: - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, name, **kwargs): - pass - -class Swift: - - def add(self, apiclient, url, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class AutoScaleVmGroup: - - def enable(self, apiclient, id, **kwargs): - pass - - def create(self, apiclient, AutoScaleVmGroupFactory, scaledownpolicyids, maxmembers, scaleuppolicyids, vmprofileid, minmembers, lbruleid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def disable(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class VMPassword: - - def get(self, apiclient, id, **kwargs): - pass - -class Counter: - - def create(self, apiclient, CounterFactory, source, name, value, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AutoScaleVmProfile: - - def create(self, apiclient, AutoScaleVmProfileFactory, zoneid, serviceofferingid, templateid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class SnapshotPolicies: - - def list(self, apiclient, volumeid, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class FromLoadBalancerRule: - - def remove(self, apiclient, id, virtualmachineids, **kwargs): - pass - -class FirewallRule: - - def create(self, apiclient, FirewallRuleFactory, protocol, ipaddressid, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class AccountToProject: - - def add(self, apiclient, projectid, **kwargs): - pass - -class SecondaryStorage: - - def add(self, apiclient, url, **kwargs): - pass - -class PortForwardingRule: - - def create(self, apiclient, PortForwardingRuleFactory, publicport, virtualmachineid, protocol, ipaddressid, privateport, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, publicport, protocol, ipaddressid, privateport, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class ServiceOffering: - - def create(self, apiclient, ServiceOfferingFactory, displaytext, memory, cpunumber, name, cpuspeed, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class Capacity: - - def list(self, apiclient, **kwargs): - pass - -class S3: - - def add(self, apiclient, secretkey, accesskey, bucket, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - -class Alerts: - - def list(self, apiclient, **kwargs): - pass - -class ServiceForRouter: - - def change(self, apiclient, id, serviceofferingid, **kwargs): - pass - -class SecurityGroup: - - def create(self, apiclient, SecurityGroupFactory, name, **kwargs): - pass - - def list(self, apiclient, **kwargs): - pass - - def delete(self, apiclient, **kwargs): - pass - -class TrafficType: - - def add(self, apiclient, traffictype, physicalnetworkid, **kwargs): - pass - - def list(self, apiclient, physicalnetworkid, **kwargs): - pass - - def update(self, apiclient, id, **kwargs): - pass - - def delete(self, apiclient, id, **kwargs): - pass - -class EventTypes: - - def list(self, apiclient): - pass - -class Config: - - def ldap(self, apiclient, queryfilter, hostname, searchbase, **kwargs): - pass