zeroc-ice 3.7.11__cp314-cp314-win_amd64.whl → 3.8.0__cp314-cp314-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- Glacier2/CannotCreateSessionException.py +40 -0
- Glacier2/IdentitySet.py +293 -0
- Glacier2/IdentitySet_forward.py +10 -0
- Glacier2/PermissionDeniedException.py +40 -0
- Glacier2/PermissionsVerifier.py +189 -0
- Glacier2/PermissionsVerifier_forward.py +10 -0
- Glacier2/Router.py +661 -0
- Glacier2/Router_forward.py +10 -0
- Glacier2/SSLInfo.py +62 -0
- Glacier2/SSLPermissionsVerifier.py +186 -0
- Glacier2/SSLPermissionsVerifier_forward.py +10 -0
- Glacier2/SSLSessionManager.py +192 -0
- Glacier2/SSLSessionManager_forward.py +10 -0
- Glacier2/Session.py +161 -0
- Glacier2/SessionControl.py +407 -0
- Glacier2/SessionControl_forward.py +10 -0
- Glacier2/SessionManager.py +189 -0
- Glacier2/SessionManager_forward.py +10 -0
- Glacier2/SessionNotExistException.py +39 -0
- Glacier2/Session_forward.py +10 -0
- Glacier2/StringSet.py +289 -0
- Glacier2/StringSet_forward.py +10 -0
- Glacier2/__init__.py +78 -225
- Glacier2/py.typed +0 -0
- Ice/AdapterAlreadyActiveException.py +35 -0
- Ice/AdapterNotFoundException.py +35 -0
- Ice/BTEndpointType.py +11 -0
- Ice/BTSEndpointType.py +11 -0
- Ice/Blobject.py +42 -0
- Ice/BoolSeq.py +10 -0
- Ice/Builtin.py +11 -0
- Ice/ByteSeq.py +10 -0
- Ice/Communicator.py +621 -0
- Ice/CompressBatch.py +25 -0
- Ice/Context.py +10 -0
- Ice/Current.py +48 -0
- Ice/Dispatch.py +122 -0
- Ice/DoubleSeq.py +10 -0
- Ice/EncodingVersion.py +41 -0
- Ice/EndpointSelectionType.py +22 -0
- Ice/EventLoopAdapter.py +52 -0
- Ice/Exception.py +29 -0
- Ice/FloatSeq.py +10 -0
- Ice/FormatType.py +15 -0
- Ice/Future.py +375 -0
- Ice/IcePyTypes.py +47 -0
- Ice/Identity.py +40 -0
- Ice/IdentitySeq.py +12 -0
- Ice/ImplicitContext.py +126 -0
- Ice/InitializationData.py +64 -0
- Ice/IntSeq.py +10 -0
- Ice/InvalidReplicaGroupIdException.py +34 -0
- Ice/InvocationFuture.py +158 -0
- Ice/LocalException.py +12 -0
- Ice/LocalExceptions.py +546 -0
- Ice/Locator.py +332 -0
- Ice/LocatorFinder.py +163 -0
- Ice/LocatorFinder_forward.py +10 -0
- Ice/LocatorRegistry.py +387 -0
- Ice/LocatorRegistry_forward.py +10 -0
- Ice/Locator_forward.py +10 -0
- Ice/LogMessage.py +51 -0
- Ice/LogMessageSeq.py +12 -0
- Ice/LogMessageType.py +50 -0
- Ice/LogMessageTypeSeq.py +12 -0
- Ice/Logger.py +100 -0
- Ice/LoggerAdmin.py +380 -0
- Ice/LoggerAdmin_forward.py +10 -0
- Ice/LongSeq.py +10 -0
- Ice/Object.py +145 -0
- Ice/ObjectAdapter.py +588 -0
- Ice/ObjectNotFoundException.py +35 -0
- Ice/ObjectProxySeq.py +12 -0
- Ice/ObjectPrx.py +940 -0
- Ice/ObjectPrx_forward.py +7 -0
- Ice/ObjectSeq.py +12 -0
- Ice/OperationMode.py +47 -0
- Ice/Process.py +217 -0
- Ice/ProcessLogger.py +25 -0
- Ice/Process_forward.py +10 -0
- Ice/Properties.py +387 -0
- Ice/PropertiesAdmin.py +302 -0
- Ice/PropertiesAdmin_forward.py +10 -0
- Ice/PropertyDict.py +10 -0
- Ice/ProtocolVersion.py +39 -0
- Ice/Proxy.py +63 -0
- Ice/RemoteLogger.py +238 -0
- Ice/RemoteLoggerAlreadyAttachedException.py +34 -0
- Ice/RemoteLogger_forward.py +10 -0
- Ice/ReplyStatus.py +84 -0
- Ice/Router.py +322 -0
- Ice/RouterFinder.py +163 -0
- Ice/RouterFinder_forward.py +10 -0
- Ice/Router_forward.py +10 -0
- Ice/SSLEndpointType.py +11 -0
- Ice/ServantLocator.py +93 -0
- Ice/ServerNotFoundException.py +34 -0
- Ice/ShortSeq.py +10 -0
- Ice/SliceChecksumDict.py +10 -0
- Ice/SliceInfo.py +22 -0
- Ice/SlicedData.py +14 -0
- Ice/StringSeq.py +10 -0
- Ice/TCPEndpointType.py +11 -0
- Ice/ToStringMode.py +34 -0
- Ice/UDPEndpointType.py +11 -0
- Ice/URIEndpointType.py +11 -0
- Ice/UnknownSlicedValue.py +31 -0
- Ice/UserException.py +18 -0
- Ice/Util.py +170 -0
- Ice/Value.py +59 -0
- Ice/Value_forward.py +7 -0
- Ice/WSEndpointType.py +11 -0
- Ice/WSSEndpointType.py +11 -0
- Ice/_ArrayUtil.py +51 -0
- Ice/_LoggerI.py +32 -0
- Ice/__init__.py +356 -1997
- Ice/asyncio/EventLoopAdapter.py +31 -0
- Ice/asyncio/__init__.py +5 -0
- Ice/iAPEndpointType.py +11 -0
- Ice/iAPSEndpointType.py +11 -0
- Ice/py.typed +0 -0
- IceBox/AlreadyStartedException.py +34 -0
- IceBox/AlreadyStoppedException.py +34 -0
- IceBox/NoSuchServiceException.py +34 -0
- IceBox/ServiceManager.py +447 -0
- IceBox/ServiceManager_forward.py +10 -0
- IceBox/ServiceObserver.py +229 -0
- IceBox/ServiceObserver_forward.py +10 -0
- IceBox/__init__.py +30 -7
- IceBox/py.typed +0 -0
- IceGrid/AccessDeniedException.py +40 -0
- IceGrid/AdapterDescriptor.py +77 -0
- IceGrid/AdapterDescriptorSeq.py +12 -0
- IceGrid/AdapterDynamicInfo.py +46 -0
- IceGrid/AdapterDynamicInfoSeq.py +12 -0
- IceGrid/AdapterInfo.py +50 -0
- IceGrid/AdapterInfoSeq.py +12 -0
- IceGrid/AdapterNotExistException.py +40 -0
- IceGrid/AdapterObserver.py +338 -0
- IceGrid/AdapterObserver_forward.py +10 -0
- IceGrid/AdaptiveLoadBalancingPolicy.py +48 -0
- IceGrid/AdaptiveLoadBalancingPolicy_forward.py +10 -0
- IceGrid/Admin.py +3662 -0
- IceGrid/AdminSession.py +1406 -0
- IceGrid/AdminSession_forward.py +10 -0
- IceGrid/Admin_forward.py +10 -0
- IceGrid/AllocationException.py +40 -0
- IceGrid/AllocationTimeoutException.py +35 -0
- IceGrid/ApplicationDescriptor.py +89 -0
- IceGrid/ApplicationDescriptorSeq.py +12 -0
- IceGrid/ApplicationInfo.py +63 -0
- IceGrid/ApplicationInfoSeq.py +12 -0
- IceGrid/ApplicationNotExistException.py +40 -0
- IceGrid/ApplicationObserver.py +374 -0
- IceGrid/ApplicationObserver_forward.py +10 -0
- IceGrid/ApplicationUpdateDescriptor.py +118 -0
- IceGrid/ApplicationUpdateInfo.py +51 -0
- IceGrid/BadSignalException.py +40 -0
- IceGrid/BoxedDistributionDescriptor.py +49 -0
- IceGrid/BoxedDistributionDescriptor_forward.py +10 -0
- IceGrid/BoxedString.py +45 -0
- IceGrid/BoxedString_forward.py +10 -0
- IceGrid/CommunicatorDescriptor.py +79 -0
- IceGrid/CommunicatorDescriptor_forward.py +10 -0
- IceGrid/DbEnvDescriptor.py +55 -0
- IceGrid/DbEnvDescriptorSeq.py +12 -0
- IceGrid/DeploymentException.py +40 -0
- IceGrid/DistributionDescriptor.py +42 -0
- IceGrid/FileIterator.py +246 -0
- IceGrid/FileIterator_forward.py +10 -0
- IceGrid/FileNotAvailableException.py +49 -0
- IceGrid/FileParser.py +182 -0
- IceGrid/FileParser_forward.py +10 -0
- IceGrid/IceBoxDescriptor.py +55 -0
- IceGrid/IceBoxDescriptor_forward.py +10 -0
- IceGrid/LoadBalancingPolicy.py +45 -0
- IceGrid/LoadBalancingPolicy_forward.py +10 -0
- IceGrid/LoadInfo.py +43 -0
- IceGrid/LoadSample.py +45 -0
- IceGrid/Locator.py +232 -0
- IceGrid/Locator_forward.py +10 -0
- IceGrid/NodeDescriptor.py +71 -0
- IceGrid/NodeDescriptorDict.py +12 -0
- IceGrid/NodeDynamicInfo.py +57 -0
- IceGrid/NodeDynamicInfoSeq.py +12 -0
- IceGrid/NodeInfo.py +64 -0
- IceGrid/NodeNotExistException.py +40 -0
- IceGrid/NodeObserver.py +424 -0
- IceGrid/NodeObserver_forward.py +10 -0
- IceGrid/NodeUnreachableException.py +46 -0
- IceGrid/NodeUpdateDescriptor.py +92 -0
- IceGrid/NodeUpdateDescriptorSeq.py +12 -0
- IceGrid/ObjectDescriptor.py +48 -0
- IceGrid/ObjectDescriptorSeq.py +12 -0
- IceGrid/ObjectExistsException.py +44 -0
- IceGrid/ObjectInfo.py +46 -0
- IceGrid/ObjectInfoSeq.py +12 -0
- IceGrid/ObjectNotRegisteredException.py +44 -0
- IceGrid/ObjectObserver.py +347 -0
- IceGrid/ObjectObserver_forward.py +10 -0
- IceGrid/ObserverAlreadyRegisteredException.py +49 -0
- IceGrid/OrderedLoadBalancingPolicy.py +41 -0
- IceGrid/OrderedLoadBalancingPolicy_forward.py +10 -0
- IceGrid/ParseException.py +40 -0
- IceGrid/PermissionDeniedException.py +40 -0
- IceGrid/PropertyDescriptor.py +39 -0
- IceGrid/PropertyDescriptorSeq.py +12 -0
- IceGrid/PropertySetDescriptor.py +49 -0
- IceGrid/PropertySetDescriptorDict.py +12 -0
- IceGrid/Query.py +451 -0
- IceGrid/Query_forward.py +10 -0
- IceGrid/RandomLoadBalancingPolicy.py +41 -0
- IceGrid/RandomLoadBalancingPolicy_forward.py +10 -0
- IceGrid/Registry.py +477 -0
- IceGrid/RegistryInfo.py +39 -0
- IceGrid/RegistryInfoSeq.py +12 -0
- IceGrid/RegistryNotExistException.py +40 -0
- IceGrid/RegistryObserver.py +282 -0
- IceGrid/RegistryObserver_forward.py +10 -0
- IceGrid/RegistryUnreachableException.py +46 -0
- IceGrid/Registry_forward.py +10 -0
- IceGrid/ReplicaGroupDescriptor.py +66 -0
- IceGrid/ReplicaGroupDescriptorSeq.py +12 -0
- IceGrid/RoundRobinLoadBalancingPolicy.py +41 -0
- IceGrid/RoundRobinLoadBalancingPolicy_forward.py +10 -0
- IceGrid/ServerDescriptor.py +107 -0
- IceGrid/ServerDescriptorSeq.py +12 -0
- IceGrid/ServerDescriptor_forward.py +10 -0
- IceGrid/ServerDynamicInfo.py +50 -0
- IceGrid/ServerDynamicInfoSeq.py +12 -0
- IceGrid/ServerInfo.py +62 -0
- IceGrid/ServerInstanceDescriptor.py +58 -0
- IceGrid/ServerInstanceDescriptorSeq.py +12 -0
- IceGrid/ServerNotExistException.py +40 -0
- IceGrid/ServerStartException.py +46 -0
- IceGrid/ServerState.py +66 -0
- IceGrid/ServerStopException.py +46 -0
- IceGrid/ServiceDescriptor.py +53 -0
- IceGrid/ServiceDescriptorSeq.py +12 -0
- IceGrid/ServiceDescriptor_forward.py +10 -0
- IceGrid/ServiceInstanceDescriptor.py +60 -0
- IceGrid/ServiceInstanceDescriptorSeq.py +12 -0
- IceGrid/Session.py +498 -0
- IceGrid/Session_forward.py +10 -0
- IceGrid/StringObjectProxyDict.py +12 -0
- IceGrid/StringStringDict.py +10 -0
- IceGrid/TemplateDescriptor.py +55 -0
- IceGrid/TemplateDescriptorDict.py +12 -0
- IceGrid/UserAccountMapper.py +178 -0
- IceGrid/UserAccountMapper_forward.py +10 -0
- IceGrid/UserAccountNotFoundException.py +34 -0
- IceGrid/__init__.py +372 -14
- IceGrid/py.typed +0 -0
- IceMX/ChildInvocationMetrics.py +56 -0
- IceMX/ChildInvocationMetrics_forward.py +10 -0
- IceMX/CollocatedMetrics.py +42 -0
- IceMX/CollocatedMetrics_forward.py +10 -0
- IceMX/ConnectionMetrics.py +53 -0
- IceMX/ConnectionMetrics_forward.py +10 -0
- IceMX/DispatchMetrics.py +57 -0
- IceMX/DispatchMetrics_forward.py +10 -0
- IceMX/InvocationMetrics.py +66 -0
- IceMX/InvocationMetrics_forward.py +10 -0
- IceMX/Metrics.py +66 -0
- IceMX/MetricsAdmin.py +586 -0
- IceMX/MetricsAdmin_forward.py +10 -0
- IceMX/MetricsFailures.py +42 -0
- IceMX/MetricsFailuresSeq.py +12 -0
- IceMX/MetricsMap.py +12 -0
- IceMX/MetricsView.py +12 -0
- IceMX/Metrics_forward.py +10 -0
- IceMX/RemoteMetrics.py +42 -0
- IceMX/RemoteMetrics_forward.py +10 -0
- IceMX/SessionMetrics.py +73 -0
- IceMX/SessionMetrics_forward.py +10 -0
- IceMX/StringIntDict.py +10 -0
- IceMX/SubscriberMetrics.py +57 -0
- IceMX/SubscriberMetrics_forward.py +10 -0
- IceMX/ThreadMetrics.py +59 -0
- IceMX/ThreadMetrics_forward.py +10 -0
- IceMX/TopicMetrics.py +53 -0
- IceMX/TopicMetrics_forward.py +10 -0
- IceMX/UnknownMetricsView.py +34 -0
- IceMX/__init__.py +72 -9
- IceMX/py.typed +0 -0
- IcePy-stubs/__init__.pyi +740 -0
- IcePy.cp314-win_amd64.pdb +0 -0
- IcePy.cp314-win_amd64.pyd +0 -0
- IceStorm/AlreadySubscribed.py +34 -0
- IceStorm/BadQoS.py +40 -0
- IceStorm/Finder.py +163 -0
- IceStorm/Finder_forward.py +10 -0
- IceStorm/LinkExists.py +40 -0
- IceStorm/LinkInfo.py +50 -0
- IceStorm/LinkInfoSeq.py +12 -0
- IceStorm/NoSuchLink.py +40 -0
- IceStorm/NoSuchTopic.py +40 -0
- IceStorm/QoS.py +10 -0
- IceStorm/Topic.py +825 -0
- IceStorm/TopicDict.py +12 -0
- IceStorm/TopicExists.py +40 -0
- IceStorm/TopicManager.py +394 -0
- IceStorm/TopicManager_forward.py +10 -0
- IceStorm/Topic_forward.py +10 -0
- IceStorm/__init__.py +58 -7
- IceStorm/py.typed +0 -0
- slice/DataStorm/SampleEvent.ice +29 -0
- slice/Glacier2/Metrics.ice +34 -75
- slice/Glacier2/PermissionsVerifier.ice +42 -98
- slice/Glacier2/Router.ice +80 -173
- slice/Glacier2/SSLInfo.ice +23 -40
- slice/Glacier2/Session.ice +120 -261
- slice/Ice/BuiltinSequences.ice +33 -38
- slice/Ice/Context.ice +24 -0
- slice/Ice/EndpointTypes.ice +35 -33
- slice/Ice/Identity.ice +24 -63
- slice/Ice/Locator.ice +61 -226
- slice/Ice/LocatorRegistry.ice +77 -0
- slice/Ice/Metrics.ice +189 -424
- slice/Ice/OperationMode.ice +38 -0
- slice/Ice/Process.ice +16 -52
- slice/Ice/PropertiesAdmin.ice +25 -75
- slice/Ice/PropertyDict.ice +23 -0
- slice/Ice/RemoteLogger.ice +113 -213
- slice/Ice/ReplyStatus.ice +65 -0
- slice/Ice/Router.ice +42 -91
- slice/Ice/SliceChecksumDict.ice +7 -25
- slice/Ice/Version.ice +31 -39
- slice/IceBox/ServiceManager.ice +79 -0
- slice/IceGrid/Admin.ice +942 -1918
- slice/IceGrid/Descriptor.ice +476 -1051
- slice/IceGrid/Exception.ice +86 -384
- slice/IceGrid/FileParser.ice +23 -59
- slice/IceGrid/Registry.ice +117 -256
- slice/IceGrid/Session.ice +46 -110
- slice/IceGrid/UserAccountMapper.ice +22 -57
- slice/IceStorm/IceStorm.ice +173 -401
- slice/IceStorm/Metrics.ice +28 -70
- slice2py.py +5 -6
- zeroc_ice-3.8.0.dist-info/METADATA +106 -0
- zeroc_ice-3.8.0.dist-info/RECORD +344 -0
- {zeroc_ice-3.7.11.dist-info → zeroc_ice-3.8.0.dist-info}/WHEEL +1 -1
- {zeroc_ice-3.7.11.dist-info → zeroc_ice-3.8.0.dist-info}/top_level.txt +1 -1
- Glacier2/Metrics_ice.py +0 -82
- Glacier2/PermissionsVerifierF_ice.py +0 -32
- Glacier2/PermissionsVerifier_ice.py +0 -284
- Glacier2/RouterF_ice.py +0 -28
- Glacier2/Router_ice.py +0 -618
- Glacier2/SSLInfo_ice.py +0 -179
- Glacier2/Session_ice.py +0 -1103
- Ice/BuiltinSequences_ice.py +0 -65
- Ice/CommunicatorF_ice.py +0 -27
- Ice/Communicator_ice.py +0 -469
- Ice/ConnectionF_ice.py +0 -33
- Ice/Connection_ice.py +0 -680
- Ice/Current_ice.py +0 -175
- Ice/EndpointF_ice.py +0 -45
- Ice/EndpointTypes_ice.py +0 -54
- Ice/Endpoint_ice.py +0 -304
- Ice/FacetMap_ice.py +0 -27
- Ice/Identity_ice.py +0 -133
- Ice/ImplicitContextF_ice.py +0 -27
- Ice/ImplicitContext_ice.py +0 -119
- Ice/InstrumentationF_ice.py +0 -38
- Ice/Instrumentation_ice.py +0 -566
- Ice/LocalException_ice.py +0 -1715
- Ice/LocatorF_ice.py +0 -32
- Ice/Locator_ice.py +0 -728
- Ice/LoggerF_ice.py +0 -27
- Ice/Logger_ice.py +0 -96
- Ice/Metrics_ice.py +0 -864
- Ice/ObjectAdapterF_ice.py +0 -27
- Ice/ObjectAdapter_ice.py +0 -461
- Ice/ObjectFactory_ice.py +0 -68
- Ice/PluginF_ice.py +0 -30
- Ice/Plugin_ice.py +0 -136
- Ice/ProcessF_ice.py +0 -28
- Ice/Process_ice.py +0 -175
- Ice/PropertiesAdmin_ice.py +0 -247
- Ice/PropertiesF_ice.py +0 -31
- Ice/Properties_ice.py +0 -199
- Ice/Py3/IceFuture.py +0 -52
- Ice/Py3/__init__.py +0 -3
- Ice/RemoteLogger_ice.py +0 -617
- Ice/RouterF_ice.py +0 -28
- Ice/Router_ice.py +0 -350
- Ice/ServantLocatorF_ice.py +0 -27
- Ice/ServantLocator_ice.py +0 -110
- Ice/SliceChecksumDict_ice.py +0 -29
- Ice/ValueFactory_ice.py +0 -125
- Ice/Version_ice.py +0 -217
- IceBox/IceBox_ice.py +0 -644
- IceGrid/Admin_ice.py +0 -6662
- IceGrid/Descriptor_ice.py +0 -1795
- IceGrid/Exception_ice.py +0 -592
- IceGrid/FileParser_ice.py +0 -171
- IceGrid/PluginFacade_ice.py +0 -288
- IceGrid/Registry_ice.py +0 -985
- IceGrid/Session_ice.py +0 -406
- IceGrid/UserAccountMapper_ice.py +0 -166
- IcePatch2/FileInfo_ice.py +0 -287
- IcePatch2/FileServer_ice.py +0 -555
- IcePatch2/__init__.py +0 -11
- IceStorm/IceStorm_ice.py +0 -1265
- IceStorm/Metrics_ice.py +0 -106
- slice/Glacier2/PermissionsVerifierF.ice +0 -30
- slice/Glacier2/RouterF.ice +0 -29
- slice/Ice/Communicator.ice +0 -676
- slice/Ice/CommunicatorF.ice +0 -31
- slice/Ice/Connection.ice +0 -516
- slice/Ice/ConnectionF.ice +0 -33
- slice/Ice/Current.ice +0 -170
- slice/Ice/Endpoint.ice +0 -291
- slice/Ice/EndpointF.ice +0 -43
- slice/Ice/FacetMap.ice +0 -36
- slice/Ice/ImplicitContext.ice +0 -119
- slice/Ice/ImplicitContextF.ice +0 -30
- slice/Ice/Instrumentation.ice +0 -509
- slice/Ice/InstrumentationF.ice +0 -38
- slice/Ice/LocalException.ice +0 -1040
- slice/Ice/LocatorF.ice +0 -32
- slice/Ice/Logger.ice +0 -99
- slice/Ice/LoggerF.ice +0 -31
- slice/Ice/ObjectAdapter.ice +0 -710
- slice/Ice/ObjectAdapterF.ice +0 -31
- slice/Ice/ObjectFactory.ice +0 -71
- slice/Ice/Plugin.ice +0 -131
- slice/Ice/PluginF.ice +0 -36
- slice/Ice/ProcessF.ice +0 -31
- slice/Ice/Properties.ice +0 -244
- slice/Ice/PropertiesF.ice +0 -32
- slice/Ice/RouterF.ice +0 -31
- slice/Ice/ServantLocator.ice +0 -136
- slice/Ice/ServantLocatorF.ice +0 -31
- slice/Ice/ValueFactory.ice +0 -133
- slice/IceBT/ConnectionInfo.ice +0 -59
- slice/IceBT/EndpointInfo.ice +0 -57
- slice/IceBT/Types.ice +0 -45
- slice/IceBox/IceBox.ice +0 -216
- slice/IceGrid/PluginFacade.ice +0 -329
- slice/IceIAP/ConnectionInfo.ice +0 -74
- slice/IceIAP/EndpointInfo.ice +0 -68
- slice/IcePatch2/FileInfo.ice +0 -85
- slice/IcePatch2/FileServer.ice +0 -191
- slice/IceSSL/ConnectionInfo.ice +0 -54
- slice/IceSSL/ConnectionInfoF.ice +0 -31
- slice/IceSSL/EndpointInfo.ice +0 -45
- zeroc_ice-3.7.11.dist-info/METADATA +0 -97
- zeroc_ice-3.7.11.dist-info/RECORD +0 -143
- {zeroc_ice-3.7.11.dist-info → zeroc_ice-3.8.0.dist-info}/entry_points.txt +0 -0
IceGrid/AdminSession.py
ADDED
|
@@ -0,0 +1,1406 @@
|
|
|
1
|
+
# Copyright (c) ZeroC, Inc.
|
|
2
|
+
|
|
3
|
+
# slice2py version 3.8.0
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
import IcePy
|
|
7
|
+
|
|
8
|
+
from Glacier2.Session import Session
|
|
9
|
+
from Glacier2.Session import SessionPrx
|
|
10
|
+
|
|
11
|
+
from Ice.Identity import _Ice_Identity_t
|
|
12
|
+
|
|
13
|
+
from Ice.ObjectPrx import checkedCast
|
|
14
|
+
from Ice.ObjectPrx import checkedCastAsync
|
|
15
|
+
from Ice.ObjectPrx import uncheckedCast
|
|
16
|
+
|
|
17
|
+
from Ice.ObjectPrx_forward import _Ice_ObjectPrx_t
|
|
18
|
+
|
|
19
|
+
from Ice.OperationMode import OperationMode
|
|
20
|
+
|
|
21
|
+
from IceGrid.AccessDeniedException import _IceGrid_AccessDeniedException_t
|
|
22
|
+
|
|
23
|
+
from IceGrid.AdapterObserver_forward import _IceGrid_AdapterObserverPrx_t
|
|
24
|
+
|
|
25
|
+
from IceGrid.AdminSession_forward import _IceGrid_AdminSessionPrx_t
|
|
26
|
+
|
|
27
|
+
from IceGrid.Admin_forward import _IceGrid_AdminPrx_t
|
|
28
|
+
|
|
29
|
+
from IceGrid.ApplicationObserver_forward import _IceGrid_ApplicationObserverPrx_t
|
|
30
|
+
|
|
31
|
+
from IceGrid.DeploymentException import _IceGrid_DeploymentException_t
|
|
32
|
+
|
|
33
|
+
from IceGrid.FileIterator_forward import _IceGrid_FileIteratorPrx_t
|
|
34
|
+
|
|
35
|
+
from IceGrid.FileNotAvailableException import _IceGrid_FileNotAvailableException_t
|
|
36
|
+
|
|
37
|
+
from IceGrid.NodeNotExistException import _IceGrid_NodeNotExistException_t
|
|
38
|
+
|
|
39
|
+
from IceGrid.NodeObserver_forward import _IceGrid_NodeObserverPrx_t
|
|
40
|
+
|
|
41
|
+
from IceGrid.NodeUnreachableException import _IceGrid_NodeUnreachableException_t
|
|
42
|
+
|
|
43
|
+
from IceGrid.ObjectObserver_forward import _IceGrid_ObjectObserverPrx_t
|
|
44
|
+
|
|
45
|
+
from IceGrid.ObserverAlreadyRegisteredException import _IceGrid_ObserverAlreadyRegisteredException_t
|
|
46
|
+
|
|
47
|
+
from IceGrid.RegistryNotExistException import _IceGrid_RegistryNotExistException_t
|
|
48
|
+
|
|
49
|
+
from IceGrid.RegistryObserver_forward import _IceGrid_RegistryObserverPrx_t
|
|
50
|
+
|
|
51
|
+
from IceGrid.RegistryUnreachableException import _IceGrid_RegistryUnreachableException_t
|
|
52
|
+
|
|
53
|
+
from IceGrid.ServerNotExistException import _IceGrid_ServerNotExistException_t
|
|
54
|
+
|
|
55
|
+
from abc import ABC
|
|
56
|
+
from abc import abstractmethod
|
|
57
|
+
|
|
58
|
+
from typing import TYPE_CHECKING
|
|
59
|
+
from typing import overload
|
|
60
|
+
|
|
61
|
+
if TYPE_CHECKING:
|
|
62
|
+
from Ice.Current import Current
|
|
63
|
+
from Ice.Identity import Identity
|
|
64
|
+
from Ice.ObjectPrx import ObjectPrx
|
|
65
|
+
from IceGrid.AdapterObserver import AdapterObserverPrx
|
|
66
|
+
from IceGrid.Admin import AdminPrx
|
|
67
|
+
from IceGrid.ApplicationObserver import ApplicationObserverPrx
|
|
68
|
+
from IceGrid.FileIterator import FileIteratorPrx
|
|
69
|
+
from IceGrid.NodeObserver import NodeObserverPrx
|
|
70
|
+
from IceGrid.ObjectObserver import ObjectObserverPrx
|
|
71
|
+
from IceGrid.RegistryObserver import RegistryObserverPrx
|
|
72
|
+
from collections.abc import Awaitable
|
|
73
|
+
from collections.abc import Sequence
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
class AdminSessionPrx(SessionPrx):
|
|
77
|
+
"""
|
|
78
|
+
Represents an administrative session between an admin tool and an IceGrid registry.
|
|
79
|
+
|
|
80
|
+
Notes
|
|
81
|
+
-----
|
|
82
|
+
The Slice compiler generated this proxy class from Slice interface ``::IceGrid::AdminSession``.
|
|
83
|
+
|
|
84
|
+
See Also
|
|
85
|
+
--------
|
|
86
|
+
:class:`IceGrid.RegistryPrx`
|
|
87
|
+
"""
|
|
88
|
+
|
|
89
|
+
def keepAlive(self, context: dict[str, str] | None = None) -> None:
|
|
90
|
+
"""
|
|
91
|
+
Keeps the session alive.
|
|
92
|
+
|
|
93
|
+
Parameters
|
|
94
|
+
----------
|
|
95
|
+
context : dict[str, str]
|
|
96
|
+
The request context for the invocation.
|
|
97
|
+
"""
|
|
98
|
+
return AdminSession._op_keepAlive.invoke(self, ((), context))
|
|
99
|
+
|
|
100
|
+
def keepAliveAsync(self, context: dict[str, str] | None = None) -> Awaitable[None]:
|
|
101
|
+
"""
|
|
102
|
+
Keeps the session alive.
|
|
103
|
+
|
|
104
|
+
Parameters
|
|
105
|
+
----------
|
|
106
|
+
context : dict[str, str]
|
|
107
|
+
The request context for the invocation.
|
|
108
|
+
|
|
109
|
+
Returns
|
|
110
|
+
-------
|
|
111
|
+
Awaitable[None]
|
|
112
|
+
An awaitable that is completed when the invocation completes.
|
|
113
|
+
"""
|
|
114
|
+
return AdminSession._op_keepAlive.invokeAsync(self, ((), context))
|
|
115
|
+
|
|
116
|
+
def getAdmin(self, context: dict[str, str] | None = None) -> AdminPrx | None:
|
|
117
|
+
"""
|
|
118
|
+
Gets a proxy to the IceGrid admin object. The admin object returned by this operation can only be accessed
|
|
119
|
+
by the session.
|
|
120
|
+
|
|
121
|
+
Parameters
|
|
122
|
+
----------
|
|
123
|
+
context : dict[str, str]
|
|
124
|
+
The request context for the invocation.
|
|
125
|
+
|
|
126
|
+
Returns
|
|
127
|
+
-------
|
|
128
|
+
AdminPrx | None
|
|
129
|
+
A proxy to the IceGrid admin object. This proxy is never null.
|
|
130
|
+
"""
|
|
131
|
+
return AdminSession._op_getAdmin.invoke(self, ((), context))
|
|
132
|
+
|
|
133
|
+
def getAdminAsync(self, context: dict[str, str] | None = None) -> Awaitable[AdminPrx | None]:
|
|
134
|
+
"""
|
|
135
|
+
Gets a proxy to the IceGrid admin object. The admin object returned by this operation can only be accessed
|
|
136
|
+
by the session.
|
|
137
|
+
|
|
138
|
+
Parameters
|
|
139
|
+
----------
|
|
140
|
+
context : dict[str, str]
|
|
141
|
+
The request context for the invocation.
|
|
142
|
+
|
|
143
|
+
Returns
|
|
144
|
+
-------
|
|
145
|
+
Awaitable[AdminPrx | None]
|
|
146
|
+
A proxy to the IceGrid admin object. This proxy is never null.
|
|
147
|
+
"""
|
|
148
|
+
return AdminSession._op_getAdmin.invokeAsync(self, ((), context))
|
|
149
|
+
|
|
150
|
+
def getAdminCallbackTemplate(self, context: dict[str, str] | None = None) -> ObjectPrx | None:
|
|
151
|
+
"""
|
|
152
|
+
Gets a "template" proxy for admin callback objects. An Admin client uses this proxy to set the category of
|
|
153
|
+
its callback objects, and the published endpoints of the object adapter hosting the admin callback objects.
|
|
154
|
+
|
|
155
|
+
Parameters
|
|
156
|
+
----------
|
|
157
|
+
context : dict[str, str]
|
|
158
|
+
The request context for the invocation.
|
|
159
|
+
|
|
160
|
+
Returns
|
|
161
|
+
-------
|
|
162
|
+
ObjectPrx | None
|
|
163
|
+
A template proxy. The returned proxy is null when the Admin session was established using Glacier2.
|
|
164
|
+
"""
|
|
165
|
+
return AdminSession._op_getAdminCallbackTemplate.invoke(self, ((), context))
|
|
166
|
+
|
|
167
|
+
def getAdminCallbackTemplateAsync(self, context: dict[str, str] | None = None) -> Awaitable[ObjectPrx | None]:
|
|
168
|
+
"""
|
|
169
|
+
Gets a "template" proxy for admin callback objects. An Admin client uses this proxy to set the category of
|
|
170
|
+
its callback objects, and the published endpoints of the object adapter hosting the admin callback objects.
|
|
171
|
+
|
|
172
|
+
Parameters
|
|
173
|
+
----------
|
|
174
|
+
context : dict[str, str]
|
|
175
|
+
The request context for the invocation.
|
|
176
|
+
|
|
177
|
+
Returns
|
|
178
|
+
-------
|
|
179
|
+
Awaitable[ObjectPrx | None]
|
|
180
|
+
A template proxy. The returned proxy is null when the Admin session was established using Glacier2.
|
|
181
|
+
"""
|
|
182
|
+
return AdminSession._op_getAdminCallbackTemplate.invokeAsync(self, ((), context))
|
|
183
|
+
|
|
184
|
+
def setObservers(self, registryObs: RegistryObserverPrx | None, nodeObs: NodeObserverPrx | None, appObs: ApplicationObserverPrx | None, adptObs: AdapterObserverPrx | None, objObs: ObjectObserverPrx | None, context: dict[str, str] | None = None) -> None:
|
|
185
|
+
"""
|
|
186
|
+
Sets the observer proxies that receive notifications when the state of the registry or nodes changes.
|
|
187
|
+
|
|
188
|
+
Parameters
|
|
189
|
+
----------
|
|
190
|
+
registryObs : RegistryObserverPrx | None
|
|
191
|
+
The registry observer.
|
|
192
|
+
nodeObs : NodeObserverPrx | None
|
|
193
|
+
The node observer.
|
|
194
|
+
appObs : ApplicationObserverPrx | None
|
|
195
|
+
The application observer.
|
|
196
|
+
adptObs : AdapterObserverPrx | None
|
|
197
|
+
The adapter observer.
|
|
198
|
+
objObs : ObjectObserverPrx | None
|
|
199
|
+
The object observer.
|
|
200
|
+
context : dict[str, str]
|
|
201
|
+
The request context for the invocation.
|
|
202
|
+
|
|
203
|
+
Raises
|
|
204
|
+
------
|
|
205
|
+
ObserverAlreadyRegisteredException
|
|
206
|
+
Thrown when an observer is already registered with this registry.
|
|
207
|
+
"""
|
|
208
|
+
return AdminSession._op_setObservers.invoke(self, ((registryObs, nodeObs, appObs, adptObs, objObs), context))
|
|
209
|
+
|
|
210
|
+
def setObserversAsync(self, registryObs: RegistryObserverPrx | None, nodeObs: NodeObserverPrx | None, appObs: ApplicationObserverPrx | None, adptObs: AdapterObserverPrx | None, objObs: ObjectObserverPrx | None, context: dict[str, str] | None = None) -> Awaitable[None]:
|
|
211
|
+
"""
|
|
212
|
+
Sets the observer proxies that receive notifications when the state of the registry or nodes changes.
|
|
213
|
+
|
|
214
|
+
Parameters
|
|
215
|
+
----------
|
|
216
|
+
registryObs : RegistryObserverPrx | None
|
|
217
|
+
The registry observer.
|
|
218
|
+
nodeObs : NodeObserverPrx | None
|
|
219
|
+
The node observer.
|
|
220
|
+
appObs : ApplicationObserverPrx | None
|
|
221
|
+
The application observer.
|
|
222
|
+
adptObs : AdapterObserverPrx | None
|
|
223
|
+
The adapter observer.
|
|
224
|
+
objObs : ObjectObserverPrx | None
|
|
225
|
+
The object observer.
|
|
226
|
+
context : dict[str, str]
|
|
227
|
+
The request context for the invocation.
|
|
228
|
+
|
|
229
|
+
Returns
|
|
230
|
+
-------
|
|
231
|
+
Awaitable[None]
|
|
232
|
+
An awaitable that is completed when the invocation completes.
|
|
233
|
+
"""
|
|
234
|
+
return AdminSession._op_setObservers.invokeAsync(self, ((registryObs, nodeObs, appObs, adptObs, objObs), context))
|
|
235
|
+
|
|
236
|
+
def setObserversByIdentity(self, registryObs: Identity, nodeObs: Identity, appObs: Identity, adptObs: Identity, objObs: Identity, context: dict[str, str] | None = None) -> None:
|
|
237
|
+
"""
|
|
238
|
+
Sets the observer identities that receive notifications when the state of the registry or nodes changes.
|
|
239
|
+
This operation should be used by clients that are using a bidirectional connection to communicate with the
|
|
240
|
+
session.
|
|
241
|
+
|
|
242
|
+
Parameters
|
|
243
|
+
----------
|
|
244
|
+
registryObs : Identity
|
|
245
|
+
The registry observer identity.
|
|
246
|
+
nodeObs : Identity
|
|
247
|
+
The node observer identity.
|
|
248
|
+
appObs : Identity
|
|
249
|
+
The application observer.
|
|
250
|
+
adptObs : Identity
|
|
251
|
+
The adapter observer.
|
|
252
|
+
objObs : Identity
|
|
253
|
+
The object observer.
|
|
254
|
+
context : dict[str, str]
|
|
255
|
+
The request context for the invocation.
|
|
256
|
+
|
|
257
|
+
Raises
|
|
258
|
+
------
|
|
259
|
+
ObserverAlreadyRegisteredException
|
|
260
|
+
Thrown when an observer is already registered with this registry.
|
|
261
|
+
"""
|
|
262
|
+
return AdminSession._op_setObserversByIdentity.invoke(self, ((registryObs, nodeObs, appObs, adptObs, objObs), context))
|
|
263
|
+
|
|
264
|
+
def setObserversByIdentityAsync(self, registryObs: Identity, nodeObs: Identity, appObs: Identity, adptObs: Identity, objObs: Identity, context: dict[str, str] | None = None) -> Awaitable[None]:
|
|
265
|
+
"""
|
|
266
|
+
Sets the observer identities that receive notifications when the state of the registry or nodes changes.
|
|
267
|
+
This operation should be used by clients that are using a bidirectional connection to communicate with the
|
|
268
|
+
session.
|
|
269
|
+
|
|
270
|
+
Parameters
|
|
271
|
+
----------
|
|
272
|
+
registryObs : Identity
|
|
273
|
+
The registry observer identity.
|
|
274
|
+
nodeObs : Identity
|
|
275
|
+
The node observer identity.
|
|
276
|
+
appObs : Identity
|
|
277
|
+
The application observer.
|
|
278
|
+
adptObs : Identity
|
|
279
|
+
The adapter observer.
|
|
280
|
+
objObs : Identity
|
|
281
|
+
The object observer.
|
|
282
|
+
context : dict[str, str]
|
|
283
|
+
The request context for the invocation.
|
|
284
|
+
|
|
285
|
+
Returns
|
|
286
|
+
-------
|
|
287
|
+
Awaitable[None]
|
|
288
|
+
An awaitable that is completed when the invocation completes.
|
|
289
|
+
"""
|
|
290
|
+
return AdminSession._op_setObserversByIdentity.invokeAsync(self, ((registryObs, nodeObs, appObs, adptObs, objObs), context))
|
|
291
|
+
|
|
292
|
+
def startUpdate(self, context: dict[str, str] | None = None) -> int:
|
|
293
|
+
"""
|
|
294
|
+
Acquires an exclusive lock to start updating the registry applications.
|
|
295
|
+
|
|
296
|
+
Parameters
|
|
297
|
+
----------
|
|
298
|
+
context : dict[str, str]
|
|
299
|
+
The request context for the invocation.
|
|
300
|
+
|
|
301
|
+
Returns
|
|
302
|
+
-------
|
|
303
|
+
int
|
|
304
|
+
The current serial.
|
|
305
|
+
|
|
306
|
+
Raises
|
|
307
|
+
------
|
|
308
|
+
AccessDeniedException
|
|
309
|
+
Thrown when the exclusive lock can't be acquired. This might happen if the
|
|
310
|
+
lock is currently acquired by another session.
|
|
311
|
+
"""
|
|
312
|
+
return AdminSession._op_startUpdate.invoke(self, ((), context))
|
|
313
|
+
|
|
314
|
+
def startUpdateAsync(self, context: dict[str, str] | None = None) -> Awaitable[int]:
|
|
315
|
+
"""
|
|
316
|
+
Acquires an exclusive lock to start updating the registry applications.
|
|
317
|
+
|
|
318
|
+
Parameters
|
|
319
|
+
----------
|
|
320
|
+
context : dict[str, str]
|
|
321
|
+
The request context for the invocation.
|
|
322
|
+
|
|
323
|
+
Returns
|
|
324
|
+
-------
|
|
325
|
+
Awaitable[int]
|
|
326
|
+
The current serial.
|
|
327
|
+
"""
|
|
328
|
+
return AdminSession._op_startUpdate.invokeAsync(self, ((), context))
|
|
329
|
+
|
|
330
|
+
def finishUpdate(self, context: dict[str, str] | None = None) -> None:
|
|
331
|
+
"""
|
|
332
|
+
Finishes updating the registry and releases the exclusive lock.
|
|
333
|
+
|
|
334
|
+
Parameters
|
|
335
|
+
----------
|
|
336
|
+
context : dict[str, str]
|
|
337
|
+
The request context for the invocation.
|
|
338
|
+
|
|
339
|
+
Raises
|
|
340
|
+
------
|
|
341
|
+
AccessDeniedException
|
|
342
|
+
Thrown when the session doesn't hold the exclusive lock.
|
|
343
|
+
"""
|
|
344
|
+
return AdminSession._op_finishUpdate.invoke(self, ((), context))
|
|
345
|
+
|
|
346
|
+
def finishUpdateAsync(self, context: dict[str, str] | None = None) -> Awaitable[None]:
|
|
347
|
+
"""
|
|
348
|
+
Finishes updating the registry and releases the exclusive lock.
|
|
349
|
+
|
|
350
|
+
Parameters
|
|
351
|
+
----------
|
|
352
|
+
context : dict[str, str]
|
|
353
|
+
The request context for the invocation.
|
|
354
|
+
|
|
355
|
+
Returns
|
|
356
|
+
-------
|
|
357
|
+
Awaitable[None]
|
|
358
|
+
An awaitable that is completed when the invocation completes.
|
|
359
|
+
"""
|
|
360
|
+
return AdminSession._op_finishUpdate.invokeAsync(self, ((), context))
|
|
361
|
+
|
|
362
|
+
def getReplicaName(self, context: dict[str, str] | None = None) -> str:
|
|
363
|
+
"""
|
|
364
|
+
Gets the name of the registry replica hosting this session.
|
|
365
|
+
|
|
366
|
+
Parameters
|
|
367
|
+
----------
|
|
368
|
+
context : dict[str, str]
|
|
369
|
+
The request context for the invocation.
|
|
370
|
+
|
|
371
|
+
Returns
|
|
372
|
+
-------
|
|
373
|
+
str
|
|
374
|
+
The replica name of the registry.
|
|
375
|
+
"""
|
|
376
|
+
return AdminSession._op_getReplicaName.invoke(self, ((), context))
|
|
377
|
+
|
|
378
|
+
def getReplicaNameAsync(self, context: dict[str, str] | None = None) -> Awaitable[str]:
|
|
379
|
+
"""
|
|
380
|
+
Gets the name of the registry replica hosting this session.
|
|
381
|
+
|
|
382
|
+
Parameters
|
|
383
|
+
----------
|
|
384
|
+
context : dict[str, str]
|
|
385
|
+
The request context for the invocation.
|
|
386
|
+
|
|
387
|
+
Returns
|
|
388
|
+
-------
|
|
389
|
+
Awaitable[str]
|
|
390
|
+
The replica name of the registry.
|
|
391
|
+
"""
|
|
392
|
+
return AdminSession._op_getReplicaName.invokeAsync(self, ((), context))
|
|
393
|
+
|
|
394
|
+
def openServerLog(self, id: str, path: str, count: int, context: dict[str, str] | None = None) -> FileIteratorPrx | None:
|
|
395
|
+
"""
|
|
396
|
+
Opens a server log file for reading.
|
|
397
|
+
|
|
398
|
+
Parameters
|
|
399
|
+
----------
|
|
400
|
+
id : str
|
|
401
|
+
The server ID.
|
|
402
|
+
path : str
|
|
403
|
+
The path of the log file. A log file can be opened only if it's declared in the server or
|
|
404
|
+
service deployment descriptor.
|
|
405
|
+
count : int
|
|
406
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
407
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
408
|
+
context : dict[str, str]
|
|
409
|
+
The request context for the invocation.
|
|
410
|
+
|
|
411
|
+
Returns
|
|
412
|
+
-------
|
|
413
|
+
FileIteratorPrx | None
|
|
414
|
+
An iterator to read the file. This proxy is never null.
|
|
415
|
+
|
|
416
|
+
Raises
|
|
417
|
+
------
|
|
418
|
+
DeploymentException
|
|
419
|
+
Thrown when the server couldn't be deployed on the node.
|
|
420
|
+
FileNotAvailableException
|
|
421
|
+
Thrown when the file can't be read.
|
|
422
|
+
NodeUnreachableException
|
|
423
|
+
Thrown when the node is unreachable.
|
|
424
|
+
ServerNotExistException
|
|
425
|
+
Thrown when the server doesn't exist.
|
|
426
|
+
"""
|
|
427
|
+
return AdminSession._op_openServerLog.invoke(self, ((id, path, count), context))
|
|
428
|
+
|
|
429
|
+
def openServerLogAsync(self, id: str, path: str, count: int, context: dict[str, str] | None = None) -> Awaitable[FileIteratorPrx | None]:
|
|
430
|
+
"""
|
|
431
|
+
Opens a server log file for reading.
|
|
432
|
+
|
|
433
|
+
Parameters
|
|
434
|
+
----------
|
|
435
|
+
id : str
|
|
436
|
+
The server ID.
|
|
437
|
+
path : str
|
|
438
|
+
The path of the log file. A log file can be opened only if it's declared in the server or
|
|
439
|
+
service deployment descriptor.
|
|
440
|
+
count : int
|
|
441
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
442
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
443
|
+
context : dict[str, str]
|
|
444
|
+
The request context for the invocation.
|
|
445
|
+
|
|
446
|
+
Returns
|
|
447
|
+
-------
|
|
448
|
+
Awaitable[FileIteratorPrx | None]
|
|
449
|
+
An iterator to read the file. This proxy is never null.
|
|
450
|
+
"""
|
|
451
|
+
return AdminSession._op_openServerLog.invokeAsync(self, ((id, path, count), context))
|
|
452
|
+
|
|
453
|
+
def openServerStdErr(self, id: str, count: int, context: dict[str, str] | None = None) -> FileIteratorPrx | None:
|
|
454
|
+
"""
|
|
455
|
+
Opens a server stderr file for reading.
|
|
456
|
+
|
|
457
|
+
Parameters
|
|
458
|
+
----------
|
|
459
|
+
id : str
|
|
460
|
+
The server ID.
|
|
461
|
+
count : int
|
|
462
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
463
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
464
|
+
context : dict[str, str]
|
|
465
|
+
The request context for the invocation.
|
|
466
|
+
|
|
467
|
+
Returns
|
|
468
|
+
-------
|
|
469
|
+
FileIteratorPrx | None
|
|
470
|
+
An iterator to read the file. This proxy is never null.
|
|
471
|
+
|
|
472
|
+
Raises
|
|
473
|
+
------
|
|
474
|
+
DeploymentException
|
|
475
|
+
Thrown when the server couldn't be deployed on the node.
|
|
476
|
+
FileNotAvailableException
|
|
477
|
+
Thrown when the file can't be read.
|
|
478
|
+
NodeUnreachableException
|
|
479
|
+
Thrown when the node is unreachable.
|
|
480
|
+
ServerNotExistException
|
|
481
|
+
Thrown when the server doesn't exist.
|
|
482
|
+
"""
|
|
483
|
+
return AdminSession._op_openServerStdErr.invoke(self, ((id, count), context))
|
|
484
|
+
|
|
485
|
+
def openServerStdErrAsync(self, id: str, count: int, context: dict[str, str] | None = None) -> Awaitable[FileIteratorPrx | None]:
|
|
486
|
+
"""
|
|
487
|
+
Opens a server stderr file for reading.
|
|
488
|
+
|
|
489
|
+
Parameters
|
|
490
|
+
----------
|
|
491
|
+
id : str
|
|
492
|
+
The server ID.
|
|
493
|
+
count : int
|
|
494
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
495
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
496
|
+
context : dict[str, str]
|
|
497
|
+
The request context for the invocation.
|
|
498
|
+
|
|
499
|
+
Returns
|
|
500
|
+
-------
|
|
501
|
+
Awaitable[FileIteratorPrx | None]
|
|
502
|
+
An iterator to read the file. This proxy is never null.
|
|
503
|
+
"""
|
|
504
|
+
return AdminSession._op_openServerStdErr.invokeAsync(self, ((id, count), context))
|
|
505
|
+
|
|
506
|
+
def openServerStdOut(self, id: str, count: int, context: dict[str, str] | None = None) -> FileIteratorPrx | None:
|
|
507
|
+
"""
|
|
508
|
+
Opens a server stdout file for reading.
|
|
509
|
+
|
|
510
|
+
Parameters
|
|
511
|
+
----------
|
|
512
|
+
id : str
|
|
513
|
+
The server id.
|
|
514
|
+
count : int
|
|
515
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
516
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
517
|
+
context : dict[str, str]
|
|
518
|
+
The request context for the invocation.
|
|
519
|
+
|
|
520
|
+
Returns
|
|
521
|
+
-------
|
|
522
|
+
FileIteratorPrx | None
|
|
523
|
+
An iterator to read the file. This proxy is never null.
|
|
524
|
+
|
|
525
|
+
Raises
|
|
526
|
+
------
|
|
527
|
+
DeploymentException
|
|
528
|
+
Thrown when the server couldn't be deployed on the node.
|
|
529
|
+
FileNotAvailableException
|
|
530
|
+
Thrown when the file can't be read.
|
|
531
|
+
NodeUnreachableException
|
|
532
|
+
Thrown when the node is unreachable.
|
|
533
|
+
ServerNotExistException
|
|
534
|
+
Thrown when the server doesn't exist.
|
|
535
|
+
"""
|
|
536
|
+
return AdminSession._op_openServerStdOut.invoke(self, ((id, count), context))
|
|
537
|
+
|
|
538
|
+
def openServerStdOutAsync(self, id: str, count: int, context: dict[str, str] | None = None) -> Awaitable[FileIteratorPrx | None]:
|
|
539
|
+
"""
|
|
540
|
+
Opens a server stdout file for reading.
|
|
541
|
+
|
|
542
|
+
Parameters
|
|
543
|
+
----------
|
|
544
|
+
id : str
|
|
545
|
+
The server id.
|
|
546
|
+
count : int
|
|
547
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
548
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
549
|
+
context : dict[str, str]
|
|
550
|
+
The request context for the invocation.
|
|
551
|
+
|
|
552
|
+
Returns
|
|
553
|
+
-------
|
|
554
|
+
Awaitable[FileIteratorPrx | None]
|
|
555
|
+
An iterator to read the file. This proxy is never null.
|
|
556
|
+
"""
|
|
557
|
+
return AdminSession._op_openServerStdOut.invokeAsync(self, ((id, count), context))
|
|
558
|
+
|
|
559
|
+
def openNodeStdErr(self, name: str, count: int, context: dict[str, str] | None = None) -> FileIteratorPrx | None:
|
|
560
|
+
"""
|
|
561
|
+
Opens a node stderr file for reading.
|
|
562
|
+
|
|
563
|
+
Parameters
|
|
564
|
+
----------
|
|
565
|
+
name : str
|
|
566
|
+
The node name.
|
|
567
|
+
count : int
|
|
568
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
569
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
570
|
+
context : dict[str, str]
|
|
571
|
+
The request context for the invocation.
|
|
572
|
+
|
|
573
|
+
Returns
|
|
574
|
+
-------
|
|
575
|
+
FileIteratorPrx | None
|
|
576
|
+
An iterator to read the file. This proxy is never null.
|
|
577
|
+
|
|
578
|
+
Raises
|
|
579
|
+
------
|
|
580
|
+
FileNotAvailableException
|
|
581
|
+
Thrown when the file can't be read.
|
|
582
|
+
NodeNotExistException
|
|
583
|
+
Thrown when the node doesn't exist.
|
|
584
|
+
NodeUnreachableException
|
|
585
|
+
Thrown when the node is unreachable.
|
|
586
|
+
"""
|
|
587
|
+
return AdminSession._op_openNodeStdErr.invoke(self, ((name, count), context))
|
|
588
|
+
|
|
589
|
+
def openNodeStdErrAsync(self, name: str, count: int, context: dict[str, str] | None = None) -> Awaitable[FileIteratorPrx | None]:
|
|
590
|
+
"""
|
|
591
|
+
Opens a node stderr file for reading.
|
|
592
|
+
|
|
593
|
+
Parameters
|
|
594
|
+
----------
|
|
595
|
+
name : str
|
|
596
|
+
The node name.
|
|
597
|
+
count : int
|
|
598
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
599
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
600
|
+
context : dict[str, str]
|
|
601
|
+
The request context for the invocation.
|
|
602
|
+
|
|
603
|
+
Returns
|
|
604
|
+
-------
|
|
605
|
+
Awaitable[FileIteratorPrx | None]
|
|
606
|
+
An iterator to read the file. This proxy is never null.
|
|
607
|
+
"""
|
|
608
|
+
return AdminSession._op_openNodeStdErr.invokeAsync(self, ((name, count), context))
|
|
609
|
+
|
|
610
|
+
def openNodeStdOut(self, name: str, count: int, context: dict[str, str] | None = None) -> FileIteratorPrx | None:
|
|
611
|
+
"""
|
|
612
|
+
Opens a node stdout file for reading.
|
|
613
|
+
|
|
614
|
+
Parameters
|
|
615
|
+
----------
|
|
616
|
+
name : str
|
|
617
|
+
The node name.
|
|
618
|
+
count : int
|
|
619
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
620
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
621
|
+
context : dict[str, str]
|
|
622
|
+
The request context for the invocation.
|
|
623
|
+
|
|
624
|
+
Returns
|
|
625
|
+
-------
|
|
626
|
+
FileIteratorPrx | None
|
|
627
|
+
An iterator to read the file. This proxy is never null.
|
|
628
|
+
|
|
629
|
+
Raises
|
|
630
|
+
------
|
|
631
|
+
FileNotAvailableException
|
|
632
|
+
Thrown when the file can't be read.
|
|
633
|
+
NodeNotExistException
|
|
634
|
+
Thrown when the node doesn't exist.
|
|
635
|
+
NodeUnreachableException
|
|
636
|
+
Thrown when the node is unreachable.
|
|
637
|
+
"""
|
|
638
|
+
return AdminSession._op_openNodeStdOut.invoke(self, ((name, count), context))
|
|
639
|
+
|
|
640
|
+
def openNodeStdOutAsync(self, name: str, count: int, context: dict[str, str] | None = None) -> Awaitable[FileIteratorPrx | None]:
|
|
641
|
+
"""
|
|
642
|
+
Opens a node stdout file for reading.
|
|
643
|
+
|
|
644
|
+
Parameters
|
|
645
|
+
----------
|
|
646
|
+
name : str
|
|
647
|
+
The node name.
|
|
648
|
+
count : int
|
|
649
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
650
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
651
|
+
context : dict[str, str]
|
|
652
|
+
The request context for the invocation.
|
|
653
|
+
|
|
654
|
+
Returns
|
|
655
|
+
-------
|
|
656
|
+
Awaitable[FileIteratorPrx | None]
|
|
657
|
+
An iterator to read the file. This proxy is never null.
|
|
658
|
+
"""
|
|
659
|
+
return AdminSession._op_openNodeStdOut.invokeAsync(self, ((name, count), context))
|
|
660
|
+
|
|
661
|
+
def openRegistryStdErr(self, name: str, count: int, context: dict[str, str] | None = None) -> FileIteratorPrx | None:
|
|
662
|
+
"""
|
|
663
|
+
Opens a registry stderr file for reading.
|
|
664
|
+
|
|
665
|
+
Parameters
|
|
666
|
+
----------
|
|
667
|
+
name : str
|
|
668
|
+
The registry name.
|
|
669
|
+
count : int
|
|
670
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
671
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
672
|
+
context : dict[str, str]
|
|
673
|
+
The request context for the invocation.
|
|
674
|
+
|
|
675
|
+
Returns
|
|
676
|
+
-------
|
|
677
|
+
FileIteratorPrx | None
|
|
678
|
+
An iterator to read the file. This proxy is never null.
|
|
679
|
+
|
|
680
|
+
Raises
|
|
681
|
+
------
|
|
682
|
+
FileNotAvailableException
|
|
683
|
+
Thrown when the file can't be read.
|
|
684
|
+
RegistryNotExistException
|
|
685
|
+
Thrown when the registry doesn't exist.
|
|
686
|
+
RegistryUnreachableException
|
|
687
|
+
Thrown when the registry is unreachable.
|
|
688
|
+
"""
|
|
689
|
+
return AdminSession._op_openRegistryStdErr.invoke(self, ((name, count), context))
|
|
690
|
+
|
|
691
|
+
def openRegistryStdErrAsync(self, name: str, count: int, context: dict[str, str] | None = None) -> Awaitable[FileIteratorPrx | None]:
|
|
692
|
+
"""
|
|
693
|
+
Opens a registry stderr file for reading.
|
|
694
|
+
|
|
695
|
+
Parameters
|
|
696
|
+
----------
|
|
697
|
+
name : str
|
|
698
|
+
The registry name.
|
|
699
|
+
count : int
|
|
700
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
701
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
702
|
+
context : dict[str, str]
|
|
703
|
+
The request context for the invocation.
|
|
704
|
+
|
|
705
|
+
Returns
|
|
706
|
+
-------
|
|
707
|
+
Awaitable[FileIteratorPrx | None]
|
|
708
|
+
An iterator to read the file. This proxy is never null.
|
|
709
|
+
"""
|
|
710
|
+
return AdminSession._op_openRegistryStdErr.invokeAsync(self, ((name, count), context))
|
|
711
|
+
|
|
712
|
+
def openRegistryStdOut(self, name: str, count: int, context: dict[str, str] | None = None) -> FileIteratorPrx | None:
|
|
713
|
+
"""
|
|
714
|
+
Opens a registry stdout file for reading.
|
|
715
|
+
|
|
716
|
+
Parameters
|
|
717
|
+
----------
|
|
718
|
+
name : str
|
|
719
|
+
The registry name.
|
|
720
|
+
count : int
|
|
721
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
722
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
723
|
+
context : dict[str, str]
|
|
724
|
+
The request context for the invocation.
|
|
725
|
+
|
|
726
|
+
Returns
|
|
727
|
+
-------
|
|
728
|
+
FileIteratorPrx | None
|
|
729
|
+
An iterator to read the file. This proxy is never null.
|
|
730
|
+
|
|
731
|
+
Raises
|
|
732
|
+
------
|
|
733
|
+
FileNotAvailableException
|
|
734
|
+
Thrown when the file can't be read.
|
|
735
|
+
RegistryNotExistException
|
|
736
|
+
Thrown when the registry doesn't exist.
|
|
737
|
+
RegistryUnreachableException
|
|
738
|
+
Thrown when the registry is unreachable.
|
|
739
|
+
"""
|
|
740
|
+
return AdminSession._op_openRegistryStdOut.invoke(self, ((name, count), context))
|
|
741
|
+
|
|
742
|
+
def openRegistryStdOutAsync(self, name: str, count: int, context: dict[str, str] | None = None) -> Awaitable[FileIteratorPrx | None]:
|
|
743
|
+
"""
|
|
744
|
+
Opens a registry stdout file for reading.
|
|
745
|
+
|
|
746
|
+
Parameters
|
|
747
|
+
----------
|
|
748
|
+
name : str
|
|
749
|
+
The registry name.
|
|
750
|
+
count : int
|
|
751
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
752
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
753
|
+
context : dict[str, str]
|
|
754
|
+
The request context for the invocation.
|
|
755
|
+
|
|
756
|
+
Returns
|
|
757
|
+
-------
|
|
758
|
+
Awaitable[FileIteratorPrx | None]
|
|
759
|
+
An iterator to read the file. This proxy is never null.
|
|
760
|
+
"""
|
|
761
|
+
return AdminSession._op_openRegistryStdOut.invokeAsync(self, ((name, count), context))
|
|
762
|
+
|
|
763
|
+
@staticmethod
|
|
764
|
+
def checkedCast(
|
|
765
|
+
proxy: ObjectPrx | None,
|
|
766
|
+
facet: str | None = None,
|
|
767
|
+
context: dict[str, str] | None = None
|
|
768
|
+
) -> AdminSessionPrx | None:
|
|
769
|
+
return checkedCast(AdminSessionPrx, proxy, facet, context)
|
|
770
|
+
|
|
771
|
+
@staticmethod
|
|
772
|
+
def checkedCastAsync(
|
|
773
|
+
proxy: ObjectPrx | None,
|
|
774
|
+
facet: str | None = None,
|
|
775
|
+
context: dict[str, str] | None = None
|
|
776
|
+
) -> Awaitable[AdminSessionPrx | None ]:
|
|
777
|
+
return checkedCastAsync(AdminSessionPrx, proxy, facet, context)
|
|
778
|
+
|
|
779
|
+
@overload
|
|
780
|
+
@staticmethod
|
|
781
|
+
def uncheckedCast(proxy: ObjectPrx, facet: str | None = None) -> AdminSessionPrx:
|
|
782
|
+
...
|
|
783
|
+
|
|
784
|
+
@overload
|
|
785
|
+
@staticmethod
|
|
786
|
+
def uncheckedCast(proxy: None, facet: str | None = None) -> None:
|
|
787
|
+
...
|
|
788
|
+
|
|
789
|
+
@staticmethod
|
|
790
|
+
def uncheckedCast(proxy: ObjectPrx | None, facet: str | None = None) -> AdminSessionPrx | None:
|
|
791
|
+
return uncheckedCast(AdminSessionPrx, proxy, facet)
|
|
792
|
+
|
|
793
|
+
@staticmethod
|
|
794
|
+
def ice_staticId() -> str:
|
|
795
|
+
return "::IceGrid::AdminSession"
|
|
796
|
+
|
|
797
|
+
IcePy.defineProxy("::IceGrid::AdminSession", AdminSessionPrx)
|
|
798
|
+
|
|
799
|
+
class AdminSession(Session, ABC):
|
|
800
|
+
"""
|
|
801
|
+
Represents an administrative session between an admin tool and an IceGrid registry.
|
|
802
|
+
|
|
803
|
+
Notes
|
|
804
|
+
-----
|
|
805
|
+
The Slice compiler generated this skeleton class from Slice interface ``::IceGrid::AdminSession``.
|
|
806
|
+
|
|
807
|
+
See Also
|
|
808
|
+
--------
|
|
809
|
+
:class:`IceGrid.RegistryPrx`
|
|
810
|
+
"""
|
|
811
|
+
|
|
812
|
+
_ice_ids: Sequence[str] = ("::Glacier2::Session", "::Ice::Object", "::IceGrid::AdminSession", )
|
|
813
|
+
_op_keepAlive: IcePy.Operation
|
|
814
|
+
_op_getAdmin: IcePy.Operation
|
|
815
|
+
_op_getAdminCallbackTemplate: IcePy.Operation
|
|
816
|
+
_op_setObservers: IcePy.Operation
|
|
817
|
+
_op_setObserversByIdentity: IcePy.Operation
|
|
818
|
+
_op_startUpdate: IcePy.Operation
|
|
819
|
+
_op_finishUpdate: IcePy.Operation
|
|
820
|
+
_op_getReplicaName: IcePy.Operation
|
|
821
|
+
_op_openServerLog: IcePy.Operation
|
|
822
|
+
_op_openServerStdErr: IcePy.Operation
|
|
823
|
+
_op_openServerStdOut: IcePy.Operation
|
|
824
|
+
_op_openNodeStdErr: IcePy.Operation
|
|
825
|
+
_op_openNodeStdOut: IcePy.Operation
|
|
826
|
+
_op_openRegistryStdErr: IcePy.Operation
|
|
827
|
+
_op_openRegistryStdOut: IcePy.Operation
|
|
828
|
+
|
|
829
|
+
@staticmethod
|
|
830
|
+
def ice_staticId() -> str:
|
|
831
|
+
return "::IceGrid::AdminSession"
|
|
832
|
+
|
|
833
|
+
@abstractmethod
|
|
834
|
+
def keepAlive(self, current: Current) -> None | Awaitable[None]:
|
|
835
|
+
"""
|
|
836
|
+
Keeps the session alive.
|
|
837
|
+
|
|
838
|
+
Parameters
|
|
839
|
+
----------
|
|
840
|
+
current : Ice.Current
|
|
841
|
+
The Current object for the dispatch.
|
|
842
|
+
|
|
843
|
+
Returns
|
|
844
|
+
-------
|
|
845
|
+
None | Awaitable[None]
|
|
846
|
+
None or an awaitable that completes when the dispatch completes.
|
|
847
|
+
"""
|
|
848
|
+
pass
|
|
849
|
+
|
|
850
|
+
@abstractmethod
|
|
851
|
+
def getAdmin(self, current: Current) -> AdminPrx | None | Awaitable[AdminPrx | None]:
|
|
852
|
+
"""
|
|
853
|
+
Gets a proxy to the IceGrid admin object. The admin object returned by this operation can only be accessed
|
|
854
|
+
by the session.
|
|
855
|
+
|
|
856
|
+
Parameters
|
|
857
|
+
----------
|
|
858
|
+
current : Ice.Current
|
|
859
|
+
The Current object for the dispatch.
|
|
860
|
+
|
|
861
|
+
Returns
|
|
862
|
+
-------
|
|
863
|
+
AdminPrx | None | Awaitable[AdminPrx | None]
|
|
864
|
+
A proxy to the IceGrid admin object. This proxy is never null.
|
|
865
|
+
"""
|
|
866
|
+
pass
|
|
867
|
+
|
|
868
|
+
@abstractmethod
|
|
869
|
+
def getAdminCallbackTemplate(self, current: Current) -> ObjectPrx | None | Awaitable[ObjectPrx | None]:
|
|
870
|
+
"""
|
|
871
|
+
Gets a "template" proxy for admin callback objects. An Admin client uses this proxy to set the category of
|
|
872
|
+
its callback objects, and the published endpoints of the object adapter hosting the admin callback objects.
|
|
873
|
+
|
|
874
|
+
Parameters
|
|
875
|
+
----------
|
|
876
|
+
current : Ice.Current
|
|
877
|
+
The Current object for the dispatch.
|
|
878
|
+
|
|
879
|
+
Returns
|
|
880
|
+
-------
|
|
881
|
+
ObjectPrx | None | Awaitable[ObjectPrx | None]
|
|
882
|
+
A template proxy. The returned proxy is null when the Admin session was established using Glacier2.
|
|
883
|
+
"""
|
|
884
|
+
pass
|
|
885
|
+
|
|
886
|
+
@abstractmethod
|
|
887
|
+
def setObservers(self, registryObs: RegistryObserverPrx | None, nodeObs: NodeObserverPrx | None, appObs: ApplicationObserverPrx | None, adptObs: AdapterObserverPrx | None, objObs: ObjectObserverPrx | None, current: Current) -> None | Awaitable[None]:
|
|
888
|
+
"""
|
|
889
|
+
Sets the observer proxies that receive notifications when the state of the registry or nodes changes.
|
|
890
|
+
|
|
891
|
+
Parameters
|
|
892
|
+
----------
|
|
893
|
+
registryObs : RegistryObserverPrx | None
|
|
894
|
+
The registry observer.
|
|
895
|
+
nodeObs : NodeObserverPrx | None
|
|
896
|
+
The node observer.
|
|
897
|
+
appObs : ApplicationObserverPrx | None
|
|
898
|
+
The application observer.
|
|
899
|
+
adptObs : AdapterObserverPrx | None
|
|
900
|
+
The adapter observer.
|
|
901
|
+
objObs : ObjectObserverPrx | None
|
|
902
|
+
The object observer.
|
|
903
|
+
current : Ice.Current
|
|
904
|
+
The Current object for the dispatch.
|
|
905
|
+
|
|
906
|
+
Returns
|
|
907
|
+
-------
|
|
908
|
+
None | Awaitable[None]
|
|
909
|
+
None or an awaitable that completes when the dispatch completes.
|
|
910
|
+
|
|
911
|
+
Raises
|
|
912
|
+
------
|
|
913
|
+
ObserverAlreadyRegisteredException
|
|
914
|
+
Thrown when an observer is already registered with this registry.
|
|
915
|
+
"""
|
|
916
|
+
pass
|
|
917
|
+
|
|
918
|
+
@abstractmethod
|
|
919
|
+
def setObserversByIdentity(self, registryObs: Identity, nodeObs: Identity, appObs: Identity, adptObs: Identity, objObs: Identity, current: Current) -> None | Awaitable[None]:
|
|
920
|
+
"""
|
|
921
|
+
Sets the observer identities that receive notifications when the state of the registry or nodes changes.
|
|
922
|
+
This operation should be used by clients that are using a bidirectional connection to communicate with the
|
|
923
|
+
session.
|
|
924
|
+
|
|
925
|
+
Parameters
|
|
926
|
+
----------
|
|
927
|
+
registryObs : Identity
|
|
928
|
+
The registry observer identity.
|
|
929
|
+
nodeObs : Identity
|
|
930
|
+
The node observer identity.
|
|
931
|
+
appObs : Identity
|
|
932
|
+
The application observer.
|
|
933
|
+
adptObs : Identity
|
|
934
|
+
The adapter observer.
|
|
935
|
+
objObs : Identity
|
|
936
|
+
The object observer.
|
|
937
|
+
current : Ice.Current
|
|
938
|
+
The Current object for the dispatch.
|
|
939
|
+
|
|
940
|
+
Returns
|
|
941
|
+
-------
|
|
942
|
+
None | Awaitable[None]
|
|
943
|
+
None or an awaitable that completes when the dispatch completes.
|
|
944
|
+
|
|
945
|
+
Raises
|
|
946
|
+
------
|
|
947
|
+
ObserverAlreadyRegisteredException
|
|
948
|
+
Thrown when an observer is already registered with this registry.
|
|
949
|
+
"""
|
|
950
|
+
pass
|
|
951
|
+
|
|
952
|
+
@abstractmethod
|
|
953
|
+
def startUpdate(self, current: Current) -> int | Awaitable[int]:
|
|
954
|
+
"""
|
|
955
|
+
Acquires an exclusive lock to start updating the registry applications.
|
|
956
|
+
|
|
957
|
+
Parameters
|
|
958
|
+
----------
|
|
959
|
+
current : Ice.Current
|
|
960
|
+
The Current object for the dispatch.
|
|
961
|
+
|
|
962
|
+
Returns
|
|
963
|
+
-------
|
|
964
|
+
int | Awaitable[int]
|
|
965
|
+
The current serial.
|
|
966
|
+
|
|
967
|
+
Raises
|
|
968
|
+
------
|
|
969
|
+
AccessDeniedException
|
|
970
|
+
Thrown when the exclusive lock can't be acquired. This might happen if the
|
|
971
|
+
lock is currently acquired by another session.
|
|
972
|
+
"""
|
|
973
|
+
pass
|
|
974
|
+
|
|
975
|
+
@abstractmethod
|
|
976
|
+
def finishUpdate(self, current: Current) -> None | Awaitable[None]:
|
|
977
|
+
"""
|
|
978
|
+
Finishes updating the registry and releases the exclusive lock.
|
|
979
|
+
|
|
980
|
+
Parameters
|
|
981
|
+
----------
|
|
982
|
+
current : Ice.Current
|
|
983
|
+
The Current object for the dispatch.
|
|
984
|
+
|
|
985
|
+
Returns
|
|
986
|
+
-------
|
|
987
|
+
None | Awaitable[None]
|
|
988
|
+
None or an awaitable that completes when the dispatch completes.
|
|
989
|
+
|
|
990
|
+
Raises
|
|
991
|
+
------
|
|
992
|
+
AccessDeniedException
|
|
993
|
+
Thrown when the session doesn't hold the exclusive lock.
|
|
994
|
+
"""
|
|
995
|
+
pass
|
|
996
|
+
|
|
997
|
+
@abstractmethod
|
|
998
|
+
def getReplicaName(self, current: Current) -> str | Awaitable[str]:
|
|
999
|
+
"""
|
|
1000
|
+
Gets the name of the registry replica hosting this session.
|
|
1001
|
+
|
|
1002
|
+
Parameters
|
|
1003
|
+
----------
|
|
1004
|
+
current : Ice.Current
|
|
1005
|
+
The Current object for the dispatch.
|
|
1006
|
+
|
|
1007
|
+
Returns
|
|
1008
|
+
-------
|
|
1009
|
+
str | Awaitable[str]
|
|
1010
|
+
The replica name of the registry.
|
|
1011
|
+
"""
|
|
1012
|
+
pass
|
|
1013
|
+
|
|
1014
|
+
@abstractmethod
|
|
1015
|
+
def openServerLog(self, id: str, path: str, count: int, current: Current) -> FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]:
|
|
1016
|
+
"""
|
|
1017
|
+
Opens a server log file for reading.
|
|
1018
|
+
|
|
1019
|
+
Parameters
|
|
1020
|
+
----------
|
|
1021
|
+
id : str
|
|
1022
|
+
The server ID.
|
|
1023
|
+
path : str
|
|
1024
|
+
The path of the log file. A log file can be opened only if it's declared in the server or
|
|
1025
|
+
service deployment descriptor.
|
|
1026
|
+
count : int
|
|
1027
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
1028
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
1029
|
+
current : Ice.Current
|
|
1030
|
+
The Current object for the dispatch.
|
|
1031
|
+
|
|
1032
|
+
Returns
|
|
1033
|
+
-------
|
|
1034
|
+
FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]
|
|
1035
|
+
An iterator to read the file. This proxy is never null.
|
|
1036
|
+
|
|
1037
|
+
Raises
|
|
1038
|
+
------
|
|
1039
|
+
DeploymentException
|
|
1040
|
+
Thrown when the server couldn't be deployed on the node.
|
|
1041
|
+
FileNotAvailableException
|
|
1042
|
+
Thrown when the file can't be read.
|
|
1043
|
+
NodeUnreachableException
|
|
1044
|
+
Thrown when the node is unreachable.
|
|
1045
|
+
ServerNotExistException
|
|
1046
|
+
Thrown when the server doesn't exist.
|
|
1047
|
+
"""
|
|
1048
|
+
pass
|
|
1049
|
+
|
|
1050
|
+
@abstractmethod
|
|
1051
|
+
def openServerStdErr(self, id: str, count: int, current: Current) -> FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]:
|
|
1052
|
+
"""
|
|
1053
|
+
Opens a server stderr file for reading.
|
|
1054
|
+
|
|
1055
|
+
Parameters
|
|
1056
|
+
----------
|
|
1057
|
+
id : str
|
|
1058
|
+
The server ID.
|
|
1059
|
+
count : int
|
|
1060
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
1061
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
1062
|
+
current : Ice.Current
|
|
1063
|
+
The Current object for the dispatch.
|
|
1064
|
+
|
|
1065
|
+
Returns
|
|
1066
|
+
-------
|
|
1067
|
+
FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]
|
|
1068
|
+
An iterator to read the file. This proxy is never null.
|
|
1069
|
+
|
|
1070
|
+
Raises
|
|
1071
|
+
------
|
|
1072
|
+
DeploymentException
|
|
1073
|
+
Thrown when the server couldn't be deployed on the node.
|
|
1074
|
+
FileNotAvailableException
|
|
1075
|
+
Thrown when the file can't be read.
|
|
1076
|
+
NodeUnreachableException
|
|
1077
|
+
Thrown when the node is unreachable.
|
|
1078
|
+
ServerNotExistException
|
|
1079
|
+
Thrown when the server doesn't exist.
|
|
1080
|
+
"""
|
|
1081
|
+
pass
|
|
1082
|
+
|
|
1083
|
+
@abstractmethod
|
|
1084
|
+
def openServerStdOut(self, id: str, count: int, current: Current) -> FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]:
|
|
1085
|
+
"""
|
|
1086
|
+
Opens a server stdout file for reading.
|
|
1087
|
+
|
|
1088
|
+
Parameters
|
|
1089
|
+
----------
|
|
1090
|
+
id : str
|
|
1091
|
+
The server id.
|
|
1092
|
+
count : int
|
|
1093
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
1094
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
1095
|
+
current : Ice.Current
|
|
1096
|
+
The Current object for the dispatch.
|
|
1097
|
+
|
|
1098
|
+
Returns
|
|
1099
|
+
-------
|
|
1100
|
+
FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]
|
|
1101
|
+
An iterator to read the file. This proxy is never null.
|
|
1102
|
+
|
|
1103
|
+
Raises
|
|
1104
|
+
------
|
|
1105
|
+
DeploymentException
|
|
1106
|
+
Thrown when the server couldn't be deployed on the node.
|
|
1107
|
+
FileNotAvailableException
|
|
1108
|
+
Thrown when the file can't be read.
|
|
1109
|
+
NodeUnreachableException
|
|
1110
|
+
Thrown when the node is unreachable.
|
|
1111
|
+
ServerNotExistException
|
|
1112
|
+
Thrown when the server doesn't exist.
|
|
1113
|
+
"""
|
|
1114
|
+
pass
|
|
1115
|
+
|
|
1116
|
+
@abstractmethod
|
|
1117
|
+
def openNodeStdErr(self, name: str, count: int, current: Current) -> FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]:
|
|
1118
|
+
"""
|
|
1119
|
+
Opens a node stderr file for reading.
|
|
1120
|
+
|
|
1121
|
+
Parameters
|
|
1122
|
+
----------
|
|
1123
|
+
name : str
|
|
1124
|
+
The node name.
|
|
1125
|
+
count : int
|
|
1126
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
1127
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
1128
|
+
current : Ice.Current
|
|
1129
|
+
The Current object for the dispatch.
|
|
1130
|
+
|
|
1131
|
+
Returns
|
|
1132
|
+
-------
|
|
1133
|
+
FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]
|
|
1134
|
+
An iterator to read the file. This proxy is never null.
|
|
1135
|
+
|
|
1136
|
+
Raises
|
|
1137
|
+
------
|
|
1138
|
+
FileNotAvailableException
|
|
1139
|
+
Thrown when the file can't be read.
|
|
1140
|
+
NodeNotExistException
|
|
1141
|
+
Thrown when the node doesn't exist.
|
|
1142
|
+
NodeUnreachableException
|
|
1143
|
+
Thrown when the node is unreachable.
|
|
1144
|
+
"""
|
|
1145
|
+
pass
|
|
1146
|
+
|
|
1147
|
+
@abstractmethod
|
|
1148
|
+
def openNodeStdOut(self, name: str, count: int, current: Current) -> FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]:
|
|
1149
|
+
"""
|
|
1150
|
+
Opens a node stdout file for reading.
|
|
1151
|
+
|
|
1152
|
+
Parameters
|
|
1153
|
+
----------
|
|
1154
|
+
name : str
|
|
1155
|
+
The node name.
|
|
1156
|
+
count : int
|
|
1157
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
1158
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
1159
|
+
current : Ice.Current
|
|
1160
|
+
The Current object for the dispatch.
|
|
1161
|
+
|
|
1162
|
+
Returns
|
|
1163
|
+
-------
|
|
1164
|
+
FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]
|
|
1165
|
+
An iterator to read the file. This proxy is never null.
|
|
1166
|
+
|
|
1167
|
+
Raises
|
|
1168
|
+
------
|
|
1169
|
+
FileNotAvailableException
|
|
1170
|
+
Thrown when the file can't be read.
|
|
1171
|
+
NodeNotExistException
|
|
1172
|
+
Thrown when the node doesn't exist.
|
|
1173
|
+
NodeUnreachableException
|
|
1174
|
+
Thrown when the node is unreachable.
|
|
1175
|
+
"""
|
|
1176
|
+
pass
|
|
1177
|
+
|
|
1178
|
+
@abstractmethod
|
|
1179
|
+
def openRegistryStdErr(self, name: str, count: int, current: Current) -> FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]:
|
|
1180
|
+
"""
|
|
1181
|
+
Opens a registry stderr file for reading.
|
|
1182
|
+
|
|
1183
|
+
Parameters
|
|
1184
|
+
----------
|
|
1185
|
+
name : str
|
|
1186
|
+
The registry name.
|
|
1187
|
+
count : int
|
|
1188
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
1189
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
1190
|
+
current : Ice.Current
|
|
1191
|
+
The Current object for the dispatch.
|
|
1192
|
+
|
|
1193
|
+
Returns
|
|
1194
|
+
-------
|
|
1195
|
+
FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]
|
|
1196
|
+
An iterator to read the file. This proxy is never null.
|
|
1197
|
+
|
|
1198
|
+
Raises
|
|
1199
|
+
------
|
|
1200
|
+
FileNotAvailableException
|
|
1201
|
+
Thrown when the file can't be read.
|
|
1202
|
+
RegistryNotExistException
|
|
1203
|
+
Thrown when the registry doesn't exist.
|
|
1204
|
+
RegistryUnreachableException
|
|
1205
|
+
Thrown when the registry is unreachable.
|
|
1206
|
+
"""
|
|
1207
|
+
pass
|
|
1208
|
+
|
|
1209
|
+
@abstractmethod
|
|
1210
|
+
def openRegistryStdOut(self, name: str, count: int, current: Current) -> FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]:
|
|
1211
|
+
"""
|
|
1212
|
+
Opens a registry stdout file for reading.
|
|
1213
|
+
|
|
1214
|
+
Parameters
|
|
1215
|
+
----------
|
|
1216
|
+
name : str
|
|
1217
|
+
The registry name.
|
|
1218
|
+
count : int
|
|
1219
|
+
Specifies where to start reading the file. If negative, the file is read from the beginning.
|
|
1220
|
+
Otherwise, the file is read from the last ``count`` lines.
|
|
1221
|
+
current : Ice.Current
|
|
1222
|
+
The Current object for the dispatch.
|
|
1223
|
+
|
|
1224
|
+
Returns
|
|
1225
|
+
-------
|
|
1226
|
+
FileIteratorPrx | None | Awaitable[FileIteratorPrx | None]
|
|
1227
|
+
An iterator to read the file. This proxy is never null.
|
|
1228
|
+
|
|
1229
|
+
Raises
|
|
1230
|
+
------
|
|
1231
|
+
FileNotAvailableException
|
|
1232
|
+
Thrown when the file can't be read.
|
|
1233
|
+
RegistryNotExistException
|
|
1234
|
+
Thrown when the registry doesn't exist.
|
|
1235
|
+
RegistryUnreachableException
|
|
1236
|
+
Thrown when the registry is unreachable.
|
|
1237
|
+
"""
|
|
1238
|
+
pass
|
|
1239
|
+
|
|
1240
|
+
AdminSession._op_keepAlive = IcePy.Operation(
|
|
1241
|
+
"keepAlive",
|
|
1242
|
+
"keepAlive",
|
|
1243
|
+
OperationMode.Idempotent,
|
|
1244
|
+
None,
|
|
1245
|
+
(),
|
|
1246
|
+
(),
|
|
1247
|
+
(),
|
|
1248
|
+
None,
|
|
1249
|
+
())
|
|
1250
|
+
AdminSession._op_keepAlive.deprecate("As of Ice 3.8, there is no need to call this operation, and its implementation does nothing.")
|
|
1251
|
+
|
|
1252
|
+
AdminSession._op_getAdmin = IcePy.Operation(
|
|
1253
|
+
"getAdmin",
|
|
1254
|
+
"getAdmin",
|
|
1255
|
+
OperationMode.Idempotent,
|
|
1256
|
+
None,
|
|
1257
|
+
(),
|
|
1258
|
+
(),
|
|
1259
|
+
(),
|
|
1260
|
+
((), _IceGrid_AdminPrx_t, False, 0),
|
|
1261
|
+
())
|
|
1262
|
+
|
|
1263
|
+
AdminSession._op_getAdminCallbackTemplate = IcePy.Operation(
|
|
1264
|
+
"getAdminCallbackTemplate",
|
|
1265
|
+
"getAdminCallbackTemplate",
|
|
1266
|
+
OperationMode.Idempotent,
|
|
1267
|
+
None,
|
|
1268
|
+
(),
|
|
1269
|
+
(),
|
|
1270
|
+
(),
|
|
1271
|
+
((), _Ice_ObjectPrx_t, False, 0),
|
|
1272
|
+
())
|
|
1273
|
+
|
|
1274
|
+
AdminSession._op_setObservers = IcePy.Operation(
|
|
1275
|
+
"setObservers",
|
|
1276
|
+
"setObservers",
|
|
1277
|
+
OperationMode.Idempotent,
|
|
1278
|
+
None,
|
|
1279
|
+
(),
|
|
1280
|
+
(((), _IceGrid_RegistryObserverPrx_t, False, 0), ((), _IceGrid_NodeObserverPrx_t, False, 0), ((), _IceGrid_ApplicationObserverPrx_t, False, 0), ((), _IceGrid_AdapterObserverPrx_t, False, 0), ((), _IceGrid_ObjectObserverPrx_t, False, 0)),
|
|
1281
|
+
(),
|
|
1282
|
+
None,
|
|
1283
|
+
(_IceGrid_ObserverAlreadyRegisteredException_t,))
|
|
1284
|
+
|
|
1285
|
+
AdminSession._op_setObserversByIdentity = IcePy.Operation(
|
|
1286
|
+
"setObserversByIdentity",
|
|
1287
|
+
"setObserversByIdentity",
|
|
1288
|
+
OperationMode.Idempotent,
|
|
1289
|
+
None,
|
|
1290
|
+
(),
|
|
1291
|
+
(((), _Ice_Identity_t, False, 0), ((), _Ice_Identity_t, False, 0), ((), _Ice_Identity_t, False, 0), ((), _Ice_Identity_t, False, 0), ((), _Ice_Identity_t, False, 0)),
|
|
1292
|
+
(),
|
|
1293
|
+
None,
|
|
1294
|
+
(_IceGrid_ObserverAlreadyRegisteredException_t,))
|
|
1295
|
+
|
|
1296
|
+
AdminSession._op_startUpdate = IcePy.Operation(
|
|
1297
|
+
"startUpdate",
|
|
1298
|
+
"startUpdate",
|
|
1299
|
+
OperationMode.Normal,
|
|
1300
|
+
None,
|
|
1301
|
+
(),
|
|
1302
|
+
(),
|
|
1303
|
+
(),
|
|
1304
|
+
((), IcePy._t_int, False, 0),
|
|
1305
|
+
(_IceGrid_AccessDeniedException_t,))
|
|
1306
|
+
|
|
1307
|
+
AdminSession._op_finishUpdate = IcePy.Operation(
|
|
1308
|
+
"finishUpdate",
|
|
1309
|
+
"finishUpdate",
|
|
1310
|
+
OperationMode.Normal,
|
|
1311
|
+
None,
|
|
1312
|
+
(),
|
|
1313
|
+
(),
|
|
1314
|
+
(),
|
|
1315
|
+
None,
|
|
1316
|
+
(_IceGrid_AccessDeniedException_t,))
|
|
1317
|
+
|
|
1318
|
+
AdminSession._op_getReplicaName = IcePy.Operation(
|
|
1319
|
+
"getReplicaName",
|
|
1320
|
+
"getReplicaName",
|
|
1321
|
+
OperationMode.Idempotent,
|
|
1322
|
+
None,
|
|
1323
|
+
(),
|
|
1324
|
+
(),
|
|
1325
|
+
(),
|
|
1326
|
+
((), IcePy._t_string, False, 0),
|
|
1327
|
+
())
|
|
1328
|
+
|
|
1329
|
+
AdminSession._op_openServerLog = IcePy.Operation(
|
|
1330
|
+
"openServerLog",
|
|
1331
|
+
"openServerLog",
|
|
1332
|
+
OperationMode.Normal,
|
|
1333
|
+
None,
|
|
1334
|
+
(),
|
|
1335
|
+
(((), IcePy._t_string, False, 0), ((), IcePy._t_string, False, 0), ((), IcePy._t_int, False, 0)),
|
|
1336
|
+
(),
|
|
1337
|
+
((), _IceGrid_FileIteratorPrx_t, False, 0),
|
|
1338
|
+
(_IceGrid_FileNotAvailableException_t, _IceGrid_ServerNotExistException_t, _IceGrid_NodeUnreachableException_t, _IceGrid_DeploymentException_t))
|
|
1339
|
+
|
|
1340
|
+
AdminSession._op_openServerStdErr = IcePy.Operation(
|
|
1341
|
+
"openServerStdErr",
|
|
1342
|
+
"openServerStdErr",
|
|
1343
|
+
OperationMode.Normal,
|
|
1344
|
+
None,
|
|
1345
|
+
(),
|
|
1346
|
+
(((), IcePy._t_string, False, 0), ((), IcePy._t_int, False, 0)),
|
|
1347
|
+
(),
|
|
1348
|
+
((), _IceGrid_FileIteratorPrx_t, False, 0),
|
|
1349
|
+
(_IceGrid_FileNotAvailableException_t, _IceGrid_ServerNotExistException_t, _IceGrid_NodeUnreachableException_t, _IceGrid_DeploymentException_t))
|
|
1350
|
+
|
|
1351
|
+
AdminSession._op_openServerStdOut = IcePy.Operation(
|
|
1352
|
+
"openServerStdOut",
|
|
1353
|
+
"openServerStdOut",
|
|
1354
|
+
OperationMode.Normal,
|
|
1355
|
+
None,
|
|
1356
|
+
(),
|
|
1357
|
+
(((), IcePy._t_string, False, 0), ((), IcePy._t_int, False, 0)),
|
|
1358
|
+
(),
|
|
1359
|
+
((), _IceGrid_FileIteratorPrx_t, False, 0),
|
|
1360
|
+
(_IceGrid_FileNotAvailableException_t, _IceGrid_ServerNotExistException_t, _IceGrid_NodeUnreachableException_t, _IceGrid_DeploymentException_t))
|
|
1361
|
+
|
|
1362
|
+
AdminSession._op_openNodeStdErr = IcePy.Operation(
|
|
1363
|
+
"openNodeStdErr",
|
|
1364
|
+
"openNodeStdErr",
|
|
1365
|
+
OperationMode.Normal,
|
|
1366
|
+
None,
|
|
1367
|
+
(),
|
|
1368
|
+
(((), IcePy._t_string, False, 0), ((), IcePy._t_int, False, 0)),
|
|
1369
|
+
(),
|
|
1370
|
+
((), _IceGrid_FileIteratorPrx_t, False, 0),
|
|
1371
|
+
(_IceGrid_FileNotAvailableException_t, _IceGrid_NodeNotExistException_t, _IceGrid_NodeUnreachableException_t))
|
|
1372
|
+
|
|
1373
|
+
AdminSession._op_openNodeStdOut = IcePy.Operation(
|
|
1374
|
+
"openNodeStdOut",
|
|
1375
|
+
"openNodeStdOut",
|
|
1376
|
+
OperationMode.Normal,
|
|
1377
|
+
None,
|
|
1378
|
+
(),
|
|
1379
|
+
(((), IcePy._t_string, False, 0), ((), IcePy._t_int, False, 0)),
|
|
1380
|
+
(),
|
|
1381
|
+
((), _IceGrid_FileIteratorPrx_t, False, 0),
|
|
1382
|
+
(_IceGrid_FileNotAvailableException_t, _IceGrid_NodeNotExistException_t, _IceGrid_NodeUnreachableException_t))
|
|
1383
|
+
|
|
1384
|
+
AdminSession._op_openRegistryStdErr = IcePy.Operation(
|
|
1385
|
+
"openRegistryStdErr",
|
|
1386
|
+
"openRegistryStdErr",
|
|
1387
|
+
OperationMode.Normal,
|
|
1388
|
+
None,
|
|
1389
|
+
(),
|
|
1390
|
+
(((), IcePy._t_string, False, 0), ((), IcePy._t_int, False, 0)),
|
|
1391
|
+
(),
|
|
1392
|
+
((), _IceGrid_FileIteratorPrx_t, False, 0),
|
|
1393
|
+
(_IceGrid_FileNotAvailableException_t, _IceGrid_RegistryNotExistException_t, _IceGrid_RegistryUnreachableException_t))
|
|
1394
|
+
|
|
1395
|
+
AdminSession._op_openRegistryStdOut = IcePy.Operation(
|
|
1396
|
+
"openRegistryStdOut",
|
|
1397
|
+
"openRegistryStdOut",
|
|
1398
|
+
OperationMode.Normal,
|
|
1399
|
+
None,
|
|
1400
|
+
(),
|
|
1401
|
+
(((), IcePy._t_string, False, 0), ((), IcePy._t_int, False, 0)),
|
|
1402
|
+
(),
|
|
1403
|
+
((), _IceGrid_FileIteratorPrx_t, False, 0),
|
|
1404
|
+
(_IceGrid_FileNotAvailableException_t, _IceGrid_RegistryNotExistException_t, _IceGrid_RegistryUnreachableException_t))
|
|
1405
|
+
|
|
1406
|
+
__all__ = ["AdminSession", "AdminSessionPrx", "_IceGrid_AdminSessionPrx_t"]
|