mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 07:51:50 +00:00
Sort imports with ruff check --fix (#11400)
Sort imports with ruff check --fix.
(cherry picked from commit 236b9c0e04)
Co-authored-by: Felix Fontein <felix@fontein.de>
142 lines
3.9 KiB
Python
142 lines
3.9 KiB
Python
#!/usr/bin/python
|
|
#
|
|
# Scaleway Serverless function namespace info module
|
|
#
|
|
# Copyright (c) 2022, Guillaume MARTINEZ <lunik@tiwabbit.fr>
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
DOCUMENTATION = r"""
|
|
module: scaleway_function_namespace_info
|
|
short_description: Retrieve information on Scaleway Function namespace
|
|
version_added: 6.0.0
|
|
author: Guillaume MARTINEZ (@Lunik)
|
|
description:
|
|
- This module return information about a function namespace on Scaleway account.
|
|
extends_documentation_fragment:
|
|
- community.general.scaleway
|
|
- community.general.attributes
|
|
- community.general.scaleway.actiongroup_scaleway
|
|
- community.general.attributes.info_module
|
|
|
|
attributes:
|
|
action_group:
|
|
version_added: 11.3.0
|
|
|
|
options:
|
|
project_id:
|
|
type: str
|
|
description:
|
|
- Project identifier.
|
|
required: true
|
|
|
|
region:
|
|
type: str
|
|
description:
|
|
- Scaleway region to use (for example C(fr-par)).
|
|
required: true
|
|
choices:
|
|
- fr-par
|
|
- nl-ams
|
|
- pl-waw
|
|
|
|
name:
|
|
type: str
|
|
description:
|
|
- Name of the function namespace.
|
|
required: true
|
|
"""
|
|
|
|
EXAMPLES = r"""
|
|
- name: Get a function namespace info
|
|
community.general.scaleway_function_namespace_info:
|
|
project_id: '{{ scw_project }}'
|
|
region: fr-par
|
|
name: my-awesome-function-namespace
|
|
register: function_namespace_info_task
|
|
"""
|
|
|
|
RETURN = r"""
|
|
function_namespace:
|
|
description: The function namespace information.
|
|
returned: always
|
|
type: dict
|
|
sample:
|
|
description: ""
|
|
environment_variables:
|
|
MY_VAR: my_value
|
|
error_message:
|
|
id: 531a1fd7-98d2-4a74-ad77-d398324304b8
|
|
name: my-awesome-function-namespace
|
|
organization_id: e04e3bdc-015c-4514-afde-9389e9be24b0
|
|
project_id: d44cea58-dcb7-4c95-bff1-1105acb60a98
|
|
region: fr-par
|
|
registry_endpoint: ""
|
|
registry_namespace_id: ""
|
|
secret_environment_variables:
|
|
- key: MY_SECRET_VAR
|
|
value: $argon2id$v=19$m=65536,t=1,p=2$tb6UwSPWx/rH5Vyxt9Ujfw$5ZlvaIjWwNDPxD9Rdght3NarJz4IETKjpvAU3mMSmFg
|
|
status: pending
|
|
"""
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible_collections.community.general.plugins.module_utils.scaleway import (
|
|
SCALEWAY_REGIONS,
|
|
Scaleway,
|
|
scaleway_argument_spec,
|
|
)
|
|
|
|
|
|
def info_strategy(api, wished_fn):
|
|
fn_list = api.fetch_all_resources("namespaces")
|
|
fn_lookup = {fn["name"]: fn for fn in fn_list}
|
|
|
|
if wished_fn["name"] not in fn_lookup:
|
|
msg = f"Error during function namespace lookup: Unable to find function namespace named '{wished_fn['name']}' in project '{wished_fn['project_id']}'"
|
|
|
|
api.module.fail_json(msg=msg)
|
|
|
|
target_fn = fn_lookup[wished_fn["name"]]
|
|
|
|
response = api.get(path=f"{api.api_path}/{target_fn['id']}")
|
|
if not response.ok:
|
|
msg = f"Error during function namespace lookup: {response.info['msg']}: '{response.json['message']}' ({response.json})"
|
|
api.module.fail_json(msg=msg)
|
|
|
|
return response.json
|
|
|
|
|
|
def core(module):
|
|
region = module.params["region"]
|
|
wished_function_namespace = {"project_id": module.params["project_id"], "name": module.params["name"]}
|
|
|
|
api = Scaleway(module=module)
|
|
api.api_path = f"functions/v1beta1/regions/{region}/namespaces"
|
|
|
|
summary = info_strategy(api=api, wished_fn=wished_function_namespace)
|
|
|
|
module.exit_json(changed=False, function_namespace=summary)
|
|
|
|
|
|
def main():
|
|
argument_spec = scaleway_argument_spec()
|
|
argument_spec.update(
|
|
dict(
|
|
project_id=dict(type="str", required=True),
|
|
region=dict(type="str", required=True, choices=SCALEWAY_REGIONS),
|
|
name=dict(type="str", required=True),
|
|
)
|
|
)
|
|
module = AnsibleModule(
|
|
argument_spec=argument_spec,
|
|
supports_check_mode=True,
|
|
)
|
|
|
|
core(module)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|