
    Vhp                         d dl mZmZmZ eZdZdZd dlZd dl	Z	d dl
Z
d dlZd dlZd dlZd dlZd dlZd dlmZmZ d dlmZ d dlmZmZmZ d dlmZ  G d	 d
e      Zd Zedk(  r e        yy)    )absolute_importdivisionprint_functiona  
module: jira
short_description: Create and modify issues in a JIRA instance
description:
  - Create and modify issues in a JIRA instance.
extends_documentation_fragment:
  - community.general.attributes

attributes:
  check_mode:
    support: none
  diff_mode:
    support: none

options:
  uri:
    type: str
    required: true
    description:
      - Base URI for the JIRA instance.
  operation:
    type: str
    required: true
    aliases: [command]
    choices: [attach, comment, create, edit, fetch, link, search, transition, update, worklog]
    description:
      - The operation to perform.
      - V(worklog) was added in community.general 6.5.0.
  username:
    type: str
    description:
      - The username to log-in with.
      - Must be used with O(password). Mutually exclusive with O(token).
  password:
    type: str
    description:
      - The password to log-in with.
      - Must be used with O(username). Mutually exclusive with O(token).
  token:
    type: str
    description:
      - The personal access token to log-in with.
      - Mutually exclusive with O(username) and O(password).
    version_added: 4.2.0
  client_cert:
    type: path
    description:
      - Client certificate if required.
      - In addition to O(username) and O(password) or O(token). Not mutually exclusive.
    version_added: 10.4.0
  client_key:
    type: path
    description:
      - Client certificate key if required.
      - In addition to O(username) and O(password) or O(token). Not mutually exclusive.
    version_added: 10.4.0

  project:
    type: str
    required: false
    description:
      - The project for this operation. Required for issue creation.
  summary:
    type: str
    required: false
    description:
      - The issue summary, where appropriate.
      - Note that JIRA may not allow changing field values on specific transitions or states.
  description:
    type: str
    required: false
    description:
      - The issue description, where appropriate.
      - Note that JIRA may not allow changing field values on specific transitions or states.
  issuetype:
    type: str
    required: false
    description:
      - The issue type, for issue creation.
  issue:
    type: str
    required: false
    description:
      - An existing issue key to operate on.
    aliases: ['ticket']

  comment:
    type: str
    required: false
    description:
      - The comment text to add.
      - Note that JIRA may not allow changing field values on specific transitions or states.
  comment_visibility:
    type: dict
    description:
      - Used to specify comment comment visibility.
      - See
        U(https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issue-comments/#api-rest-api-2-issue-issueidorkey-comment-post)
        for details.
    suboptions:
      type:
        description:
          - Use type to specify which of the JIRA visibility restriction types will be used.
        type: str
        required: true
        choices: [group, role]
      value:
        description:
          - Use value to specify value corresponding to the type of visibility restriction. For example name of the group
            or role.
        type: str
        required: true
    version_added: '3.2.0'

  status:
    type: str
    required: false
    description:
      - Only used when O(operation) is V(transition), and a bit of a misnomer, it actually refers to the transition name.
      - This is mutually exclusive with O(status_id).
  status_id:
    type: str
    required: false
    description:
      - Only used when O(operation) is V(transition), and refers to the transition ID.
      - This is mutually exclusive with O(status).
    version_added: 10.3.0
  assignee:
    type: str
    required: false
    description:
      - Sets the the assignee when O(operation) is V(create), V(transition), or V(edit).
      - Recent versions of JIRA no longer accept a user name as a user identifier. In that case, use O(account_id) instead.
      - Note that JIRA may not allow changing field values on specific transitions or states.
  account_id:
    type: str
    description:
      - Sets the account identifier for the assignee when O(operation) is V(create), V(transition), or V(edit).
      - Note that JIRA may not allow changing field values on specific transitions or states.
    version_added: 2.5.0

  linktype:
    type: str
    required: false
    description:
      - Set type of link, when action 'link' selected.
  inwardissue:
    type: str
    required: false
    description:
      - Set issue from which link will be created.
  outwardissue:
    type: str
    required: false
    description:
      - Set issue to which link will be created.
  fields:
    type: dict
    required: false
    description:
      - This is a free-form data structure that can contain arbitrary data. This is passed directly to the JIRA REST API (possibly
        after merging with other required data, as when passed to create). See examples for more information, and the JIRA
        REST API for the structure required for various fields.
      - When passed to comment, the data structure is merged at the first level since community.general 4.6.0. Useful to add
        JIRA properties for example.
      - Note that JIRA may not allow changing field values on specific transitions or states.
    default: {}
  jql:
    required: false
    description:
      - Query JIRA in JQL Syntax, for example V("CMDB Hostname" = test.example.com).
    type: str
    version_added: '0.2.0'

  maxresults:
    required: false
    description:
      - Limit the result of O(operation=search). If no value is specified, the default jira limit will be used.
      - Used when O(operation=search) only, ignored otherwise.
    type: int
    version_added: '0.2.0'

  timeout:
    type: float
    required: false
    description:
      - Set timeout, in seconds, on requests to JIRA API.
    default: 10

  validate_certs:
    required: false
    description:
      - Require valid SSL certificates (set to V(false) if you would like to use self-signed certificates).
    default: true
    type: bool

  attachment:
    type: dict
    version_added: 2.5.0
    description:
      - Information about the attachment being uploaded.
    suboptions:
      filename:
        required: true
        type: path
        description:
          - The path to the file to upload (from the remote node) or, if O(attachment.content) is specified, the filename
            to use for the attachment.
      content:
        type: str
        description:
          - The Base64 encoded contents of the file to attach. If not specified, the contents of O(attachment.filename) will
            be used instead.
      mimetype:
        type: str
        description:
          - The MIME type to supply for the upload. If not specified, best-effort detection will be done.
notes:
  - Currently this only works with basic-auth, or tokens.
  - To use with JIRA Cloud, pass the login e-mail as the O(username) and the API token as O(password).
author:
  - "Steve Smith (@tarka)"
  - "Per Abildgaard Toft (@pertoft)"
  - "Brandon McNama (@DWSR)"
a  
# Create a new issue and add a comment to it:
- name: Create an issue
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    project: ANS
    operation: create
    summary: Example Issue
    description: Created using Ansible
    issuetype: Task
  args:
    fields:
      customfield_13225: "test"
      customfield_12931: {"value": "Test"}
  register: issue

- name: Comment on issue
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key }}'
    operation: comment
    comment: A comment added by Ansible

