404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.129.194.133: ~ $
3

�~�f-��@s�dZddlZddlZddlZddlZddlZddlZddlZddlZddl	Z	ddl
mZmZm
Z
mZmZmZddlmZddlmZmZmZdZeje�ZdZdZd	Zd
ZdZdZ d
Z!dZ"dZ#dZ$dZ%dZ&dZ'Gdd�dej(�Z)dd�Z*dd�Z+dd�Z,dd�Z-dd�Z.d d!�Z/d"d#�Z0d$d%�Z1d&d'�Z2d(d)�Z3d*d+�Z4d,d-�Z5d.d	�Z6d/d0�Z7d1d2�Z8d3d4�Z9d5d6�Z:d7d8�Z;e)ej<ffe)ej<ej=ffgZ>d9d:�Z?d;d<�Z@dId>d?�ZAd@dA�ZBdBdC�ZCdDdE�ZDdFdG�ZEedHk�r�eE�dS)Ja�	Cloud-Init DataSource for VMware

This module provides a cloud-init datasource for VMware systems and supports
multiple transports types, including:

    * EnvVars
    * GuestInfo
    * IMC (Guest Customization)

Netifaces (https://github.com/al45tair/netifaces)

    Please note this module relies on the netifaces project to introspect the
    runtime, network configuration of the host on which this datasource is
    running. This is in contrast to the rest of cloud-init which uses the
    cloudinit/netinfo module.

    The reasons for using netifaces include:

        * Netifaces is built in C and is more portable across multiple systems
          and more deterministic than shell exec'ing local network commands and
          parsing their output.

        * Netifaces provides a stable way to determine the view of the host's
          network after DHCP has brought the network online. Unlike most other
          datasources, this datasource still provides support for JINJA queries
          based on networking information even when the network is based on a
          DHCP lease. While this does not tie this datasource directly to
          netifaces, it does mean the ability to consistently obtain the
          correct information is paramount.

        * It is currently possible to execute this datasource on macOS
          (which many developers use today) to print the output of the
          get_host_info function. This function calls netifaces to obtain
          the same runtime network configuration that the datasource would
          persist to the local system's instance data.

          However, the netinfo module fails on macOS. The result is either a
          hung operation that requires a SIGINT to return control to the user,
          or, if brew is used to install iproute2mac, the ip commands are used
          but produce output the netinfo module is unable to parse.

          While macOS is not a target of cloud-init, this feature is quite
          useful when working on this datasource.

          For more information about this behavior, please see the following
          PR comment, https://bit.ly/3fG7OVh.

    The authors of this datasource are not opposed to moving away from
    netifaces. The goal may be to eventually do just that. This proviso was
    added to the top of this module as a way to remind future-us and others
    why netifaces was used in the first place in order to either smooth the
    transition away from netifaces or embrace it further up the cloud-init
    stack.
�N)�
atomic_helper�dmi�log�net�sources�util)�guestcust_util)�ProcessExecutionError�subp�whichz/sys/class/dmi/id/product_uuidzNo value foundZenvvar�	guestinfoZimcZredactzcleanup-guestinfo�
VMX_GUESTINFOz---z
local-ipv4z
local-ipv6zwait-on-network�ipv4�ipv6c@s�eZdZdZdZd dd�Zdd�Zdd	�Zd
d�Zdd
�Z	dd�Z
edd��Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�Zdd�ZdS)!�DataSourceVMwareau
    Setting the hostname:
        The hostname is set by way of the metadata key "local-hostname".

    Setting the instance ID:
        The instance ID may be set by way of the metadata key "instance-id".
        However, if this value is absent then the instance ID is read
        from the file /sys/class/dmi/id/product_uuid.

    Configuring the network:
        The network is configured by setting the metadata key "network"
        with a value consistent with Network Config Versions 1 or 2,
        depending on the Linux distro's version of cloud-init:

            Network Config Version 1 - http://bit.ly/cloudinit-net-conf-v1
            Network Config Version 2 - http://bit.ly/cloudinit-net-conf-v2

        For example, CentOS 7's official cloud-init package is version
        0.7.9 and does not support Network Config Version 2.

        imc transport:
            Either Network Config Version 1 or Network Config Version 2 is
            supported which depends on the customization type.
            For LinuxPrep customization, Network config Version 1 data is
            parsed from the customization specification.
            For CloudinitPrep customization, Network config Version 2 data
            is parsed from the customization specification.

        envvar and guestinfo tranports:
            Network Config Version 2 data is supported as long as the Linux
            distro's cloud-init package is new enough to parse the data.
            The metadata key "network.encoding" may be used to indicate the
            format of the metadata key "network". Valid encodings are base64
            and gzip+base64.
    ZVMwareNcCsTtjj|||||�i|_d|_d|_d|_t|jdft	|j
