
    Vh
	                         d Z dZdZy)a  
---
module: projects_info
short_description: Information module for Projects Info
description:
  - This module represents an alias of the module projects_v1_info
version_added: '6.17.0'
extends_documentation_fragment:
  - cisco.dnac.module_info
author: Rafael Campos (@racampos)
options:
  headers:
    description: Additional headers.
    type: dict
  name:
    description:
      - Name query parameter. Name of project to be searched.
    type: str
  limit:
    description:
      - Limit query parameter. The number of records to show for this page;The minimum
        is 1, and the maximum is 500.
    type: float
  offset:
    description:
      - Offset query parameter. The first record to show for this page; the first
        record is numbered 1.
    type: float
requirements:
  - dnacentersdk >= 2.4.9
  - python >= 3.5
seealso:
  - name: Cisco DNA Center documentation for Configuration Templates GetTemplateProjectsV1
    description: Complete reference of the GetTemplateProjectsV1 API.
    link: https://developer.cisco.com/docs/dna-center/#!get-template-projects
notes:
  - SDK Method used are configuration_templates.ConfigurationTemplates.get_template_projects_v1,
  - Paths used are get /dna/intent/api/v1/projects,
  - It should be noted that this module is an alias of projects_v1_info
a  
- name: Get all Projects Info
  cisco.dnac.projects_info:
    dnac_host: "{{dnac_host}}"
    dnac_username: "{{dnac_username}}"
    dnac_password: "{{dnac_password}}"
    dnac_verify: "{{dnac_verify}}"
    dnac_port: "{{dnac_port}}"
    dnac_version: "{{dnac_version}}"
    dnac_debug: "{{dnac_debug}}"
    headers: "{{my_headers | from_json}}"
    name: string
    limit: 0
    offset: 0
  register: result
am  
dnac_response:
  description: A dictionary or list with the response returned by the Cisco DNAC Python SDK
  returned: always
  type: dict
  sample: >
    {
      "version": "string",
      "response": [
        {
          "projectId": "string",
          "name": "string",
          "description": "string",
          "lastUpdateTime": 0
        }
      ]
    }
N)DOCUMENTATIONEXAMPLESRETURN     l/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/cisco/dnac/plugins/modules/projects_info.py<module>r      s   
'P 
r   