File: DatastoreBrowser.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 (153 lines) | stat: -rw-r--r-- 4,070 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# 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 datetime import datetime

from typing import NoReturn
from typing import Optional

from pyVmomi.VmomiSupport import ManagedObject
from pyVmomi.VmomiSupport import long

from pyVmomi.vim import Datastore
from pyVmomi.vim import Task

from pyVmomi.vmodl import DynamicData

from pyVmomi.vim.encryption import CryptoKeyId

class DatastoreBrowser(ManagedObject):
   class FileInfo(DynamicData):
      class Details(DynamicData):
         fileType: bool
         fileSize: bool
         modification: bool
         fileOwner: bool

      path: str
      friendlyName: Optional[str] = None
      fileSize: Optional[long] = None
      modification: Optional[datetime] = None
      owner: Optional[str] = None

   class Query(DynamicData):
      pass

   class VmConfigQuery(Query):
      class Filter(DynamicData):
         matchConfigVersion: list[int] = []
         encrypted: Optional[bool] = None

      class Details(DynamicData):
         configVersion: bool
         encryption: Optional[bool] = None

      filter: Optional[Filter] = None
      details: Optional[Details] = None

   class TemplateVmConfigQuery(VmConfigQuery):
      pass

   class VmDiskQuery(Query):
      class Filter(DynamicData):
         diskType: list[type] = []
         matchHardwareVersion: list[int] = []
         controllerType: list[type] = []
         thin: Optional[bool] = None
         encrypted: Optional[bool] = None

      class Details(DynamicData):
         diskType: bool
         capacityKb: bool
         hardwareVersion: bool
         controllerType: Optional[bool] = None
         diskExtents: Optional[bool] = None
         thin: Optional[bool] = None
         encryption: Optional[bool] = None
         sectorFormat: Optional[bool] = None

      filter: Optional[Filter] = None
      details: Optional[Details] = None

   class FolderQuery(Query):
      pass

   class VmSnapshotQuery(Query):
      pass

   class IsoImageQuery(Query):
      pass

   class FloppyImageQuery(Query):
      pass

   class VmNvramQuery(Query):
      pass

   class VmLogQuery(Query):
      pass

   class VmConfigInfo(FileInfo):
      class VmConfigEncryptionInfo(DynamicData):
         keyId: Optional[CryptoKeyId] = None

      configVersion: Optional[int] = None
      encryption: Optional[VmConfigEncryptionInfo] = None

   class TemplateVmConfigInfo(VmConfigInfo):
      pass

   class VmDiskInfo(FileInfo):
      class VmDiskEncryptionInfo(DynamicData):
         keyId: Optional[CryptoKeyId] = None

      diskType: Optional[type] = None
      capacityKb: Optional[long] = None
      hardwareVersion: Optional[int] = None
      controllerType: Optional[type] = None
      diskExtents: list[str] = []
      thin: Optional[bool] = None
      encryption: Optional[VmDiskEncryptionInfo] = None
      sectorFormat: Optional[str] = None

   class FolderInfo(FileInfo):
      pass

   class VmSnapshotInfo(FileInfo):
      pass

   class IsoImageInfo(FileInfo):
      pass

   class FloppyImageInfo(FileInfo):
      pass

   class VmNvramInfo(FileInfo):
      pass

   class VmLogInfo(FileInfo):
      pass

   class SearchSpec(DynamicData):
      query: list[Query] = []
      details: Optional[FileInfo.Details] = None
      searchCaseInsensitive: Optional[bool] = None
      matchPattern: list[str] = []
      sortFoldersFirst: Optional[bool] = None

   class SearchResults(DynamicData):
      datastore: Optional[Datastore] = None
      folderPath: Optional[str] = None
      file: list[FileInfo] = []

   @property
   def datastore(self) -> list[Datastore]: ...
   @property
   def supportedType(self) -> list[Query]: ...

   def Search(self, datastorePath: str, searchSpec: Optional[SearchSpec]) -> Task: ...
   def SearchSubFolders(self, datastorePath: str, searchSpec: Optional[SearchSpec]) -> Task: ...
   def DeleteFile(self, datastorePath: str) -> NoReturn: ...