dft|jdfg|_
dS)NFT)r�
DataSource�__init__�cfg�data_access_method�rpctool�
rpctool_fn�DATA_ACCESS_METHOD_ENVVAR�get_envvar_data_fn�DATA_ACCESS_METHOD_GUESTINFO�get_guestinfo_data_fn�DATA_ACCESS_METHOD_IMC�get_imc_data_fn� possible_data_access_method_list)�self�sys_cfg�distro�pathsZud_proc�r"�&/usr/lib/python3.6/DataSourceVMware.pyr�s


zDataSourceVMware.__init__cCstjj|�}d||jfS)Nz%s [seed=%s])rr�__str__r)r�rootr"r"r#r$�szDataSourceVMware.__str__cCs�d\}}}xB|jD]8\}}}|r*t�r*q|�\}}}|sB|sB|r||_PqW|jsbtjd�dStjd|j��tt|��|_	||_
||_|j�|j	s�|j
s�|jr�dSdSdS)a�
        _get_data loads the metadata, userdata, and vendordata from one of
        the following locations in the given order:

            * envvars
            * guestinfo
            * imc

        Please note when updating this function with support for new data
        transports, the order should match the order in the dscheck_VMware
        function from the file ds-identify.
        Nz)failed to find a valid data access methodFzusing data access method %sT)NNN)
r�is_vmware_platformr�LOG�debug�info�_get_subplatform�process_metadata�load_json_or_yaml�metadataZuserdata_rawZvendordata_raw�redact_keys)r�md�ud�vdrZget_data_fnZrequire_vmware_platformr"r"r#�	_get_data�s(

zDataSourceVMware._get_datacCsDt|j�}tjd|�t||j|j�tj|j|g�|_|j	�dS)a(setup(is_new_instance)

        This is called before user-data and vendor-data have been processed.

        Unless the datasource has set mode to 'local', then networking
        per 'fallback' or per 'network_config' will have been written and
        brought up the OS at this point.
        zgot host-info: %sN)
�wait_on_networkr-r'r)�advertise_local_ip_addrsrrr�
mergemanydictZpersist_instance_data)rZis_new_instance�	host_infor"r"r#�setup�s


zDataSourceVMware.setupcCsLd}|jtkrt}n&|jtkr$t}n|jtkr4t}ntjSd|j|d�fS)Nz%s (%s)r-)	rr�get_guestinfo_envvar_key_namer�get_guestinfo_key_namer�get_imc_key_namerZMETADATA_UNKNOWN)rZget_key_name_fnr"r"r#r*�s


z!DataSourceVMware._get_subplatformcCs|jS)N)r)rr"r"r#�get_config_objszDataSourceVMware.get_config_objcCsBd|jkrtjd�ntjd�d|jj�i|jd<|jddS)N�networkzusing metadata network configzusing fallback network config�config)r-r'r(r Zgenerate_fallback_config)rr"r"r#�network_configs


zDataSourceVMware.network_configc
CsT|jrd|jkr|jdSttd��&}t|j��j�j�|jd<|jdSQRXdS)Nzinstance-id�r)r-�open�PRODUCT_UUID_FILE_PATH�str�read�rstrip�lower)rZid_filer"r"r#�get_instance_ids