- name: Comment on issue with restricted visibility
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key }}'
    operation: comment
    comment: A comment added by Ansible
    comment_visibility:
      type: role
      value: Developers

- name: Comment on issue with property to mark it internal
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key }}'
    operation: comment
    comment: A comment added by Ansible
    fields:
      properties:
        - key: 'sd.public.comment'
          value:
            internal: true

# Add an workog to an existing issue
- name: Worklog on issue
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key }}'
    operation: worklog
    comment: A worklog added by Ansible
    fields:
      timeSpentSeconds: 12000

- name: Workflow on issue with comment restricted visibility
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key }}'
    operation: worklog
    comment: A worklog added by Ansible
    comment_visibility:
      type: role
      value: Developers
    fields:
      timeSpentSeconds: 12000

- name: Workflow on issue with comment property to mark it internal
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key }}'
    operation: worklog
    comment: A worklog added by Ansible
    fields:
      properties:
        - key: 'sd.public.comment'
          value:
            internal: true
      timeSpentSeconds: 12000

# Assign an existing issue using edit
- name: Assign an issue using free-form fields
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key}}'
    operation: edit
    assignee: ssmith

# Create an issue with an existing assignee
- name: Create an assigned issue
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    project: ANS
    operation: create
    summary: Assigned issue
    description: Created and assigned using Ansible
    issuetype: Task
    assignee: ssmith

# Edit an issue
- name: Set the labels on an issue using free-form fields
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key }}'
    operation: edit
  args:
    fields:
      labels:
        - autocreated
        - ansible

