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
|
# 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.network import network_service
from openstack import resource
class Agent(resource.Resource):
resource_key = 'agent'
resources_key = 'agents'
base_path = '/agents'
service = network_service.NetworkService()
# capabilities
allow_create = False
allow_retrieve = True
allow_update = True
allow_delete = True
allow_list = True
# Properties
#: The type of network agent.
agent_type = resource.prop('agent_type')
#: Availability zone for the network agent.
availability_zone = resource.prop('availability_zone')
#: The name of the network agent's application binary.
binary = resource.prop('binary')
#: Network agent configuration data specific to the agent_type.
configuration = resource.prop('configurations')
#: Timestamp when the network agent was created.
created_at = resource.prop('created_at')
#: The network agent description.
description = resource.prop('description')
#: Timestamp when the network agent's heartbeat was last seen.
last_heartbeat_at = resource.prop('heartbeat_timestamp')
#: The host the agent is running on.
host = resource.prop('host')
#: The administrative state of the network agent, which is up
#: ``True`` or down ``False``. *Type: bool*
is_admin_state_up = resource.prop('admin_state_up', type=bool)
#: Whether or not the network agent is alive.
#: *Type: bool*
is_alive = resource.prop('alive', type=bool)
#: Timestamp when the network agent was last started.
started_at = resource.prop('started_at')
#: The messaging queue topic the network agent subscribes to.
topic = resource.prop('topic')
|