z DataSourceVMware.get_instance_idcCs.|jr*|jtkr*t�r*tjd|j��dSdS)Nz"Cache fallback is allowed for : %sTF)rrr&r'r(r*)rr"r"r#�check_if_fallback_is_allowed&s
z-DataSourceVMware.check_if_fallback_is_allowedcCs,x&dD]}||jkrtj|j|�SqWgS)N�public-keys-data�public_keys_data�public-keys�public_keys)rHrIrJrK)r-rZnormalize_pubkey_data)r�key_namer"r"r#�get_public_ssh_keys2s
z$DataSourceVMware.get_public_ssh_keyscCsLd}t|jkr|jt}nt|jkr.|jt}|jtkrHt||j|j�dS)N)�REDACTr-�CLEANUP_GUESTINFOrr�guestinfo_redact_keysrr)rZkeys_to_redactr"r"r#r.=s



zDataSourceVMware.redact_keyscCs:d\}}}tjjtd�r0td�}td�}td�}|||fS)z<
        check to see if there is data via env vars
        N�r-�userdata�
vendordata)NNN)�os�environ�getr
�guestinfo_envvar)rr/r0r1r"r"r#rKs
z#DataSourceVMware.get_envvar_data_fncCs$td�}td�}|r,||_t|_tjd|�|rL|s@||_t|_tjd|�|js`tjd�dSdd�}y||j|j�Stk
�r}z�tj	td	|j|�|r�|j|kr�d
S|s�tj
d
�dStj
d�||_t|_y||j|j�Stk
�rtj	td	|j|�dSXWYdd}~XnXdS)zK
        check to see if there is data via the guestinfo transport
        �vmtoolsdzvmware-rpctoolzdiscovered vmware-rpctool: %szdiscovered vmtoolsd: %szno rpctool discoveredNcSsDd\}}}tjd|�td||�}td||�}td||�}|||fS)Nzquery guestinfo with %sr-rRrS)NNN)r'r)r)rrr/r0r1r"r"r#�query_guestinfoss
z?DataSourceVMware.get_guestinfo_data_fn.<locals>.query_guestinfoz%Failed to query guestinfo with %s: %sz$vmtoolsd fallback option not presentzfallback to vmtoolsd)NNN)NNN)NNN)NNN)rr�exec_vmware_rpctoolrr'r(�
exec_vmtoolsd�	Exceptionr�logexcr))rrXZvmware_rpctoolrY�errorr"r"r#rWsP


z&DataSourceVMware.get_guestinfo_data_fncCsd\}}}tj|j�}tj|j�}|rB|rBtjd�|||fStj�sT|||fStj|j�}|dkrr|||fSt	j
j|�}tj|�}tj
|�\}	}
|	r�|r�tjd�tj|jj|jjd�|||j�\}}}|_n0|
o�|�r�tjd�tj|�\}}}n
tjd�tj|�|||fS)zN
        check to see if there is data via vmware guest customization
        Nz-Customization for VMware platform is disabledz3Getting data via VMware customization configuration�scriptszFGetting data via VMware raw cloudinit data customization configurationz1No allowed customization configuration data found)NNN)rZis_vmware_cust_enabledrZis_raw_data_cust_enabledZds_cfgr'r(Zis_cust_plugin_availableZget_cust_cfg_filerT�path�dirnameZparse_cust_cfgZget_cust_cfg_typeZget_data_from_imc_cust_cfgr!Z	cloud_dirZ	get_cpathr rZ#get_data_from_imc_raw_data_cust_cfgrZdel_dir)rr/r0r1Zallow_vmware_custZallow_raw_data_custZ
cust_cfg_fileZcust_cfg_dirZcust_cfgZis_vmware_cust_cfgZis_raw_data_cust_cfgr"r"r#r�s>










z DataSourceVMware.get_imc_data_fn)N)�__name__�
__module__�__qualname__�__doc__Zdsnamerr$r2r7r*r;�propertyr>rFrGrMr.rrrr"r"r"r#rgs #
9	LrcCs>tjd�}|dkr tjd�dSd|j�kr:tjd�dSdS)Nzsystem-product-namezNo system-product-name foundFZvmwarezNot a VMware platformT)rZ
read_dmi_datar'r(rE)Zsystem_typer"r"r#r&�s