# Updating a field using operations: add, set & remove
- name: Change the value of a Select dropdown
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key }}'
    operation: update
  args:
    fields:
      customfield_12931: ['set': {'value': 'Virtual'}]
      customfield_13820: ['set': {'value': 'Manually'}]
  register: cmdb_issue
  delegate_to: localhost


# Retrieve metadata for an issue and use it to create an account
- name: Get an issue
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    project: ANS
    operation: fetch
    issue: ANS-63
  register: issue

# Search for an issue
# You can limit the search for specific fields by adding optional args. Note! It must be a dict, hence, lastViewed: null
- name: Search for an issue
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    project: ANS
    operation: search
    maxresults: 10
    jql: project=cmdb AND cf[13225]="test"
  args:
    fields:
      lastViewed:
  register: issue

- name: Create a unix account for the reporter
  become: true
  user:
    name: '{{ issue.meta.fields.creator.name }}'
    comment: '{{ issue.meta.fields.creator.displayName }}'

# You can get list of valid linktypes at /rest/api/2/issueLinkType
# url of your jira installation.
- name: Create link from HSP-1 to MKY-1
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    operation: link
    linktype: Relates
    inwardissue: HSP-1
    outwardissue: MKY-1

# Transition an issue
- name: Resolve the issue
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: '{{ issue.meta.key }}'
    operation: transition
    status: Resolve Issue
    account_id: 112233445566778899aabbcc
    fields:
      resolution:
        name: Done
      description: I am done! This is the last description I will ever give you.

# Attach a file to an issue
- name: Attach a file
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    issue: HSP-1
    operation: attach
    attachment:
      filename: topsecretreport.xlsx

# Use username, password and client certificate authentification
- name: Create an issue
  community.general.jira:
    uri: '{{ server }}'
    username: '{{ user }}'
    password: '{{ pass }}'
    client_cert: '{{ path/to/client-cert }}'
    client_key: '{{ path/to/client-key }}'

# Use token and client certificate authentification
- name: Create an issue
  community.general.jira:
    uri: '{{ server }}'
    token: '{{ token }}'
    client_cert: '{{ path/to/client-cert }}'
    client_key: '{{ path/to/client-key }}'
N)StateModuleHelpercause_changes)pathname2url)to_textto_bytes	to_native)	fetch_urlc                      e Zd Z e edRi d ed e ed       edd       ed            	      d
 edd      d edg ddgd      d ed      d edd      d edd      d ed      d ed      d ed      d ed      d ed      d ed      d eddg      d ed      d ed e edddgd        edd      !      	      d" ed      d# ed      d$ ed      d% ei d&      d' ed      d( ed      d) ed      d* ed      d+ ed,      d- ed.d/0      d1 edd2&      d3 ed      ddgddgd$d3gd"d#ggddgddggddggdd4ddgfdd5g d6fddddgfdd7ddgfdd8dgfdd9dgfdd9d"d#gdfdd:g d;fdd<d*gff	d=>      Zd=ZdZd? Z ed@A      dB        Z	 ed@A      dC        Z
 ed@A      dD        Z ed@A      dE        Z ed@A      dF        ZdG ZdH Z ed@A      dI        Z ed@A      dJ        Z ed@A      dK        ZedSdM       Z	 	 	 	 dTdNZdUdOZdP ZdQ ZyL)VJIRA
attachmentdictstr)typepathT)r   required)contentfilenamemimetype)r   optionsuri	operation)
attachcreatecommenteditupdatefetch
transitionlinksearchworklogcommand)r   choicesaliasesr   usernamepassword)r   no_logtokenclient_cert
client_keyprojectsummarydescription	issuetypeissueticket)r   r'   r   comment_visibilitygrouprole)r   r&   r   )r   valuestatus	status_idassigneefields)defaultr   linktypeinwardissueoutwardissuejql
maxresultsinttimeoutfloat
   )r   r<   validate_certsbool
