File: SessionManager.pyi

package info (click to toggle)
python-pyvmomi 9.0.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,372 kB
  • sloc: python: 18,622; xml: 77; makefile: 3
file content (86 lines) | stat: -rw-r--r-- 3,353 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Copyright (c) 2006-2025 Broadcom. All Rights Reserved.
# Broadcom Confidential. The term "Broadcom" refers to Broadcom Inc.
# and/or its subsidiaries.

# ******* WARNING - AUTO GENERATED CODE - DO NOT EDIT *******

from typing import ClassVar
from typing import NoReturn
from typing import Optional

from pyVmomi.VmomiSupport import Enum
from pyVmomi.VmomiSupport import ManagedMethod
from pyVmomi.VmomiSupport import ManagedObject

from pyVmomi.vim import UserSession

from pyVmomi.vmodl import DynamicData

from pyVmomi.vim.vm import CertThumbprint

class SessionManager(ManagedObject):
   class LocalTicket(DynamicData):
      userName: str
      passwordFilePath: str

   class GenericServiceTicket(DynamicData):
      class TicketType(Enum):
         HttpNfcServiceTicket: ClassVar['TicketType'] = 'HttpNfcServiceTicket'
         HostServiceTicket: ClassVar['TicketType'] = 'HostServiceTicket'
         VcServiceTicket: ClassVar['TicketType'] = 'VcServiceTicket'

      id: str
      hostName: Optional[str] = None
      sslThumbprint: Optional[str] = None
      certThumbprintList: list[CertThumbprint] = []
      sslCertificate: Optional[str] = None
      ticketType: Optional[str] = None

   class ServiceRequestSpec(DynamicData):
      pass

   class VmomiServiceRequestSpec(ServiceRequestSpec):
      method: ManagedMethod

   class HttpServiceRequestSpec(ServiceRequestSpec):
      class Method(Enum):
         httpOptions: ClassVar['Method'] = 'httpOptions'
         httpGet: ClassVar['Method'] = 'httpGet'
         httpHead: ClassVar['Method'] = 'httpHead'
         httpPost: ClassVar['Method'] = 'httpPost'
         httpPut: ClassVar['Method'] = 'httpPut'
         httpDelete: ClassVar['Method'] = 'httpDelete'
         httpTrace: ClassVar['Method'] = 'httpTrace'
         httpConnect: ClassVar['Method'] = 'httpConnect'

      method: Optional[str] = None
      url: str

   @property
   def sessionList(self) -> list[UserSession]: ...
   @property
   def currentSession(self) -> Optional[UserSession]: ...
   @property
   def message(self) -> Optional[str]: ...
   @property
   def messageLocaleList(self) -> list[str]: ...
   @property
   def supportedLocaleList(self) -> list[str]: ...
   @property
   def defaultLocale(self) -> str: ...

   def UpdateMessage(self, message: str) -> NoReturn: ...
   def LoginByToken(self, locale: Optional[str]) -> UserSession: ...
   def Login(self, userName: str, password: str, locale: Optional[str]) -> UserSession: ...
   def LoginBySSPI(self, base64Token: str, locale: Optional[str]) -> UserSession: ...
   def Logout(self) -> NoReturn: ...
   def AcquireLocalTicket(self, userName: str) -> LocalTicket: ...
   def AcquireGenericServiceTicket(self, spec: ServiceRequestSpec) -> GenericServiceTicket: ...
   def Terminate(self, sessionId: list[str]) -> NoReturn: ...
   def SetLocale(self, locale: str) -> NoReturn: ...
   def LoginExtensionBySubjectName(self, extensionKey: str, locale: Optional[str]) -> UserSession: ...
   def LoginExtensionByCertificate(self, extensionKey: str, locale: Optional[str]) -> UserSession: ...
   def ImpersonateUser(self, userName: str, locale: Optional[str]) -> UserSession: ...
   def SessionIsActive(self, sessionID: str, userName: str) -> bool: ...
   def AcquireCloneTicket(self) -> str: ...
   def CloneSession(self, cloneTicket: str) -> UserSession: ...