r&cCsvtjd||�d}|d	kr:tjd||�tjtj|��}n2|d
kr\tjd||�tj|�}ntjd|�|}tj|�S)z�
    decode returns the decoded string value of data
    key is a string used to identify the data being decoded in log messages
    z'Getting encoded data for key=%s, enc=%sN�gzip+base64�gz+b64zDecoding %s format %s�base64�b64zPlain-text data %s)rgrh)rirj)r'r(rZdecomp_gziprZb64d�
decode_binary)�key�enc_type�dataZraw_datar"r"r#�decode�srocCs.tj|�}|j�}t|�dks&|tkr*dS|S)a
    get_none_if_empty_val returns None if the provided value, once stripped
    of its trailing whitespace, is empty or equal to GUESTINFO_EMPTY_YAML_VAL.

    The return value is always a string, regardless of whether the input is
    a bytes class or a string.
    rN)rrkrD�len�GUESTINFO_EMPTY_YAML_VAL)�valr"r"r#�get_none_if_empty_val�s

rscCsj|s|s|rdS|jt�}|r>tt|||�tjd|�|jt�}|rftt|||�tjd|�dS)z�
    advertise_local_ip_addrs gets the local IP address information from
    the provided host_info map and sets the addresses in the guestinfo
    namespace
    Nz-advertised local ipv4 address %s in guestinfoz-advertised local ipv6 address %s in guestinfo)rV�
LOCAL_IPV4�guestinfo_set_valuer'r)�
LOCAL_IPV6)r6rrZ
local_ipv4Z
local_ipv6r"r"r#r4s

r4cCs t|�}|r|Stjd|�dS)z�
    handle_returned_guestinfo_val returns the provided value if it is
    not empty or set to GUESTINFO_EMPTY_YAML_VAL, otherwise None is
    returned
    zNo value found for key %sN)rsr'r()rlrrr"r"r#�handle_returned_guestinfo_val%s
rwcCsdS)Nzvmware-toolsr")rlr"r"r#r:2sr:cCsd|S)Nz
guestinfo.r")rlr"r"r#r96sr9cCsdt|�j�jddd�S)Nzvmx.�.�_����)r9�upper�replace)rlr"r"r#r8:sr8cCs,t|�}|sdSt|d�}tt|�||�S)Nz	.encoding)�guestinfo_envvar_get_valueror8)rlrrrmr"r"r#rW>s
rWcCst|�}t|tjj|d��S)NrQ)r8rwrTrUrV)rlZenv_keyr"r"r#r~Fsr~cCst||g�\}}||fS)N)r
)r�arg�stdout�stderrr"r"r#rZKsrZcCst|d|g�\}}||fS)Nz--cmd)r
)rrr�r�r"r"r#r[Psr[cCs4t|||�}|sdSt|d||�}tt|�||�S)zj
    guestinfo returns the guestinfo value for the provided key, decoding
    the value when required
    Nz	.encoding)�guestinfo_get_valueror9)rlrrrrrmr"r"r#rUs
cCs�tjd|�yF||dt|��\}}|tkr:tjd|�n|sJtjd|�t||�Stk
r�}z2|jtkr|tjd|�ntj	td||�|�WYdd}~Xn6t
k
r�}ztj	td||�|�WYdd}~XnXdS)z:
    Returns a guestinfo value for the specified key.
    z"Getting guestinfo value for key %sz	info-get zNo value found for key %sz(Failed to get guestinfo value for key %sz,Failed to get guestinfo value for key %s: %sNzCUnexpected error while trying to get guestinfo value for key %s: %s)r'r(r9�NOVALr^rwr	r�rr]r\)rlrrr�r�r^r"r"r#r�as4

r�cCs�|dkrd}tjd||�y||dt|�|f�dStk
rh}ztjtd|||�WYdd}~Xn$tk
r�tjtd||�YnXdS)	z|
    Sets a guestinfo value for the specified key. Set value to an empty string
    to clear an existing guestinfo key.
    rQ� z$Setting guestinfo key=%s to value=%szinfo-set %s %sTz.Failed to set guestinfo key=%s to value=%s: %sNzAUnexpected error while trying to set guestinfo key=%s to value=%s)r'r(r9r	rr]r\)rl�valuerrr^r"r"r#ru�s*