account_idr   r   )r.   r1   r/   workflowr    r!   r"   )r=   r>   r?   r#   F)argument_specmutually_exclusiverequired_togetherrequired_one_ofrequired_ifsupports_check_modec                 4   | j                   j                  i | j                   _        | j                   j                  r/d| j                   j                  i| j                   j                  d<   | j                   j                  r/d| j                   j                  i| j                   j                  d<   | j                   j                  j                  d      | j                   _        | j                   j                  d| j                   j                  dz          y )Nnamer:   	accountId/restbasez/rest/api/2)varsr;   r:   rH   r   stripset)selfs    j/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/community/general/plugins/modules/jira.py__init_module__zJIRA.__init_module__6  s    99#!DII99,2DII4F4F+GDIIZ(99,79M9M+NDIIZ(		++C0				j$))---"?@    success)whenc                    d| j                   j                  i| j                   j                  d| j                   j                  id}| j                   j                  r| j                   j                  |d<   | j                   j
                  r%|j                  | j                   j
                         d|i}| j                   j                  dz   }| j                  ||      | j                   _	        y )NkeyrQ   )r.   r/   r1   r0   r;   /issue/)
rU   r.   r/   r1   r0   r;   r   rT   postmeta)rX   createfieldsdataurls       rY   operation_createzJIRA.operation_create@  s     tyy001yy(( $))"5"568
 99  *.))*?*?L' 99		 0 01,'ii  9,3-		r[   c                    d| j                   j                  i}| j                   j                  | j                   j                  |d<   | j                   j                  r%|j	                  | j                   j                         | j                   j
                  dz   | j                   j                  z   dz   }| j                  ||      | j                   _        y )Nbody
visibilityr`   z/comment	rU   r   r4   r;   r   rT   r2   ra   rb   rX   rd   re   s      rY   operation_commentzJIRA.operation_commentR  s     DII%%
 99''3!%!=!=D 99KK		(()ii  9,tyy>K3-		r[   c                    d| j                   j                  i}| j                   j                  | j                   j                  |d<   | j                   j                  r%|j	                  | j                   j                         | j                   j
                  dz   | j                   j                  z   dz   }| j                  ||      | j                   _        y )Nr   ri   r`   z/worklogrj   rk   s      rY   operation_worklogzJIRA.operation_worklogb  s     tyy((
 99''3!%!=!=D 99KK		(()ii  9,tyy>K3-		r[   c                     d| j                   j                  i}| j                   j                  dz   | j                   j                  z   }| j	                  ||      | j                   _        y )Nr;   r`   rU   r;   rT   r2   putrb   rk   s      rY   operation_editzJIRA.operation_editr  S     dii&&
 ii  9,tyy>#t,		r[   c                     d| j                   j                  i}| j                   j                  dz   | j                   j                  z   }| j	                  ||      | j                   _        y )Nr   r`   rp   rk   s      rY   operation_updatezJIRA.operation_updatez  rs   r[   c                     | j                   j                  dz   | j                   j                  z   }| j                  |      | j                   _        y )Nr`   )rU   rT   r2   getrb   rX   re   s     rY   operation_fetchzJIRA.operation_fetch  s6    ii  9,tyy>#		r[   c           	         | j                   j                  dz   t        | j                   j                        z   }| j                   j                  rR| j                   j                  j                         }|dz   dj                  |D cg c]  }t        |       c}      z   }| j                   j                  r%|dz   t        | j                   j                        z   }| j                  |      | j                   _
        y c c}w )Nz/search?jql=z&fields=z&maxResults=)rU   rT   r   r@   r;   keysjoinrA   r   rw   rb   )rX   re   r;   fs       rY   operation_searchzJIRA.operation_search  s    ii  >1L4OO99YY%%**,F
"Z__v5V!l1o5V%WWC99&TYY-A-A)BBC#			 6Ws   C>
c                 v   | j                   j                  dz   | j                   j                  z   dz   }| j                  |      }d }d }| j                   j                  %| j                   j                  j                         }n:| j                   j                  $| j                   j                  j                         }|d   D ]  }||d   |k(  s|d   } n*||d   k(  s n |t        d|z        t        d|z        t        | j                   j                        }| j                   j                  '|j                  d| j                   j                  i       | j                   j                  '|j                  d	| j                   j                  i       d|i|d
}| j                   j                  .|j                  dddd| j                   j                  iigii       | j                   j                  dz   | j                   j                  z   dz   }| j                  ||      | j                   _        y )Nr`   z/transitionstransitionsrQ   idz%Failed find valid transition for '%s'z(Failed find valid transition for ID '%s'r/   r0   )r!   r;   r   r   addrh   )rU   rT   r2   rw   r8   rV   r9   
ValueErrorr   r;   r/   r   r0   r   ra   rb   )	rX   turltmetatidtargettr;   rd   re   s	            rY   operation_transitionzJIRA.operation_transition  s    yy!!I-		?.P99'YY%%++-FYY  ,))%%++-C}% 	SA!V9&D'C!D'>	S ! !H6!QRR !Kc!QRRdii&&'99(MM9dii&7&78999  ,MM=$))*?*?@A  $Sk "99(KKFDII$5$56 $  
 ii  9,tyy>O3-		r[   c                    d| j                   j                  id| j                   j                  id| j                   j                  id}| j                   j                  dz   }| j                  ||      | j                   _        y )NrQ   r_   )r   inwardIssueoutwardIssuez/issueLink/)rU   r=   r>   r?   rT   ra   rb   rk   s      rY   operation_linkzJIRA.operation_link  sm     TYY//0!499#8#89"DII$:$:;

 ii  =03-		r[   c                    | j                   }|j                  j                  d      }|j                  j                  d      }t        ||f      st	        d      |j                  j                  d      }t
        j                  j                  |      st	        d|z        | j                  |||      \  }}|j                  dz   |j                  z   dz   }d| j                  |||d	d
