diff --git a/tools/marvin/marvin/integration/lib/factory/AccountFactory.py b/tools/marvin/marvin/integration/lib/factory/AccountFactory.py new file mode 100644 index 00000000000..aeed02a78c6 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AccountFactory.py @@ -0,0 +1,12 @@ +import factory +from marvin.integration.lib.newbase import Account +class AccountFactory(factory.Factory): + + FACTORY_FOR = Account + + accounttype = None + email = None + firstname = None + lastname = None + password = None + username = None diff --git a/tools/marvin/marvin/integration/lib/factory/AccountFromProjectFactory.py b/tools/marvin/marvin/integration/lib/factory/AccountFromProjectFactory.py new file mode 100644 index 00000000000..ef67a93fe09 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AccountFromProjectFactory.py @@ -0,0 +1,8 @@ +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 new file mode 100644 index 00000000000..df54c18aaa8 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AccountToProjectFactory.py @@ -0,0 +1,7 @@ +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 new file mode 100644 index 00000000000..18ee4e0446b --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AlertsFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..78b5986f498 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ApisFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..d36fad83d1d --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AsyncJobResultFactory.py @@ -0,0 +1,7 @@ +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 new file mode 100644 index 00000000000..c85b28185cb --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AsyncJobsFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..2cf690226e1 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AutoScalePoliciesFactory.py @@ -0,0 +1,5 @@ +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/AutoScalePolicyFactory.py b/tools/marvin/marvin/integration/lib/factory/AutoScalePolicyFactory.py new file mode 100644 index 00000000000..22f7eb1f834 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AutoScalePolicyFactory.py @@ -0,0 +1,9 @@ +import factory +from marvin.integration.lib.newbase import AutoScalePolicy +class AutoScalePolicyFactory(factory.Factory): + + FACTORY_FOR = AutoScalePolicy + + action = None + conditionids = None + duration = None diff --git a/tools/marvin/marvin/integration/lib/factory/AutoScaleVmGroupFactory.py b/tools/marvin/marvin/integration/lib/factory/AutoScaleVmGroupFactory.py new file mode 100644 index 00000000000..ac156e4471b --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AutoScaleVmGroupFactory.py @@ -0,0 +1,12 @@ +import factory +from marvin.integration.lib.newbase import AutoScaleVmGroup +class AutoScaleVmGroupFactory(factory.Factory): + + FACTORY_FOR = AutoScaleVmGroup + + lbruleid = None + maxmembers = None + minmembers = None + scaledownpolicyids = None + scaleuppolicyids = None + vmprofileid = None diff --git a/tools/marvin/marvin/integration/lib/factory/AutoScaleVmProfileFactory.py b/tools/marvin/marvin/integration/lib/factory/AutoScaleVmProfileFactory.py new file mode 100644 index 00000000000..56a5b781841 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/AutoScaleVmProfileFactory.py @@ -0,0 +1,9 @@ +import factory +from marvin.integration.lib.newbase import AutoScaleVmProfile +class AutoScaleVmProfileFactory(factory.Factory): + + FACTORY_FOR = AutoScaleVmProfile + + serviceofferingid = None + templateid = None + zoneid = None diff --git a/tools/marvin/marvin/integration/lib/factory/CapabilitiesFactory.py b/tools/marvin/marvin/integration/lib/factory/CapabilitiesFactory.py new file mode 100644 index 00000000000..bb40fd493cc --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/CapabilitiesFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..5f4c40658f0 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/CapacityFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..22c27d714ea --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/CloudIdentifierFactory.py @@ -0,0 +1,7 @@ +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 new file mode 100644 index 00000000000..2697f6aa3f4 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ClusterFactory.py @@ -0,0 +1,25 @@ +import factory +from marvin.integration.lib.newbase import Cluster +class ClusterFactory(factory.Factory): + + FACTORY_FOR = Cluster + + clustername = None + clustertype = None + hypervisor = None + podid = None + zoneid = None + + + FACTORY_FOR = Cluster + + + + FACTORY_FOR = Cluster + + id = None + + + FACTORY_FOR = Cluster + + id = None diff --git a/tools/marvin/marvin/integration/lib/factory/ConditionFactory.py b/tools/marvin/marvin/integration/lib/factory/ConditionFactory.py new file mode 100644 index 00000000000..621dc53d5d1 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ConditionFactory.py @@ -0,0 +1,9 @@ +import factory +from marvin.integration.lib.newbase import Condition +class ConditionFactory(factory.Factory): + + FACTORY_FOR = Condition + + counterid = None + relationaloperator = None + threshold = None diff --git a/tools/marvin/marvin/integration/lib/factory/ConfigFactory.py b/tools/marvin/marvin/integration/lib/factory/ConfigFactory.py new file mode 100644 index 00000000000..f62c5836dd5 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ConfigFactory.py @@ -0,0 +1,9 @@ +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 new file mode 100644 index 00000000000..88c65568e87 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ConfigurationFactory.py @@ -0,0 +1,11 @@ +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/CounterFactory.py b/tools/marvin/marvin/integration/lib/factory/CounterFactory.py new file mode 100644 index 00000000000..e1952272109 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/CounterFactory.py @@ -0,0 +1,9 @@ +import factory +from marvin.integration.lib.newbase import Counter +class CounterFactory(factory.Factory): + + FACTORY_FOR = Counter + + name = None + source = None + value = None diff --git a/tools/marvin/marvin/integration/lib/factory/CustomCertificateFactory.py b/tools/marvin/marvin/integration/lib/factory/CustomCertificateFactory.py new file mode 100644 index 00000000000..c3f8c62b993 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/CustomCertificateFactory.py @@ -0,0 +1,8 @@ +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 new file mode 100644 index 00000000000..15da73a6d42 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/DefaultZoneForAccountFactory.py @@ -0,0 +1,9 @@ +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/DiskOfferingFactory.py b/tools/marvin/marvin/integration/lib/factory/DiskOfferingFactory.py new file mode 100644 index 00000000000..11fb5c26792 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/DiskOfferingFactory.py @@ -0,0 +1,8 @@ +import factory +from marvin.integration.lib.newbase import DiskOffering +class DiskOfferingFactory(factory.Factory): + + FACTORY_FOR = DiskOffering + + displaytext = None + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/DomainChildrenFactory.py b/tools/marvin/marvin/integration/lib/factory/DomainChildrenFactory.py new file mode 100644 index 00000000000..44d350ab8bb --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/DomainChildrenFactory.py @@ -0,0 +1,5 @@ +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/DomainFactory.py b/tools/marvin/marvin/integration/lib/factory/DomainFactory.py new file mode 100644 index 00000000000..0c51f027c50 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/DomainFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import Domain +class DomainFactory(factory.Factory): + + FACTORY_FOR = Domain + + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/EventTypesFactory.py b/tools/marvin/marvin/integration/lib/factory/EventTypesFactory.py new file mode 100644 index 00000000000..5e7d7185b75 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/EventTypesFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..700f5ae31a8 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/EventsFactory.py @@ -0,0 +1,5 @@ +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/FirewallRuleFactory.py b/tools/marvin/marvin/integration/lib/factory/FirewallRuleFactory.py new file mode 100644 index 00000000000..bdc6a4875fd --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/FirewallRuleFactory.py @@ -0,0 +1,8 @@ +import factory +from marvin.integration.lib.newbase import FirewallRule +class FirewallRuleFactory(factory.Factory): + + FACTORY_FOR = FirewallRule + + ipaddressid = None + protocol = None diff --git a/tools/marvin/marvin/integration/lib/factory/FromLoadBalancerRuleFactory.py b/tools/marvin/marvin/integration/lib/factory/FromLoadBalancerRuleFactory.py new file mode 100644 index 00000000000..82e46cbfe09 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/FromLoadBalancerRuleFactory.py @@ -0,0 +1,8 @@ +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 new file mode 100644 index 00000000000..fcdf07423f2 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/HostFactory.py @@ -0,0 +1,31 @@ +import factory +from marvin.integration.lib.newbase import Host +class HostFactory(factory.Factory): + + FACTORY_FOR = Host + + hypervisor = None + password = None + podid = None + url = None + 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 new file mode 100644 index 00000000000..653e37a7157 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/HostForMaintenanceFactory.py @@ -0,0 +1,7 @@ +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 new file mode 100644 index 00000000000..d491e00f5c4 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/HostMaintenanceFactory.py @@ -0,0 +1,7 @@ +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 new file mode 100644 index 00000000000..316af2b359d --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/HostPasswordFactory.py @@ -0,0 +1,8 @@ +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 new file mode 100644 index 00000000000..4819a531faa --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/HypervisorCapabilitiesFactory.py @@ -0,0 +1,9 @@ +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 new file mode 100644 index 00000000000..7b69ccbdb8d --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/HypervisorsFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..b4cca6743b7 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/InstanceGroupFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import InstanceGroup +class InstanceGroupFactory(factory.Factory): + + FACTORY_FOR = InstanceGroup + + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/IpAddressFactory.py b/tools/marvin/marvin/integration/lib/factory/IpAddressFactory.py new file mode 100644 index 00000000000..751c858063e --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/IpAddressFactory.py @@ -0,0 +1,10 @@ +import factory +from marvin.integration.lib.newbase import IpAddress +class IpAddressFactory(factory.Factory): + + FACTORY_FOR = IpAddress + + id = None + + + FACTORY_FOR = IpAddress diff --git a/tools/marvin/marvin/integration/lib/factory/IpForwardingRuleFactory.py b/tools/marvin/marvin/integration/lib/factory/IpForwardingRuleFactory.py new file mode 100644 index 00000000000..2e297c0a6c0 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/IpForwardingRuleFactory.py @@ -0,0 +1,9 @@ +import factory +from marvin.integration.lib.newbase import IpForwardingRule +class IpForwardingRuleFactory(factory.Factory): + + FACTORY_FOR = IpForwardingRule + + ipaddressid = None + protocol = None + startport = None diff --git a/tools/marvin/marvin/integration/lib/factory/IsoFactory.py b/tools/marvin/marvin/integration/lib/factory/IsoFactory.py new file mode 100644 index 00000000000..4daae418135 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/IsoFactory.py @@ -0,0 +1,50 @@ +import factory +from marvin.integration.lib.newbase import Iso +class IsoFactory(factory.Factory): + + FACTORY_FOR = Iso + + id = None + destzoneid = None + destzoneid = None + sourcezoneid = None + sourcezoneid = None + + + FACTORY_FOR = Iso + + displaytext = None + name = None + url = None + zoneid = None + + + FACTORY_FOR = Iso + + + + FACTORY_FOR = Iso + + id = None + + + FACTORY_FOR = Iso + + id = None + virtualmachineid = None + + + FACTORY_FOR = Iso + + virtualmachineid = None + + + FACTORY_FOR = Iso + + id = None + mode = None + + + FACTORY_FOR = Iso + + id = None diff --git a/tools/marvin/marvin/integration/lib/factory/IsoPermissionsFactory.py b/tools/marvin/marvin/integration/lib/factory/IsoPermissionsFactory.py new file mode 100644 index 00000000000..9116ff95acb --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/IsoPermissionsFactory.py @@ -0,0 +1,12 @@ +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/LBStickinessPoliciesFactory.py b/tools/marvin/marvin/integration/lib/factory/LBStickinessPoliciesFactory.py new file mode 100644 index 00000000000..1ed738bcb1f --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/LBStickinessPoliciesFactory.py @@ -0,0 +1,7 @@ +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/LBStickinessPolicyFactory.py b/tools/marvin/marvin/integration/lib/factory/LBStickinessPolicyFactory.py new file mode 100644 index 00000000000..d05b375ace9 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/LBStickinessPolicyFactory.py @@ -0,0 +1,9 @@ +import factory +from marvin.integration.lib.newbase import LBStickinessPolicy +class LBStickinessPolicyFactory(factory.Factory): + + FACTORY_FOR = LBStickinessPolicy + + lbruleid = None + methodname = None + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleFactory.py b/tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleFactory.py new file mode 100644 index 00000000000..469f425f495 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleFactory.py @@ -0,0 +1,10 @@ +import factory +from marvin.integration.lib.newbase import LoadBalancerRule +class LoadBalancerRuleFactory(factory.Factory): + + FACTORY_FOR = LoadBalancerRule + + algorithm = None + name = None + privateport = None + publicport = None diff --git a/tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleInstancesFactory.py b/tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleInstancesFactory.py new file mode 100644 index 00000000000..f5abf63df00 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/LoadBalancerRuleInstancesFactory.py @@ -0,0 +1,7 @@ +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/NetworkACLFactory.py b/tools/marvin/marvin/integration/lib/factory/NetworkACLFactory.py new file mode 100644 index 00000000000..aab418c3ee2 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/NetworkACLFactory.py @@ -0,0 +1,8 @@ +import factory +from marvin.integration.lib.newbase import NetworkACL +class NetworkACLFactory(factory.Factory): + + FACTORY_FOR = NetworkACL + + networkid = None + protocol = None diff --git a/tools/marvin/marvin/integration/lib/factory/NetworkDeviceFactory.py b/tools/marvin/marvin/integration/lib/factory/NetworkDeviceFactory.py new file mode 100644 index 00000000000..1437e256c65 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/NetworkDeviceFactory.py @@ -0,0 +1,15 @@ +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/NetworkFactory.py b/tools/marvin/marvin/integration/lib/factory/NetworkFactory.py new file mode 100644 index 00000000000..17368f97931 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/NetworkFactory.py @@ -0,0 +1,10 @@ +import factory +from marvin.integration.lib.newbase import Network +class NetworkFactory(factory.Factory): + + FACTORY_FOR = Network + + displaytext = None + name = None + networkofferingid = None + zoneid = None diff --git a/tools/marvin/marvin/integration/lib/factory/NetworkOfferingFactory.py b/tools/marvin/marvin/integration/lib/factory/NetworkOfferingFactory.py new file mode 100644 index 00000000000..18629db2e80 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/NetworkOfferingFactory.py @@ -0,0 +1,11 @@ +import factory +from marvin.integration.lib.newbase import NetworkOffering +class NetworkOfferingFactory(factory.Factory): + + FACTORY_FOR = NetworkOffering + + displaytext = None + guestiptype = None + name = None + supportedservices = None + traffictype = None diff --git a/tools/marvin/marvin/integration/lib/factory/NetworkServiceProviderFactory.py b/tools/marvin/marvin/integration/lib/factory/NetworkServiceProviderFactory.py new file mode 100644 index 00000000000..108af5d6e0d --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/NetworkServiceProviderFactory.py @@ -0,0 +1,22 @@ +import factory +from marvin.integration.lib.newbase 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 new file mode 100644 index 00000000000..8448c420626 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceFactory.py @@ -0,0 +1,20 @@ +import factory +from marvin.integration.lib.newbase import NiciraNvpDevice +class NiciraNvpDeviceFactory(factory.Factory): + + FACTORY_FOR = NiciraNvpDevice + + hostname = None + password = None + 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 new file mode 100644 index 00000000000..fe7dc707198 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/NiciraNvpDeviceNetworksFactory.py @@ -0,0 +1,7 @@ +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 new file mode 100644 index 00000000000..0d60359b570 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/OsCategoriesFactory.py @@ -0,0 +1,5 @@ +import factory +from marvin.integration.lib.newbase 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 new file mode 100644 index 00000000000..fe105b3a567 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/OsTypesFactory.py @@ -0,0 +1,5 @@ +import factory +from marvin.integration.lib.newbase 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 new file mode 100644 index 00000000000..b9592260c2b --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/PasswordForVirtualMachineFactory.py @@ -0,0 +1,7 @@ +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/PhysicalNetworkFactory.py b/tools/marvin/marvin/integration/lib/factory/PhysicalNetworkFactory.py new file mode 100644 index 00000000000..61ae19d3b30 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/PhysicalNetworkFactory.py @@ -0,0 +1,8 @@ +import factory +from marvin.integration.lib.newbase import PhysicalNetwork +class PhysicalNetworkFactory(factory.Factory): + + FACTORY_FOR = PhysicalNetwork + + name = None + zoneid = None diff --git a/tools/marvin/marvin/integration/lib/factory/PodFactory.py b/tools/marvin/marvin/integration/lib/factory/PodFactory.py new file mode 100644 index 00000000000..117cf2620a0 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/PodFactory.py @@ -0,0 +1,11 @@ +import factory +from marvin.integration.lib.newbase import Pod +class PodFactory(factory.Factory): + + FACTORY_FOR = Pod + + gateway = None + name = None + netmask = None + startip = None + zoneid = None diff --git a/tools/marvin/marvin/integration/lib/factory/PortForwardingRuleFactory.py b/tools/marvin/marvin/integration/lib/factory/PortForwardingRuleFactory.py new file mode 100644 index 00000000000..dfb463595da --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/PortForwardingRuleFactory.py @@ -0,0 +1,11 @@ +import factory +from marvin.integration.lib.newbase import PortForwardingRule +class PortForwardingRuleFactory(factory.Factory): + + FACTORY_FOR = PortForwardingRule + + ipaddressid = None + privateport = None + protocol = None + publicport = None + virtualmachineid = None diff --git a/tools/marvin/marvin/integration/lib/factory/PrivateGatewayFactory.py b/tools/marvin/marvin/integration/lib/factory/PrivateGatewayFactory.py new file mode 100644 index 00000000000..057375707a4 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/PrivateGatewayFactory.py @@ -0,0 +1,11 @@ +import factory +from marvin.integration.lib.newbase import PrivateGateway +class PrivateGatewayFactory(factory.Factory): + + FACTORY_FOR = PrivateGateway + + gateway = None + ipaddress = None + netmask = None + vlan = None + vpcid = None diff --git a/tools/marvin/marvin/integration/lib/factory/ProjectAccountsFactory.py b/tools/marvin/marvin/integration/lib/factory/ProjectAccountsFactory.py new file mode 100644 index 00000000000..e242004b860 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ProjectAccountsFactory.py @@ -0,0 +1,7 @@ +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/ProjectFactory.py b/tools/marvin/marvin/integration/lib/factory/ProjectFactory.py new file mode 100644 index 00000000000..0b91585e027 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ProjectFactory.py @@ -0,0 +1,8 @@ +import factory +from marvin.integration.lib.newbase import Project +class ProjectFactory(factory.Factory): + + FACTORY_FOR = Project + + displaytext = None + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/ProjectInvitationFactory.py b/tools/marvin/marvin/integration/lib/factory/ProjectInvitationFactory.py new file mode 100644 index 00000000000..762a9d440c4 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ProjectInvitationFactory.py @@ -0,0 +1,16 @@ +import factory +from marvin.integration.lib.newbase 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 new file mode 100644 index 00000000000..32e899e64b9 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/PublicIpAddressesFactory.py @@ -0,0 +1,5 @@ +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/RemoteAccessVpnFactory.py b/tools/marvin/marvin/integration/lib/factory/RemoteAccessVpnFactory.py new file mode 100644 index 00000000000..445a8d3b733 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/RemoteAccessVpnFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import RemoteAccessVpn +class RemoteAccessVpnFactory(factory.Factory): + + FACTORY_FOR = RemoteAccessVpn + + publicipid = None diff --git a/tools/marvin/marvin/integration/lib/factory/RemoveFactory.py b/tools/marvin/marvin/integration/lib/factory/RemoveFactory.py new file mode 100644 index 00000000000..4cdb94f9c1f --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/RemoveFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..7e41d964eae --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ResourceCountFactory.py @@ -0,0 +1,7 @@ +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 new file mode 100644 index 00000000000..9e9f0a062bd --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ResourceLimitFactory.py @@ -0,0 +1,11 @@ +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 new file mode 100644 index 00000000000..e5d8a6e80b5 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/RouterFactory.py @@ -0,0 +1,26 @@ +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 new file mode 100644 index 00000000000..a4942c972d4 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/S3Factory.py @@ -0,0 +1,12 @@ +import factory +from marvin.integration.lib.newbase import S3 +class S3Factory(factory.Factory): + + FACTORY_FOR = S3 + + accesskey = None + bucket = None + secretkey = None + + + FACTORY_FOR = S3 diff --git a/tools/marvin/marvin/integration/lib/factory/SSHKeyPairFactory.py b/tools/marvin/marvin/integration/lib/factory/SSHKeyPairFactory.py new file mode 100644 index 00000000000..7181c8b5d09 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SSHKeyPairFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import SSHKeyPair +class SSHKeyPairFactory(factory.Factory): + + FACTORY_FOR = SSHKeyPair + + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/SecondaryStorageFactory.py b/tools/marvin/marvin/integration/lib/factory/SecondaryStorageFactory.py new file mode 100644 index 00000000000..b44f1ede12e --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SecondaryStorageFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import SecondaryStorage +class SecondaryStorageFactory(factory.Factory): + + FACTORY_FOR = SecondaryStorage + + url = None diff --git a/tools/marvin/marvin/integration/lib/factory/SecurityGroupEgressFactory.py b/tools/marvin/marvin/integration/lib/factory/SecurityGroupEgressFactory.py new file mode 100644 index 00000000000..19e715db9d4 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SecurityGroupEgressFactory.py @@ -0,0 +1,11 @@ +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/SecurityGroupFactory.py b/tools/marvin/marvin/integration/lib/factory/SecurityGroupFactory.py new file mode 100644 index 00000000000..6b7cc8a7182 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SecurityGroupFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import SecurityGroup +class SecurityGroupFactory(factory.Factory): + + FACTORY_FOR = SecurityGroup + + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/SecurityGroupIngressFactory.py b/tools/marvin/marvin/integration/lib/factory/SecurityGroupIngressFactory.py new file mode 100644 index 00000000000..d0f44476915 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SecurityGroupIngressFactory.py @@ -0,0 +1,11 @@ +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 new file mode 100644 index 00000000000..faa7d7dc2fb --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ServiceForRouterFactory.py @@ -0,0 +1,8 @@ +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 new file mode 100644 index 00000000000..42ee08183cb --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ServiceForSystemVmFactory.py @@ -0,0 +1,8 @@ +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 new file mode 100644 index 00000000000..28845946756 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ServiceForVirtualMachineFactory.py @@ -0,0 +1,8 @@ +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/ServiceOfferingFactory.py b/tools/marvin/marvin/integration/lib/factory/ServiceOfferingFactory.py new file mode 100644 index 00000000000..0a654cdcc6c --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ServiceOfferingFactory.py @@ -0,0 +1,11 @@ +import factory +from marvin.integration.lib.newbase import ServiceOffering +class ServiceOfferingFactory(factory.Factory): + + FACTORY_FOR = ServiceOffering + + cpunumber = None + cpuspeed = None + displaytext = None + memory = None + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/SnapshotFactory.py b/tools/marvin/marvin/integration/lib/factory/SnapshotFactory.py new file mode 100644 index 00000000000..0bf7188c2a9 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SnapshotFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import Snapshot +class SnapshotFactory(factory.Factory): + + FACTORY_FOR = Snapshot + + volumeid = None diff --git a/tools/marvin/marvin/integration/lib/factory/SnapshotPoliciesFactory.py b/tools/marvin/marvin/integration/lib/factory/SnapshotPoliciesFactory.py new file mode 100644 index 00000000000..bf4cd1679a5 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SnapshotPoliciesFactory.py @@ -0,0 +1,10 @@ +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/SnapshotPolicyFactory.py b/tools/marvin/marvin/integration/lib/factory/SnapshotPolicyFactory.py new file mode 100644 index 00000000000..6749f89c675 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SnapshotPolicyFactory.py @@ -0,0 +1,11 @@ +import factory +from marvin.integration.lib.newbase import SnapshotPolicy +class SnapshotPolicyFactory(factory.Factory): + + FACTORY_FOR = SnapshotPolicy + + intervaltype = None + maxsnaps = None + schedule = None + timezone = None + volumeid = None diff --git a/tools/marvin/marvin/integration/lib/factory/StaticNatFactory.py b/tools/marvin/marvin/integration/lib/factory/StaticNatFactory.py new file mode 100644 index 00000000000..817fb27a2a0 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/StaticNatFactory.py @@ -0,0 +1,13 @@ +import factory +from marvin.integration.lib.newbase 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/StaticRouteFactory.py b/tools/marvin/marvin/integration/lib/factory/StaticRouteFactory.py new file mode 100644 index 00000000000..765a25a0203 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/StaticRouteFactory.py @@ -0,0 +1,8 @@ +import factory +from marvin.integration.lib.newbase import StaticRoute +class StaticRouteFactory(factory.Factory): + + FACTORY_FOR = StaticRoute + + cidr = None + gatewayid = None diff --git a/tools/marvin/marvin/integration/lib/factory/StorageMaintenanceFactory.py b/tools/marvin/marvin/integration/lib/factory/StorageMaintenanceFactory.py new file mode 100644 index 00000000000..90335c08221 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/StorageMaintenanceFactory.py @@ -0,0 +1,12 @@ +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/StorageNetworkIpRangeFactory.py b/tools/marvin/marvin/integration/lib/factory/StorageNetworkIpRangeFactory.py new file mode 100644 index 00000000000..2233c643c0d --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/StorageNetworkIpRangeFactory.py @@ -0,0 +1,10 @@ +import factory +from marvin.integration.lib.newbase import StorageNetworkIpRange +class StorageNetworkIpRangeFactory(factory.Factory): + + FACTORY_FOR = StorageNetworkIpRange + + gateway = None + netmask = None + podid = None + startip = None diff --git a/tools/marvin/marvin/integration/lib/factory/StoragePoolFactory.py b/tools/marvin/marvin/integration/lib/factory/StoragePoolFactory.py new file mode 100644 index 00000000000..62baff96065 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/StoragePoolFactory.py @@ -0,0 +1,11 @@ +import factory +from marvin.integration.lib.newbase import StoragePool +class StoragePoolFactory(factory.Factory): + + FACTORY_FOR = StoragePool + + clusterid = None + name = None + podid = 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 new file mode 100644 index 00000000000..d82ab68c949 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SupportedNetworkServicesFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..a52da8ea82f --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SwiftFactory.py @@ -0,0 +1,10 @@ +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 new file mode 100644 index 00000000000..65c4311f755 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/SystemVmFactory.py @@ -0,0 +1,32 @@ +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/TagsFactory.py b/tools/marvin/marvin/integration/lib/factory/TagsFactory.py new file mode 100644 index 00000000000..eedf1fdd5d2 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/TagsFactory.py @@ -0,0 +1,9 @@ +import factory +from marvin.integration.lib.newbase import Tags +class TagsFactory(factory.Factory): + + FACTORY_FOR = Tags + + resourceids = None + resourcetype = None + tags = None diff --git a/tools/marvin/marvin/integration/lib/factory/TemplateFactory.py b/tools/marvin/marvin/integration/lib/factory/TemplateFactory.py new file mode 100644 index 00000000000..93a1526d36c --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/TemplateFactory.py @@ -0,0 +1,9 @@ +import factory +from marvin.integration.lib.newbase import Template +class TemplateFactory(factory.Factory): + + FACTORY_FOR = Template + + displaytext = None + name = None + ostypeid = None diff --git a/tools/marvin/marvin/integration/lib/factory/TemplatePermissionsFactory.py b/tools/marvin/marvin/integration/lib/factory/TemplatePermissionsFactory.py new file mode 100644 index 00000000000..88f2493137e --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/TemplatePermissionsFactory.py @@ -0,0 +1,12 @@ +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 new file mode 100644 index 00000000000..57ad32a3313 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ToLoadBalancerRuleFactory.py @@ -0,0 +1,8 @@ +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 new file mode 100644 index 00000000000..cc6db015d66 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/TrafficMonitorFactory.py @@ -0,0 +1,18 @@ +import factory +from marvin.integration.lib.newbase 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 new file mode 100644 index 00000000000..78f61a71812 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/TrafficTypeFactory.py @@ -0,0 +1,23 @@ +import factory +from marvin.integration.lib.newbase 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 new file mode 100644 index 00000000000..3879caf071b --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/TrafficTypeImplementorsFactory.py @@ -0,0 +1,5 @@ +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 new file mode 100644 index 00000000000..045bdd07d88 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/UsageRecordsFactory.py @@ -0,0 +1,14 @@ +import factory +from marvin.integration.lib.newbase 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 new file mode 100644 index 00000000000..6778df45e28 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/UsageTypesFactory.py @@ -0,0 +1,5 @@ +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/UserFactory.py b/tools/marvin/marvin/integration/lib/factory/UserFactory.py new file mode 100644 index 00000000000..ed857f9fbdb --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/UserFactory.py @@ -0,0 +1,12 @@ +import factory +from marvin.integration.lib.newbase import User +class UserFactory(factory.Factory): + + FACTORY_FOR = User + + account = None + email = None + firstname = None + lastname = None + password = None + username = None diff --git a/tools/marvin/marvin/integration/lib/factory/UserKeysFactory.py b/tools/marvin/marvin/integration/lib/factory/UserKeysFactory.py new file mode 100644 index 00000000000..9c16c183ed4 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/UserKeysFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import UserKeys +class UserKeysFactory(factory.Factory): + + FACTORY_FOR = UserKeys + + id = None diff --git a/tools/marvin/marvin/integration/lib/factory/VMPasswordFactory.py b/tools/marvin/marvin/integration/lib/factory/VMPasswordFactory.py new file mode 100644 index 00000000000..b1cd5bf1774 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VMPasswordFactory.py @@ -0,0 +1,7 @@ +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/VPCFactory.py b/tools/marvin/marvin/integration/lib/factory/VPCFactory.py new file mode 100644 index 00000000000..47f0ffc2cfb --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VPCFactory.py @@ -0,0 +1,11 @@ +import factory +from marvin.integration.lib.newbase import VPC +class VPCFactory(factory.Factory): + + FACTORY_FOR = VPC + + cidr = None + displaytext = None + name = None + vpcofferingid = None + zoneid = None diff --git a/tools/marvin/marvin/integration/lib/factory/VPCOfferingFactory.py b/tools/marvin/marvin/integration/lib/factory/VPCOfferingFactory.py new file mode 100644 index 00000000000..92be188eb54 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VPCOfferingFactory.py @@ -0,0 +1,9 @@ +import factory +from marvin.integration.lib.newbase import VPCOffering +class VPCOfferingFactory(factory.Factory): + + FACTORY_FOR = VPCOffering + + displaytext = None + name = None + supportedservices = None diff --git a/tools/marvin/marvin/integration/lib/factory/VirtualMachineFactory.py b/tools/marvin/marvin/integration/lib/factory/VirtualMachineFactory.py new file mode 100644 index 00000000000..e1fbbfcea7e --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VirtualMachineFactory.py @@ -0,0 +1,55 @@ +import factory +from marvin.integration.lib.newbase import VirtualMachine +class VirtualMachineFactory(factory.Factory): + + FACTORY_FOR = VirtualMachine + + virtualmachineid = None + + + FACTORY_FOR = VirtualMachine + + serviceofferingid = None + templateid = None + zoneid = None + + + FACTORY_FOR = VirtualMachine + + virtualmachineid = None + + + FACTORY_FOR = VirtualMachine + + + + FACTORY_FOR = VirtualMachine + + id = None + + + FACTORY_FOR = VirtualMachine + + id = None + + + FACTORY_FOR = VirtualMachine + + id = None + + + FACTORY_FOR = VirtualMachine + + id = None + + + FACTORY_FOR = VirtualMachine + + id = None + + + FACTORY_FOR = VirtualMachine + + account = None + domainid = None + virtualmachineid = None diff --git a/tools/marvin/marvin/integration/lib/factory/VirtualRouterElementFactory.py b/tools/marvin/marvin/integration/lib/factory/VirtualRouterElementFactory.py new file mode 100644 index 00000000000..f8dd5f2a760 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VirtualRouterElementFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import VirtualRouterElement +class VirtualRouterElementFactory(factory.Factory): + + FACTORY_FOR = VirtualRouterElement + + nspid = None diff --git a/tools/marvin/marvin/integration/lib/factory/VlanIpRangeFactory.py b/tools/marvin/marvin/integration/lib/factory/VlanIpRangeFactory.py new file mode 100644 index 00000000000..ff64183fba3 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VlanIpRangeFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import VlanIpRange +class VlanIpRangeFactory(factory.Factory): + + FACTORY_FOR = VlanIpRange + + startip = None diff --git a/tools/marvin/marvin/integration/lib/factory/VolumeFactory.py b/tools/marvin/marvin/integration/lib/factory/VolumeFactory.py new file mode 100644 index 00000000000..483cf822527 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VolumeFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import Volume +class VolumeFactory(factory.Factory): + + FACTORY_FOR = Volume + + name = None diff --git a/tools/marvin/marvin/integration/lib/factory/VpnConnectionFactory.py b/tools/marvin/marvin/integration/lib/factory/VpnConnectionFactory.py new file mode 100644 index 00000000000..eb104c209f5 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VpnConnectionFactory.py @@ -0,0 +1,8 @@ +import factory +from marvin.integration.lib.newbase import VpnConnection +class VpnConnectionFactory(factory.Factory): + + FACTORY_FOR = VpnConnection + + s2scustomergatewayid = None + s2svpngatewayid = None diff --git a/tools/marvin/marvin/integration/lib/factory/VpnCustomerGatewayFactory.py b/tools/marvin/marvin/integration/lib/factory/VpnCustomerGatewayFactory.py new file mode 100644 index 00000000000..77c3b8056ce --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VpnCustomerGatewayFactory.py @@ -0,0 +1,11 @@ +import factory +from marvin.integration.lib.newbase import VpnCustomerGateway +class VpnCustomerGatewayFactory(factory.Factory): + + FACTORY_FOR = VpnCustomerGateway + + cidrlist = None + esppolicy = None + gateway = None + ikepolicy = None + ipsecpsk = None diff --git a/tools/marvin/marvin/integration/lib/factory/VpnGatewayFactory.py b/tools/marvin/marvin/integration/lib/factory/VpnGatewayFactory.py new file mode 100644 index 00000000000..5cce2c4938a --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VpnGatewayFactory.py @@ -0,0 +1,7 @@ +import factory +from marvin.integration.lib.newbase import VpnGateway +class VpnGatewayFactory(factory.Factory): + + FACTORY_FOR = VpnGateway + + vpcid = None diff --git a/tools/marvin/marvin/integration/lib/factory/VpnUserFactory.py b/tools/marvin/marvin/integration/lib/factory/VpnUserFactory.py new file mode 100644 index 00000000000..1dce088e9b4 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/VpnUserFactory.py @@ -0,0 +1,17 @@ +import factory +from marvin.integration.lib.newbase 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/factory/ZoneFactory.py b/tools/marvin/marvin/integration/lib/factory/ZoneFactory.py new file mode 100644 index 00000000000..9b9e4156bca --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/ZoneFactory.py @@ -0,0 +1,10 @@ +import factory +from marvin.integration.lib.newbase import Zone +class ZoneFactory(factory.Factory): + + FACTORY_FOR = Zone + + dns1 = None + internaldns1 = None + name = None + networktype = None diff --git a/tools/marvin/marvin/integration/lib/factory/__init__.py b/tools/marvin/marvin/integration/lib/factory/__init__.py new file mode 100644 index 00000000000..d216be4ddc9 --- /dev/null +++ b/tools/marvin/marvin/integration/lib/factory/__init__.py @@ -0,0 +1,16 @@ +# 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. \ No newline at end of file diff --git a/tools/marvin/marvin/integration/lib/generateBase.py b/tools/marvin/marvin/integration/lib/generateBase.py index 652c314393e..c5214c950a3 100644 --- a/tools/marvin/marvin/integration/lib/generateBase.py +++ b/tools/marvin/marvin/integration/lib/generateBase.py @@ -17,6 +17,7 @@ import marvin from marvin.cloudstackAPI import * +import os # Add verbs in grammar - same as cloudmonkey grammar = ['create', 'list', 'delete', 'update', @@ -28,6 +29,9 @@ grammar = ['create', 'list', 'delete', 'update', 'copy', 'extract', 'migrate', 'restore', 'suspend', 'get', 'query', 'prepare', 'deploy', 'upload', 'lock', 'disassociate'] +aslv2 = "" + + def get_api_cmds(): api_classes = __import__('marvin.cloudstackAPI') @@ -86,15 +90,19 @@ def get_actionable_entities(): def write_entity_classes(entities): tabspace = ' ' classlist = [] + #TODO: Add license header for ASLv2 code = '' for entity, actions in entities.iteritems(): code += 'class %s:'%entity for action, args in actions.iteritems(): code += '\n\n' code += tabspace - code += 'def %s(self, apiclient, %sFactory=None'%(action, entity) + if action.startswith('create'): + code += 'def %s(self, apiclient, %sFactory'%(action, entity) + else: + code += 'def %s(self, apiclient'%(action) if len(args[0]) > 0: - code += ', ' + ', '.join(args[0]) + code += ', ' + ', '.join(list(set(args[0]))) if len(args[1]) > 0: code += ', **kwargs):\n' else: @@ -103,8 +111,32 @@ def write_entity_classes(entities): code += 'pass' code += '\n\n' classlist.append(code) + write_entity_factory(entity, actions) return list(set(classlist)) +def write_entity_factory(entity, actions): + tabspace = ' ' + #TODO: Add license header for ASLv2 + code = '' + if 'create' not in actions: + return + factory_defaults = actions['create'] + if os.path.exists("./factory/%sFactory.py"%entity): + for arg in factory_defaults[0]: + code += tabspace + '%s = None\n'%arg + with open("./factory/%sFactory.py"%entity, "a") as writer: + writer.write(code) + else: + code += 'import factory\n' + code += 'from marvin.integration.lib.newbase import %s\n'%entity + code += 'class %sFactory(factory.Factory):'%entity + code += '\n\n' + code += tabspace + 'FACTORY_FOR = %s\n\n'%entity + for arg in factory_defaults[0]: + code += tabspace + '%s = None\n'%arg + with open("./factory/%sFactory.py"%entity, "w") as writer: + writer.write(code) + if __name__=='__main__': entities = get_actionable_entities() clslist = write_entity_classes(entities) diff --git a/tools/marvin/marvin/integration/lib/newbase.py b/tools/marvin/marvin/integration/lib/newbase.py new file mode 100644 index 00000000000..769092b2b2f --- /dev/null +++ b/tools/marvin/marvin/integration/lib/newbase.py @@ -0,0 +1,62907 @@ +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