rucCs�|sdSt|�ttfkr|g}xd|D]\}t|�}tjd|�t|t||�sVtjd|�tjd|�t|dd||�s$tjd|�q$WdS)z�
    guestinfo_redact_keys redacts guestinfo of all of the keys in the given
    list. each key will have its value set to "---". Since the value is valid
    YAML, cloud-init can still read it if it tries.
    Nzclearing %szfailed to clear %szclearing %s.encodingz	.encodingrQzfailed to clear %s.encoding)	�type�list�tupler9r'r)rurqr^)�keysrrrlrLr"r"r#rP�s
rPcCsF|siSt|t�r|Sy
tj|�Stjtfk
r@tj|�SXdS)z�
    load first attempts to unmarshal the provided data as JSON, and if
    that fails then attempts to unmarshal the data as YAML. If data is
    None then a new dictionary is returned.
    N)�
isinstance�dictrZ	load_json�jsonZJSONDecodeError�	TypeErrorZ	load_yaml)rnr"r"r#r,�s

r,cCs�|siSd}d|kr"|d}|d=d}d|kr<|d}|d=|r�t|tjj�rhtjd�dtj|�i}n$tjd|�td||�}dt	|�i}tjd|�||d<|S)	z_
    process_metadata processes metadata and loads the optional network
    configuration.
    Nr<znetwork.encodingz#network data copied to 'config' keyr=znetwork data to be decoded %szmetadata.networkznetwork data %s)
r��collections�abc�Mappingr'r(�copy�deepcopyror,)rnr<Znetwork_encZdec_netr"r"r#r+�s(
r+cCstj|t�S)zK
    Return a list of data sources that match this set of dependencies
    )rZlist_from_depends�datasources)Zdependsr"r"r#�get_datasource_listsr�c
Cs�tj�}d|krdS|d}tj|kr4tj|kr4d	Sd}d}|jtj�}|r�|\}}tj|�}|r�|jtj�}|r�t|�dkr�tjd||�nd|dkr�|dd}|jtj�}	|	�r|	\}}
tj|
�}|�r|jtj�}|�rt|�dk�rtjd|
|�nd|dk�r|dd}|�rr|�rr|jtj�}|�rrt|�dk�rXtjd||�nd|dk�rr|dd}|�r�|�r�|jtj�}|�r�t|�dk�r�tjd|
|�nd|dk�r�|dd}||fS)
aI
    Returns the default IPv4 and IPv6 addresses based on the device(s) used for
    the default route. Please note that None may be returned for either address
    family if that family has no default route or if there are multiple
    addresses associated with the device used by the default route for a given
    address.
    �defaultNrzz,device %s has more than one ipv4 address: %s�addrrz,device %s has more than one ipv6 address: %s)NN)NN)	�	netifaces�gateways�AF_INET�AF_INET6rV�ifaddressesrpr'r()
r�Z
default_gwrrZgw4ryZdev4Z
addr4_fams�af_inet4Zgw6Zdev6Z
addr6_fams�af_inet6r"r"r#�get_default_ip_addrsst	



r�rQc
Csv|j�}|s|dkrtj�}ytj|ddtjdtj�}Wntjk
rPYn"Xx|D]}|drX|d}PqXW|S)zoGet fully qualified domain name from name.
    An empty argument is interpreted as meaning the local host.
    z0.0.0.0Nr�)�stripr�get_hostname�socketZgetaddrinfoZ
SOCK_DGRAMZAI_CANONNAMEr^)�nameZaddrsr�r"r"r#�getfqdnls
r�cCs&tjtj|�}|o$|jp"|jp"|jS)zn
    Returns false if the address is loopback, link local or unspecified;
    otherwise true is returned.
    )rZmaybe_get_address�	ipaddressZ