i      fS )Nr   r   z4at least one of filename or content must be providedr   z(The provided filename does not exist: %sr`   z/attachmentsTzX-Atlassian-Tokenzno-check)content_typeadditional_headers)rU   r   rw   anyr   osr   isfile_prepare_attachmentrT   r2   ra   )rX   vr   r   mimer   rd   re   s           rY   operation_attachzJIRA.operation_attach  s    II<<##J/,,""9-Hg&'STT||
+ww~~h'G(RSS!55hNdjj9$qww.?TYYLFY[eEf  
 
 	
r[   Nc                 <   d }dj                  d t        d      D              }t        t        j                  j                  |             }|s#	 t        j                  | xs dd      d   xs d}|j                  d	      \  }}}|s3| r1t        t        | d
      d      5 }	|	j                         }d d d        n	 t        j                  |      }dj#                  |      dj#                   ||            dj#                  dj#                  ||            dt%        |      dj#                  |      dg}dj#                  |      dj                  |      fS # t        $ r d}Y w xY w# 1 sw Y   xY w# t        j                   $ r}
t        d|
z        d }
~
ww xY w)Nc                 &    | j                  dd      S )N"z\")replace)ss    rY   escape_quotesz/JIRA._prepare_attachment.<locals>.escape_quotes  s    99S%((r[    c              3      K   | ]8  }t        j                  t        j                  t        j                  z          : y wN)randomchoicestringdigitsascii_letters).0dummys     rY   	<genexpr>z+JIRA._prepare_attachment.<locals>.<genexpr>  s)     fSX6==9M9M)MNfs   >A    F)strictr   zapplication/octet-streamrS   surrogate_or_stricterrorsrbz(Unable to base64 decode file content: %sz--{0}z9Content-Disposition: form-data; name="file"; filename={0}zContent-Type: {0}z{0}/{1}z--{0}--z!multipart/form-data; boundary={0}z
)r|   ranger   r   r   basename	mimetypes
guess_type	Exception	partitionopenr
   readbase64	b64decodebinasciiErrorformatr	   )r   r   	mime_typer   boundaryrQ   	main_typesepsub_typer}   eliness               rY   r   zJIRA._prepare_attachment  s   	) 77f\abd\eff))(347%00RNqQoUo	 $-#6#6s#; 	38hx0EFM #QR&&(# #P **73
 NN8$GNN}]aObc&&y'7'7	8'LMGX&
 066x@KK
 	
/  76	7
# #
 >> P JQ NOOPs6   "E "E)=E5 E&%E&)E25FFFc           
      P   |r|dk(  rt        j                  |      }i }t        |t              r|j	                         }| j
                  j                  ,|j                  |d| j
                  j                  z  d       nxt        t        j                  t        dj                  | j
                  j                  | j
                  j                        d                  }|j                  |d|z  d       t        | j                   |||| j
                  j"                  |      \  }}	|	d	   d
vrd }
	 t        j$                  |	d         }
|
rg }dD ]1  }|
j)                  |      s|j3                  t-        |
|                3 |r+| j                   j+                  dj5                  |             | j                   j+                  t-        |
             | j                   j+                  t-        |	d                |j7                         }|r t        j$                  t        |d            S i S # t&        $ rg dj                  |	d	   |	d   |	j)                  d      ||      }| j                   j+                  t-        |      t/        j0                                Y Ww xY w)Napplication/jsonz	Bearer %s)zContent-TypeAuthorizationz{0}:{1}r   r   zBasic %s)rd   methodrC   headersr8   )         rh   zVThe request "{method} {url}" returned the unexpected status code {status} {msg}
{body}msg)r8   r   rh   re   r   )r   	exception)errorMessagesr   z, )r   )jsondumps
isinstancer   copyrU   r+   r   r	   r   	b64encoder
   r   r(   r)   r   modulerC   loadsr   rw   	fail_jsonr   	traceback
format_excappendr|   r   )rX   re   rd   r   r   r   r   authresponseinfoerrorr   r_   rh   s                 rY   requestzJIRA.request  sZ    L$66::d#D($/(--/G 99??&NN ,!,tyy!> 
 6++HY5E5EdiiFXFXZ^ZcZcZlZl5m<Q-S T UDNN ,!+d!2 
 #KK4		@Q@Q[b
$ >0E
\

4<0 6 :Cyy~

9U3Z#89: KK))diin)=%%)E*:%;KK!!iV&=!>}}::gd3HIJJ	1  \ovv>U&)! w  %%)C.IDXDXDZ%[\s   5H5 5A,J%$J%c                 .    | j                  ||d||      S )NPOST)rd   r   r   r   r   )rX   re   rd   r   r   s        rY   ra   z	JIRA.postU  s%    ||Cd6/A  C 	Cr[   c                 *    | j                  ||d      S )NPUT)rd   r   r   )rX   re   rd   s      rY   rq   zJIRA.putY  s    ||Cd5|99r[   c                 $    | j                  |      S r   r   rx   s     rY   rw   zJIRA.get\  s    ||C  r[    )NN)NNr   N)r   N)__name__
__module____qualname__r   r   use_old_vardictstate_paramrZ   r   rf   rl   rn   rr   ru   ry   r~   r   r   r   staticmethodr   r   ra   rq   rw   r   r[   rY   r   r     s    '
%(6D95)2 '
 %$/'
 }"d'
 u%'
 uT2'
 E$/'
 &)'
  (!'
" e&#'
$ e&%'
& %*''
( ()'
* EH:6+'
, e&-'
.  $uw.?$O5:  /'
6 U%7'
8 (9'
: u';'
< 0='
> u'?'
@ %*A'
B 5+C'
D %"E'
F 'G'
H gr2I'
J  6:K'
L 'M'
R !!&{#	
 $L)

 !
 (Wl$;<($GH)gy%9:*w	&:;'G9-,	2,;(?F&"MN(UG,

 "CBFF OKA 	". #." 	". #. 	". #. 	"- #- 	"- #-'' 	"+. #+.Z 	". #. 	"
 #
> $
 $
R +#DLC:!r[   r   c                  8    t               } | j                          y r   )r   run)jiras    rY   mainr   `  s    6DHHJr[   __main__)
__future__r   r   r   r   __metaclass__DOCUMENTATIONEXAMPLESr   r   r   r   r   r   r   r   Hansible_collections.community.general.plugins.module_utils.module_helperr   r   -ansible.module_utils.six.moves.urllib.requestr   +ansible.module_utils.common.text.convertersr	   r
   r   ansible.module_utils.urlsr   r   r   r   r   r[   rY   <module>r      sw    A @`DjX     	    u F T T /n! n!b
 zF r[   