Source code for inmanta.protocol.methods

"""
    Copyright 2019 Inmanta

    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.

    Contact: code@inmanta.com

    Module defining the v1 rest api
"""

import datetime
import uuid
from typing import Any, List, Union

from inmanta import const, data
from inmanta.data import model
from inmanta.resources import Id
from inmanta.types import JsonType, PrimitiveTypes

from . import exceptions
from .common import ArgOption
from .decorators import method, typedmethod


async def convert_environment(env: uuid.UUID, metadata: dict) -> data.Environment:
    metadata[const.INMANTA_URN + "env"] = str(env)
    env = await data.Environment.get_by_id(env)
    if env is None:
        raise exceptions.NotFound("The given environment id does not exist!")
    return env


async def add_env(env: uuid.UUID, metadata: dict) -> uuid.UUID:
    metadata[const.INMANTA_URN + "env"] = str(env)
    return env


[docs]async def ignore_env(obj: Any, metadata: dict) -> Any: """ This mapper only adds an env all for authz """ metadata[const.INMANTA_URN + "env"] = "all" return obj
async def convert_resource_version_id(rvid: model.ResourceVersionIdStr, metadata: dict) -> Id: try: return Id.parse_resource_version_id(rvid) except Exception: raise exceptions.BadRequest(f"Invalid resource version id: {rvid}") ENV_OPTS = {"tid": ArgOption(header=const.INMANTA_MT_HEADER, reply_header=True, getter=convert_environment)} AGENT_ENV_OPTS = {"tid": ArgOption(header=const.INMANTA_MT_HEADER, reply_header=True, getter=add_env)} RVID_OPTS = {"rvid": ArgOption(getter=convert_resource_version_id)} # Method for working with projects
[docs]@method(path="/project", operation="PUT", client_types=[const.ClientType.api]) def create_project(name: str, project_id: uuid.UUID = None): """ Create a new project :param name: The name of the project :param project_id: A unique uuid, when it is not provided the server generates one """
[docs]@method(path="/project/<id>", operation="POST", client_types=[const.ClientType.api]) def modify_project(id: uuid.UUID, name: str): """ Modify the given project """
[docs]@method(path="/project/<id>", operation="DELETE", client_types=[const.ClientType.api]) def delete_project(id: uuid.UUID): """ Delete the given project and all related data """
[docs]@method(path="/project", operation="GET", client_types=[const.ClientType.api]) def list_projects(): """ Create a list of projects """
[docs]@method(path="/project/<id>", operation="GET", client_types=[const.ClientType.api]) def get_project(id: uuid.UUID): """ Get a project and a list of the ids of all environments """
# Methods for working with environments
[docs]@method(path="/environment", operation="PUT", client_types=[const.ClientType.api]) def create_environment( project_id: uuid.UUID, name: str, repository: str = None, branch: str = None, environment_id: uuid.UUID = None ): """ Create a new environment :param project_id: The id of the project this environment belongs to :param name: The name of the environment :param repository: The url (in git form) of the repository :param branch: The name of the branch in the repository :param environment_id: A unique environment id, if none an id is allocated by the server """
[docs]@method(path="/environment/<id>", operation="POST", client_types=[const.ClientType.api]) def modify_environment(id: uuid.UUID, name: str, repository: str = None, branch: str = None): """ Modify the given environment :param id: The id of the environment :param name: The name of the environment :param repository: The url (in git form) of the repository :param branch: The name of the branch in the repository """
[docs]@method(path="/environment/<id>", operation="DELETE", client_types=[const.ClientType.api]) def delete_environment(id: uuid.UUID): """ Delete the given environment and all related data. :param id: The uuid of the environment. :raises NotFound: The given environment doesn't exist. :raises Forbidden: The given environment is protected. """
[docs]@method(path="/environment", operation="GET", client_types=[const.ClientType.api]) def list_environments(): """ Create a list of environments """
[docs]@method( path="/environment/<id>", operation="GET", client_types=[const.ClientType.api], arg_options={"id": ArgOption(getter=add_env)}, ) def get_environment(id: uuid.UUID, versions: int = None, resources: int = None): """ Get an environment and all versions associated :param id: The id of the environment to return :param versions: Include this many available version for this environment. :param resources: Include this many available resources for this environment. """
# Method for listing/getting/setting/removing settings of an environment. This API is also used by agents to configure # environments.
[docs]@method( path="/environment_settings", operation="GET", arg_options=ENV_OPTS, api=True, agent_server=True, client_types=[const.ClientType.api, const.ClientType.agent, const.ClientType.compiler], ) def list_settings(tid: uuid.UUID): """ List the settings in the current environment """
[docs]@method( path="/environment_settings/<id>", operation="POST", arg_options=ENV_OPTS, api=True, agent_server=True, client_types=[const.ClientType.api, const.ClientType.agent, const.ClientType.compiler], ) def set_setting(tid: uuid.UUID, id: str, value: Union[PrimitiveTypes, JsonType]): """ Set a value """
[docs]@method( path="/environment_settings/<id>", operation="GET", arg_options=ENV_OPTS, api=True, agent_server=True, client_types=[const.ClientType.api, const.ClientType.agent], ) def get_setting(tid: uuid.UUID, id: str): """ Get a value """
[docs]@method( path="/environment_settings/<id>", operation="DELETE", arg_options=ENV_OPTS, api=True, agent_server=True, client_types=[const.ClientType.api, const.ClientType.agent], ) def delete_setting(tid: uuid.UUID, id: str): """ Delete a value """
# Method for listing and creating auth tokens for an environment that can be used by the agent and compilers
[docs]@method( path="/environment_auth", operation="POST", arg_options=ENV_OPTS, client_types=[const.ClientType.api, const.ClientType.compiler], ) def create_token(tid: uuid.UUID, client_types: list, idempotent: bool = True): """ Create or get a new token for the given client types. Tokens generated with this call are scoped to the current environment. :param tid: The environment id :param client_types: The client types for which this token is valid (api, agent, compiler) :param idempotent: The token should be idempotent, such tokens do not have an expire or issued at set so their value will not change. """
# Decomission an environment
[docs]@method( path="/decommission/<id>", operation="POST", arg_options={"id": ArgOption(getter=convert_environment)}, client_types=[const.ClientType.api], api_version=1, ) def decomission_environment(id: uuid.UUID, metadata: dict = None): """ Decommision an environment. This is done by uploading an empty model to the server and let purge_on_delete handle removal. :param id: The uuid of the environment. :param metadata: Optional metadata associated with the decommissioning :raises NotFound: The given environment doesn't exist. :raises Forbidden: The given environment is protected. """
[docs]@method( path="/decommission/<id>", operation="DELETE", arg_options={"id": ArgOption(getter=convert_environment)}, client_types=[const.ClientType.api], ) def clear_environment(id: uuid.UUID): """ Clear all data from this environment. :param id: The uuid of the environment. :raises NotFound: The given environment doesn't exist. :raises Forbidden: The given environment is protected. """
# Send a heartbeat to indicate that an agent is alive
[docs]@method( path="/heartbeat", operation="POST", agent_server=True, validate_sid=False, arg_options=ENV_OPTS, client_types=[const.ClientType.agent], ) def heartbeat(sid: uuid.UUID, tid: uuid.UUID, endpoint_names: list, nodename: str, no_hang: bool = False): """ Send a heartbeat to the server :paran sid: The session ID used by this agent at this moment :param tid: The environment this node and its agents belongs to :param endpoint_names: The names of the endpoints on this node :param nodename: The name of the node from which the heart beat comes :param no_hang: don't use this call for long polling, but for connectivity check also registered as API method, because it is called with an invalid SID the first time """
[docs]@method( path="/heartbeat", operation="PUT", agent_server=True, arg_options={"sid": ArgOption(getter=ignore_env)}, client_types=[const.ClientType.agent], ) def heartbeat_reply(sid: uuid.UUID, reply_id: uuid.UUID, data: dict): """ Send a reply back to the server :param sid: The session ID used by this agent at this moment :param reply_id: The id data is a reply to :param data: The data as a response to the reply """
# Upload, retrieve and check for file. A file is identified by a hash of its content.
[docs]@method( path="/file/<id>", operation="PUT", agent_server=True, api=True, client_types=[const.ClientType.api, const.ClientType.agent, const.ClientType.compiler], arg_options={"id": ArgOption(getter=ignore_env)}, ) def upload_file(id: str, content: str): """ Upload a new file :param id: The id of the file :param content: The base64 encoded content of the file """
[docs]@method( path="/file/<id>", operation="HEAD", agent_server=True, api=True, client_types=[const.ClientType.api, const.ClientType.agent, const.ClientType.compiler], arg_options={"id": ArgOption(getter=ignore_env)}, ) def stat_file(id: str): """ Does the file exist :param id: The id of the file to check """
[docs]@method( path="/file/<id>", operation="GET", agent_server=True, api=True, client_types=[const.ClientType.api, const.ClientType.agent, const.ClientType.compiler], arg_options={"id": ArgOption(getter=ignore_env)}, ) def get_file(id: str): """ Retrieve a file :param id: The id of the file to retrieve """
[docs]@method( path="/file", api=True, client_types=[const.ClientType.api, const.ClientType.agent, const.ClientType.compiler], arg_options={"files": ArgOption(getter=ignore_env)}, ) def stat_files(files: list): """ Check which files exist in the given list :param files: A list of file id to check :return: A list of files that do not exist. """
# Manage resources on the server
[docs]@method( path="/resource/<id>", operation="GET", agent_server=True, validate_sid=False, arg_options=ENV_OPTS, api=True, client_types=[const.ClientType.api, const.ClientType.agent], ) def get_resource( tid: uuid.UUID, id: str, logs: bool = None, status: bool = None, log_action: const.ResourceAction = None, log_limit: int = 0 ): """ Return a resource with the given id. :param tid: The id of the environment this resource belongs to :param id: Get the resource with the given id :param logs: Include the logs in the response :param status: Only return the status of the resource :param log_action: The log action to include, leave empty/none for all actions. Valid actions are one of the action strings in const.ResourceAction :param log_limit: Limit the number of logs included in the response, up to a maximum of 1000. To retrieve more entries, use /api/v2/resource_actions (:func:`~inmanta.protocol.methods_v2.get_resource_actions`) """
[docs]@method(path="/resource", operation="GET", agent_server=True, arg_options=ENV_OPTS, client_types=[const.ClientType.agent]) def get_resources_for_agent( tid: uuid.UUID, agent: str, sid: uuid.UUID = None, version: int = None, incremental_deploy: bool = False ): """ Return the most recent state for the resources associated with agent, or the version requested :param tid: The id of the environment this resource belongs to :param agent: The agent :param sid: Session id of the agent (transparently added by agent client) :param version: The version to retrieve. If none, the latest available version is returned. With a specific version that version is returned, even if it has not been released yet. :param incremental_deploy: Indicates whether the server should only return the resources that changed since the previous deployment. """
[docs]@method(path="/resource", operation="POST", agent_server=True, arg_options=ENV_OPTS, client_types=[const.ClientType.agent]) def resource_action_update( tid: uuid.UUID, resource_ids: list, action_id: uuid.UUID, action: const.ResourceAction, started: datetime.datetime = None, finished: datetime.datetime = None, status: const.ResourceState = None, messages: list = [], changes: dict = {}, change: const.Change = None, send_events: bool = False, ): """ Send a resource update to the server :param tid: The id of the environment this resource belongs to :param resource_ids: The resource with the given resource_version_id id from the agent :param action_id: A unique id to indicate the resource action that has be updated :param action: The action performed :param started: The timestamp when this action was started. When this action (action_id) has not been saved yet, started has to be defined. :param finished: The timestamp when this action was finished. Afterwards, no changes with the same action_id can be stored. The status field also has to be set. :param status: The current status of the resource (if known) :param messages: A list of log entries to add to this entry. :param change:s A dict of changes to this resource. The key of this dict indicates the attributes/fields that have been changed. The value contains the new value and/or the original value. :param change: The result of the changes :param send_events: [DEPRECATED] The value of this field is not used anymore. """
# Manage configuration model versions
[docs]@method(path="/version", operation="GET", arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def list_versions(tid: uuid.UUID, start: int = None, limit: int = None): """ Returns a list of all available versions :param tid: The id of the environment :param start: Optional, parameter to control the amount of results that are returned. 0 is the latest version. :param limit: Optional, parameter to control the amount of results returned, up to a maximum of 1000. """
[docs]@method(path="/version/<id>", operation="GET", arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def get_version(tid: uuid.UUID, id: int, include_logs: bool = None, log_filter: str = None, limit: int = None): """ Get a particular version and a list of all resources in this version :param tid: The id of the environment :param id: The id of the version to retrieve :param include_logs: If true, a log of all operations on all resources is included :param log_filter: Filter log to only include actions of the specified type :param limit: The maximal number of actions to return per resource (starting from the latest), up to a maximum of 1000. To retrieve more entries, use /api/v2/resource_actions (:func:`~inmanta.protocol.methods_v2.get_resource_actions`) """
[docs]@method(path="/version/<id>", operation="DELETE", arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def delete_version(tid: uuid.UUID, id: int): """ Delete a particular version and resources :param tid: The id of the environment :param id: The id of the version to retrieve """
[docs]@method(path="/version", operation="PUT", arg_options=ENV_OPTS, client_types=[const.ClientType.compiler]) def put_version( tid: uuid.UUID, version: int, resources: list, resource_state: dict = {}, unknowns: list = None, version_info: dict = None, compiler_version: str = None, ): """ Store a new version of the configuration model The version number must be obtained through the reserve_version call :param tid: The id of the environment :param version: The version of the configuration model :param resources: A list of all resources in the configuration model (deployable) :param resource_state: A dictionary with the initial const.ResourceState per resource id :param unknowns: A list of unknown parameters that caused the model to be incomplete :param version_info: Module version information :param compiler_version: version of the compiler, if not provided, this call will return an error """
[docs]@method( path="/version/<id>", operation="POST", arg_options=ENV_OPTS, client_types=[const.ClientType.api, const.ClientType.compiler] ) def release_version(tid: uuid.UUID, id: int, push: bool = False, agent_trigger_method: const.AgentTriggerMethod = None): """ Release version of the configuration model for deployment. :param tid: The id of the environment :param id: The version of the CM to deploy :param push: Notify all agents to deploy the version :param agent_trigger_method: Indicates whether the agents should perform a full or an incremental deploy when push is true. """
[docs]@method(path="/deploy", operation="POST", arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def deploy( tid: uuid.UUID, agent_trigger_method: const.AgentTriggerMethod = const.AgentTriggerMethod.push_full_deploy, agents: list = None, ): """ Notify agents to perform a deploy now. :param tid: The id of the environment. :param agent_trigger_method: Indicates whether the agents should perform a full or an incremental deploy. :param agents: Optional, names of specific agents to trigger """
# Method for requesting and quering a dryrun
[docs]@method(path="/dryrun/<id>", operation="POST", arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def dryrun_request(tid: uuid.UUID, id: int): """ Do a dryrun :param tid: The id of the environment :param id: The version of the CM to deploy """
[docs]@method(path="/dryrun", operation="GET", arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def dryrun_list(tid: uuid.UUID, version: int = None): """ Create a list of dry runs :param tid: The id of the environment :param version: Only for this version """
[docs]@method(path="/dryrun/<id>", operation="GET", arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def dryrun_report(tid: uuid.UUID, id: uuid.UUID): """ Create a dryrun report :param tid: The id of the environment :param id: The version dryrun to report """
[docs]@method(path="/dryrun/<id>", operation="PUT", agent_server=True, arg_options=ENV_OPTS, client_types=[const.ClientType.agent]) def dryrun_update(tid: uuid.UUID, id: uuid.UUID, resource: str, changes: dict): """ Store dryrun results at the server :param tid: The id of the environment :param id: The version dryrun to report :param resource: The id of the resource :param changes: The required changes """
# Method for requesting a dryrun from an agent
[docs]@method(path="/agent_dryrun/<id>", operation="POST", server_agent=True, timeout=5, arg_options=AGENT_ENV_OPTS, client_types=[]) def do_dryrun(tid: uuid.UUID, id: uuid.UUID, agent: str, version: int): """ Do a dryrun on an agent :param tid: The environment id :param id: The id of the dryrun :param agent: The agent to do the dryrun for :param version: The version of the model to dryrun """
# Method to notify the server of changes in the configuration model source code
[docs]@method( path="/notify/<id>", operation="GET", arg_options={"id": ArgOption(getter=convert_environment)}, client_types=[const.ClientType.api], ) def notify_change_get(id: uuid.UUID, update: bool = True): """ Simplified GET version of the POST method """
[docs]@method( path="/notify/<id>", operation="POST", arg_options={"id": ArgOption(getter=convert_environment)}, client_types=[const.ClientType.api], ) def notify_change(id: uuid.UUID, update: bool = True, metadata: dict = {}): """ Notify the server that the repository of the environment with the given id, has changed. :param id: The id of the environment :param update: Update the model code and modules. Default value is true :param metadata: The metadata that indicates the source of the compilation trigger. """
[docs]@method(path="/notify/<id>", operation="HEAD", client_types=[const.ClientType.api]) def is_compiling(id: uuid.UUID): """ Is a compiler running for the given environment :param id: The environment id """
# Get and set parameters on the server
[docs]@method( path="/parameter/<id>", operation="GET", arg_options=ENV_OPTS, client_types=[const.ClientType.api, const.ClientType.compiler, const.ClientType.agent], ) def get_param(tid: uuid.UUID, id: str, resource_id: str = None): """ Get a parameter from the server. :param tid: The id of the environment :param id: The name of the parameter :param resource_id: Optionally, scope the parameter to resource (fact), if the resource id should not contain a version, the latest version is used :return: Returns the following status codes: 200: The parameter content is returned 404: The parameter is not found and unable to find it because its resource is not known to the server 410: The parameter has expired 503: The parameter is not found but its value is requested from an agent """
[docs]@method( path="/parameter/<id>", operation="PUT", arg_options=ENV_OPTS, client_types=[const.ClientType.api, const.ClientType.compiler, const.ClientType.agent], ) def set_param( tid: uuid.UUID, id: str, source: const.ParameterSource, value: str, resource_id: str = None, metadata: dict = {}, recompile: bool = False, ): """ Set a parameter on the server. If the parameter is an tracked unknown, it will trigger a recompile on the server. Otherwise, if the value is changed and recompile is true, a recompile is also triggered. :param tid: The id of the environment :param id: The name of the parameter :param resource_id: Optionally, scope the parameter to resource (fact) :param source: The source of the parameter. :param value: The value of the parameter :param metadata: metadata about the parameter :param recompile: Whether to trigger a recompile """
[docs]@method( path="/parameter/<id>", operation="DELETE", arg_options=ENV_OPTS, client_types=[const.ClientType.api, const.ClientType.compiler, const.ClientType.agent], ) def delete_param(tid: uuid.UUID, id: str, resource_id: str = None): """ Delete a parameter on the server :param tid: The id of the environment :param id: The name of the parameter :param resource_id: The resource id of the parameter """
[docs]@method( path="/parameter", operation="POST", arg_options=ENV_OPTS, client_types=[const.ClientType.api, const.ClientType.compiler] ) def list_params(tid: uuid.UUID, query: dict = {}): """ List/query parameters in this environment :param tid: The id of the environment :param query: A query to match against metadata """
# Get and set parameters on the server
[docs]@method( path="/parameters", operation="PUT", agent_server=True, arg_options=ENV_OPTS, client_types=[const.ClientType.api, const.ClientType.compiler, const.ClientType.agent], ) def set_parameters(tid: uuid.UUID, parameters: list): """ Set a parameter on the server :param tid: The id of the environment :param parameters: A list of dicts with the following keys: - id The name of the parameter - source The source of the parameter. Valid values are defined in the ParameterSource enum (see: inmanta/const.py) - value The value of the parameter - resource_id Optionally, scope the parameter to resource (fact) - metadata metadata about the parameter """
# Get parameters from the agent
[docs]@method(path="/agent_parameter", operation="POST", server_agent=True, timeout=5, arg_options=AGENT_ENV_OPTS, client_types=[]) def get_parameter(tid: uuid.UUID, agent: str, resource: dict): """ Get all parameters/facts known by the agents for the given resource :param tid: The environment :param agent: The agent to get the parameters from :param resource: The resource to query the parameters from """
# Upload code to the server
[docs]@method(path="/code/<id>", operation="PUT", arg_options=ENV_OPTS, client_types=[const.ClientType.compiler]) def upload_code(tid: uuid.UUID, id: int, resource: str, sources: dict): """ Upload the supporting code to the server :param tid: The environment the code belongs to :param id: The id (version) of the configuration model :param sources: The source files that contain handlers and inmanta plug-ins {code_hash:(file_name, provider.__module__, source_code, [req])} """
[docs]@method(path="/code/<id>", operation="GET", agent_server=True, arg_options=ENV_OPTS, client_types=[const.ClientType.agent]) def get_code(tid: uuid.UUID, id: int, resource: str): """ Get the code for a given version of the configuration model :param tid: The environment the code belongs to :param id: The id (version) of the configuration model """
# Upload code to the server
[docs]@method(path="/codebatched/<id>", operation="PUT", arg_options=ENV_OPTS, client_types=[const.ClientType.compiler]) def upload_code_batched(tid: uuid.UUID, id: int, resources: dict): """ Upload the supporting code to the server :param tid: The environment the code belongs to :param id: The id (version) of the configuration model :param resource: a dict mapping resources to dicts mapping file names to file hashes """
# Generate download the diff of two hashes
[docs]@method(path="/filediff", client_types=[const.ClientType.api]) def diff(a: str, b: str): """ Returns the diff of the files with the two given ids """
# Get a list of compile reports
[docs]@method(path="/compilereport", operation="GET", arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def get_reports(tid: uuid.UUID, start: str = None, end: str = None, limit: int = None): """ Return compile reports newer then start :param tid: The id of the environment to get a report from :param start: Reports after start :param end: Reports before end :param limit: Maximum number of results, up to a maximum of 1000 """
[docs]@method(path="/compilereport/<id>", operation="GET", client_types=[const.ClientType.api]) def get_report(id: uuid.UUID): """ Get a compile report from the server :param id: The id of the compile and its reports to fetch. """
# Get a list of all agents
[docs]@method(path="/agentproc", operation="GET", client_types=[const.ClientType.api]) def list_agent_processes( environment: uuid.UUID = None, expired: bool = True, start: uuid.UUID = None, end: uuid.UUID = None, limit: int = None ): """ Return a list of all nodes and the agents for these nodes :param environment: An optional environment. If set, only the agents that belong to this environment are returned :param expired: Optional, also show expired processes, otherwise only living processes are shown. :param start: Agent processes after start (sorted by sid in ASC) :param end: Agent processes before end (sorted by sid in ASC) :param limit: Maximum number of results, up to a maximum of 1000 :raises BadRequest: limit parameter can not exceed 1000 :raises NotFound: The given environment id does not exist! :return: A list of nodes """
[docs]@method(path="/agentproc/<id>", operation="GET", client_types=[const.ClientType.api]) def get_agent_process(id: uuid.UUID): """ Return a detailed report for a node :param id: The session id of the agent :return: The requested node """
# Get a list of all agents
[docs]@method(path="/agent/<id>", operation="POST", api=True, timeout=5, arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def trigger_agent(tid: uuid.UUID, id: str): """ Request the server to reload an agent :param tid: The environment this agent is defined in :param id: The name of the agent :return: The requested node """
[docs]@method(path="/agent", operation="GET", api=True, timeout=5, arg_options=ENV_OPTS, client_types=[const.ClientType.api]) def list_agents(tid: uuid.UUID, start: str = None, end: str = None, limit: int = None): """ List all agent for an environment :param tid: The environment the agents are defined in :param start: Agent after start (sorted by name in ASC) :param end: Agent before end (sorted by name in ASC) :param limit: Maximum number of results, up to a maximum of 1000 :raises BadRequest: limit parameter can not exceed 1000 :raises NotFound: The given environment id does not exist! """
# Reporting by the agent to the server
[docs]@method(path="/status", operation="GET", server_agent=True, timeout=5, client_types=[]) def get_status(): """ A call from the server to the agent to report its status to the server :return: A map with report items """
# Methods to allow the server to set the agents state
[docs]@method(path="/agentstate", operation="POST", server_agent=True, timeout=5, client_types=[]) def set_state(agent: str, enabled: bool): """ Set the state of the agent. """
[docs]@method(path="/agentstate/<id>", operation="POST", server_agent=True, timeout=5, arg_options=AGENT_ENV_OPTS, client_types=[]) def trigger(tid: uuid.UUID, id: str, incremental_deploy: bool): """ Request an agent to reload resources :param tid: The environment this agent is defined in :param id: The name of the agent :param incremental_deploy: Indicates whether the agent should perform an incremental deploy or a full deploy """
# Methods to send event to the server
[docs]@method(path="/event/<id>", operation="PUT", server_agent=True, timeout=5, arg_options=AGENT_ENV_OPTS, client_types=[]) def resource_event( tid: uuid.UUID, id: str, resource: str, send_events: bool, state: const.ResourceState, change: const.Change, changes={} ): """ Tell an agent a resource it waits for has been updated :param tid: The environment this agent is defined in :param id: The name of the agent :param resource: The resource ID of the resource being updated :param send_events: [DEPRECATED] The value of this field is not used anymore. :param state: State the resource acquired (deployed, skipped, canceled) :param change: The change that was made to the resource :param changes: The changes made to the resource """
# Methods for the agent to get its initial state from the server
[docs]@method(path="/agentrecovery", operation="GET", agent_server=True, arg_options=ENV_OPTS, client_types=[const.ClientType.agent]) def get_state(tid: uuid.UUID, sid: uuid.UUID, agent: str): """ Get the state for this agent. returns a map { enabled: bool } """
[docs]@typedmethod(path="/serverstatus", operation="GET", client_types=[const.ClientType.api]) def get_server_status() -> model.StatusResponse: """ Get the status of the server """
[docs]@typedmethod( path="/compilequeue", operation="GET", arg_options=ENV_OPTS, client_types=[const.ClientType.api], api_version=1, envelope_key="queue", ) def get_compile_queue(tid: uuid.UUID) -> List[model.CompileRun]: """ Get the current compiler queue on the server """