File: IpPool.rst

package info (click to toggle)
python-pyvmomi 5.5.0-2014.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 14,348 kB
  • ctags: 497
  • sloc: python: 6,594; makefile: 12
file content (61 lines) | stat: -rw-r--r-- 2,661 bytes parent folder | download | duplicates (5)
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
.. _int: https://docs.python.org/2/library/stdtypes.html

.. _str: https://docs.python.org/2/library/stdtypes.html

.. _CreateIpPool: ../../vim/IpPoolManager.rst#createIpPool

.. _vSphere API 4.0: ../../vim/version.rst#vimversionversion5

.. _vmodl.DynamicData: ../../vmodl/DynamicData.rst

.. _vim.vApp.IpPool.Association: ../../vim/vApp/IpPool/Association.rst

.. _vim.vApp.IpPool.IpPoolConfigInfo: ../../vim/vApp/IpPool/IpPoolConfigInfo.rst


vim.vApp.IpPool
===============
  Specifications of the network configuration to be used on a network. This is used to generate IP addresses and for self-customization of vApps.
:extends: vmodl.DynamicData_
:since: `vSphere API 4.0`_

Attributes:
    id (`int`_, optional):

       Unique ID, generated by the server. This is used to identify the pool in subsequent lookups or updates. The generated value is also returned by the `CreateIpPool`_ method.
    name (`str`_, optional):

       Pool name.The pool name must be unique within the datacenter.Any / (slash), \ (backslash), character used in this name element is escaped. Similarly, any % (percent) character used in this name element is escaped, unless it is used to start an escape sequence. A slash is escaped as %2F or %2f. A backslash is escaped as %5C or %5c, and a percent is escaped as %25.
    ipv4Config (`vim.vApp.IpPool.IpPoolConfigInfo`_, optional):

       IPv4 configuration.This configuration is always present on the pool. To disable allocation, set the ipPoolEnabled flag of the config to false.
    ipv6Config (`vim.vApp.IpPool.IpPoolConfigInfo`_, optional):

       IPv6 configuration.This configuration is always present on the pool. To disable allocation, set the ipPoolEnabled flag of the config to false.
    dnsDomain (`str`_, optional):

       DNS Domain. For example, vmware.com. This can be an empty string if no domain is configured.
    dnsSearchPath (`str`_, optional):

       DNS Search Path. For example, eng.vmware.com;vmware.com
    hostPrefix (`str`_, optional):

       Prefix for hostnames.
    httpProxy (`str`_, optional):

       The HTTP proxy to use on this network, e.g.,:
    networkAssociation ([`vim.vApp.IpPool.Association`_], optional):

       The networks that are associated with this IP pool
    availableIpv4Addresses (`int`_, optional):

       The number of IPv4 addresses available for allocation.
    availableIpv6Addresses (`int`_, optional):

       The number of IPv6 addresses available for allocation.
    allocatedIpv4Addresses (`int`_, optional):

       The number of allocated IPv4 addresses.
    allocatedIpv6Addresses (`int`_, optional):

       The number of allocated IPv6 addresses.