openstack.network.v2.pool_member¶
The PoolMember Class¶
The PoolMember
class inherits from Resource
.
- class openstack.network.v2.pool_member.PoolMember(_synchronized=False, connection=None, **attrs)¶
The base resource
- Parameters:
_synchronized (bool) – This is not intended to be used directly. See
new()
andexisting()
.connection (openstack.connection.Connection) – Reference to the Connection being used. Defaults to None to allow Resource objects to be used without an active Connection, such as in unit tests. Use of
self._connection
in Resource code should protect itself with a check for None.
- resource_key = 'member'¶
Singular form of key for resource.
- resources_key = 'members'¶
Plural form of key for resource.
- base_path = '/lbaas/pools/%(pool_id)s/members'¶
The base part of the URI for this resource.
- allow_create = True¶
Allow create operation for this resource.
- allow_fetch = True¶
Allow get operation for this resource.
- allow_commit = True¶
Allow update operation for this resource.
- allow_delete = True¶
Allow delete operation for this resource.
- allow_list = True¶
Allow list operation for this resource.
- pool_id¶
The ID of the owning pool
- address¶
The IP address of the pool member.
- is_admin_state_up¶
The administrative state of the pool member, which is up
True
or downFalse
. Type: bool
- name¶
Name of the pool member.
- project_id¶
The ID of the project this pool member is associated with.
- tenant_id¶
Tenant_id (deprecated attribute).
- protocol_port¶
The port on which the application is hosted.
- subnet_id¶
Subnet ID in which to access this pool member.
- weight¶
A positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with weight of 2.