ip_addressZ
is_link_localZis_loopbackZis_unspecified)rrr�r"r"r#�is_valid_ip_addr�sr�cCsRddtj�tj�tj�d�ii}ttj��}|rH||d<||d<||d<t�\}}|r^||t<|rj||t<|ddd}|ddd}|ddd	}tj	�}�x�|D�]�}tj
|�}	|	jtj�}
|	jtj
�}|	jtj�}d
}
|
r�d|
dkr�|
dd}
|
d
k�r
q�|
�r�|�s|�r�|
}i}|�rbg}x*|D]"}t|d��sJ�q4|j|��q4W||d<|�r�g}x*|D]"}t|d��s��qr|j|��qrW||d<|||<|�r�xJ|D]B}|d}t|��sΐq�tj|�}|d=|
�r�|
|d<|||<�q�W|r�xJ|D]B}|d}t|��s�qtj|�}|d=|
�r<|
|d<|||<�qWq�W|S)zP
    Returns host information such as the host name and network interfaces.
    r<�
interfaces)zby-maczby-ipv4zby-ipv6�hostnamezlocal-hostnameZlocal_hostnamezby-maczby-ipv4zby-ipv6Nr�rz00:00:00:00:00:00rr�mac)r��OrderedDictr�rr�r�rtrvr�r�r�rVZAF_LINKr�r�r��appendr�r�)r6r�Zdefault_ipv4Zdefault_ipv6Zby_mac�by_ipv4�by_ipv6ZifacesZdev_nameZ	addr_famsZaf_linkr�r�r�rlrrZ
af_inet4_valsZip_infoZ
af_inet6_valsr"r"r#�
get_host_info�s�










r�c
Cs:d}d}t|krl|t}t|krB|t}t|t�r8|}n
tj|�}t|krl|t}t|t�rb|}n
tj|�}d
\}}}x�|dk�r*t�}|jd�p�i}	|	jd�p�i}
|
jd�p�i}|
jd�p�i}|r�|r�t	|�dknd}|s�d}|�r|r�t	|�dknd}|�sd}|dkrxt
jd||||�tj
d�qxWt
jd	�|S)NFr<r�zby-ipv4zby-ipv6rz<waiting on network: wait4=%s, ready4=%s, wait6=%s, ready6=%srzzwaiting on network complete)NFF)�WAIT_ON_NETWORK�WAIT_ON_NETWORK_IPV4r��boolrZtranslate_bool�WAIT_ON_NETWORK_IPV6r�rVrpr'r(�timeZsleep)
r-Zwait_on_ipv4Zwait_on_ipv6r3Zwait_on_ipv4_valZwait_on_ipv6_valr6Z
ipv4_readyZ
ipv6_readyr<r�r�r�r"r"r#r3�sN





r3cCsfytj�Wntk
r YnXttdtdiddddiii}t|�}tj||g�}t	t
j|��dS)z7
    Executed when this file is used as a program.
    TFr<r=ZdhcpN)rZsetup_basic_loggingr\r�r�r�r3rr5�printrZ
json_dumps)r-r6r"r"r#�mainsr��__main__)rQ)Frer�r�r�r�ZloggingrTr�r�r�Z	cloudinitrrrrrrZ$cloudinit.sources.helpers.vmware.imcrZcloudinit.subpr	r
rrAZ	getLoggerrbr'r�rrrrNrOr
rqrtrvr�r�r�rrr&rorsr4rwr:r9r8rWr~rZr[rr�rurPr,r+ZDEP_FILESYSTEMZDEP_NETWORKr�r�r�r�r�r�r3r�r"r"r"r#�<module>@sv 
x
,+$
]
Y8


Filemanager

