Skip to main content

VSphere Client

Project description

VSphere Client

install:

pip install VSphereClient

request demo:

if __name__ == '__main__':
    from VSphereClient import VSphere
    
    ip = '10.x.x.x'
    user = 'username'
    password = 'password'
    port = 443
    vm = VSphere(host=ip, user=user, password=password, port=port, ssl=None)

    data_center = vm.get_data_center()
    print('data_center', data_center)
    cluster = vm.get_cluster(data_center[0]['id'])
    print('cluster', cluster)
    host = vm.get_host(data_center[0]['id'], cluster[0]['id'])
    print('host', host)
    vm_list = vm.get_vm(data_center[0]['id'], cluster[0]['id'])
    print('vm_list', vm_list)
    store_cluster = vm.get_storage_cluster()
    print('store_cluster', store_cluster)
    store_list = vm.get_storage_by_host(data_center[0]['id'], cluster[0]['id'], host[0]['id'])
    print('store_list', store_list)
    store_list = vm.get_storage_by_host(data_center[0]['id'], cluster[0]['id'], '')
    print(store_list)
    vlan = vm.get_vlan(data_center[0]['id'])
    print('vlan', vlan)
    # windows: 'HQ-T-Temp-WIN2016EN-2023Q2', '123456'
    # linux: 'HQ-T-Temp-redhat7.9-2023Q2', '123456'
    clone_res = vm.clone_vm(template_name='HQccc023Q2',
                            vm_name='ops-test-00001',
                            datacenter_id=data_center[0]['id'],
                            cluster_id=cluster[0]['id'],
                            host_id=host[0]['id'],
                            cpu_num=8,
                            memory=16384,
                            vm_ip='192.168.1.10',
                            vm_subnetmask='255.255.255.0',
                            vm_gateway='192.168.1.1',
                            vm_dns=["10.1.1.1", "10.1.1.2"],
                            vm_domain='abc.auto',
                            network_id=vlan[0]['id'],
                            data_disk_id=store_list[0]['id'],
                            data_disk_size=130,
                            password='Aa123456,.'
                            )
    print('clone_res', clone_res)
    # windows 修改密码
    result = vm.change_password(is_win=True, vm_name='ops-test-00002',
                                username='administrator',
                                old_password='Aa123456,./789',
                                new_password='Aa123456,./788')
    print(result)
    # linux 修改密码
    result = vm.change_password(is_win=False, vm_name='ops-test-00001',
                                username='root',
                                old_password='MZyyty1O5ty!2lT2l',
                                new_password='MD2DHHD!aIup03H2u')
    print(result)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

VSphereClient-0.0.0.2.tar.gz (10.0 kB view details)

Uploaded Source

File details

Details for the file VSphereClient-0.0.0.2.tar.gz.

File metadata

  • Download URL: VSphereClient-0.0.0.2.tar.gz
  • Upload date:
  • Size: 10.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.10.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for VSphereClient-0.0.0.2.tar.gz
Algorithm Hash digest
SHA256 4707109957afd1f05282a28c33d45fcb515bad1a70455c8e6d3dd8265c499a80
MD5 463bf64f287335b0f08b0f299c0dbcd4
BLAKE2b-256 f78f7a2ed529f4a83035e66472a0ac095460ee7d554777ff7b954d8f1732a4c5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page