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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from openstack.common import tag
from openstack import resource
class Pool(resource.Resource, tag.TagMixin):
resource_key = 'pool'
resources_key = 'pools'
base_path = '/lbaas/pools'
# capabilities
allow_create = True
allow_list = True
allow_fetch = True
allow_delete = True
allow_commit = True
_query_mapping = resource.QueryParameters(
'health_monitor_id',
'lb_algorithm',
'listener_id',
'loadbalancer_id',
'description',
'name',
'project_id',
'protocol',
'created_at',
'updated_at',
'provisioning_status',
'operating_status',
'tls_enabled',
'tls_ciphers',
'tls_versions',
'alpn_protocols',
'ca_tls_container_ref',
'crl_container_ref',
is_admin_state_up='admin_state_up',
**tag.TagMixin._tag_query_parameters,
)
#: Properties
#: List of ALPN protocols.
alpn_protocols = resource.Body('alpn_protocols', type=list)
#: Timestamp when the pool was created
created_at = resource.Body('created_at')
#: Description for the pool.
description = resource.Body('description')
#: Health Monitor ID
health_monitor_id = resource.Body('healthmonitor_id')
#: The administrative state of the pool *Type: bool*
is_admin_state_up = resource.Body('admin_state_up', type=bool)
#: The loadbalancing algorithm used in the pool
lb_algorithm = resource.Body('lb_algorithm')
#: ID of listener associated with this pool
listener_id = resource.Body('listener_id')
#: List of listeners associated with this pool
listeners = resource.Body('listeners', type=list)
#: ID of load balancer associated with this pool
loadbalancer_id = resource.Body('loadbalancer_id')
#: List of loadbalancers associated with this pool
loadbalancers = resource.Body('loadbalancers', type=list)
#: Members associated with this pool
members = resource.Body('members', type=list)
#: The pool name
name = resource.Body('name')
#: Operating status of the pool
operating_status = resource.Body('operating_status')
#: The ID of the project
project_id = resource.Body('project_id')
#: The protocol of the pool
protocol = resource.Body('protocol')
#: Provisioning status of the pool
provisioning_status = resource.Body('provisioning_status')
#: Stores a string of cipher strings in OpenSSL format.
tls_ciphers = resource.Body('tls_ciphers')
#: A JSON object specifying the session persistence for the pool.
session_persistence = resource.Body('session_persistence', type=dict)
#: A list of TLS protocol versions to be used in by the pool
tls_versions = resource.Body('tls_versions', type=list)
#: Timestamp when the pool was updated
updated_at = resource.Body('updated_at')
#: Use TLS for connections to backend member servers *Type: bool*
tls_enabled = resource.Body('tls_enabled', type=bool)
#: Stores the ca certificate used by backend servers
ca_tls_container_ref = resource.Body('ca_tls_container_ref')
#: Stores the revocation list file
crl_container_ref = resource.Body('crl_container_ref')
|