Name Type Size Permission Actions
DataSourceAkamai.cpython-36.opt-1.pyc File 8.18 KB 0644
DataSourceAkamai.cpython-36.pyc File 8.18 KB 0644
DataSourceAliYun.cpython-36.opt-1.pyc File 3.22 KB 0644
DataSourceAliYun.cpython-36.pyc File 3.22 KB 0644
DataSourceAltCloud.cpython-36.opt-1.pyc File 6.74 KB 0644
DataSourceAltCloud.cpython-36.pyc File 6.74 KB 0644
DataSourceAzure.cpython-36.opt-1.pyc File 47.95 KB 0644
DataSourceAzure.cpython-36.pyc File 47.95 KB 0644
DataSourceBigstep.cpython-36.opt-1.pyc File 1.84 KB 0644
DataSourceBigstep.cpython-36.pyc File 1.84 KB 0644
DataSourceCloudSigma.cpython-36.opt-1.pyc File 3.62 KB 0644
DataSourceCloudSigma.cpython-36.pyc File 3.62 KB 0644
DataSourceCloudStack.cpython-36.opt-1.pyc File 5.97 KB 0644
DataSourceCloudStack.cpython-36.pyc File 5.97 KB 0644
DataSourceConfigDrive.cpython-36.opt-1.pyc File 8.18 KB 0644
DataSourceConfigDrive.cpython-36.pyc File 8.18 KB 0644
DataSourceDigitalOcean.cpython-36.opt-1.pyc File 3.65 KB 0644
DataSourceDigitalOcean.cpython-36.pyc File 3.65 KB 0644
DataSourceEc2.cpython-36.opt-1.pyc File 23.49 KB 0644
DataSourceEc2.cpython-36.pyc File 23.49 KB 0644
DataSourceExoscale.cpython-36.opt-1.pyc File 5.92 KB 0644
DataSourceExoscale.cpython-36.pyc File 5.92 KB 0644
DataSourceGCE.cpython-36.opt-1.pyc File 9.83 KB 0644
DataSourceGCE.cpython-36.pyc File 9.93 KB 0644
DataSourceHetzner.cpython-36.opt-1.pyc File 3.78 KB 0644
DataSourceHetzner.cpython-36.pyc File 3.78 KB 0644
DataSourceIBMCloud.cpython-36.opt-1.pyc File 12.44 KB 0644
DataSourceIBMCloud.cpython-36.pyc File 12.44 KB 0644
DataSourceLXD.cpython-36.opt-1.pyc File 13.31 KB 0644
DataSourceLXD.cpython-36.pyc File 13.31 KB 0644
DataSourceMAAS.cpython-36.opt-1.pyc File 11.86 KB 0644
DataSourceMAAS.cpython-36.pyc File 11.86 KB 0644
DataSourceNWCS.cpython-36.opt-1.pyc File 3.77 KB 0644
DataSourceNWCS.cpython-36.pyc File 3.77 KB 0644
DataSourceNoCloud.cpython-36.opt-1.pyc File 7.97 KB 0644
DataSourceNoCloud.cpython-36.pyc File 7.97 KB 0644
DataSourceNone.cpython-36.opt-1.pyc File 1.47 KB 0644
DataSourceNone.cpython-36.pyc File 1.47 KB 0644
DataSourceOVF.cpython-36.opt-1.pyc File 9.15 KB 0644
DataSourceOVF.cpython-36.pyc File 9.15 KB 0644
DataSourceOpenNebula.cpython-36.opt-1.pyc File 11.75 KB 0644
DataSourceOpenNebula.cpython-36.pyc File 11.75 KB 0644
DataSourceOpenStack.cpython-36.opt-1.pyc File 7.91 KB 0644
DataSourceOpenStack.cpython-36.pyc File 7.91 KB 0644
DataSourceOracle.cpython-36.opt-1.pyc File 10.99 KB 0644
DataSourceOracle.cpython-36.pyc File 10.99 KB 0644
DataSourceRbxCloud.cpython-36.opt-1.pyc File 7.19 KB 0644
DataSourceRbxCloud.cpython-36.pyc File 7.19 KB 0644
DataSourceScaleway.cpython-36.opt-1.pyc File 10.84 KB 0644
DataSourceScaleway.cpython-36.pyc File 10.84 KB 0644
DataSourceSmartOS.cpython-36.opt-1.pyc File 24.51 KB 0644
DataSourceSmartOS.cpython-36.pyc File 24.51 KB 0644
DataSourceUpCloud.cpython-36.opt-1.pyc File 4.36 KB 0644
DataSourceUpCloud.cpython-36.pyc File 4.36 KB 0644
DataSourceVMware.cpython-36.opt-1.pyc File 23.66 KB 0644
DataSourceVMware.cpython-36.pyc File 23.66 KB 0644
DataSourceVultr.cpython-36.opt-1.pyc File 3.44 KB 0644
DataSourceVultr.cpython-36.pyc File 3.44 KB 0644
__init__.cpython-36.opt-1.pyc File 30.52 KB 0644
__init__.cpython-36.pyc File 30.52 KB 0644